diff --git a/.github/workflows/nightly_test.yml b/.github/workflows/nightly_test.yml index 6a3a315785a..bd639415ed9 100644 --- a/.github/workflows/nightly_test.yml +++ b/.github/workflows/nightly_test.yml @@ -62,9 +62,9 @@ jobs: - {test: "vtr_reg_strong", cores: "16", options: "", cmake: "-DVTR_ASSERT_LEVEL=3", extra_pkgs: "libeigen3-dev"} - {test: "vtr_reg_strong_odin", cores: "16", options: "", cmake: "-DVTR_ASSERT_LEVEL=3 -DWITH_ODIN=ON", extra_pkgs: "libeigen3-dev"} - {test: "vtr_reg_strong_odin", cores: "16", options: "-skip_qor", cmake: "-DVTR_ASSERT_LEVEL=3 -DVTR_ENABLE_SANITIZE=ON -DWITH_ODIN=ON", extra_pkgs: "libeigen3-dev"} - - {test: "vtr_reg_system_verilog", cores: "16", options: "", cmake: "-DYOSYS_F4PGA_PLUGINS=ON", extra_pkgs: ""} + # - {test: "vtr_reg_system_verilog", cores: "16", options: "", cmake: "-DYOSYS_F4PGA_PLUGINS=ON", extra_pkgs: ""} # Test turned off -> F4PGA conflicts with Yosys (version 42) - {test: "odin_reg_strong", cores: "16", options: "", cmake: "-DWITH_ODIN=ON", extra_pkgs: ""} - - {test: "parmys_reg_strong", cores: "16", options: "", cmake: "-DYOSYS_F4PGA_PLUGINS=ON", extra_pkgs: ""} + - {test: "parmys_reg_strong", cores: "16", options: "", cmake: "-DYOSYS_F4PGA_PLUGINS=OFF", extra_pkgs: ""} env: DEBIAN_FRONTEND: "noninteractive" diff --git a/CMakeLists.txt b/CMakeLists.txt index dfc90c3e851..3109cf362fa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -130,11 +130,6 @@ endif() # Build type flags # -set(EXTRA_FLAGS "") -if(VPR_ENABLE_INTERCHANGE) - set(EXTRA_FLAGS "-lz") -endif() - if(NOT MSVC) # for GCC and Clang set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0 -g3") @@ -298,6 +293,7 @@ endif() # # Increased debugging vebosity # +set(EXTRA_FLAGS "") if(VTR_ENABLE_VERBOSE) set(EXTRA_FLAGS "${EXTRA_FLAGS} -DVTR_ENABLE_DEBUG_LOGGING") message(STATUS "Enabling increased debugging verbosity") diff --git a/doc/src/arch/index.rst b/doc/src/arch/index.rst index c4e4432cad2..ec59b26cac0 100644 --- a/doc/src/arch/index.rst +++ b/doc/src/arch/index.rst @@ -4,7 +4,7 @@ FPGA Architecture Description ============================= VTR uses an XML-based architecture description language to describe the targeted FPGA architecture. -This flexible description langauge allows the user to describe a large number of hypothetical and commercial-like FPGA architectures. +This flexible description language allows the user to describe a large number of hypothetical and commercial-like FPGA architectures. See the :ref:`arch_tutorial` for an introduction to the architecture description langauge. For a detailed reference on the supported options see the :ref:`arch_reference`. diff --git a/doc/src/arch/reference.rst b/doc/src/arch/reference.rst index 8a0510c2772..368b9669ba4 100644 --- a/doc/src/arch/reference.rst +++ b/doc/src/arch/reference.rst @@ -2031,11 +2031,40 @@ The ```` tag and its contents are described below. .. arch:tag:: :req_param name: Name of the mux switch type used to drive this type of segment by default, from both block outputs and other wires. This information is used during rr-graph construction, and a custom switch block can override this switch type for specific connections if desired. + The switch type specified with the tag will be used for both the incrementing and decrementing wires within this segment. + If more control is needed, the mux_inc and mux_dec tags can be used to assign different muxes to drive incremental and decremental wires within the segment. .. note:: For UNIDIRECTIONAL only. Tag must be included and ``name`` must be the same as the name you give in `` + + :req_param name: + Name of the mux switch type used to drive the incremental wires in this segment from both block outputs and other wires. + Incremental wires are tracks within this segment that are heading in the "right" direction on the x-axis and the "top" direction on the y-axis. + This information is used during rr-graph construction, and a custom switch block can override this switch type for specific connections if desired. + + .. note:: For UNIDIRECTIONAL only. + +.. arch:tag:: + + :req_param name: + Name of the mux switch type used to drive the decremental wires in this segment from both block outputs and other wires. + Incremental wires are tracks within this segment that are heading in the "left" direction on the x-axis and the "bottom" direction on the y-axis. + This information is used during rr-graph construction, and a custom switch block can override this switch type for specific connections if desired. + + .. note:: For UNIDIRECTIONAL only. + + .. note:: For unidirectional segments, either tag or both and should be defined in the architecture file. If only the tag is defined, we assume that the same mux drives both incremental and decremental wires within this segment. + +.. arch:tag:: + + :req_param name: Name of the mux switch type used to drive this segment type when the driver (block outputs and other wires) is located on a different die than the segment. This information is utilized during rr-graph construction. + + Tag must be included and ``name`` must be the same as the name you give in `` :req_param name: Name of the switch type used by other wires to drive this type of segment by default. This information is used during rr-graph construction, and a custom switch block can override this switch type for specific connections if desired. diff --git a/doc/src/quickstart/index.rst b/doc/src/quickstart/index.rst index 2a4d573214e..7ac82662597 100644 --- a/doc/src/quickstart/index.rst +++ b/doc/src/quickstart/index.rst @@ -2,7 +2,7 @@ VTR Quick Start ############### -This is a quick introduction to VTR which covers how to run VTR and some if its associated tools (:ref:`VPR`, :ref:`odin_ii`, :ref:`ABC`). +This is a quick introduction to VTR which covers how to run VTR and some of its associated tools (:ref:`VPR`, :ref:`odin_ii`, :ref:`ABC`). Setting Up VTR ============== @@ -10,14 +10,14 @@ Setting Up VTR Download VTR ------------ -The first step is to `download VTR `_ and extract VTR on your local machine. +The first step is to `download VTR `_ and extract it on your local machine. .. note:: Developers planning to modify VTR should clone the `VTR git repository `_. Environment Setup ----------------- -If you cloned the repository you will need to set up the git submodules (if you downloaded and extracted a release, you can skip this step): +If you cloned the repository, you will need to set up the git submodules (if you downloaded and extracted a release, you can skip this step): .. code-block:: bash @@ -77,12 +77,12 @@ For more details on building VTR on various operating systems/platforms see :doc Running VPR =========== -Lets now try taking a simple pre-synthesized circuit (consisting of LUTs and Flip-Flops) and use the VPR tool to implement it on a specific FPGA architecture. +Let's now try taking a simple pre-synthesized circuit (consisting of LUTs and Flip-Flops) and use the VPR tool to implement it on a specific FPGA architecture. Running VPR on a Pre-Synthesized Circuit ---------------------------------------- -First, lets make a directory in our home directory where we can work: +First, let's make a directory in our home directory where we can work: .. code-block:: bash @@ -211,13 +211,13 @@ Running the VTR Flow In the previous section we have implemented a pre-synthesized circuit onto a pre-existing FPGA architecture using VPR, and visualized the result. We now turn to how we can implement *our own circuit* on a pre-existing FPGA architecture. -To do this we begin by describing a circuit behaviourly using the Verilog Hardware Description Language (HDL). +To do this, we begin by describing a circuit behaviourally using the Verilog Hardware Description Language (HDL). This allows us to quickly and consisely define the circuit's behaviour. We will then use the VTR Flow to synthesize the behavioural Verilog description it into a circuit netlist, and implement it onto an FPGA. Example Circuit --------------- -We will use the following simple example circuit, which causes it's output to toggle on and off: +We will use the following simple example circuit, which causes its output to toggle on and off: .. literalinclude:: blink.v :language: verilog @@ -230,7 +230,7 @@ If the count is below ``16`` it drives the output (``o_led``) high, otherwise it Manually Running the VTR Flow ----------------------------- -Lets start by making a fresh directory for us to work in: +Let's start by making a fresh directory for us to work in: .. code-block:: bash @@ -241,7 +241,7 @@ Next we need to run the three main sets of tools: * :ref:`odin_ii` performs 'synthesis' which converts our behavioural Verilog (``.v`` file) into a circuit netlist (``.blif`` file) consisting of logic equations and FPGA architecture primitives (Flip-Flops, adders etc.), * :ref:`ABC` performs 'logic optimization' which simplifies the circuit logic, and 'technology mapping' which converts logic equations into the Look-Up-Tables (LUTs) available on an FPGA, and -* :ref:`VPR` which performs packing, placement and routing of the circuit to implement it on the targetted FPGA architecture. +* :ref:`VPR` which performs packing, placement and routing of the circuit to implement it on the targeted FPGA architecture. .. _synthesizing_with_odin_ii: Synthesizing with ODIN II @@ -249,7 +249,7 @@ Synthesizing with ODIN II First we'll run ODIN II on our Verilog file to synthesize it into a circuit netlist, providing the options: - * ``-a $VTR_ROOT/vtr_flow/arch/timing/EArch.xml`` which specifies what FPGA architecture we are targetting, + * ``-a $VTR_ROOT/vtr_flow/arch/timing/EArch.xml`` which specifies what FPGA architecture we are targeting, * ``-V $VTR_ROOT/doc/src/quickstart/blink.v`` which specifies the verilog file we want to synthesize, and * ``-o blink.odin.blif`` which specifies the name of the generated ``.blif`` circuit netlist. @@ -400,7 +400,7 @@ Automatically Running the VTR Flow Running each stage of the flow manually is time consuming (and potentially error prone). For convenience, VTR provides a script (:ref:`run_vtr_flow`) which automates this process. -First, make sure you sure you have activated the Python virtual environment created at the beginning of this tutorial: +First, make sure you have activated the Python virtual environment created at the beginning of this tutorial: .. code-block:: bash diff --git a/doc/src/vpr/file_formats.rst b/doc/src/vpr/file_formats.rst index cc114105810..dc76e2ff5ea 100644 --- a/doc/src/vpr/file_formats.rst +++ b/doc/src/vpr/file_formats.rst @@ -616,23 +616,32 @@ The io pad is set to inpad mode and is driven by the inpad: Placement File Format (.place) ------------------------------ +The placement file format is used to specify the position of cluster-level blocks in an FPGA design. It includes information about the netlist and architecture files, the size of the logic block array, and the placement details of each block in the CLB netlist.. + The first line of the placement file lists the netlist (.net) and architecture (.xml) files used to create this placement. -This information is used to ensure you are warned if you accidentally route this placement with a different architecture or netlist file later. +This information is used to ensure you are warned if you accidentally route this placement with a different architecture or netlist file later. The second line of the file gives the size of the logic block array used by this placement. -All the following lines have the format:: - block_name x y subtile_number +All subsequent lines follow this format: + + block_name x y subblk [layer_number] [#block_number] + +- **block_name**: Refers to either: + - The name of a clustered block, as given in the input .net formatted netlist. + - The name of a primitive within a clustered block. + +- **x** and **y**: Represent the row and column in which the block is placed, respectively. -The ``block_name`` is the name of this block, as given in the input .net formatted netlist. -``x`` and ``y`` are the row and column in which the block is placed, respectively. +- **subblk**: Specifies which of several possible subtile locations in row **x** and column **y** contains this block, which is useful when the tile capacity is greater than 1. The subtile number should be in the range `0` to `(grid[i][j].capacity - 1)`. The subtile numbers for a particular **x, y** location do not have to be used in order. + +- **layer_number**: Indicates the layer (or die) on which the block is placed. If omitted, the block is assumed to be placed on layer `0` (a single die system). In 3D FPGA architectures, multiple dies can be stacked, with the bottom die considered as layer `0`. + +The placement files output by VPR also include (as a comment) an extra field: the id (number) of the block in the CLB netlist. This is the internal index used by VPR to identify a CLB level block -- it may be useful to know this index if you are modifying VPR and trying to debug something. .. note:: The blocks in a placement file can be listed in any order. -Since we can have more than one block in a row or column when the block capacity is set to be greater than 1 in the architecture file, the subtile number specifies which of the several possible subtile locations in row x and column y contains this block. -Note that the subtile number used should be in the range 0 to (grid[i][j].capacity - 1). The subtile numbers for a particular x,y location do not have to be used in order. -The placement files output by VPR also include (as a comment) a fifth field: the block number. -This is the internal index used by VPR to identify a block -- it may be useful to know this index if you are modifying VPR and trying to debug something. +.. note:: A `#` character on a line indicates that all text after the `#` to the end of a line is a comment. .. _fig_fpga_coord_system: @@ -649,10 +658,10 @@ All pads either have x equal to ``0`` or ``nx + 1`` or y equal to ``0`` or ``ny Placement File Format Example ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -An example placement file is: + .. code-block:: none - :caption: Example placement file. + :caption: Example 2D Placement File :linenos: Netlist file: xor5.net Architecture file: sample.xml @@ -669,6 +678,23 @@ An example placement file is: xor5 1 2 0 #6 [1] 1 1 0 #7 +.. code-block:: none + :caption: Example 3D Placement File with Layer Column + :linenos: + + Netlist file: xor5.net Architecture file: sample.xml + Array size: 2 x 2 logic blocks + + #block name x y subblk layer block number + #---------- -- -- ------- ------ ----------- + a 0 1 0 0 #0 -- NB: block number is a comment. + b 1 0 0 1 #1 + c 0 2 1 0 #2 + d 1 3 0 1 #3 + e 1 3 1 0 #4 + out:xor5 0 2 0 1 #5 + xor5 1 2 0 0 #6 + [1] 1 1 0 1 #7 .. _vpr_route_file: diff --git a/doc/src/vpr/vpr_constraints.rst b/doc/src/vpr/vpr_constraints.rst index a56fecf358b..29b00c204b1 100644 --- a/doc/src/vpr/vpr_constraints.rst +++ b/doc/src/vpr/vpr_constraints.rst @@ -2,9 +2,7 @@ VPR Constraints ========================= .. _vpr_constraints: -VPR allows users to run the flow with placement constraints that enable primitives to be locked down to a specific region on the chip and global routing constraints that facilitate the routing of global nets through clock networks. - -Users can specify these constraints through a constraints file in XML format, as shown in the format below. +Users can specify placement and/or global routing constraints on all or part of a design through a constraints file in XML format, as shown in the format below. These constraints are optional and allow detailed control of the region on the chip in which parts of the design are placed, and of the routing of global nets through dedicated (usually clock) networks. .. code-block:: xml :caption: The overall format of a VPR constraints file diff --git a/libs/EXTERNAL/libtatum/libtatum/tatum/TimingReporter.cpp b/libs/EXTERNAL/libtatum/libtatum/tatum/TimingReporter.cpp index 69c9ba07a83..69e8e4bbd18 100644 --- a/libs/EXTERNAL/libtatum/libtatum/tatum/TimingReporter.cpp +++ b/libs/EXTERNAL/libtatum/libtatum/tatum/TimingReporter.cpp @@ -606,7 +606,7 @@ Time TimingReporter::report_timing_data_arrival_subpath(std::ostream& os, { //Input constraint - TATUM_ASSERT(subpath.elements().size() > 0); + TATUM_ASSERT(!subpath.elements().empty()); const TimingPathElem& path_elem = *(subpath.elements().begin()); Time input_constraint; @@ -712,7 +712,7 @@ bool TimingReporter::nearly_equal(const Time& lhs, const Time& rhs) const { size_t TimingReporter::estimate_point_print_width(const TimingPath& path) const { size_t width = 60; //default - for(auto subpath : {path.clock_launch_path(), path.data_arrival_path(), path.clock_capture_path()}) { + for(const auto& subpath : {path.clock_launch_path(), path.data_arrival_path(), path.clock_capture_path()}) { for(auto elem : subpath.elements()) { //Take the longest typical point name std::string point = name_resolver_.node_name(elem.node()) + " (" + name_resolver_.node_type_name(elem.node()) + ")"; diff --git a/libs/EXTERNAL/libtatum/libtatum/tatum/tags/TimingTags.hpp b/libs/EXTERNAL/libtatum/libtatum/tatum/tags/TimingTags.hpp index afab50fb1be..e24765afa7b 100644 --- a/libs/EXTERNAL/libtatum/libtatum/tatum/tags/TimingTags.hpp +++ b/libs/EXTERNAL/libtatum/libtatum/tatum/tags/TimingTags.hpp @@ -113,6 +113,7 @@ class TimingTags { using value_type = T; using pointer = T*; using reference = T&; + using const_reference = const T&; Iterator(): p_(nullptr) {} Iterator(pointer p): p_(p) {} @@ -123,7 +124,7 @@ class TimingTags { friend bool operator!=(Iterator a, Iterator b) { return a.p_ != b.p_; } reference operator*() { return *p_; } - const reference operator*() const { return *p_; } //Required for MSVC (gcc/clang are fine with only the non-cost version) + const_reference operator*() const { return *p_; } //Required for MSVC (gcc/clang are fine with only the non-cost version) pointer operator->() { return p_; } reference operator[](size_t n) { return *(p_ + n); } diff --git a/libs/libarchfpga/src/physical_types.h b/libs/libarchfpga/src/physical_types.h index 50b545ed4c4..9805de244a3 100644 --- a/libs/libarchfpga/src/physical_types.h +++ b/libs/libarchfpga/src/physical_types.h @@ -1568,7 +1568,16 @@ enum e_Fc_type { * relation to the switches from the architecture file, * * not the expanded list of switches that is built * * at the end of build_rr_graph * - * * + * @param arch_wire_switch_dec: Same as arch_wire_switch but used only for * + * decremental tracks if it is specified in the * + * architecture file. If -1, this value was not set in * + * the architecture file and arch_wire_switch should be * + * used for "DEC_DIR" wire segments. * + * @param arch_opin_switch_dec: Same as arch_opin_switch but used only for * + * decremental tracks if it is specified in the * + * architecture file. If -1, this value was not set in * + * the architecture file and arch_opin_switch should be * + * used for "DEC_DIR" wire segments. * * @param arch_opin_between_dice_switch: Index of the switch type that * * connects output pins (OPINs) *to* this segment from * * *another die (layer)*. Note that this index is in * @@ -1586,14 +1595,14 @@ enum e_Fc_type { * Cmetal: Capacitance of a routing track, per unit logic block length. * * Rmetal: Resistance of a routing track, per unit logic block length. * * (UDSD by AY) drivers: How do signals driving a routing track connect to * - * the track? + * the track? * * seg_index: The index of the segment as stored in the appropriate Segs list* * Upon loading the architecture, we use this field to keep track * * the segment's index in the unified segment_inf vector. This is * * useful when building the rr_graph for different Y & X channels * - * in terms of track distribution and segment type. * + * in terms of track distribution and segment type. * * res_type: Determines the routing network to which the segment belongs. * - * Possible values are: + * Possible values are: * * - GENERAL: The segment is part of the general routing * * resources. * * - GCLK: The segment is part of the global routing network. * @@ -1607,6 +1616,8 @@ struct t_segment_inf { int length; short arch_wire_switch; short arch_opin_switch; + short arch_wire_switch_dec = -1; + short arch_opin_switch_dec = -1; short arch_opin_between_dice_switch = -1; float frac_cb; float frac_sb; diff --git a/libs/libarchfpga/src/read_xml_arch_file.cpp b/libs/libarchfpga/src/read_xml_arch_file.cpp index 359a5410b0c..f3a9ffaa683 100644 --- a/libs/libarchfpga/src/read_xml_arch_file.cpp +++ b/libs/libarchfpga/src/read_xml_arch_file.cpp @@ -3766,6 +3766,10 @@ static void ProcessSegments(pugi::xml_node Parent, //Unidir requires the following tags expected_subtags.emplace_back("mux"); expected_subtags.emplace_back("mux_inter_die"); + //with the following two tags, we can allow the architecture file to define + //different muxes with different delays for wires with different directions + expected_subtags.emplace_back("mux_inc"); + expected_subtags.emplace_back("mux_dec"); } else { @@ -3796,28 +3800,78 @@ static void ProcessSegments(pugi::xml_node Parent, /* Get the wire and opin switches, or mux switch if unidir */ if (UNI_DIRECTIONAL == Segs[i].directionality) { //Get the switch name for same die wire and track connections - SubElem = get_single_child(Node, "mux", loc_data); - tmp = get_attribute(SubElem, "name", loc_data).value(); - - /* Match names */ - for (j = 0; j < NumSwitches; ++j) { - if (0 == strcmp(tmp, Switches[j].name.c_str())) { - break; /* End loop so j is where we want it */ + SubElem = get_single_child(Node, "mux", loc_data, ReqOpt::OPTIONAL); + tmp = get_attribute(SubElem, "name", loc_data, ReqOpt::OPTIONAL).as_string(nullptr); + + //check if tag is defined in the architecture, otherwise we should look for and + if(tmp){ + /* Match names */ + for (j = 0; j < NumSwitches; ++j) { + if (0 == strcmp(tmp, Switches[j].name.c_str())) { + break; /* End loop so j is where we want it */ + } } + if (j >= NumSwitches) { + archfpga_throw(loc_data.filename_c_str(), loc_data.line(SubElem), + "'%s' is not a valid mux name.\n", tmp); + } + + /* Unidir muxes must have the same switch + * for wire and opin fanin since there is + * really only the mux in unidir. */ + Segs[i].arch_wire_switch = j; + Segs[i].arch_opin_switch = j; } - if (j >= NumSwitches) { - archfpga_throw(loc_data.filename_c_str(), loc_data.line(SubElem), - "'%s' is not a valid mux name.\n", tmp); - } + else { //if a general mux is not defined, we should look for specific mux for each direction in the architecture file + SubElem = get_single_child(Node, "mux_inc", loc_data, ReqOpt::OPTIONAL); + tmp = get_attribute(SubElem, "name", loc_data, ReqOpt::OPTIONAL).as_string(nullptr); + if(!tmp){ + archfpga_throw(loc_data.filename_c_str(), loc_data.line(SubElem), + "if mux is not specified in a wire segment, both mux_inc and mux_dec should be specified"); + } else{ + /* Match names */ + for (j = 0; j < NumSwitches; ++j) { + if (0 == strcmp(tmp, Switches[j].name.c_str())) { + break; /* End loop so j is where we want it */ + } + } + if (j >= NumSwitches) { + archfpga_throw(loc_data.filename_c_str(), loc_data.line(SubElem), + "'%s' is not a valid mux name.\n", tmp); + } - /* Unidir muxes must have the same switch - * for wire and opin fanin since there is - * really only the mux in unidir. */ - Segs[i].arch_wire_switch = j; - Segs[i].arch_opin_switch = j; + /* Unidir muxes must have the same switch + * for wire and opin fanin since there is + * really only the mux in unidir. */ + Segs[i].arch_wire_switch = j; + Segs[i].arch_opin_switch = j; + } - } + SubElem = get_single_child(Node, "mux_dec", loc_data, ReqOpt::OPTIONAL); + tmp = get_attribute(SubElem, "name", loc_data, ReqOpt::OPTIONAL).as_string(nullptr); + if(!tmp){ + archfpga_throw(loc_data.filename_c_str(), loc_data.line(SubElem), + "if mux is not specified in a wire segment, both mux_inc and mux_dec should be specified"); + } else{ + /* Match names */ + for (j = 0; j < NumSwitches; ++j) { + if (0 == strcmp(tmp, Switches[j].name.c_str())) { + break; /* End loop so j is where we want it */ + } + } + if (j >= NumSwitches) { + archfpga_throw(loc_data.filename_c_str(), loc_data.line(SubElem), + "'%s' is not a valid mux name.\n", tmp); + } + /* Unidir muxes must have the same switch + * for wire and opin fanin since there is + * really only the mux in unidir. */ + Segs[i].arch_wire_switch_dec = j; + Segs[i].arch_opin_switch_dec = j; + } + } + } else { VTR_ASSERT(BI_DIRECTIONAL == Segs[i].directionality); SubElem = get_single_child(Node, "wire_switch", loc_data); diff --git a/libs/libvqm/vqm_common.c b/libs/libvqm/vqm_common.c index 57c905db58c..ba6199d178a 100644 --- a/libs/libvqm/vqm_common.c +++ b/libs/libvqm/vqm_common.c @@ -559,7 +559,7 @@ void add_node(char* type, char *name, t_array_ref **ports, t_parse_info* parse_i new_assoc->associated_net = net; new_assoc->port_index = counter; new_assoc->port_name = (char *) malloc(strlen(association->port_name)+1); - strcpy(new_assoc->port_name, (char*)malloc(strlen(association->port_name))); + strcpy(new_assoc->port_name, association->port_name); new_assoc->wire_index = wire_index; wire_index += change; m_ports->array_size = insert_element_at_index((intptr_t) new_assoc, m_ports, counter); diff --git a/parmys/regression_test/benchmark/suite/koios_weekly_suite/task_list.conf b/parmys/regression_test/benchmark/suite/koios_weekly_suite/task_list.conf index a1df12a559b..6cda998cb84 100644 --- a/parmys/regression_test/benchmark/suite/koios_weekly_suite/task_list.conf +++ b/parmys/regression_test/benchmark/suite/koios_weekly_suite/task_list.conf @@ -2,5 +2,5 @@ regression_test/benchmark/task/koios/koios_large regression_test/benchmark/task/koios/koios_large_no_hb regression_test/benchmark/task/koios/koios_proxy regression_test/benchmark/task/koios/koios_proxy_no_hb -regression_test/benchmark/task/koios/koios_sv -regression_test/benchmark/task/koios/koios_sv_no_hb +#regression_test/benchmark/task/koios/koios_sv +#regression_test/benchmark/task/koios/koios_sv_no_hb diff --git a/parmys/regression_test/benchmark/task/freecores/synthesis_result.json b/parmys/regression_test/benchmark/task/freecores/synthesis_result.json index 84434694980..f987e7cb0e6 100644 --- a/parmys/regression_test/benchmark/task/freecores/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/freecores/synthesis_result.json @@ -479,20 +479,20 @@ "Multiplier": 1, "Memory": 8, "generic logic size": 4, - "Longest Path": 269, + "Longest Path": 274, "Average Path": 3, - "Estimated LUTs": 4797, + "Estimated LUTs": 4777, "Total Node": 1957, - "Wires": 5595, - "Wire Bits": 10315, + "Wires": 5591, + "Wire Bits": 10025, "Public Wires": 240, "Public Wire Bits": 240, - "Total Cells": 8221, - "MUX": 2180, + "Total Cells": 8185, + "MUX": 2164, "XOR": 40, - "OR": 2850, - "AND": 1455, - "NOT": 639, + "OR": 2836, + "AND": 1451, + "NOT": 637, "DFFs": [ "$_DFF_P_ 645" ], @@ -533,8 +533,8 @@ "Average Path": 3, "Estimated LUTs": 41888, "Total Node": 5344, - "Wires": 9772, - "Wire Bits": 102222, + "Wires": 9777, + "Wire Bits": 102242, "Public Wires": 391, "Public Wire Bits": 391, "Total Cells": 31999, @@ -585,8 +585,8 @@ "Average Path": 3, "Estimated LUTs": 42386, "Total Node": 5593, - "Wires": 10802, - "Wire Bits": 103242, + "Wires": 10796, + "Wire Bits": 103210, "Public Wires": 648, "Public Wire Bits": 648, "Total Cells": 32995, @@ -840,16 +840,16 @@ "Average Path": 4, "Estimated LUTs": 4564, "Total Node": 2961, - "Wires": 6943, - "Wire Bits": 11526, + "Wires": 6934, + "Wire Bits": 11506, "Public Wires": 501, "Public Wire Bits": 501, - "Total Cells": 8995, + "Total Cells": 8955, "MUX": 2605, "XOR": 311, - "OR": 1858, - "AND": 1687, - "NOT": 711, + "OR": 1861, + "AND": 1683, + "NOT": 672, "DFFs": [ "$_DFF_P_ 1312" ], @@ -861,9 +861,6 @@ "test_name": "freecores/mips_16/k6_frac_N10_frac_chain_mem32K_40nm", "architecture": "k6_frac_N10_frac_chain_mem32K_40nm.xml", "warnings": [ - "mips_16.v:0 System task `$display' outside initial block is unsupported.", - "mips_16.v:0 System task `$display' outside initial block is unsupported.", - "mips_16.v:0 System task `$display' outside initial block is unsupported.", "Replacing memory \\reg_array with list of registers. See ../vtr_flow/benchmarks//freecores/mips_16.v:791", "Ignoring module EX_stage because it contains processes (run 'proc' command first).", "Ignoring module data_mem because it contains processes (run 'proc' command first).", diff --git a/parmys/regression_test/benchmark/task/full/synthesis_result.json b/parmys/regression_test/benchmark/task/full/synthesis_result.json index d768a298d74..8026e17e5e4 100644 --- a/parmys/regression_test/benchmark/task/full/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/full/synthesis_result.json @@ -24,16 +24,16 @@ "Average Path": 3, "Estimated LUTs": 36, "Total Node": 27, - "Wires": 162, - "Wire Bits": 173, + "Wires": 163, + "Wire Bits": 177, "Public Wires": 72, "Public Wire Bits": 72, - "Total Cells": 65, + "Total Cells": 69, "XNOR": 4, "XOR": 8, "OR": 13, "AND": 14, - "NOT": 15, + "NOT": 19, "adder": 10, "multiply": 1 }, @@ -56,16 +56,16 @@ "Average Path": 3, "Estimated LUTs": 36, "Total Node": 27, - "Wires": 162, - "Wire Bits": 173, + "Wires": 163, + "Wire Bits": 177, "Public Wires": 72, "Public Wire Bits": 72, - "Total Cells": 65, + "Total Cells": 69, "XNOR": 4, "XOR": 8, "OR": 13, "AND": 14, - "NOT": 15, + "NOT": 19, "adder": 10, "multiply": 1 }, @@ -88,16 +88,16 @@ "Average Path": 3, "Estimated LUTs": 36, "Total Node": 27, - "Wires": 162, - "Wire Bits": 173, + "Wires": 163, + "Wire Bits": 177, "Public Wires": 72, "Public Wire Bits": 72, - "Total Cells": 65, + "Total Cells": 69, "XNOR": 4, "XOR": 8, "OR": 13, "AND": 14, - "NOT": 15, + "NOT": 19, "adder": 10, "multiply": 1 }, @@ -129,16 +129,16 @@ "Average Path": 4, "Estimated LUTs": 6903, "Total Node": 7285, - "Wires": 14205, - "Wire Bits": 29752, + "Wires": 14208, + "Wire Bits": 29761, "Public Wires": 3004, "Public Wire Bits": 3004, - "Total Cells": 21032, + "Total Cells": 21047, "MUX": 853, "XOR": 1242, - "OR": 3683, - "AND": 7613, - "NOT": 3757, + "OR": 3689, + "AND": 7645, + "NOT": 3734, "DFFs": [ "$_DFF_P_ 533" ], @@ -268,16 +268,16 @@ "Average Path": 14, "Estimated LUTs": 2800, "Total Node": 1974, - "Wires": 9909, - "Wire Bits": 12964, + "Wires": 9441, + "Wire Bits": 12223, "Public Wires": 777, "Public Wire Bits": 777, - "Total Cells": 10268, + "Total Cells": 9782, "MUX": 4590, "XOR": 412, - "OR": 289, - "AND": 1089, - "NOT": 771, + "OR": 55, + "AND": 819, + "NOT": 789, "DFFs": [ "$_DFF_P_ 2052" ], @@ -308,16 +308,16 @@ "Average Path": 8, "Estimated LUTs": 608, "Total Node": 482, - "Wires": 2115, - "Wire Bits": 2616, + "Wires": 2060, + "Wire Bits": 2525, "Public Wires": 186, "Public Wire Bits": 186, - "Total Cells": 2084, + "Total Cells": 2028, "MUX": 970, "XOR": 72, - "OR": 49, - "AND": 161, - "NOT": 166, + "OR": 25, + "AND": 121, + "NOT": 174, "DFFs": [ "$_DFF_P_ 432" ], @@ -612,16 +612,16 @@ "Average Path": 2, "Estimated LUTs": 244, "Total Node": 217, - "Wires": 1491, - "Wire Bits": 1647, + "Wires": 1472, + "Wire Bits": 1654, "Public Wires": 322, "Public Wire Bits": 322, - "Total Cells": 971, + "Total Cells": 978, "MUX": 386, "XOR": 32, - "OR": 33, - "AND": 91, - "NOT": 99, + "OR": 34, + "AND": 96, + "NOT": 100, "DFFs": [ "$_DFF_P_ 193" ], @@ -652,16 +652,16 @@ "Average Path": 1, "Estimated LUTs": 124, "Total Node": 205, - "Wires": 1129, - "Wire Bits": 1253, + "Wires": 1110, + "Wire Bits": 1260, "Public Wires": 226, "Public Wire Bits": 226, - "Total Cells": 674, + "Total Cells": 681, "MUX": 192, "XOR": 32, - "OR": 32, - "AND": 89, - "NOT": 96, + "OR": 33, + "AND": 94, + "NOT": 97, "DFFs": [ "$_DFF_P_ 96" ], @@ -920,16 +920,16 @@ "Average Path": 5, "Estimated LUTs": 33300, "Total Node": 11361, - "Wires": 42801, - "Wire Bits": 123179, + "Wires": 42612, + "Wire Bits": 123374, "Public Wires": 5370, "Public Wire Bits": 5370, - "Total Cells": 78546, + "Total Cells": 78719, "MUX": 16121, "XOR": 1131, - "OR": 23332, - "AND": 22822, - "NOT": 2897, + "OR": 23305, + "AND": 22846, + "NOT": 3073, "DFFs": [ "$_DFF_P_ 6241" ], @@ -954,27 +954,27 @@ "synthesis_time(ms)": 1.8, "Pi": 2, "Po": 7, - "logic element": 8, - "Adder": 13, + "logic element": 14, + "Adder": 23, "Memory": 2, "generic logic size": 4, - "Longest Path": 10, + "Longest Path": 14, "Average Path": 3, - "Estimated LUTs": 15, - "Total Node": 23, - "Wires": 59, - "Wire Bits": 62, - "Public Wires": 15, - "Public Wire Bits": 15, - "Total Cells": 41, + "Estimated LUTs": 21, + "Total Node": 39, + "Wires": 91, + "Wire Bits": 98, + "Public Wires": 21, + "Public Wire Bits": 21, + "Total Cells": 62, "MUX": 13, - "OR": 1, - "AND": 3, - "NOT": 4, + "OR": 4, + "AND": 4, + "NOT": 11, "DFFs": [ "$_DFF_P_ 5" ], - "adder": 13, + "adder": 23, "dual_port_ram": 2 }, "full/mcml/k6_frac_N10_frac_chain_mem32K_40nm": { @@ -1089,16 +1089,16 @@ "Average Path": 3, "Estimated LUTs": 66209, "Total Node": 44291, - "Wires": 230329, - "Wire Bits": 325245, + "Wires": 230211, + "Wire Bits": 325004, "Public Wires": 16394, "Public Wire Bits": 16394, - "Total Cells": 266389, + "Total Cells": 266221, "MUX": 110574, "XOR": 10218, - "OR": 12284, - "AND": 34984, - "NOT": 21221, + "OR": 12219, + "AND": 34973, + "NOT": 21129, "DFFs": [ "$_DFF_P_ 51597" ], @@ -1255,16 +1255,16 @@ "Average Path": 4, "Estimated LUTs": 2142, "Total Node": 773, - "Wires": 2860, - "Wire Bits": 7412, + "Wires": 2865, + "Wire Bits": 7406, "Public Wires": 285, "Public Wire Bits": 285, - "Total Cells": 6103, + "Total Cells": 6097, "MUX": 1637, "XOR": 135, - "OR": 1576, - "AND": 1655, - "NOT": 222, + "OR": 1575, + "AND": 1651, + "NOT": 221, "DFFs": [ "$_DFF_P_ 419" ], @@ -1301,15 +1301,15 @@ "Average Path": 5, "Estimated LUTs": 724, "Total Node": 291, - "Wires": 1828, - "Wire Bits": 2806, + "Wires": 1834, + "Wire Bits": 2809, "Public Wires": 104, "Public Wire Bits": 104, - "Total Cells": 2493, + "Total Cells": 2501, "MUX": 909, "OR": 347, - "AND": 453, - "NOT": 65, + "AND": 457, + "NOT": 69, "DFFs": [ "$_DFF_P_ 601" ], @@ -1338,16 +1338,16 @@ "Average Path": 4, "Estimated LUTs": 2057, "Total Node": 531, - "Wires": 4564, - "Wire Bits": 6187, + "Wires": 4584, + "Wire Bits": 6216, "Public Wires": 76, "Public Wire Bits": 76, - "Total Cells": 5651, + "Total Cells": 5673, "MUX": 2781, "XOR": 256, - "OR": 616, - "AND": 656, - "NOT": 140, + "OR": 625, + "AND": 666, + "NOT": 143, "DFFs": [ "$_DFF_P_ 893" ], @@ -1449,16 +1449,16 @@ "Average Path": 7, "Estimated LUTs": 9185, "Total Node": 7491, - "Wires": 29636, - "Wire Bits": 32704, + "Wires": 29611, + "Wire Bits": 32542, "Public Wires": 5278, "Public Wire Bits": 5278, - "Total Cells": 28353, + "Total Cells": 28215, "MUX": 7168, "XOR": 254, - "OR": 1705, - "AND": 3239, - "NOT": 439, + "OR": 1686, + "AND": 3138, + "NOT": 421, "DFFs": [ "$_DFF_P_ 11801" ], @@ -1525,8 +1525,8 @@ "Average Path": 7, "Estimated LUTs": 9245, "Total Node": 5562, - "Wires": 36769, - "Wire Bits": 38731, + "Wires": 36772, + "Wire Bits": 38739, "Public Wires": 302, "Public Wire Bits": 302, "Total Cells": 25276, diff --git a/parmys/regression_test/benchmark/task/keywords/and/synthesis_result.json b/parmys/regression_test/benchmark/task/keywords/and/synthesis_result.json index 85d96e13b7f..cf59de4c2ac 100644 --- a/parmys/regression_test/benchmark/task/keywords/and/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/keywords/and/synthesis_result.json @@ -95,21 +95,21 @@ "test_name": "and/replicate_and_int_wide/no_arch", "exit": 1, "errors": [ - "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2710." + "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2686." ] }, "and/replicate_and_ultra_wide/no_arch": { "test_name": "and/replicate_and_ultra_wide/no_arch", "exit": 1, "errors": [ - "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2710." + "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2686." ] }, "and/replicate_and_wide/no_arch": { "test_name": "and/replicate_and_wide/no_arch", "exit": 1, "errors": [ - "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2710." + "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2686." ] }, "DEFAULT": { diff --git a/parmys/regression_test/benchmark/task/keywords/defparam/synthesis_result.json b/parmys/regression_test/benchmark/task/keywords/defparam/synthesis_result.json index 8150a123bd6..f8918834b1f 100644 --- a/parmys/regression_test/benchmark/task/keywords/defparam/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/keywords/defparam/synthesis_result.json @@ -31,9 +31,6 @@ "errors": [ "defparam_string.v:0 Can't find object for defparam `simple_op.msg`!" ], - "warnings": [ - "defparam_string.v:0 System task `$display' outside initial block is unsupported." - ], "max_rss(MiB)": 11.4, "exec_time(ms)": 3.1, "elaboration_time(ms)": 0.4, diff --git a/parmys/regression_test/benchmark/task/keywords/else/synthesis_result.json b/parmys/regression_test/benchmark/task/keywords/else/synthesis_result.json index baa9a7f8f95..3e4591cff63 100644 --- a/parmys/regression_test/benchmark/task/keywords/else/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/keywords/else/synthesis_result.json @@ -19,16 +19,16 @@ "Average Path": 4, "Estimated LUTs": 4, "Total Node": 4, - "Wires": 11, - "Wire Bits": 11, + "Wires": 9, + "Wire Bits": 9, "Public Wires": 4, "Public Wire Bits": 4, - "Total Cells": 9, + "Total Cells": 7, "MUX": 1, "XOR": 2, - "OR": 2, + "OR": 1, "AND": 1, - "NOT": 3 + "NOT": 2 }, "else/if_else/no_arch": { "test_name": "else/if_else/no_arch", diff --git a/parmys/regression_test/benchmark/task/keywords/nand/synthesis_result.json b/parmys/regression_test/benchmark/task/keywords/nand/synthesis_result.json index b12fed44f9f..bf5a84407fe 100644 --- a/parmys/regression_test/benchmark/task/keywords/nand/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/keywords/nand/synthesis_result.json @@ -94,21 +94,21 @@ "test_name": "nand/replicate_nand_int_wide/no_arch", "exit": 1, "errors": [ - "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2710." + "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2686." ] }, "nand/replicate_nand_ultra_wide/no_arch": { "test_name": "nand/replicate_nand_ultra_wide/no_arch", "exit": 1, "errors": [ - "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2710." + "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2686." ] }, "nand/replicate_nand_wide/no_arch": { "test_name": "nand/replicate_nand_wide/no_arch", "exit": 1, "errors": [ - "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2710." + "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2686." ] }, "DEFAULT": { diff --git a/parmys/regression_test/benchmark/task/keywords/nor/synthesis_result.json b/parmys/regression_test/benchmark/task/keywords/nor/synthesis_result.json index 9af752dd39d..7cf8c497b1a 100644 --- a/parmys/regression_test/benchmark/task/keywords/nor/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/keywords/nor/synthesis_result.json @@ -100,21 +100,21 @@ "test_name": "nor/replicate_nor_int_wide/no_arch", "exit": 1, "errors": [ - "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2710." + "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2686." ] }, "nor/replicate_nor_ultra_wide/no_arch": { "test_name": "nor/replicate_nor_ultra_wide/no_arch", "exit": 1, "errors": [ - "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2710." + "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2686." ] }, "nor/replicate_nor_wide/no_arch": { "test_name": "nor/replicate_nor_wide/no_arch", "exit": 1, "errors": [ - "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2710." + "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2686." ] }, "DEFAULT": { diff --git a/parmys/regression_test/benchmark/task/keywords/or/synthesis_result.json b/parmys/regression_test/benchmark/task/keywords/or/synthesis_result.json index ca3e0ea8f1d..1910b31c09b 100644 --- a/parmys/regression_test/benchmark/task/keywords/or/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/keywords/or/synthesis_result.json @@ -95,21 +95,21 @@ "test_name": "or/replicate_or_int_wide/no_arch", "exit": 1, "errors": [ - "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2710." + "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2686." ] }, "or/replicate_or_ultra_wide/no_arch": { "test_name": "or/replicate_or_ultra_wide/no_arch", "exit": 1, "errors": [ - "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2710." + "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2686." ] }, "or/replicate_or_wide/no_arch": { "test_name": "or/replicate_or_wide/no_arch", "exit": 1, "errors": [ - "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2710." + "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2686." ] }, "DEFAULT": { diff --git a/parmys/regression_test/benchmark/task/keywords/xnor/synthesis_result.json b/parmys/regression_test/benchmark/task/keywords/xnor/synthesis_result.json index 9078a7acd3c..e225f1235cd 100644 --- a/parmys/regression_test/benchmark/task/keywords/xnor/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/keywords/xnor/synthesis_result.json @@ -54,21 +54,21 @@ "test_name": "xnor/replicate_xnor_int_wide/no_arch", "exit": 1, "errors": [ - "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2710." + "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2686." ] }, "xnor/replicate_xnor_ultra_wide/no_arch": { "test_name": "xnor/replicate_xnor_ultra_wide/no_arch", "exit": 1, "errors": [ - "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2710." + "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2686." ] }, "xnor/replicate_xnor_wide/no_arch": { "test_name": "xnor/replicate_xnor_wide/no_arch", "exit": 1, "errors": [ - "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2710." + "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2686." ] }, "xnor/xnor_indexed_port/no_arch": { diff --git a/parmys/regression_test/benchmark/task/keywords/xor/synthesis_result.json b/parmys/regression_test/benchmark/task/keywords/xor/synthesis_result.json index 6dc736f1790..759ed77af6f 100644 --- a/parmys/regression_test/benchmark/task/keywords/xor/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/keywords/xor/synthesis_result.json @@ -51,21 +51,21 @@ "test_name": "xor/replicate_xor_int_wide/no_arch", "exit": 1, "errors": [ - "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2710." + "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2686." ] }, "xor/replicate_xor_ultra_wide/no_arch": { "test_name": "xor/replicate_xor_ultra_wide/no_arch", "exit": 1, "errors": [ - "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2710." + "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2686." ] }, "xor/replicate_xor_wide/no_arch": { "test_name": "xor/replicate_xor_wide/no_arch", "exit": 1, "errors": [ - "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2710." + "Assert `new_cell->children.at(0)->type == AST_CELLTYPE' failed in frontends/ast/simplify.cc:2686." ] }, "xor/xor_indexed_port/no_arch": { diff --git a/parmys/regression_test/benchmark/task/koios/koios_large/synthesis_result.json b/parmys/regression_test/benchmark/task/koios/koios_large/synthesis_result.json index cc359ed16de..30109d6b5ed 100644 --- a/parmys/regression_test/benchmark/task/koios/koios_large/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/koios/koios_large/synthesis_result.json @@ -268,14 +268,14 @@ "Average Path": 9, "Estimated LUTs": 326321, "Total Node": 139379, - "Wires": 1308719, - "Wire Bits": 1340906, + "Wires": 1308724, + "Wire Bits": 1340959, "Public Wires": 21834, "Public Wire Bits": 21834, - "Total Cells": 1214752, + "Total Cells": 1214757, "MUX": 725160, "XOR": 5865, - "OR": 17952, + "OR": 17957, "AND": 9599, "NOT": 19486, "DFFs": [ @@ -546,14 +546,14 @@ "Average Path": 9, "Estimated LUTs": 218200, "Total Node": 93537, - "Wires": 876728, - "Wire Bits": 898464, + "Wires": 876747, + "Wire Bits": 898561, "Public Wires": 15068, "Public Wire Bits": 15068, - "Total Cells": 813266, + "Total Cells": 813289, "MUX": 484768, "XOR": 3910, - "OR": 12025, + "OR": 12048, "AND": 6499, "NOT": 13099, "DFFs": [ @@ -809,14 +809,14 @@ "Average Path": 8, "Estimated LUTs": 110080, "Total Node": 47700, - "Wires": 444790, - "Wire Bits": 456177, + "Wires": 444781, + "Wire Bits": 456159, "Public Wires": 8302, "Public Wire Bits": 8302, - "Total Cells": 411800, + "Total Cells": 411798, "MUX": 244373, "XOR": 1955, - "OR": 6114, + "OR": 6112, "AND": 3393, "NOT": 6705, "DFFs": [ @@ -1646,16 +1646,16 @@ "Average Path": 4, "Estimated LUTs": 122343, "Total Node": 73492, - "Wires": 446668, - "Wire Bits": 487013, + "Wires": 447124, + "Wire Bits": 486389, "Public Wires": 27891, "Public Wire Bits": 27891, - "Total Cells": 393743, + "Total Cells": 393167, "MUX": 116924, "XOR": 9576, - "OR": 2475, - "AND": 17088, - "NOT": 7004, + "OR": 2379, + "AND": 16704, + "NOT": 6908, "DFFs": [ "$_DFF_P_ 185499" ], @@ -2576,17 +2576,17 @@ "Average Path": 3, "Estimated LUTs": 115821, "Total Node": 18211, - "Wires": 37253, - "Wire Bits": 338917, + "Wires": 37272, + "Wire Bits": 338972, "Public Wires": 261, "Public Wire Bits": 261, - "Total Cells": 69318, - "MUX": 9186, - "OR": 37033, - "AND": 2134, - "NOT": 9610, + "Total Cells": 69334, + "MUX": 9185, + "OR": 37041, + "AND": 2130, + "NOT": 9624, "DFFs": [ - "$_DFF_P_ 4685" + "$_DFF_P_ 4684" ], "adder": 6668, "multiply": 2 @@ -2647,16 +2647,16 @@ "Average Path": 2, "Estimated LUTs": 55978, "Total Node": 58534, - "Wires": 247022, - "Wire Bits": 259382, + "Wires": 246998, + "Wire Bits": 259272, "Public Wires": 14773, "Public Wire Bits": 14773, - "Total Cells": 178047, + "Total Cells": 178011, "MUX": 46164, "XOR": 659, - "OR": 3292, - "AND": 1708, - "NOT": 23682, + "OR": 3275, + "AND": 1684, + "NOT": 23687, "DFFs": [ "$_DFF_P_ 53526" ], @@ -5958,19 +5958,20 @@ "Average Path": 8, "Estimated LUTs": 166353, "Total Node": 71655, - "Wires": 346791, - "Wire Bits": 399765, + "Wires": 347478, + "Wire Bits": 403809, "Public Wires": 33916, "Public Wire Bits": 33916, - "Total Cells": 332959, - "MUX": 152624, - "OR": 18997, - "AND": 15580, - "NOT": 14025, + "Total Cells": 336233, + "MUX": 155586, + "XOR": 9, + "OR": 18941, + "AND": 15592, + "NOT": 14221, "DFFs": [ - "$_DFF_P_ 109863" + "$_DFF_P_ 109951" ], - "adder": 9445, + "adder": 9508, "addition_fp_16": 320, "dual_port_ram": 11968, "mult_fp_16": 135, @@ -8274,19 +8275,20 @@ "Average Path": 9, "Estimated LUTs": 53915, "Total Node": 31324, - "Wires": 127104, - "Wire Bits": 150303, + "Wires": 127172, + "Wire Bits": 150719, "Public Wires": 17209, "Public Wire Bits": 17209, - "Total Cells": 122969, - "MUX": 49028, - "OR": 10849, - "AND": 8413, - "NOT": 6457, + "Total Cells": 123344, + "MUX": 49357, + "XOR": 2, + "OR": 10838, + "AND": 8417, + "NOT": 6500, "DFFs": [ - "$_DFF_P_ 35993" + "$_DFF_P_ 35994" ], - "adder": 6839, + "adder": 6846, "addition_fp_16": 76, "dual_port_ram": 5280, "mult_fp_16": 32, @@ -19350,16 +19352,16 @@ "Average Path": 3, "Estimated LUTs": 87494, "Total Node": 10996, - "Wires": 219375, - "Wire Bits": 258974, + "Wires": 219313, + "Wire Bits": 258724, "Public Wires": 154089, "Public Wire Bits": 154089, - "Total Cells": 92412, + "Total Cells": 92228, "MUX": 37270, "XOR": 711, - "OR": 13248, - "AND": 11840, - "NOT": 1936, + "OR": 13215, + "AND": 11812, + "NOT": 1813, "DFFs": [ "$_DFF_P_ 22414" ], diff --git a/parmys/regression_test/benchmark/task/koios/koios_large_no_hb/synthesis_result.json b/parmys/regression_test/benchmark/task/koios/koios_large_no_hb/synthesis_result.json index 703581dfe12..45d8b16f19c 100644 --- a/parmys/regression_test/benchmark/task/koios/koios_large_no_hb/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/koios/koios_large_no_hb/synthesis_result.json @@ -268,14 +268,14 @@ "Average Path": 9, "Estimated LUTs": 326321, "Total Node": 139379, - "Wires": 1308712, - "Wire Bits": 1340874, + "Wires": 1308733, + "Wire Bits": 1341001, "Public Wires": 21834, "Public Wire Bits": 21834, - "Total Cells": 1214745, + "Total Cells": 1214761, "MUX": 725160, "XOR": 5865, - "OR": 17945, + "OR": 17961, "AND": 9599, "NOT": 19486, "DFFs": [ @@ -546,8 +546,8 @@ "Average Path": 9, "Estimated LUTs": 218200, "Total Node": 93537, - "Wires": 876733, - "Wire Bits": 898473, + "Wires": 876738, + "Wire Bits": 898530, "Public Wires": 15068, "Public Wire Bits": 15068, "Total Cells": 813277, @@ -809,14 +809,14 @@ "Average Path": 8, "Estimated LUTs": 110080, "Total Node": 47700, - "Wires": 444791, - "Wire Bits": 456186, + "Wires": 444779, + "Wire Bits": 456146, "Public Wires": 8302, "Public Wire Bits": 8302, - "Total Cells": 411795, + "Total Cells": 411797, "MUX": 244373, "XOR": 1955, - "OR": 6109, + "OR": 6111, "AND": 3393, "NOT": 6705, "DFFs": [ @@ -1638,16 +1638,16 @@ "Average Path": 4, "Estimated LUTs": 119751, "Total Node": 86020, - "Wires": 509160, - "Wire Bits": 549473, + "Wires": 509618, + "Wire Bits": 548881, "Public Wires": 6579, "Public Wire Bits": 6579, - "Total Cells": 435931, + "Total Cells": 435355, "MUX": 127292, "XOR": 9576, - "OR": 2475, - "AND": 17084, - "NOT": 7004, + "OR": 2379, + "AND": 16700, + "NOT": 6908, "DFFs": [ "$_DFF_P_ 206235" ], @@ -2382,15 +2382,15 @@ "Average Path": 3, "Estimated LUTs": 419446, "Total Node": 178966, - "Wires": 711753, - "Wire Bits": 1193861, + "Wires": 699745, + "Wire Bits": 1191812, "Public Wires": 25351, "Public Wire Bits": 25351, - "Total Cells": 1013781, + "Total Cells": 1008595, "MUX": 356305, "XOR": 17603, - "OR": 185697, - "AND": 192462, + "OR": 181710, + "AND": 191263, "NOT": 59360, "DFFs": [ "$_DFF_P_ 137440" @@ -2618,17 +2618,17 @@ "Average Path": 3, "Estimated LUTs": 115821, "Total Node": 18211, - "Wires": 37253, - "Wire Bits": 338917, + "Wires": 37272, + "Wire Bits": 338972, "Public Wires": 261, "Public Wire Bits": 261, - "Total Cells": 69318, - "MUX": 9186, - "OR": 37033, - "AND": 2134, - "NOT": 9610, + "Total Cells": 69334, + "MUX": 9185, + "OR": 37041, + "AND": 2130, + "NOT": 9624, "DFFs": [ - "$_DFF_P_ 4685" + "$_DFF_P_ 4684" ], "adder": 6668, "multiply": 2 @@ -2689,16 +2689,16 @@ "Average Path": 2, "Estimated LUTs": 55978, "Total Node": 58534, - "Wires": 247010, - "Wire Bits": 259331, + "Wires": 246987, + "Wire Bits": 259225, "Public Wires": 14773, "Public Wire Bits": 14773, - "Total Cells": 178042, + "Total Cells": 178006, "MUX": 46161, "XOR": 659, - "OR": 3294, - "AND": 1708, - "NOT": 23682, + "OR": 3277, + "AND": 1684, + "NOT": 23687, "DFFs": [ "$_DFF_P_ 53524" ], @@ -6030,20 +6030,20 @@ "Average Path": 8, "Estimated LUTs": 258693, "Total Node": 130874, - "Wires": 489065, - "Wire Bits": 636586, + "Wires": 489095, + "Wire Bits": 643119, "Public Wires": 32103, "Public Wire Bits": 32103, - "Total Cells": 514205, - "MUX": 203502, - "XOR": 8563, - "OR": 54872, - "AND": 58140, - "NOT": 36873, + "Total Cells": 520044, + "MUX": 206464, + "XOR": 8572, + "OR": 55141, + "AND": 60072, + "NOT": 37389, "DFFs": [ - "$_DFF_P_ 109479" + "$_DFF_P_ 109567" ], - "adder": 30683, + "adder": 30746, "dual_port_ram": 11968, "multiply": 125 }, @@ -8375,20 +8375,20 @@ "Average Path": 9, "Estimated LUTs": 75983, "Total Node": 45448, - "Wires": 161358, - "Wire Bits": 206940, + "Wires": 161282, + "Wire Bits": 207989, "Public Wires": 16781, "Public Wire Bits": 16781, - "Total Cells": 166306, - "MUX": 61268, - "XOR": 2032, - "OR": 19374, - "AND": 18517, - "NOT": 11881, + "Total Cells": 167291, + "MUX": 61597, + "XOR": 2034, + "OR": 19441, + "AND": 18977, + "NOT": 12000, "DFFs": [ - "$_DFF_P_ 35993" + "$_DFF_P_ 35994" ], - "adder": 11927, + "adder": 11934, "dual_port_ram": 5280, "multiply": 34 }, @@ -19112,16 +19112,16 @@ "Average Path": 3, "Estimated LUTs": 86726, "Total Node": 35394, - "Wires": 293263, - "Wire Bits": 337569, + "Wires": 293198, + "Wire Bits": 337308, "Public Wires": 3561, "Public Wire Bits": 3561, - "Total Cells": 256756, + "Total Cells": 256574, "MUX": 132308, "XOR": 711, - "OR": 22483, - "AND": 13885, - "NOT": 1949, + "OR": 22452, + "AND": 13857, + "NOT": 1826, "DFFs": [ "$_DFF_P_ 71499" ], diff --git a/parmys/regression_test/benchmark/task/koios/koios_medium/synthesis_result.json b/parmys/regression_test/benchmark/task/koios/koios_medium/synthesis_result.json index 1edb52d82ef..4ff3586159b 100644 --- a/parmys/regression_test/benchmark/task/koios/koios_medium/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/koios/koios_medium/synthesis_result.json @@ -94,16 +94,16 @@ "Average Path": 3, "Estimated LUTs": 28425, "Total Node": 16656, - "Wires": 58035, - "Wire Bits": 82397, + "Wires": 58023, + "Wire Bits": 81442, "Public Wires": 8453, "Public Wire Bits": 8453, - "Total Cells": 42029, + "Total Cells": 42044, "MUX": 10563, "XOR": 326, - "OR": 3612, - "AND": 415, - "NOT": 6477, + "OR": 3618, + "AND": 418, + "NOT": 6483, "DFFs": [ "$_DFF_P_ 8096" ], @@ -357,15 +357,16 @@ "Average Path": 4, "Estimated LUTs": 20367, "Total Node": 3582, - "Wires": 20528, - "Wire Bits": 30830, + "Wires": 25202, + "Wire Bits": 56222, "Public Wires": 5264, "Public Wire Bits": 5264, - "Total Cells": 18753, - "MUX": 7815, - "OR": 2064, - "AND": 3753, - "NOT": 783, + "Total Cells": 29499, + "MUX": 15873, + "XOR": 6, + "OR": 3216, + "AND": 5100, + "NOT": 966, "DFFs": [ "$_DFF_P_ 3345" ], @@ -565,16 +566,16 @@ "Average Path": 5, "Estimated LUTs": 15571, "Total Node": 4796, - "Wires": 45933, - "Wire Bits": 49670, + "Wires": 45912, + "Wire Bits": 49616, "Public Wires": 5161, "Public Wire Bits": 5161, - "Total Cells": 42907, + "Total Cells": 42880, "MUX": 22203, "XOR": 15, - "OR": 2991, - "AND": 2641, - "NOT": 255, + "OR": 2976, + "AND": 2632, + "NOT": 252, "DFFs": [ "$_DFF_P_ 11798" ], @@ -1019,16 +1020,16 @@ "Average Path": 4, "Estimated LUTs": 48603, "Total Node": 34434, - "Wires": 187072, - "Wire Bits": 207294, + "Wires": 187300, + "Wire Bits": 206982, "Public Wires": 7467, "Public Wire Bits": 7467, - "Total Cells": 166749, + "Total Cells": 166461, "MUX": 46810, "XOR": 4788, - "OR": 1257, - "AND": 8531, - "NOT": 3474, + "OR": 1209, + "AND": 8339, + "NOT": 3426, "DFFs": [ "$_DFF_P_ 75245" ], @@ -1126,16 +1127,16 @@ "Average Path": 3, "Estimated LUTs": 11429, "Total Node": 5611, - "Wires": 23477, - "Wire Bits": 36834, + "Wires": 23476, + "Wire Bits": 36833, "Public Wires": 2102, "Public Wire Bits": 2102, - "Total Cells": 31480, + "Total Cells": 31479, "MUX": 11207, "XOR": 2213, "OR": 2367, "AND": 6380, - "NOT": 2354, + "NOT": 2353, "DFFs": [ "$_DFF_P_ 2383" ], @@ -1221,16 +1222,16 @@ "Average Path": 4, "Estimated LUTs": 13223, "Total Node": 5602, - "Wires": 28995, - "Wire Bits": 50685, + "Wires": 28845, + "Wire Bits": 50523, "Public Wires": 3999, "Public Wire Bits": 3999, - "Total Cells": 42441, + "Total Cells": 42292, "MUX": 11266, "XOR": 3492, - "OR": 5745, - "AND": 8421, - "NOT": 3193, + "OR": 5673, + "AND": 8416, + "NOT": 3121, "DFFs": [ "$_DFF_P_ 6976" ], @@ -1322,16 +1323,16 @@ "Average Path": 6, "Estimated LUTs": 19996, "Total Node": 2823, - "Wires": 16402, - "Wire Bits": 66252, + "Wires": 16436, + "Wire Bits": 66380, "Public Wires": 1608, "Public Wire Bits": 1608, - "Total Cells": 25190, + "Total Cells": 25311, "MUX": 8606, "XOR": 322, - "OR": 10476, - "AND": 774, - "NOT": 1918, + "OR": 10495, + "AND": 843, + "NOT": 1951, "DFFs": [ "$_DFF_P_ 2525" ], @@ -1419,8 +1420,8 @@ "Average Path": 4, "Estimated LUTs": 6918, "Total Node": 7979, - "Wires": 25580, - "Wire Bits": 33143, + "Wires": 25579, + "Wire Bits": 33142, "Public Wires": 4755, "Public Wire Bits": 4755, "Total Cells": 21954, @@ -5184,16 +5185,16 @@ "Average Path": 3, "Estimated LUTs": 26601, "Total Node": 5142, - "Wires": 65256, - "Wire Bits": 80227, + "Wires": 65236, + "Wire Bits": 80097, "Public Wires": 39529, "Public Wire Bits": 39529, - "Total Cells": 33500, + "Total Cells": 33387, "MUX": 13126, "XOR": 408, - "OR": 4911, - "AND": 4150, - "NOT": 1080, + "OR": 4888, + "AND": 4147, + "NOT": 993, "DFFs": [ "$_DFF_P_ 7390" ], diff --git a/parmys/regression_test/benchmark/task/koios/koios_medium_no_hb/synthesis_result.json b/parmys/regression_test/benchmark/task/koios/koios_medium_no_hb/synthesis_result.json index 693e61aa495..9a69f2195d6 100644 --- a/parmys/regression_test/benchmark/task/koios/koios_medium_no_hb/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/koios/koios_medium_no_hb/synthesis_result.json @@ -169,16 +169,16 @@ "Average Path": 3, "Estimated LUTs": 28720, "Total Node": 16803, - "Wires": 57995, - "Wire Bits": 80304, + "Wires": 58024, + "Wire Bits": 81592, "Public Wires": 8454, "Public Wire Bits": 8454, - "Total Cells": 42029, + "Total Cells": 42044, "MUX": 10563, "XOR": 326, - "OR": 3612, - "AND": 415, - "NOT": 6477, + "OR": 3618, + "AND": 418, + "NOT": 6483, "DFFs": [ "$_DFF_P_ 8096" ], @@ -463,16 +463,16 @@ "Average Path": 4, "Estimated LUTs": 22752, "Total Node": 5094, - "Wires": 23999, - "Wire Bits": 37480, + "Wires": 28654, + "Wire Bits": 62943, "Public Wires": 5228, "Public Wire Bits": 5228, - "Total Cells": 23924, - "MUX": 9276, - "XOR": 246, - "OR": 3080, - "AND": 4959, - "NOT": 1431, + "Total Cells": 34741, + "MUX": 17334, + "XOR": 252, + "OR": 4240, + "AND": 6360, + "NOT": 1623, "DFFs": [ "$_DFF_P_ 3345" ], @@ -670,16 +670,16 @@ "Average Path": 5, "Estimated LUTs": 16387, "Total Node": 6500, - "Wires": 57057, - "Wire Bits": 60794, + "Wires": 57036, + "Wire Bits": 60740, "Public Wires": 2053, "Public Wire Bits": 2053, - "Total Cells": 51018, + "Total Cells": 50991, "MUX": 26043, "XOR": 15, - "OR": 2990, - "AND": 2641, - "NOT": 255, + "OR": 2975, + "AND": 2632, + "NOT": 252, "DFFs": [ "$_DFF_P_ 14486" ], @@ -1120,16 +1120,16 @@ "Average Path": 4, "Estimated LUTs": 47955, "Total Node": 36666, - "Wires": 203488, - "Wire Bits": 223710, + "Wires": 203716, + "Wire Bits": 223398, "Public Wires": 2139, "Public Wire Bits": 2139, - "Total Cells": 178989, + "Total Cells": 178701, "MUX": 51994, "XOR": 4788, - "OR": 1257, - "AND": 8531, - "NOT": 3474, + "OR": 1209, + "AND": 8339, + "NOT": 3426, "DFFs": [ "$_DFF_P_ 80429" ], @@ -1227,16 +1227,16 @@ "Average Path": 5, "Estimated LUTs": 13699, "Total Node": 7769, - "Wires": 29682, - "Wire Bits": 41641, + "Wires": 29635, + "Wire Bits": 41808, "Public Wires": 3147, "Public Wire Bits": 3147, - "Total Cells": 33328, + "Total Cells": 33495, "MUX": 8974, "XOR": 624, - "OR": 4192, - "AND": 5500, - "NOT": 1685, + "OR": 4205, + "AND": 5632, + "NOT": 1707, "DFFs": [ "$_DFF_P_ 8160" ], @@ -1272,16 +1272,16 @@ "Average Path": 3, "Estimated LUTs": 11429, "Total Node": 5611, - "Wires": 23477, - "Wire Bits": 36834, + "Wires": 23476, + "Wire Bits": 36833, "Public Wires": 2102, "Public Wire Bits": 2102, - "Total Cells": 31480, + "Total Cells": 31479, "MUX": 11207, "XOR": 2213, "OR": 2367, "AND": 6380, - "NOT": 2354, + "NOT": 2353, "DFFs": [ "$_DFF_P_ 2383" ], @@ -1335,16 +1335,16 @@ "Average Path": 4, "Estimated LUTs": 13223, "Total Node": 5602, - "Wires": 28997, - "Wire Bits": 50646, + "Wires": 28852, + "Wire Bits": 50506, "Public Wires": 3999, "Public Wire Bits": 3999, - "Total Cells": 42389, + "Total Cells": 42243, "MUX": 11266, "XOR": 3492, - "OR": 5692, - "AND": 8422, - "NOT": 3193, + "OR": 5621, + "AND": 8419, + "NOT": 3121, "DFFs": [ "$_DFF_P_ 6976" ], @@ -1467,16 +1467,16 @@ "Average Path": 8, "Estimated LUTs": 37160, "Total Node": 11295, - "Wires": 46283, - "Wire Bits": 117301, + "Wires": 46219, + "Wire Bits": 118261, "Public Wires": 1513, "Public Wire Bits": 1513, - "Total Cells": 70144, + "Total Cells": 70962, "MUX": 22023, "XOR": 1594, - "OR": 17522, - "AND": 10524, - "NOT": 5134, + "OR": 17567, + "AND": 10886, + "NOT": 5545, "DFFs": [ "$_DFF_P_ 9256" ], @@ -1563,15 +1563,15 @@ "Average Path": 4, "Estimated LUTs": 6918, "Total Node": 7979, - "Wires": 25451, - "Wire Bits": 33014, + "Wires": 25450, + "Wire Bits": 33013, "Public Wires": 4691, "Public Wire Bits": 4691, - "Total Cells": 21826, + "Total Cells": 21825, "MUX": 8305, "XOR": 1413, "OR": 1380, - "AND": 1132, + "AND": 1131, "NOT": 848, "DFFs": [ "$_DFF_P_ 3977" @@ -2171,14 +2171,14 @@ "Average Path": 3, "Estimated LUTs": 22982, "Total Node": 9499, - "Wires": 75188, - "Wire Bits": 81419, + "Wires": 75193, + "Wire Bits": 81429, "Public Wires": 1314, "Public Wire Bits": 1314, - "Total Cells": 57385, + "Total Cells": 57394, "MUX": 23987, "XOR": 3, - "OR": 3466, + "OR": 3475, "AND": 1527, "NOT": 730, "DFFs": [ @@ -4987,16 +4987,16 @@ "Average Path": 3, "Estimated LUTs": 26483, "Total Node": 11204, - "Wires": 83537, - "Wire Bits": 99795, + "Wires": 83520, + "Wire Bits": 99654, "Public Wires": 1897, "Public Wire Bits": 1897, - "Total Cells": 74497, + "Total Cells": 74399, "MUX": 36836, "XOR": 408, - "OR": 7226, - "AND": 4696, - "NOT": 1093, + "OR": 7218, + "AND": 4693, + "NOT": 1006, "DFFs": [ "$_DFF_P_ 19643" ], diff --git a/parmys/regression_test/benchmark/task/koios/koios_proxy/synthesis_result.json b/parmys/regression_test/benchmark/task/koios/koios_proxy/synthesis_result.json index fde6163bf12..c3fe6b2563f 100644 --- a/parmys/regression_test/benchmark/task/koios/koios_proxy/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/koios/koios_proxy/synthesis_result.json @@ -360,16 +360,16 @@ "Average Path": 7, "Estimated LUTs": 243737, "Total Node": 97700, - "Wires": 457731, - "Wire Bits": 599949, + "Wires": 457777, + "Wire Bits": 600025, "Public Wires": 85601, "Public Wire Bits": 85601, - "Total Cells": 379942, + "Total Cells": 380273, "MUX": 130475, "XOR": 10865, - "OR": 53905, - "AND": 23402, - "NOT": 20994, + "OR": 54278, + "AND": 23338, + "NOT": 21016, "DFFs": [ "$_DFF_P_ 103965" ], @@ -524,16 +524,16 @@ "Average Path": 5, "Estimated LUTs": 1217802, "Total Node": 664917, - "Wires": 1306225, - "Wire Bits": 1765042, + "Wires": 1305796, + "Wire Bits": 1764125, "Public Wires": 21374, "Public Wire Bits": 21374, - "Total Cells": 1582560, + "Total Cells": 1582043, "MUX": 674460, "XOR": 11355, - "OR": 372660, - "AND": 133287, - "NOT": 170213, + "OR": 372243, + "AND": 133165, + "NOT": 170235, "DFFs": [ "$_DFF_P_ 182478" ], @@ -771,16 +771,16 @@ "Average Path": 7, "Estimated LUTs": 220799, "Total Node": 118082, - "Wires": 409089, - "Wire Bits": 518066, + "Wires": 406966, + "Wire Bits": 520594, "Public Wires": 15922, "Public Wire Bits": 15922, - "Total Cells": 447939, + "Total Cells": 449970, "MUX": 166506, "XOR": 15487, - "OR": 47217, - "AND": 69505, - "NOT": 27338, + "OR": 47344, + "AND": 71232, + "NOT": 27515, "DFFs": [ "$_DFF_P_ 85355" ], @@ -1052,18 +1052,18 @@ "Average Path": 7, "Estimated LUTs": 978864, "Total Node": 470749, - "Wires": 1041547, - "Wire Bits": 1477905, + "Wires": 1043019, + "Wire Bits": 1480869, "Public Wires": 48488, "Public Wire Bits": 48488, - "Total Cells": 1221220, - "MUX": 520433, + "Total Cells": 1223366, + "MUX": 521321, "XOR": 866, - "OR": 290609, - "AND": 105879, - "NOT": 133164, + "OR": 291278, + "AND": 105886, + "NOT": 133475, "DFFs": [ - "$_DFF_P_ 146385" + "$_DFF_P_ 146656" ], "adder": 14100, "dual_port_ram": 8440, @@ -1192,16 +1192,16 @@ "Average Path": 6, "Estimated LUTs": 73057, "Total Node": 30337, - "Wires": 193579, - "Wire Bits": 230094, + "Wires": 193438, + "Wire Bits": 229852, "Public Wires": 3526, "Public Wire Bits": 3526, - "Total Cells": 170045, + "Total Cells": 169643, "MUX": 78058, "XOR": 1622, - "OR": 15513, - "AND": 6996, - "NOT": 5017, + "OR": 15233, + "AND": 6981, + "NOT": 4910, "DFFs": [ "$_DFF_P_ 48086" ], @@ -1559,14 +1559,14 @@ "Average Path": 3, "Estimated LUTs": 317664, "Total Node": 182209, - "Wires": 423561, - "Wire Bits": 524360, + "Wires": 423573, + "Wire Bits": 524372, "Public Wires": 26885, "Public Wire Bits": 26885, - "Total Cells": 457419, + "Total Cells": 457440, "MUX": 184125, "XOR": 6124, - "OR": 99475, + "OR": 99496, "AND": 30644, "NOT": 43331, "DFFs": [ @@ -1705,16 +1705,16 @@ "Average Path": 9, "Estimated LUTs": 166920, "Total Node": 71396, - "Wires": 345493, - "Wire Bits": 454483, + "Wires": 345479, + "Wire Bits": 454521, "Public Wires": 13335, "Public Wire Bits": 13335, - "Total Cells": 325382, + "Total Cells": 325197, "MUX": 128624, "XOR": 5061, - "OR": 42993, - "AND": 21797, - "NOT": 16573, + "OR": 42978, + "AND": 21783, + "NOT": 16417, "DFFs": [ "$_DFF_P_ 84542" ], @@ -1940,16 +1940,16 @@ "Average Path": 8, "Estimated LUTs": 204194, "Total Node": 101714, - "Wires": 290978, - "Wire Bits": 368984, + "Wires": 290853, + "Wire Bits": 368525, "Public Wires": 15580, "Public Wire Bits": 15580, - "Total Cells": 306137, + "Total Cells": 305965, "MUX": 134400, "XOR": 487, - "OR": 58465, - "AND": 22224, - "NOT": 27334, + "OR": 58455, + "AND": 22211, + "NOT": 27185, "DFFs": [ "$_DFF_P_ 50694" ], diff --git a/parmys/regression_test/benchmark/task/koios/koios_proxy_no_hb/synthesis_result.json b/parmys/regression_test/benchmark/task/koios/koios_proxy_no_hb/synthesis_result.json index faa618902ce..958d536de84 100644 --- a/parmys/regression_test/benchmark/task/koios/koios_proxy_no_hb/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/koios/koios_proxy_no_hb/synthesis_result.json @@ -348,10 +348,10 @@ "Ignoring module tanh because it contains processes (run 'proc' command first).", "Ignoring module xor_module because it contains processes (run 'proc' command first)." ], - "elaboration_time(ms)": 433.6, - "optimization_time(ms)": 1594.8, - "techmap_time(ms)": 1885.6, - "synthesis_time(ms)": 3914.2, + "elaboration_time(ms)": 305, + "optimization_time(ms)": 1212.8, + "techmap_time(ms)": 881.9, + "synthesis_time(ms)": 2399.8, "Pi": 938, "Po": 175, "logic element": 67048, @@ -363,16 +363,16 @@ "Average Path": 10, "Estimated LUTs": 269751, "Total Node": 155595, - "Wires": 785203, - "Wire Bits": 923436, + "Wires": 785194, + "Wire Bits": 923217, "Public Wires": 25513, "Public Wire Bits": 25513, - "Total Cells": 627393, + "Total Cells": 627342, "MUX": 229921, "XOR": 10865, - "OR": 50235, - "AND": 23398, - "NOT": 20964, + "OR": 50226, + "AND": 23334, + "NOT": 20986, "DFFs": [ "$_DFF_P_ 203463" ], @@ -511,10 +511,10 @@ "Ignoring module tensor_block because it contains processes (run 'proc' command first).", "Ignoring module xor_module because it contains processes (run 'proc' command first)." ], - "elaboration_time(ms)": 1621.3, - "optimization_time(ms)": 1123.3, - "techmap_time(ms)": 5526.4, - "synthesis_time(ms)": 8271.2, + "elaboration_time(ms)": 786.7, + "optimization_time(ms)": 442.6, + "techmap_time(ms)": 1739, + "synthesis_time(ms)": 2968.4, "Pi": 318, "Po": 256, "logic element": 626810, @@ -526,16 +526,16 @@ "Average Path": 5, "Estimated LUTs": 1217802, "Total Node": 664917, - "Wires": 1306480, - "Wire Bits": 1765361, + "Wires": 1306054, + "Wire Bits": 1764428, "Public Wires": 21374, "Public Wire Bits": 21374, - "Total Cells": 1582848, + "Total Cells": 1582348, "MUX": 674460, "XOR": 11355, - "OR": 372949, - "AND": 133286, - "NOT": 170213, + "OR": 372549, + "AND": 133164, + "NOT": 170235, "DFFs": [ "$_DFF_P_ 182478" ], @@ -798,10 +798,10 @@ "Ignoring module tensor_block_bf16 because it contains processes (run 'proc' command first).", "Ignoring module xor_module because it contains processes (run 'proc' command first)." ], - "elaboration_time(ms)": 431.2, - "optimization_time(ms)": 1447.2, - "techmap_time(ms)": 1766.9, - "synthesis_time(ms)": 3645.5, + "elaboration_time(ms)": 306.5, + "optimization_time(ms)": 1022, + "techmap_time(ms)": 769.8, + "synthesis_time(ms)": 2098.5, "Pi": 732, "Po": 304, "logic element": 130765, @@ -813,18 +813,18 @@ "Average Path": 6, "Estimated LUTs": 378985, "Total Node": 194726, - "Wires": 681769, - "Wire Bits": 913307, + "Wires": 674754, + "Wire Bits": 914754, "Public Wires": 22802, "Public Wire Bits": 22802, - "Total Cells": 774411, - "MUX": 290760, + "Total Cells": 774284, + "MUX": 290761, "XOR": 22527, - "OR": 96796, - "AND": 127745, - "NOT": 48460, + "OR": 95236, + "AND": 128999, + "NOT": 48637, "DFFs": [ - "$_DFF_P_ 126472" + "$_DFF_P_ 126473" ], "adder": 56986, "multiply": 265, @@ -1107,37 +1107,37 @@ "Ignoring module sigmoid because it contains processes (run 'proc' command first).", "Ignoring module tanh because it contains processes (run 'proc' command first)." ], - "elaboration_time(ms)": 2003.9, - "optimization_time(ms)": 12127.4, + "elaboration_time(ms)": 1167.7, + "optimization_time(ms)": 7367.2, "techmap_time(ms)": 6923.6, "synthesis_time(ms)": 21055.1, "Pi": 546, - "Po": 1846, - "logic element": 676917, - "Adder": 139378, - "Multiplier": 1792, - "Memory": 8440, - "generic logic size": 4, - "Longest Path": 1593, - "Average Path": 7, - "Estimated LUTs": 1739873, - "Total Node": 826527, - "Wires": 2262908, - "Wire Bits": 3140448, - "Public Wires": 56427, - "Public Wire Bits": 56427, - "Total Cells": 2632946, - "MUX": 1053815, - "XOR": 45940, - "OR": 486320, - "AND": 400142, - "NOT": 224448, - "DFFs": [ - "$_DFF_P_ 276197" - ], - "adder": 135852, - "dual_port_ram": 8440, - "multiply": 1792 + "Po": 1846, + "logic element": 676917, + "Adder": 139378, + "Multiplier": 1792, + "Memory": 8440, + "generic logic size": 4, + "Longest Path": 1593, + "Average Path": 7, + "Estimated LUTs": 1739873, + "Total Node": 826527, + "Wires": 2251428, + "Wire Bits": 3148026, + "Public Wires": 56427, + "Public Wire Bits": 56427, + "Total Cells": 2639757, + "MUX": 1053787, + "XOR": 45940, + "OR": 487146, + "AND": 405322, + "NOT": 225295, + "DFFs": [ + "$_DFF_P_ 276183" + ], + "adder": 135852, + "dual_port_ram": 8440, + "multiply": 1792 }, "koios_proxy_no_hb/proxy.5/k6FracN10LB_mem20K_complexDSP_customSB_22nm": { "test_name": "koios_proxy_no_hb/proxy.5/k6FracN10LB_mem20K_complexDSP_customSB_22nm", @@ -1246,10 +1246,10 @@ "Ignoring module systolic_data_setup_systolic_8x8 because it contains processes (run 'proc' command first).", "Ignoring module xor_module because it contains processes (run 'proc' command first)." ], - "elaboration_time(ms)": 85.1, - "optimization_time(ms)": 133.6, - "techmap_time(ms)": 357.2, - "synthesis_time(ms)": 576, + "elaboration_time(ms)": 75.5, + "optimization_time(ms)": 125.5, + "techmap_time(ms)": 242, + "synthesis_time(ms)": 443.1, "Pi": 465, "Po": 320, "logic element": 15584, @@ -1261,16 +1261,16 @@ "Average Path": 6, "Estimated LUTs": 73057, "Total Node": 30337, - "Wires": 193617, - "Wire Bits": 230171, + "Wires": 193426, + "Wire Bits": 229898, "Public Wires": 3526, "Public Wire Bits": 3526, - "Total Cells": 170104, + "Total Cells": 169677, "MUX": 78058, "XOR": 1622, - "OR": 15572, - "AND": 6996, - "NOT": 5017, + "OR": 15266, + "AND": 6982, + "NOT": 4910, "DFFs": [ "$_DFF_P_ 48086" ], @@ -1618,10 +1618,10 @@ "Ignoring module tensor_block because it contains processes (run 'proc' command first).", "Ignoring module xor_module because it contains processes (run 'proc' command first)." ], - "elaboration_time(ms)": 377.3, - "optimization_time(ms)": 586.3, - "techmap_time(ms)": 1526.1, - "synthesis_time(ms)": 2489.9, + "elaboration_time(ms)": 546.3, + "optimization_time(ms)": 1288.8, + "techmap_time(ms)": 1128, + "synthesis_time(ms)": 2963.2, "Pi": 605, "Po": 420, "logic element": 161045, @@ -1633,14 +1633,14 @@ "Average Path": 3, "Estimated LUTs": 321954, "Total Node": 191267, - "Wires": 477724, - "Wire Bits": 574751, + "Wires": 477651, + "Wire Bits": 574678, "Public Wires": 17265, "Public Wire Bits": 17265, - "Total Cells": 496751, + "Total Cells": 496669, "MUX": 203749, "XOR": 6124, - "OR": 91414, + "OR": 91332, "AND": 30644, "NOT": 43331, "DFFs": [ @@ -1875,10 +1875,10 @@ "Ignoring module systolic_data_setup_systolic_4x4_fp because it contains processes (run 'proc' command first).", "Ignoring module xor_module because it contains processes (run 'proc' command first)." ], - "elaboration_time(ms)": 373.9, - "optimization_time(ms)": 1011.4, - "techmap_time(ms)": 1465.7, - "synthesis_time(ms)": 2851.2, + "elaboration_time(ms)": 415.5, + "optimization_time(ms)": 1073.5, + "techmap_time(ms)": 851.3, + "synthesis_time(ms)": 2340.4, "Pi": 354, "Po": 144, "logic element": 90388, @@ -1890,16 +1890,16 @@ "Average Path": 9, "Estimated LUTs": 309336, "Total Node": 140372, - "Wires": 588420, - "Wire Bits": 804719, + "Wires": 584554, + "Wire Bits": 805743, "Public Wires": 19527, "Public Wire Bits": 19527, - "Total Cells": 616310, + "Total Cells": 614269, "MUX": 240512, "XOR": 11397, - "OR": 84658, - "AND": 74212, - "NOT": 35581, + "OR": 83221, + "AND": 73764, + "NOT": 35425, "DFFs": [ "$_DFF_P_ 121550" ], @@ -2115,10 +2115,10 @@ "Ignoring module systolic_data_setup because it contains processes (run 'proc' command first).", "Ignoring module systolic_data_setup_systolic_8x8 because it contains processes (run 'proc' command first)." ], - "elaboration_time(ms)": 247, - "optimization_time(ms)": 280.9, - "techmap_time(ms)": 924.8, - "synthesis_time(ms)": 1452.9, + "elaboration_time(ms)": 248.7, + "optimization_time(ms)": 244.9, + "techmap_time(ms)": 793.2, + "synthesis_time(ms)": 1286.9, "Pi": 346, "Po": 656, "logic element": 90035, @@ -2130,16 +2130,16 @@ "Average Path": 8, "Estimated LUTs": 208086, "Total Node": 110213, - "Wires": 340422, - "Wire Bits": 418474, + "Wires": 340428, + "Wire Bits": 418320, "Public Wires": 6552, "Public Wire Bits": 6552, - "Total Cells": 344137, + "Total Cells": 344012, "MUX": 149527, "XOR": 487, - "OR": 58564, - "AND": 22226, - "NOT": 27334, + "OR": 58602, + "AND": 22212, + "NOT": 27185, "DFFs": [ "$_DFF_P_ 65821" ], diff --git a/parmys/regression_test/benchmark/task/large/synthesis_result.json b/parmys/regression_test/benchmark/task/large/synthesis_result.json index c9f4adc0164..e3c7eee50f8 100644 --- a/parmys/regression_test/benchmark/task/large/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/large/synthesis_result.json @@ -130,16 +130,16 @@ "Average Path": 8, "Estimated LUTs": 16199, "Total Node": 4054, - "Wires": 23585, - "Wire Bits": 27679, + "Wires": 23584, + "Wire Bits": 27678, "Public Wires": 1528, "Public Wire Bits": 1528, - "Total Cells": 25889, + "Total Cells": 25885, "MUX": 16499, "XOR": 407, - "OR": 2363, - "AND": 1366, - "NOT": 677, + "OR": 2356, + "AND": 1368, + "NOT": 678, "DFFs": [ "$_DFF_P_ 3001" ], @@ -236,16 +236,16 @@ "Average Path": 8, "Estimated LUTs": 51808, "Total Node": 9115, - "Wires": 36804, - "Wire Bits": 177752, + "Wires": 36947, + "Wire Bits": 177934, "Public Wires": 969, "Public Wire Bits": 969, - "Total Cells": 104329, + "Total Cells": 104312, "MUX": 12179, "XOR": 1091, - "OR": 44631, - "AND": 34525, - "NOT": 4501, + "OR": 44639, + "AND": 34509, + "NOT": 4492, "DFFs": [ "$_DFF_P_ 5132" ], @@ -312,16 +312,16 @@ "Average Path": 4, "Estimated LUTs": 2406, "Total Node": 973, - "Wires": 4530, - "Wire Bits": 6664, + "Wires": 4399, + "Wire Bits": 6533, "Public Wires": 529, "Public Wire Bits": 529, - "Total Cells": 5514, + "Total Cells": 5373, "MUX": 1998, "XOR": 228, - "OR": 856, - "AND": 928, - "NOT": 459, + "OR": 866, + "AND": 963, + "NOT": 273, "DFFs": [ "$_DFF_P_ 862" ], @@ -399,8 +399,8 @@ "Average Path": 3, "Estimated LUTs": 3361, "Total Node": 1319, - "Wires": 1972, - "Wire Bits": 5439, + "Wires": 1973, + "Wire Bits": 5446, "Public Wires": 190, "Public Wire Bits": 190, "Total Cells": 4292, @@ -464,8 +464,8 @@ "Average Path": 9, "Estimated LUTs": 38136, "Total Node": 10576, - "Wires": 27447, - "Wire Bits": 49545, + "Wires": 27448, + "Wire Bits": 49554, "Public Wires": 186, "Public Wire Bits": 186, "Total Cells": 34416, @@ -571,8 +571,8 @@ "Average Path": 4, "Estimated LUTs": 2883573, "Total Node": 3407861, - "Wires": 4815960, - "Wire Bits": 4930094, + "Wires": 4815963, + "Wire Bits": 4930109, "Public Wires": 4456472, "Public Wire Bits": 4456472, "Total Cells": 2725962, @@ -710,16 +710,16 @@ "Average Path": 5, "Estimated LUTs": 117248, "Total Node": 34253, - "Wires": 138485, - "Wire Bits": 439779, + "Wires": 137884, + "Wire Bits": 440449, "Public Wires": 17074, "Public Wire Bits": 17074, - "Total Cells": 276817, + "Total Cells": 277568, "MUX": 54769, "XOR": 2711, - "OR": 89057, - "AND": 83808, - "NOT": 8071, + "OR": 89009, + "AND": 83955, + "NOT": 8723, "DFFs": [ "$_DFF_P_ 19695" ], @@ -856,16 +856,16 @@ "Average Path": 5, "Estimated LUTs": 229187, "Total Node": 64719, - "Wires": 265482, - "Wire Bits": 861875, + "Wires": 264332, + "Wire Bits": 863207, "Public Wires": 32666, "Public Wire Bits": 32666, - "Total Cells": 540618, + "Total Cells": 542139, "MUX": 106133, "XOR": 4801, - "OR": 176646, - "AND": 165180, - "NOT": 14958, + "OR": 176568, + "AND": 165489, + "NOT": 16248, "DFFs": [ "$_DFF_P_ 37302" ], @@ -1786,8 +1786,8 @@ "Average Path": 1, "Estimated LUTs": 5594, "Total Node": 4179, - "Wires": 6441, - "Wire Bits": 10429, + "Wires": 6445, + "Wire Bits": 10441, "Public Wires": 211, "Public Wire Bits": 211, "Total Cells": 9958, @@ -5711,16 +5711,16 @@ "Average Path": 6, "Estimated LUTs": 6581, "Total Node": 3022, - "Wires": 12850, - "Wire Bits": 27185, + "Wires": 12843, + "Wire Bits": 27160, "Public Wires": 3798, "Public Wire Bits": 3798, - "Total Cells": 21025, + "Total Cells": 21001, "MUX": 7919, "XOR": 195, - "OR": 3180, - "AND": 5182, - "NOT": 294, + "OR": 3153, + "AND": 5157, + "NOT": 322, "DFFs": [ "$_DFF_P_ 2151" ], @@ -5773,16 +5773,16 @@ "Average Path": 5, "Estimated LUTs": 2565, "Total Node": 1142, - "Wires": 4487, - "Wire Bits": 9878, + "Wires": 4486, + "Wire Bits": 9886, "Public Wires": 754, "Public Wire Bits": 754, - "Total Cells": 7790, + "Total Cells": 7803, "MUX": 2953, "XOR": 41, "OR": 1427, - "AND": 1829, - "NOT": 157, + "AND": 1828, + "NOT": 171, "DFFs": [ "$_DFF_P_ 886" ], @@ -5895,15 +5895,15 @@ "Estimated LUTs": 4344, "Total Node": 1461, "Wires": 6405, - "Wire Bits": 12435, + "Wire Bits": 12439, "Public Wires": 1044, "Public Wire Bits": 1044, - "Total Cells": 9094, + "Total Cells": 9100, "MUX": 3445, "XOR": 59, - "OR": 2148, - "AND": 1680, - "NOT": 526, + "OR": 2151, + "AND": 1682, + "NOT": 527, "DFFs": [ "$_DFF_P_ 675" ], @@ -5981,8 +5981,8 @@ "Average Path": 3, "Estimated LUTs": 1716, "Total Node": 946, - "Wires": 4520, - "Wire Bits": 6774, + "Wires": 4521, + "Wire Bits": 6777, "Public Wires": 619, "Public Wire Bits": 619, "Total Cells": 4421, @@ -6125,13 +6125,13 @@ "Estimated LUTs": 1787, "Total Node": 805, "Wires": 2325, - "Wire Bits": 3625, + "Wire Bits": 3628, "Public Wires": 324, "Public Wire Bits": 324, - "Total Cells": 2980, + "Total Cells": 2962, "MUX": 938, "XOR": 138, - "OR": 872, + "OR": 854, "AND": 408, "NOT": 232, "DFFs": [ @@ -6231,16 +6231,16 @@ "Average Path": 7, "Estimated LUTs": 6838, "Total Node": 4366, - "Wires": 23424, - "Wire Bits": 26475, + "Wires": 23401, + "Wire Bits": 26319, "Public Wires": 467, "Public Wire Bits": 467, - "Total Cells": 23087, + "Total Cells": 22949, "MUX": 6514, "XOR": 254, - "OR": 745, - "AND": 1273, - "NOT": 435, + "OR": 726, + "AND": 1172, + "NOT": 417, "DFFs": [ "$_DFF_P_ 11143" ], @@ -6306,8 +6306,8 @@ "Average Path": 8, "Estimated LUTs": 9070, "Total Node": 5286, - "Wires": 35627, - "Wire Bits": 38178, + "Wires": 35628, + "Wire Bits": 38181, "Public Wires": 237, "Public Wire Bits": 237, "Total Cells": 24423, diff --git a/parmys/regression_test/benchmark/task/micro/synthesis_result.json b/parmys/regression_test/benchmark/task/micro/synthesis_result.json index 1968e99a682..a53cf006365 100644 --- a/parmys/regression_test/benchmark/task/micro/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/micro/synthesis_result.json @@ -530,14 +530,14 @@ "Average Path": 5, "Estimated LUTs": 714, "Total Node": 693, - "Wires": 1082, - "Wire Bits": 1394, + "Wires": 1083, + "Wire Bits": 1395, "Public Wires": 127, "Public Wire Bits": 127, - "Total Cells": 1204, + "Total Cells": 1206, "MUX": 538, "XOR": 386, - "AND": 226, + "AND": 228, "DFFs": [ "$_DFF_P_ 54" ] @@ -608,14 +608,14 @@ "Average Path": 5, "Estimated LUTs": 693, "Total Node": 693, - "Wires": 1082, - "Wire Bits": 1394, + "Wires": 1083, + "Wire Bits": 1395, "Public Wires": 127, "Public Wire Bits": 127, - "Total Cells": 1204, + "Total Cells": 1206, "MUX": 538, "XOR": 386, - "AND": 226, + "AND": 228, "DFFs": [ "$_DFF_P_ 54" ] @@ -3929,8 +3929,8 @@ "Average Path": 3, "Estimated LUTs": 53, "Total Node": 10, - "Wires": 46, - "Wire Bits": 130, + "Wires": 45, + "Wire Bits": 128, "Public Wires": 11, "Public Wire Bits": 11, "Total Cells": 61, @@ -3960,8 +3960,8 @@ "Average Path": 3, "Estimated LUTs": 37, "Total Node": 10, - "Wires": 46, - "Wire Bits": 130, + "Wires": 45, + "Wire Bits": 128, "Public Wires": 11, "Public Wire Bits": 11, "Total Cells": 61, @@ -3991,8 +3991,8 @@ "Average Path": 3, "Estimated LUTs": 37, "Total Node": 10, - "Wires": 46, - "Wire Bits": 130, + "Wires": 45, + "Wire Bits": 128, "Public Wires": 11, "Public Wire Bits": 11, "Total Cells": 61, @@ -4020,8 +4020,8 @@ "Average Path": 3, "Estimated LUTs": 10, "Total Node": 10, - "Wires": 46, - "Wire Bits": 130, + "Wires": 45, + "Wire Bits": 128, "Public Wires": 11, "Public Wire Bits": 11, "Total Cells": 61, @@ -4052,15 +4052,15 @@ "Average Path": 5, "Estimated LUTs": 7, "Total Node": 19, - "Wires": 53, - "Wire Bits": 59, + "Wires": 55, + "Wire Bits": 62, "Public Wires": 19, "Public Wire Bits": 19, - "Total Cells": 26, + "Total Cells": 33, "MUX": 4, - "OR": 1, - "AND": 3, - "NOT": 1, + "OR": 3, + "AND": 4, + "NOT": 5, "adder": 17 }, "micro/bm_DL_BCD_adder/k6_N10_40nm": { @@ -4085,16 +4085,16 @@ "Average Path": 4, "Estimated LUTs": 31, "Total Node": 27, - "Wires": 49, - "Wire Bits": 61, + "Wires": 50, + "Wire Bits": 60, "Public Wires": 19, "Public Wire Bits": 19, - "Total Cells": 42, + "Total Cells": 48, "MUX": 18, "XOR": 15, - "OR": 1, - "AND": 5, - "NOT": 3 + "OR": 3, + "AND": 6, + "NOT": 6 }, "micro/bm_DL_BCD_adder/k6_N10_mem32K_40nm": { "test_name": "micro/bm_DL_BCD_adder/k6_N10_mem32K_40nm", @@ -4118,16 +4118,16 @@ "Average Path": 4, "Estimated LUTs": 31, "Total Node": 27, - "Wires": 49, - "Wire Bits": 61, + "Wires": 50, + "Wire Bits": 60, "Public Wires": 19, "Public Wire Bits": 19, - "Total Cells": 42, + "Total Cells": 48, "MUX": 18, "XOR": 15, - "OR": 1, - "AND": 5, - "NOT": 3 + "OR": 3, + "AND": 6, + "NOT": 6 }, "micro/bm_DL_BCD_adder/no_arch": { "test_name": "micro/bm_DL_BCD_adder/no_arch", @@ -4149,16 +4149,16 @@ "Average Path": 4, "Estimated LUTs": 27, "Total Node": 27, - "Wires": 49, - "Wire Bits": 61, + "Wires": 50, + "Wire Bits": 60, "Public Wires": 19, "Public Wire Bits": 19, - "Total Cells": 42, + "Total Cells": 48, "MUX": 18, "XOR": 15, - "OR": 1, - "AND": 5, - "NOT": 3 + "OR": 3, + "AND": 6, + "NOT": 6 }, "micro/bm_DL_behavioural_full_adder/k6_frac_N10_frac_chain_mem32K_40nm": { "test_name": "micro/bm_DL_behavioural_full_adder/k6_frac_N10_frac_chain_mem32K_40nm", @@ -5133,14 +5133,14 @@ "Average Path": 3, "Estimated LUTs": 644, "Total Node": 218, - "Wires": 1458, - "Wire Bits": 1955, + "Wires": 1459, + "Wire Bits": 1956, "Public Wires": 814, "Public Wire Bits": 814, - "Total Cells": 1386, + "Total Cells": 1387, "XNOR": 63, "XOR": 191, - "OR": 256, + "OR": 257, "AND": 310, "NOT": 133, "DFFs": [ @@ -5170,15 +5170,15 @@ "Average Path": 3, "Estimated LUTs": 623, "Total Node": 307, - "Wires": 1600, - "Wire Bits": 2254, + "Wires": 1633, + "Wire Bits": 2225, "Public Wires": 751, "Public Wire Bits": 751, - "Total Cells": 1746, + "Total Cells": 1748, "MUX": 267, "XNOR": 63, - "XOR": 377, - "OR": 258, + "XOR": 378, + "OR": 259, "AND": 311, "NOT": 135, "DFFs": [ @@ -5207,15 +5207,15 @@ "Average Path": 3, "Estimated LUTs": 623, "Total Node": 307, - "Wires": 1600, - "Wire Bits": 2254, + "Wires": 1633, + "Wire Bits": 2225, "Public Wires": 751, "Public Wire Bits": 751, - "Total Cells": 1746, + "Total Cells": 1748, "MUX": 267, "XNOR": 63, - "XOR": 377, - "OR": 258, + "XOR": 378, + "OR": 259, "AND": 311, "NOT": 135, "DFFs": [ @@ -5242,15 +5242,15 @@ "Average Path": 3, "Estimated LUTs": 307, "Total Node": 307, - "Wires": 1600, - "Wire Bits": 2254, + "Wires": 1633, + "Wire Bits": 2225, "Public Wires": 751, "Public Wire Bits": 751, - "Total Cells": 1746, + "Total Cells": 1748, "MUX": 267, "XNOR": 63, - "XOR": 377, - "OR": 258, + "XOR": 378, + "OR": 259, "AND": 311, "NOT": 135, "DFFs": [ @@ -5895,7 +5895,7 @@ "Estimated LUTs": 407, "Total Node": 264, "Wires": 739, - "Wire Bits": 1045, + "Wire Bits": 1076, "Public Wires": 322, "Public Wire Bits": 322, "Total Cells": 943, @@ -5923,7 +5923,7 @@ "Estimated LUTs": 407, "Total Node": 264, "Wires": 739, - "Wire Bits": 1045, + "Wire Bits": 1076, "Public Wires": 322, "Public Wire Bits": 322, "Total Cells": 943, @@ -5949,7 +5949,7 @@ "Estimated LUTs": 264, "Total Node": 264, "Wires": 739, - "Wire Bits": 1045, + "Wire Bits": 1076, "Public Wires": 322, "Public Wire Bits": 322, "Total Cells": 943, @@ -6633,14 +6633,14 @@ "Average Path": 6, "Estimated LUTs": 1605, "Total Node": 1595, - "Wires": 2628, - "Wire Bits": 3353, + "Wires": 2631, + "Wire Bits": 3356, "Public Wires": 146, "Public Wire Bits": 146, - "Total Cells": 2999, + "Total Cells": 3001, "MUX": 1404, "XOR": 1002, - "AND": 547, + "AND": 549, "DFFs": [ "$_DFF_P_ 46" ] @@ -6701,14 +6701,14 @@ "Average Path": 6, "Estimated LUTs": 1595, "Total Node": 1595, - "Wires": 2628, - "Wire Bits": 3353, + "Wires": 2631, + "Wire Bits": 3356, "Public Wires": 146, "Public Wire Bits": 146, - "Total Cells": 2999, + "Total Cells": 3001, "MUX": 1404, "XOR": 1002, - "AND": 547, + "AND": 549, "DFFs": [ "$_DFF_P_ 46" ] @@ -7474,8 +7474,8 @@ "Average Path": 4, "Estimated LUTs": 76, "Total Node": 17, - "Wires": 53, - "Wire Bits": 178, + "Wires": 52, + "Wire Bits": 176, "Public Wires": 11, "Public Wire Bits": 11, "Total Cells": 74, @@ -7508,8 +7508,8 @@ "Average Path": 4, "Estimated LUTs": 58, "Total Node": 17, - "Wires": 53, - "Wire Bits": 178, + "Wires": 52, + "Wire Bits": 176, "Public Wires": 11, "Public Wire Bits": 11, "Total Cells": 74, @@ -7542,8 +7542,8 @@ "Average Path": 4, "Estimated LUTs": 58, "Total Node": 17, - "Wires": 53, - "Wire Bits": 178, + "Wires": 52, + "Wire Bits": 176, "Public Wires": 11, "Public Wire Bits": 11, "Total Cells": 74, @@ -7574,8 +7574,8 @@ "Average Path": 4, "Estimated LUTs": 17, "Total Node": 17, - "Wires": 53, - "Wire Bits": 178, + "Wires": 52, + "Wire Bits": 176, "Public Wires": 11, "Public Wire Bits": 11, "Total Cells": 74, @@ -8032,14 +8032,14 @@ "Average Path": 4, "Estimated LUTs": 18, "Total Node": 18, - "Wires": 24, - "Wire Bits": 26, + "Wires": 26, + "Wire Bits": 28, "Public Wires": 16, "Public Wire Bits": 16, - "Total Cells": 18, + "Total Cells": 20, "MUX": 2, "XOR": 4, - "AND": 12 + "AND": 14 }, "micro/multiply_hard_block/k6_N10_mem32K_40nm": { "test_name": "micro/multiply_hard_block/k6_N10_mem32K_40nm", @@ -8058,14 +8058,14 @@ "Average Path": 4, "Estimated LUTs": 18, "Total Node": 18, - "Wires": 24, - "Wire Bits": 26, + "Wires": 26, + "Wire Bits": 28, "Public Wires": 16, "Public Wire Bits": 16, - "Total Cells": 18, + "Total Cells": 20, "MUX": 2, "XOR": 4, - "AND": 12 + "AND": 14 }, "micro/multiply_hard_block/no_arch": { "test_name": "micro/multiply_hard_block/no_arch", @@ -8076,14 +8076,14 @@ "Average Path": 4, "Estimated LUTs": 18, "Total Node": 18, - "Wires": 24, - "Wire Bits": 26, + "Wires": 26, + "Wire Bits": 28, "Public Wires": 16, "Public Wire Bits": 16, - "Total Cells": 18, + "Total Cells": 20, "MUX": 2, "XOR": 4, - "AND": 12 + "AND": 14 }, "micro/parameter_2/k6_frac_N10_frac_chain_mem32K_40nm": { "test_name": "micro/parameter_2/k6_frac_N10_frac_chain_mem32K_40nm", diff --git a/parmys/regression_test/benchmark/task/mixing_optimization/config_file_half/synthesis_result.json b/parmys/regression_test/benchmark/task/mixing_optimization/config_file_half/synthesis_result.json index bd815de43c1..296cbd53d9f 100644 --- a/parmys/regression_test/benchmark/task/mixing_optimization/config_file_half/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/mixing_optimization/config_file_half/synthesis_result.json @@ -28,14 +28,14 @@ "Average Path": 4, "Estimated LUTs": 384, "Total Node": 354, - "Wires": 674, - "Wire Bits": 819, + "Wires": 675, + "Wire Bits": 820, "Public Wires": 127, "Public Wire Bits": 127, - "Total Cells": 678, + "Total Cells": 680, "MUX": 269, "XOR": 194, - "AND": 158, + "AND": 160, "DFFs": [ "$_DFF_P_ 55" ], @@ -72,14 +72,14 @@ "Average Path": 5, "Estimated LUTs": 714, "Total Node": 693, - "Wires": 1082, - "Wire Bits": 1394, + "Wires": 1083, + "Wire Bits": 1395, "Public Wires": 127, "Public Wire Bits": 127, - "Total Cells": 1204, + "Total Cells": 1206, "MUX": 538, "XOR": 386, - "AND": 226, + "AND": 228, "DFFs": [ "$_DFF_P_ 54" ] @@ -398,14 +398,14 @@ "Average Path": 6, "Estimated LUTs": 719, "Total Node": 811, - "Wires": 1466, - "Wire Bits": 1784, + "Wires": 1468, + "Wire Bits": 1786, "Public Wires": 146, "Public Wire Bits": 146, - "Total Cells": 1401, + "Total Cells": 1403, "MUX": 570, "XOR": 405, - "AND": 271, + "AND": 273, "DFFs": [ "$_DFF_P_ 46" ], @@ -436,14 +436,14 @@ "Average Path": 6, "Estimated LUTs": 1605, "Total Node": 1595, - "Wires": 2628, - "Wire Bits": 3353, + "Wires": 2631, + "Wire Bits": 3356, "Public Wires": 146, "Public Wire Bits": 146, - "Total Cells": 2999, + "Total Cells": 3001, "MUX": 1404, "XOR": 1002, - "AND": 547, + "AND": 549, "DFFs": [ "$_DFF_P_ 46" ] @@ -489,14 +489,14 @@ "Average Path": 4, "Estimated LUTs": 18, "Total Node": 18, - "Wires": 24, - "Wire Bits": 26, + "Wires": 26, + "Wire Bits": 28, "Public Wires": 16, "Public Wire Bits": 16, - "Total Cells": 18, + "Total Cells": 20, "MUX": 2, "XOR": 4, - "AND": 12 + "AND": 14 }, "config_file_half/twobits_arithmetic_multiply/k6_frac_N10_frac_chain_mem32K_40nm": { "test_name": "config_file_half/twobits_arithmetic_multiply/k6_frac_N10_frac_chain_mem32K_40nm", @@ -596,14 +596,14 @@ "Average Path": 4, "Estimated LUTs": 378, "Total Node": 354, - "Wires": 674, - "Wire Bits": 819, + "Wires": 675, + "Wire Bits": 820, "Public Wires": 127, "Public Wire Bits": 127, - "Total Cells": 678, + "Total Cells": 680, "MUX": 269, "XOR": 194, - "AND": 158, + "AND": 160, "DFFs": [ "$_DFF_P_ 55" ], @@ -638,14 +638,14 @@ "Average Path": 4, "Estimated LUTs": 373, "Total Node": 354, - "Wires": 674, - "Wire Bits": 819, + "Wires": 675, + "Wire Bits": 820, "Public Wires": 127, "Public Wire Bits": 127, - "Total Cells": 678, + "Total Cells": 680, "MUX": 269, "XOR": 194, - "AND": 158, + "AND": 160, "DFFs": [ "$_DFF_P_ 55" ], @@ -946,14 +946,14 @@ "Average Path": 6, "Estimated LUTs": 907, "Total Node": 899, - "Wires": 1628, - "Wire Bits": 2034, + "Wires": 1630, + "Wire Bits": 2036, "Public Wires": 146, "Public Wire Bits": 146, - "Total Cells": 1757, + "Total Cells": 1759, "MUX": 834, "XOR": 597, - "AND": 277, + "AND": 279, "DFFs": [ "$_DFF_P_ 46" ], @@ -981,14 +981,14 @@ "Average Path": 6, "Estimated LUTs": 906, "Total Node": 899, - "Wires": 1628, - "Wire Bits": 2034, + "Wires": 1630, + "Wire Bits": 2036, "Public Wires": 146, "Public Wire Bits": 146, - "Total Cells": 1757, + "Total Cells": 1759, "MUX": 834, "XOR": 597, - "AND": 277, + "AND": 279, "DFFs": [ "$_DFF_P_ 46" ], diff --git a/parmys/regression_test/benchmark/task/mixing_optimization/mults_auto_full/synthesis_result.json b/parmys/regression_test/benchmark/task/mixing_optimization/mults_auto_full/synthesis_result.json index 4f9974a0a0c..92debe8a3bd 100644 --- a/parmys/regression_test/benchmark/task/mixing_optimization/mults_auto_full/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/mixing_optimization/mults_auto_full/synthesis_result.json @@ -67,14 +67,14 @@ "Average Path": 5, "Estimated LUTs": 714, "Total Node": 693, - "Wires": 1082, - "Wire Bits": 1394, + "Wires": 1083, + "Wire Bits": 1395, "Public Wires": 127, "Public Wire Bits": 127, - "Total Cells": 1204, + "Total Cells": 1206, "MUX": 538, "XOR": 386, - "AND": 226, + "AND": 228, "DFFs": [ "$_DFF_P_ 54" ] @@ -410,14 +410,14 @@ "Average Path": 6, "Estimated LUTs": 1605, "Total Node": 1595, - "Wires": 2628, - "Wire Bits": 3353, + "Wires": 2631, + "Wire Bits": 3356, "Public Wires": 146, "Public Wire Bits": 146, - "Total Cells": 2999, + "Total Cells": 3001, "MUX": 1404, "XOR": 1002, - "AND": 547, + "AND": 549, "DFFs": [ "$_DFF_P_ 46" ] @@ -459,14 +459,14 @@ "Average Path": 4, "Estimated LUTs": 18, "Total Node": 18, - "Wires": 24, - "Wire Bits": 26, + "Wires": 26, + "Wire Bits": 28, "Public Wires": 16, "Public Wire Bits": 16, - "Total Cells": 18, + "Total Cells": 20, "MUX": 2, "XOR": 4, - "AND": 12 + "AND": 14 }, "mults_auto_full/twobits_arithmetic_multiply/k6_frac_N10_frac_chain_mem32K_40nm": { "test_name": "mults_auto_full/twobits_arithmetic_multiply/k6_frac_N10_frac_chain_mem32K_40nm", @@ -953,14 +953,14 @@ "Average Path": 4, "Estimated LUTs": 18, "Total Node": 18, - "Wires": 24, - "Wire Bits": 26, + "Wires": 26, + "Wire Bits": 28, "Public Wires": 16, "Public Wire Bits": 16, - "Total Cells": 18, + "Total Cells": 20, "MUX": 2, "XOR": 4, - "AND": 12 + "AND": 14 }, "mults_auto_full/multiply_hard_block/k6_N10_mem32K_40nm": { "test_name": "mults_auto_full/multiply_hard_block/k6_N10_mem32K_40nm", @@ -976,14 +976,14 @@ "Average Path": 4, "Estimated LUTs": 18, "Total Node": 18, - "Wires": 24, - "Wire Bits": 26, + "Wires": 26, + "Wire Bits": 28, "Public Wires": 16, "Public Wire Bits": 16, - "Total Cells": 18, + "Total Cells": 20, "MUX": 2, "XOR": 4, - "AND": 12 + "AND": 14 }, "mults_auto_full/twobits_arithmetic_multiply/k6_frac_N10_mem32K_40nm": { "test_name": "mults_auto_full/twobits_arithmetic_multiply/k6_frac_N10_mem32K_40nm", diff --git a/parmys/regression_test/benchmark/task/mixing_optimization/mults_auto_half/synthesis_result.json b/parmys/regression_test/benchmark/task/mixing_optimization/mults_auto_half/synthesis_result.json index ddb09fdd857..e203b322e51 100644 --- a/parmys/regression_test/benchmark/task/mixing_optimization/mults_auto_half/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/mixing_optimization/mults_auto_half/synthesis_result.json @@ -28,14 +28,14 @@ "Average Path": 4, "Estimated LUTs": 717, "Total Node": 687, - "Wires": 787, - "Wire Bits": 947, + "Wires": 788, + "Wire Bits": 948, "Public Wires": 127, "Public Wire Bits": 127, - "Total Cells": 678, + "Total Cells": 680, "MUX": 269, "XOR": 194, - "AND": 158, + "AND": 160, "DFFs": [ "$_DFF_P_ 55" ], @@ -69,14 +69,14 @@ "Average Path": 5, "Estimated LUTs": 714, "Total Node": 693, - "Wires": 1082, - "Wire Bits": 1394, + "Wires": 1083, + "Wire Bits": 1395, "Public Wires": 127, "Public Wire Bits": 127, - "Total Cells": 1204, + "Total Cells": 1206, "MUX": 538, "XOR": 386, - "AND": 226, + "AND": 228, "DFFs": [ "$_DFF_P_ 54" ] @@ -389,14 +389,14 @@ "Average Path": 6, "Estimated LUTs": 1400, "Total Node": 1492, - "Wires": 1628, - "Wire Bits": 1946, + "Wires": 1630, + "Wire Bits": 1948, "Public Wires": 146, "Public Wire Bits": 146, - "Total Cells": 1401, + "Total Cells": 1403, "MUX": 570, "XOR": 405, - "AND": 271, + "AND": 273, "DFFs": [ "$_DFF_P_ 46" ], @@ -425,14 +425,14 @@ "Average Path": 6, "Estimated LUTs": 1605, "Total Node": 1595, - "Wires": 2628, - "Wire Bits": 3353, + "Wires": 2631, + "Wire Bits": 3356, "Public Wires": 146, "Public Wire Bits": 146, - "Total Cells": 2999, + "Total Cells": 3001, "MUX": 1404, "XOR": 1002, - "AND": 547, + "AND": 549, "DFFs": [ "$_DFF_P_ 46" ] @@ -474,14 +474,14 @@ "Average Path": 4, "Estimated LUTs": 18, "Total Node": 18, - "Wires": 24, - "Wire Bits": 26, + "Wires": 26, + "Wire Bits": 28, "Public Wires": 16, "Public Wire Bits": 16, - "Total Cells": 18, + "Total Cells": 20, "MUX": 2, "XOR": 4, - "AND": 12 + "AND": 14 }, "mults_auto_half/twobits_arithmetic_multiply/k6_frac_N10_frac_chain_mem32K_40nm": { "test_name": "mults_auto_half/twobits_arithmetic_multiply/k6_frac_N10_frac_chain_mem32K_40nm", @@ -582,14 +582,14 @@ "Average Path": 4, "Estimated LUTs": 711, "Total Node": 687, - "Wires": 787, - "Wire Bits": 947, + "Wires": 788, + "Wire Bits": 948, "Public Wires": 127, "Public Wire Bits": 127, - "Total Cells": 678, + "Total Cells": 680, "MUX": 269, "XOR": 194, - "AND": 158, + "AND": 160, "DFFs": [ "$_DFF_P_ 55" ], @@ -621,14 +621,14 @@ "Average Path": 4, "Estimated LUTs": 706, "Total Node": 687, - "Wires": 787, - "Wire Bits": 947, + "Wires": 788, + "Wire Bits": 948, "Public Wires": 127, "Public Wire Bits": 127, - "Total Cells": 678, + "Total Cells": 680, "MUX": 269, "XOR": 194, - "AND": 158, + "AND": 160, "DFFs": [ "$_DFF_P_ 55" ], @@ -914,14 +914,14 @@ "Average Path": 6, "Estimated LUTs": 1588, "Total Node": 1580, - "Wires": 1790, - "Wire Bits": 2196, + "Wires": 1792, + "Wire Bits": 2198, "Public Wires": 146, "Public Wire Bits": 146, - "Total Cells": 1757, + "Total Cells": 1759, "MUX": 834, "XOR": 597, - "AND": 277, + "AND": 279, "DFFs": [ "$_DFF_P_ 46" ], @@ -947,14 +947,14 @@ "Average Path": 6, "Estimated LUTs": 1587, "Total Node": 1580, - "Wires": 1790, - "Wire Bits": 2196, + "Wires": 1792, + "Wire Bits": 2198, "Public Wires": 146, "Public Wire Bits": 146, - "Total Cells": 1757, + "Total Cells": 1759, "MUX": 834, "XOR": 597, - "AND": 277, + "AND": 279, "DFFs": [ "$_DFF_P_ 46" ], @@ -974,14 +974,14 @@ "Average Path": 4, "Estimated LUTs": 18, "Total Node": 18, - "Wires": 24, - "Wire Bits": 26, + "Wires": 26, + "Wire Bits": 28, "Public Wires": 16, "Public Wire Bits": 16, - "Total Cells": 18, + "Total Cells": 20, "MUX": 2, "XOR": 4, - "AND": 12 + "AND": 14 }, "mults_auto_half/multiply_hard_block/k6_N10_mem32K_40nm": { "test_name": "mults_auto_half/multiply_hard_block/k6_N10_mem32K_40nm", @@ -997,14 +997,14 @@ "Average Path": 4, "Estimated LUTs": 18, "Total Node": 18, - "Wires": 24, - "Wire Bits": 26, + "Wires": 26, + "Wire Bits": 28, "Public Wires": 16, "Public Wire Bits": 16, - "Total Cells": 18, + "Total Cells": 20, "MUX": 2, "XOR": 4, - "AND": 12 + "AND": 14 }, "mults_auto_half/twobits_arithmetic_multiply/k6_frac_N10_mem32K_40nm": { "test_name": "mults_auto_half/twobits_arithmetic_multiply/k6_frac_N10_mem32K_40nm", diff --git a/parmys/regression_test/benchmark/task/mixing_optimization/mults_auto_none/synthesis_result.json b/parmys/regression_test/benchmark/task/mixing_optimization/mults_auto_none/synthesis_result.json index 3ef02403e49..a55448e2339 100644 --- a/parmys/regression_test/benchmark/task/mixing_optimization/mults_auto_none/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/mixing_optimization/mults_auto_none/synthesis_result.json @@ -27,14 +27,14 @@ "Average Path": 5, "Estimated LUTs": 1394, "Total Node": 1362, - "Wires": 1082, - "Wire Bits": 1397, + "Wires": 1083, + "Wire Bits": 1398, "Public Wires": 127, "Public Wire Bits": 127, - "Total Cells": 1204, + "Total Cells": 1206, "MUX": 538, "XOR": 386, - "AND": 226, + "AND": 228, "DFFs": [ "$_DFF_P_ 54" ] @@ -67,14 +67,14 @@ "Average Path": 5, "Estimated LUTs": 714, "Total Node": 693, - "Wires": 1082, - "Wire Bits": 1394, + "Wires": 1083, + "Wire Bits": 1395, "Public Wires": 127, "Public Wire Bits": 127, - "Total Cells": 1204, + "Total Cells": 1206, "MUX": 538, "XOR": 386, - "AND": 226, + "AND": 228, "DFFs": [ "$_DFF_P_ 54" ] @@ -380,14 +380,14 @@ "Average Path": 6, "Estimated LUTs": 2780, "Total Node": 2869, - "Wires": 2466, - "Wire Bits": 3012, + "Wires": 2468, + "Wire Bits": 3014, "Public Wires": 146, "Public Wire Bits": 146, - "Total Cells": 2642, + "Total Cells": 2644, "MUX": 1140, "XOR": 810, - "AND": 540, + "AND": 542, "DFFs": [ "$_DFF_P_ 46" ], @@ -415,14 +415,14 @@ "Average Path": 6, "Estimated LUTs": 1605, "Total Node": 1595, - "Wires": 2628, - "Wire Bits": 3353, + "Wires": 2631, + "Wire Bits": 3356, "Public Wires": 146, "Public Wire Bits": 146, - "Total Cells": 2999, + "Total Cells": 3001, "MUX": 1404, "XOR": 1002, - "AND": 547, + "AND": 549, "DFFs": [ "$_DFF_P_ 46" ] @@ -464,14 +464,14 @@ "Average Path": 4, "Estimated LUTs": 18, "Total Node": 18, - "Wires": 24, - "Wire Bits": 26, + "Wires": 26, + "Wire Bits": 28, "Public Wires": 16, "Public Wire Bits": 16, - "Total Cells": 18, + "Total Cells": 20, "MUX": 2, "XOR": 4, - "AND": 12 + "AND": 14 }, "mults_auto_none/twobits_arithmetic_multiply/k6_frac_N10_frac_chain_mem32K_40nm": { "test_name": "mults_auto_none/twobits_arithmetic_multiply/k6_frac_N10_frac_chain_mem32K_40nm", @@ -571,14 +571,14 @@ "Average Path": 5, "Estimated LUTs": 1388, "Total Node": 1362, - "Wires": 1082, - "Wire Bits": 1397, + "Wires": 1083, + "Wire Bits": 1398, "Public Wires": 127, "Public Wire Bits": 127, - "Total Cells": 1204, + "Total Cells": 1206, "MUX": 538, "XOR": 386, - "AND": 226, + "AND": 228, "DFFs": [ "$_DFF_P_ 54" ] @@ -608,14 +608,14 @@ "Average Path": 5, "Estimated LUTs": 1383, "Total Node": 1362, - "Wires": 1082, - "Wire Bits": 1397, + "Wires": 1083, + "Wire Bits": 1398, "Public Wires": 127, "Public Wire Bits": 127, - "Total Cells": 1204, + "Total Cells": 1206, "MUX": 538, "XOR": 386, - "AND": 226, + "AND": 228, "DFFs": [ "$_DFF_P_ 54" ] @@ -887,14 +887,14 @@ "Average Path": 6, "Estimated LUTs": 2968, "Total Node": 2957, - "Wires": 2628, - "Wire Bits": 3275, + "Wires": 2631, + "Wire Bits": 3278, "Public Wires": 146, "Public Wire Bits": 146, - "Total Cells": 2999, + "Total Cells": 3001, "MUX": 1404, "XOR": 1002, - "AND": 547, + "AND": 549, "DFFs": [ "$_DFF_P_ 46" ] @@ -918,14 +918,14 @@ "Average Path": 6, "Estimated LUTs": 2967, "Total Node": 2957, - "Wires": 2628, - "Wire Bits": 3275, + "Wires": 2631, + "Wire Bits": 3278, "Public Wires": 146, "Public Wire Bits": 146, - "Total Cells": 2999, + "Total Cells": 3001, "MUX": 1404, "XOR": 1002, - "AND": 547, + "AND": 549, "DFFs": [ "$_DFF_P_ 46" ] @@ -944,14 +944,14 @@ "Average Path": 4, "Estimated LUTs": 18, "Total Node": 18, - "Wires": 24, - "Wire Bits": 26, + "Wires": 26, + "Wire Bits": 28, "Public Wires": 16, "Public Wire Bits": 16, - "Total Cells": 18, + "Total Cells": 20, "MUX": 2, "XOR": 4, - "AND": 12 + "AND": 14 }, "mults_auto_none/multiply_hard_block/k6_N10_mem32K_40nm": { "test_name": "mults_auto_none/multiply_hard_block/k6_N10_mem32K_40nm", @@ -967,14 +967,14 @@ "Average Path": 4, "Estimated LUTs": 18, "Total Node": 18, - "Wires": 24, - "Wire Bits": 26, + "Wires": 26, + "Wire Bits": 28, "Public Wires": 16, "Public Wire Bits": 16, - "Total Cells": 18, + "Total Cells": 20, "MUX": 2, "XOR": 4, - "AND": 12 + "AND": 14 }, "mults_auto_none/twobits_arithmetic_multiply/k6_frac_N10_mem32K_40nm": { "test_name": "mults_auto_none/twobits_arithmetic_multiply/k6_frac_N10_mem32K_40nm", diff --git a/parmys/regression_test/benchmark/task/operators/synthesis_result.json b/parmys/regression_test/benchmark/task/operators/synthesis_result.json index b99a53d5197..631b4a6c938 100644 --- a/parmys/regression_test/benchmark/task/operators/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/operators/synthesis_result.json @@ -559,16 +559,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 15, - "Wire Bits": 15, + "Wires": 13, + "Wire Bits": 13, "Public Wires": 6, "Public Wire Bits": 6, - "Total Cells": 10, + "Total Cells": 8, "MUX": 1, "XOR": 1, - "OR": 3, + "OR": 2, "AND": 1, - "NOT": 3, + "NOT": 2, "DFFs": [ "$_DFF_P_ 1" ] @@ -597,16 +597,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 15, - "Wire Bits": 15, + "Wires": 13, + "Wire Bits": 13, "Public Wires": 6, "Public Wire Bits": 6, - "Total Cells": 10, + "Total Cells": 8, "MUX": 1, "XOR": 1, - "OR": 3, + "OR": 2, "AND": 1, - "NOT": 3, + "NOT": 2, "DFFs": [ "$_DFF_P_ 1" ] @@ -635,16 +635,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 15, - "Wire Bits": 15, + "Wires": 13, + "Wire Bits": 13, "Public Wires": 6, "Public Wire Bits": 6, - "Total Cells": 10, + "Total Cells": 8, "MUX": 1, "XOR": 1, - "OR": 3, + "OR": 2, "AND": 1, - "NOT": 3, + "NOT": 2, "DFFs": [ "$_DFF_P_ 1" ] @@ -671,16 +671,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 15, - "Wire Bits": 15, + "Wires": 13, + "Wire Bits": 13, "Public Wires": 6, "Public Wire Bits": 6, - "Total Cells": 10, + "Total Cells": 8, "MUX": 1, "XOR": 1, - "OR": 3, + "OR": 2, "AND": 1, - "NOT": 3, + "NOT": 2, "DFFs": [ "$_DFF_P_ 1" ] @@ -709,16 +709,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 14, - "Wire Bits": 14, + "Wires": 12, + "Wire Bits": 12, "Public Wires": 6, "Public Wire Bits": 6, - "Total Cells": 9, + "Total Cells": 7, "MUX": 1, "XOR": 1, - "OR": 2, + "OR": 1, "AND": 1, - "NOT": 3, + "NOT": 2, "DFFs": [ "$_DFF_P_ 1" ] @@ -747,16 +747,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 14, - "Wire Bits": 14, + "Wires": 12, + "Wire Bits": 12, "Public Wires": 6, "Public Wire Bits": 6, - "Total Cells": 9, + "Total Cells": 7, "MUX": 1, "XOR": 1, - "OR": 2, + "OR": 1, "AND": 1, - "NOT": 3, + "NOT": 2, "DFFs": [ "$_DFF_P_ 1" ] @@ -785,16 +785,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 14, - "Wire Bits": 14, + "Wires": 12, + "Wire Bits": 12, "Public Wires": 6, "Public Wire Bits": 6, - "Total Cells": 9, + "Total Cells": 7, "MUX": 1, "XOR": 1, - "OR": 2, + "OR": 1, "AND": 1, - "NOT": 3, + "NOT": 2, "DFFs": [ "$_DFF_P_ 1" ] @@ -821,16 +821,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 14, - "Wire Bits": 14, + "Wires": 12, + "Wire Bits": 12, "Public Wires": 6, "Public Wire Bits": 6, - "Total Cells": 9, + "Total Cells": 7, "MUX": 1, "XOR": 1, - "OR": 2, + "OR": 1, "AND": 1, - "NOT": 3, + "NOT": 2, "DFFs": [ "$_DFF_P_ 1" ] @@ -859,16 +859,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 13, - "Wire Bits": 13, + "Wires": 15, + "Wire Bits": 15, "Public Wires": 6, "Public Wire Bits": 6, - "Total Cells": 8, + "Total Cells": 10, "MUX": 1, "XOR": 1, - "OR": 2, + "OR": 3, "AND": 1, - "NOT": 2, + "NOT": 3, "DFFs": [ "$_DFF_P_ 1" ] @@ -897,16 +897,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 13, - "Wire Bits": 13, + "Wires": 15, + "Wire Bits": 15, "Public Wires": 6, "Public Wire Bits": 6, - "Total Cells": 8, + "Total Cells": 10, "MUX": 1, "XOR": 1, - "OR": 2, + "OR": 3, "AND": 1, - "NOT": 2, + "NOT": 3, "DFFs": [ "$_DFF_P_ 1" ] @@ -935,16 +935,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 13, - "Wire Bits": 13, + "Wires": 15, + "Wire Bits": 15, "Public Wires": 6, "Public Wire Bits": 6, - "Total Cells": 8, + "Total Cells": 10, "MUX": 1, "XOR": 1, - "OR": 2, + "OR": 3, "AND": 1, - "NOT": 2, + "NOT": 3, "DFFs": [ "$_DFF_P_ 1" ] @@ -971,16 +971,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 13, - "Wire Bits": 13, + "Wires": 15, + "Wire Bits": 15, "Public Wires": 6, "Public Wire Bits": 6, - "Total Cells": 8, + "Total Cells": 10, "MUX": 1, "XOR": 1, - "OR": 2, + "OR": 3, "AND": 1, - "NOT": 2, + "NOT": 3, "DFFs": [ "$_DFF_P_ 1" ] @@ -1009,16 +1009,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 12, - "Wire Bits": 12, + "Wires": 14, + "Wire Bits": 14, "Public Wires": 6, "Public Wire Bits": 6, - "Total Cells": 7, + "Total Cells": 9, "MUX": 1, "XOR": 1, - "OR": 1, + "OR": 2, "AND": 1, - "NOT": 2, + "NOT": 3, "DFFs": [ "$_DFF_P_ 1" ] @@ -1047,16 +1047,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 12, - "Wire Bits": 12, + "Wires": 14, + "Wire Bits": 14, "Public Wires": 6, "Public Wire Bits": 6, - "Total Cells": 7, + "Total Cells": 9, "MUX": 1, "XOR": 1, - "OR": 1, + "OR": 2, "AND": 1, - "NOT": 2, + "NOT": 3, "DFFs": [ "$_DFF_P_ 1" ] @@ -1085,16 +1085,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 12, - "Wire Bits": 12, + "Wires": 14, + "Wire Bits": 14, "Public Wires": 6, "Public Wire Bits": 6, - "Total Cells": 7, + "Total Cells": 9, "MUX": 1, "XOR": 1, - "OR": 1, + "OR": 2, "AND": 1, - "NOT": 2, + "NOT": 3, "DFFs": [ "$_DFF_P_ 1" ] @@ -1121,16 +1121,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 12, - "Wire Bits": 12, + "Wires": 14, + "Wire Bits": 14, "Public Wires": 6, "Public Wire Bits": 6, - "Total Cells": 7, + "Total Cells": 9, "MUX": 1, "XOR": 1, - "OR": 1, + "OR": 2, "AND": 1, - "NOT": 2, + "NOT": 3, "DFFs": [ "$_DFF_P_ 1" ] @@ -3419,16 +3419,16 @@ "Average Path": 4, "Estimated LUTs": 7, "Total Node": 2, - "Wires": 183, - "Wire Bits": 628, + "Wires": 175, + "Wire Bits": 627, "Public Wires": 19, "Public Wire Bits": 19, - "Total Cells": 345, + "Total Cells": 339, "MUX": 40, "XOR": 53, - "OR": 75, - "AND": 129, - "NOT": 40, + "OR": 70, + "AND": 126, + "NOT": 42, "DFFs": [ "$_DFF_P_ 8" ] @@ -3451,16 +3451,16 @@ "Average Path": 4, "Estimated LUTs": 6, "Total Node": 2, - "Wires": 183, - "Wire Bits": 628, + "Wires": 175, + "Wire Bits": 627, "Public Wires": 19, "Public Wire Bits": 19, - "Total Cells": 345, + "Total Cells": 339, "MUX": 40, "XOR": 53, - "OR": 75, - "AND": 129, - "NOT": 40, + "OR": 70, + "AND": 126, + "NOT": 42, "DFFs": [ "$_DFF_P_ 8" ] @@ -3483,16 +3483,16 @@ "Average Path": 4, "Estimated LUTs": 6, "Total Node": 2, - "Wires": 183, - "Wire Bits": 628, + "Wires": 175, + "Wire Bits": 627, "Public Wires": 19, "Public Wire Bits": 19, - "Total Cells": 345, + "Total Cells": 339, "MUX": 40, "XOR": 53, - "OR": 75, - "AND": 129, - "NOT": 40, + "OR": 70, + "AND": 126, + "NOT": 42, "DFFs": [ "$_DFF_P_ 8" ] @@ -3513,16 +3513,16 @@ "Average Path": 4, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 183, - "Wire Bits": 628, + "Wires": 175, + "Wire Bits": 627, "Public Wires": 19, "Public Wire Bits": 19, - "Total Cells": 345, + "Total Cells": 339, "MUX": 40, "XOR": 53, - "OR": 75, - "AND": 129, - "NOT": 40, + "OR": 70, + "AND": 126, + "NOT": 42, "DFFs": [ "$_DFF_P_ 8" ] @@ -3691,15 +3691,15 @@ "Average Path": 3, "Estimated LUTs": 4, "Total Node": 2, - "Wires": 44, - "Wire Bits": 87, + "Wires": 46, + "Wire Bits": 97, "Public Wires": 10, "Public Wire Bits": 10, - "Total Cells": 57, + "Total Cells": 62, "MUX": 9, - "XOR": 7, + "XOR": 9, "OR": 11, - "AND": 14, + "AND": 17, "NOT": 13, "DFFs": [ "$_DFF_P_ 3" @@ -3723,15 +3723,15 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 44, - "Wire Bits": 87, + "Wires": 46, + "Wire Bits": 97, "Public Wires": 10, "Public Wire Bits": 10, - "Total Cells": 57, + "Total Cells": 62, "MUX": 9, - "XOR": 7, + "XOR": 9, "OR": 11, - "AND": 14, + "AND": 17, "NOT": 13, "DFFs": [ "$_DFF_P_ 3" @@ -3755,15 +3755,15 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 44, - "Wire Bits": 87, + "Wires": 46, + "Wire Bits": 97, "Public Wires": 10, "Public Wire Bits": 10, - "Total Cells": 57, + "Total Cells": 62, "MUX": 9, - "XOR": 7, + "XOR": 9, "OR": 11, - "AND": 14, + "AND": 17, "NOT": 13, "DFFs": [ "$_DFF_P_ 3" @@ -3785,15 +3785,15 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 44, - "Wire Bits": 87, + "Wires": 46, + "Wire Bits": 97, "Public Wires": 10, "Public Wire Bits": 10, - "Total Cells": 57, + "Total Cells": 62, "MUX": 9, - "XOR": 7, + "XOR": 9, "OR": 11, - "AND": 14, + "AND": 17, "NOT": 13, "DFFs": [ "$_DFF_P_ 3" @@ -4108,16 +4108,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 19, - "Wire Bits": 23, + "Wires": 17, + "Wire Bits": 21, "Public Wires": 8, "Public Wire Bits": 8, - "Total Cells": 16, + "Total Cells": 14, "MUX": 1, "XOR": 2, - "OR": 4, + "OR": 3, "AND": 4, - "NOT": 4, + "NOT": 3, "DFFs": [ "$_DFF_P_ 1" ] @@ -4146,16 +4146,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 19, - "Wire Bits": 23, + "Wires": 17, + "Wire Bits": 21, "Public Wires": 8, "Public Wire Bits": 8, - "Total Cells": 16, + "Total Cells": 14, "MUX": 1, "XOR": 2, - "OR": 4, + "OR": 3, "AND": 4, - "NOT": 4, + "NOT": 3, "DFFs": [ "$_DFF_P_ 1" ] @@ -4184,16 +4184,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 19, - "Wire Bits": 23, + "Wires": 17, + "Wire Bits": 21, "Public Wires": 8, "Public Wire Bits": 8, - "Total Cells": 16, + "Total Cells": 14, "MUX": 1, "XOR": 2, - "OR": 4, + "OR": 3, "AND": 4, - "NOT": 4, + "NOT": 3, "DFFs": [ "$_DFF_P_ 1" ] @@ -4220,16 +4220,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 19, - "Wire Bits": 23, + "Wires": 17, + "Wire Bits": 21, "Public Wires": 8, "Public Wire Bits": 8, - "Total Cells": 16, + "Total Cells": 14, "MUX": 1, "XOR": 2, - "OR": 4, + "OR": 3, "AND": 4, - "NOT": 4, + "NOT": 3, "DFFs": [ "$_DFF_P_ 1" ] @@ -4258,16 +4258,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 18, - "Wire Bits": 22, + "Wires": 15, + "Wire Bits": 19, "Public Wires": 8, "Public Wire Bits": 8, - "Total Cells": 15, + "Total Cells": 12, "MUX": 1, "XOR": 2, - "OR": 3, - "AND": 4, - "NOT": 4, + "OR": 2, + "AND": 3, + "NOT": 3, "DFFs": [ "$_DFF_P_ 1" ] @@ -4296,16 +4296,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 18, - "Wire Bits": 22, + "Wires": 15, + "Wire Bits": 19, "Public Wires": 8, "Public Wire Bits": 8, - "Total Cells": 15, + "Total Cells": 12, "MUX": 1, "XOR": 2, - "OR": 3, - "AND": 4, - "NOT": 4, + "OR": 2, + "AND": 3, + "NOT": 3, "DFFs": [ "$_DFF_P_ 1" ] @@ -4334,16 +4334,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 18, - "Wire Bits": 22, + "Wires": 15, + "Wire Bits": 19, "Public Wires": 8, "Public Wire Bits": 8, - "Total Cells": 15, + "Total Cells": 12, "MUX": 1, "XOR": 2, - "OR": 3, - "AND": 4, - "NOT": 4, + "OR": 2, + "AND": 3, + "NOT": 3, "DFFs": [ "$_DFF_P_ 1" ] @@ -4370,16 +4370,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 18, - "Wire Bits": 22, + "Wires": 15, + "Wire Bits": 19, "Public Wires": 8, "Public Wire Bits": 8, - "Total Cells": 15, + "Total Cells": 12, "MUX": 1, "XOR": 2, - "OR": 3, - "AND": 4, - "NOT": 4, + "OR": 2, + "AND": 3, + "NOT": 3, "DFFs": [ "$_DFF_P_ 1" ] @@ -4408,16 +4408,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 17, - "Wire Bits": 21, + "Wires": 19, + "Wire Bits": 23, "Public Wires": 8, "Public Wire Bits": 8, - "Total Cells": 14, + "Total Cells": 16, "MUX": 1, "XOR": 2, - "OR": 3, + "OR": 4, "AND": 4, - "NOT": 3, + "NOT": 4, "DFFs": [ "$_DFF_P_ 1" ] @@ -4446,16 +4446,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 17, - "Wire Bits": 21, + "Wires": 19, + "Wire Bits": 23, "Public Wires": 8, "Public Wire Bits": 8, - "Total Cells": 14, + "Total Cells": 16, "MUX": 1, "XOR": 2, - "OR": 3, + "OR": 4, "AND": 4, - "NOT": 3, + "NOT": 4, "DFFs": [ "$_DFF_P_ 1" ] @@ -4484,16 +4484,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 17, - "Wire Bits": 21, + "Wires": 19, + "Wire Bits": 23, "Public Wires": 8, "Public Wire Bits": 8, - "Total Cells": 14, + "Total Cells": 16, "MUX": 1, "XOR": 2, - "OR": 3, + "OR": 4, "AND": 4, - "NOT": 3, + "NOT": 4, "DFFs": [ "$_DFF_P_ 1" ] @@ -4520,16 +4520,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 17, - "Wire Bits": 21, + "Wires": 19, + "Wire Bits": 23, "Public Wires": 8, "Public Wire Bits": 8, - "Total Cells": 14, + "Total Cells": 16, "MUX": 1, "XOR": 2, - "OR": 3, + "OR": 4, "AND": 4, - "NOT": 3, + "NOT": 4, "DFFs": [ "$_DFF_P_ 1" ] @@ -4558,16 +4558,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 15, - "Wire Bits": 19, + "Wires": 18, + "Wire Bits": 22, "Public Wires": 8, "Public Wire Bits": 8, - "Total Cells": 12, + "Total Cells": 15, "MUX": 1, "XOR": 2, - "OR": 2, - "AND": 3, - "NOT": 3, + "OR": 3, + "AND": 4, + "NOT": 4, "DFFs": [ "$_DFF_P_ 1" ] @@ -4596,16 +4596,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 15, - "Wire Bits": 19, + "Wires": 18, + "Wire Bits": 22, "Public Wires": 8, "Public Wire Bits": 8, - "Total Cells": 12, + "Total Cells": 15, "MUX": 1, "XOR": 2, - "OR": 2, - "AND": 3, - "NOT": 3, + "OR": 3, + "AND": 4, + "NOT": 4, "DFFs": [ "$_DFF_P_ 1" ] @@ -4634,16 +4634,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 15, - "Wire Bits": 19, + "Wires": 18, + "Wire Bits": 22, "Public Wires": 8, "Public Wire Bits": 8, - "Total Cells": 12, + "Total Cells": 15, "MUX": 1, "XOR": 2, - "OR": 2, - "AND": 3, - "NOT": 3, + "OR": 3, + "AND": 4, + "NOT": 4, "DFFs": [ "$_DFF_P_ 1" ] @@ -4670,16 +4670,16 @@ "Average Path": 3, "Estimated LUTs": 2, "Total Node": 2, - "Wires": 15, - "Wire Bits": 19, + "Wires": 18, + "Wire Bits": 22, "Public Wires": 8, "Public Wire Bits": 8, - "Total Cells": 12, + "Total Cells": 15, "MUX": 1, "XOR": 2, - "OR": 2, - "AND": 3, - "NOT": 3, + "OR": 3, + "AND": 4, + "NOT": 4, "DFFs": [ "$_DFF_P_ 1" ] diff --git a/parmys/regression_test/benchmark/task/syntax/synthesis_result.json b/parmys/regression_test/benchmark/task/syntax/synthesis_result.json index 5c77ad2f651..8a198e0c1ce 100644 --- a/parmys/regression_test/benchmark/task/syntax/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/syntax/synthesis_result.json @@ -1393,16 +1393,16 @@ "Average Path": 2, "Estimated LUTs": 244, "Total Node": 217, - "Wires": 1491, - "Wire Bits": 1647, + "Wires": 1472, + "Wire Bits": 1654, "Public Wires": 322, "Public Wire Bits": 322, - "Total Cells": 971, + "Total Cells": 978, "MUX": 386, "XOR": 32, - "OR": 33, - "AND": 91, - "NOT": 99, + "OR": 34, + "AND": 96, + "NOT": 100, "DFFs": [ "$_DFF_P_ 193" ], @@ -2081,14 +2081,14 @@ "Average Path": 5, "Estimated LUTs": 693, "Total Node": 693, - "Wires": 1082, - "Wire Bits": 1394, + "Wires": 1083, + "Wire Bits": 1395, "Public Wires": 127, "Public Wire Bits": 127, - "Total Cells": 1204, + "Total Cells": 1206, "MUX": 538, "XOR": 386, - "AND": 226, + "AND": 228, "DFFs": [ "$_DFF_P_ 54" ] @@ -2160,15 +2160,15 @@ "Average Path": 5, "Estimated LUTs": 693, "Total Node": 693, - "Wires": 1090, - "Wire Bits": 1403, + "Wires": 1091, + "Wire Bits": 1404, "Public Wires": 127, "Public Wire Bits": 127, - "Total Cells": 1213, + "Total Cells": 1215, "MUX": 538, "XOR": 386, "OR": 8, - "AND": 226, + "AND": 228, "DFFs": [ "$_DFF_P_ 55" ] @@ -2239,14 +2239,14 @@ "Average Path": 5, "Estimated LUTs": 693, "Total Node": 693, - "Wires": 1082, - "Wire Bits": 1394, + "Wires": 1083, + "Wire Bits": 1395, "Public Wires": 127, "Public Wire Bits": 127, - "Total Cells": 1204, + "Total Cells": 1206, "MUX": 538, "XOR": 386, - "AND": 226, + "AND": 228, "DFFs": [ "$_DFF_P_ 54" ] @@ -3294,15 +3294,15 @@ "Average Path": 5, "Estimated LUTs": 693, "Total Node": 693, - "Wires": 1090, - "Wire Bits": 1403, + "Wires": 1091, + "Wire Bits": 1404, "Public Wires": 127, "Public Wire Bits": 127, - "Total Cells": 1213, + "Total Cells": 1215, "MUX": 538, "XOR": 386, "OR": 8, - "AND": 226, + "AND": 228, "DFFs": [ "$_DFF_P_ 55" ] @@ -3672,15 +3672,15 @@ "Average Path": 4, "Estimated LUTs": 1475, "Total Node": 647, - "Wires": 3780, - "Wire Bits": 4165, + "Wires": 3776, + "Wire Bits": 4164, "Public Wires": 32, "Public Wire Bits": 32, - "Total Cells": 2948, + "Total Cells": 2949, "MUX": 1513, "XOR": 470, - "OR": 269, - "AND": 70, + "OR": 268, + "AND": 72, "NOT": 65, "DFFs": [ "$_DFF_P_ 517" @@ -3797,15 +3797,15 @@ "Average Path": 5, "Estimated LUTs": 1050, "Total Node": 1050, - "Wires": 3330, - "Wire Bits": 3847, + "Wires": 3337, + "Wire Bits": 3876, "Public Wires": 20, "Public Wire Bits": 20, - "Total Cells": 3513, + "Total Cells": 3518, "MUX": 1639, "XOR": 692, - "OR": 266, - "AND": 331, + "OR": 265, + "AND": 337, "NOT": 68, "DFFs": [ "$_DFF_P_ 517" @@ -3903,8 +3903,8 @@ "Average Path": 4, "Estimated LUTs": 6802, "Total Node": 939, - "Wires": 4686, - "Wire Bits": 14480, + "Wires": 4689, + "Wire Bits": 14487, "Public Wires": 51, "Public Wire Bits": 51, "Total Cells": 6551, @@ -4008,7 +4008,7 @@ "Estimated LUTs": 1934, "Total Node": 1934, "Wires": 5450, - "Wire Bits": 15654, + "Wire Bits": 15657, "Public Wires": 32, "Public Wire Bits": 32, "Total Cells": 8193, @@ -4345,15 +4345,15 @@ "Average Path": 4, "Estimated LUTs": 8744, "Total Node": 12840, - "Wires": 25838, - "Wire Bits": 30231, + "Wires": 25832, + "Wire Bits": 30207, "Public Wires": 25146, "Public Wire Bits": 25146, - "Total Cells": 25949, + "Total Cells": 25944, "MUX": 14, "XOR": 7, "OR": 8176, - "AND": 13384, + "AND": 13379, "NOT": 264, "DFFs": [ "$_DFF_P_ 4104" diff --git a/parmys/regression_test/benchmark/task/ultraembedded/synthesis_result.json b/parmys/regression_test/benchmark/task/ultraembedded/synthesis_result.json index 705f7c1d634..35fc0362bcc 100644 --- a/parmys/regression_test/benchmark/task/ultraembedded/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/ultraembedded/synthesis_result.json @@ -56,17 +56,17 @@ "generic logic size": 4, "Longest Path": 72, "Average Path": 4, - "Estimated LUTs": 1529, + "Estimated LUTs": 1517, "Total Node": 1023, - "Wires": 2656, - "Wire Bits": 3799, + "Wires": 2658, + "Wire Bits": 3780, "Public Wires": 415, "Public Wire Bits": 415, - "Total Cells": 3030, - "MUX": 985, + "Total Cells": 3034, + "MUX": 983, "XOR": 425, - "OR": 409, - "AND": 323, + "OR": 414, + "AND": 324, "NOT": 208, "DFFs": [ "$_DFF_P_ 445" @@ -112,26 +112,26 @@ "synthesis_time(ms)": 4.3, "Pi": 63, "Po": 187, - "logic element": 866, - "Adder": 434, + "logic element": 801, + "Adder": 359, "Memory": 32, "generic logic size": 4, "Longest Path": 109, "Average Path": 2, - "Estimated LUTs": 2183, - "Total Node": 1332, - "Wires": 4346, - "Wire Bits": 5972, - "Public Wires": 662, - "Public Wire Bits": 662, - "Total Cells": 4548, - "MUX": 1801, - "XOR": 20, - "OR": 891, - "AND": 465, - "NOT": 204, + "Estimated LUTs": 2118, + "Total Node": 1192, + "Wires": 4506, + "Wire Bits": 8715, + "Public Wires": 597, + "Public Wire Bits": 597, + "Total Cells": 5099, + "MUX": 2110, + "XOR": 34, + "OR": 906, + "AND": 538, + "NOT": 273, "DFFs": [ - "$_DFF_P_ 776" + "$_DFF_P_ 847" ], "adder": 359, "dual_port_ram": 32 @@ -180,14 +180,14 @@ "Average Path": 2, "Estimated LUTs": 2659, "Total Node": 1092, - "Wires": 4955, - "Wire Bits": 7419, + "Wires": 4952, + "Wire Bits": 7400, "Public Wires": 792, "Public Wire Bits": 792, - "Total Cells": 5993, + "Total Cells": 5992, "MUX": 1794, "XOR": 129, - "OR": 1348, + "OR": 1347, "AND": 1157, "NOT": 353, "DFFs": [ @@ -233,16 +233,16 @@ "Average Path": 4, "Estimated LUTs": 3309, "Total Node": 1108, - "Wires": 5388, - "Wire Bits": 8023, + "Wires": 5361, + "Wire Bits": 7965, "Public Wires": 459, "Public Wire Bits": 459, - "Total Cells": 6356, + "Total Cells": 6329, "MUX": 2960, - "XOR": 221, + "XOR": 189, "OR": 864, - "AND": 1010, - "NOT": 339, + "AND": 983, + "NOT": 371, "DFFs": [ "$_DFF_P_ 514" ], @@ -256,16 +256,6 @@ "warnings": [ "Replacing memory \\tx_valid_q with list of registers. See ../vtr_flow/benchmarks//ultraembedded/usb_uart_core.v:284", "Replacing memory \\tx_buffer_q with list of registers. See ../vtr_flow/benchmarks//ultraembedded/usb_uart_core.v:282", - "usb_uart_core.v:0 System task `$display' outside initial block is unsupported.", - "usb_uart_core.v:0 System task `$display' outside initial block is unsupported.", - "usb_uart_core.v:0 System task `$display' outside initial block is unsupported.", - "usb_uart_core.v:0 System task `$display' outside initial block is unsupported.", - "usb_uart_core.v:0 System task `$display' outside initial block is unsupported.", - "usb_uart_core.v:0 System task `$display' outside initial block is unsupported.", - "usb_uart_core.v:0 System task `$display' outside initial block is unsupported.", - "usb_uart_core.v:0 System task `$display' outside initial block is unsupported.", - "usb_uart_core.v:0 System task `$display' outside initial block is unsupported.", - "usb_uart_core.v:0 System task `$display' outside initial block is unsupported.", "Replacing memory \\setup_packet_q with list of registers. See ../vtr_flow/benchmarks//ultraembedded/usb_uart_core.v:1124", "Ignoring module usb_cdc_core because it contains processes (run 'proc' command first).", "Ignoring module ulpi_wrapper because it contains processes (run 'proc' command first).", @@ -324,19 +314,19 @@ "Adder": 189, "Memory": 16, "generic logic size": 4, - "Longest Path": 200, + "Longest Path": 171, "Average Path": 2, "Estimated LUTs": 2852, "Total Node": 1381, - "Wires": 3617, - "Wire Bits": 5284, + "Wires": 3621, + "Wire Bits": 5292, "Public Wires": 119, "Public Wire Bits": 119, - "Total Cells": 4099, + "Total Cells": 4101, "MUX": 1258, "XOR": 139, "OR": 1192, - "AND": 360, + "AND": 362, "NOT": 421, "DFFs": [ "$_DFF_P_ 524" diff --git a/parmys/regression_test/benchmark/task/vexriscv/synthesis_result.json b/parmys/regression_test/benchmark/task/vexriscv/synthesis_result.json index 055bc6d459c..f381e55300e 100644 --- a/parmys/regression_test/benchmark/task/vexriscv/synthesis_result.json +++ b/parmys/regression_test/benchmark/task/vexriscv/synthesis_result.json @@ -408,20 +408,20 @@ "Multiplier": 4, "Memory": 242, "generic logic size": 4, - "Longest Path": 836, + "Longest Path": 843, "Average Path": 4, - "Estimated LUTs": 8063, + "Estimated LUTs": 8043, "Total Node": 4065, - "Wires": 14711, - "Wire Bits": 20573, + "Wires": 14732, + "Wire Bits": 20401, "Public Wires": 877, "Public Wire Bits": 877, - "Total Cells": 17365, - "MUX": 6898, + "Total Cells": 17372, + "MUX": 6882, "XOR": 454, - "OR": 2549, - "AND": 1966, - "NOT": 926, + "OR": 2559, + "AND": 1970, + "NOT": 935, "DFFs": [ "$_DFF_N_ 1", "$_DFF_P_ 3386" @@ -920,7 +920,7 @@ "test_name": "vexriscv/BrieyWithMemoryInit/k6_frac_N10_frac_chain_mem32K_40nm", "exit": 1, "errors": [ - "BrieyWithMemoryInit.v:0 Can not open file `BrieyWithMemoryInit.v_toplevel_axi_ram_ram_symbol0.bin` for \\$readmemb." + "BrieyWithMemoryInit.v:11987 Can not open file `BrieyWithMemoryInit.v_toplevel_axi_ram_ram_symbol0.bin` for \\$readmemb." ] }, "vexriscv/MuraxCfu/k6_frac_N10_frac_chain_mem32K_40nm": { @@ -1066,16 +1066,16 @@ "generic logic size": 4, "Longest Path": 314, "Average Path": 4, - "Estimated LUTs": 3260, + "Estimated LUTs": 3240, "Total Node": 1609, "Wires": 5542, - "Wire Bits": 8491, + "Wire Bits": 8275, "Public Wires": 421, "Public Wire Bits": 421, - "Total Cells": 6839, - "MUX": 2597, + "Total Cells": 6824, + "MUX": 2581, "XOR": 144, - "OR": 1089, + "OR": 1090, "AND": 870, "NOT": 382, "DFFs": [ @@ -1229,17 +1229,17 @@ "generic logic size": 4, "Longest Path": 325, "Average Path": 3, - "Estimated LUTs": 3602, + "Estimated LUTs": 3582, "Total Node": 1645, - "Wires": 5930, - "Wire Bits": 8949, + "Wires": 5925, + "Wire Bits": 8729, "Public Wires": 464, "Public Wire Bits": 464, - "Total Cells": 7342, - "MUX": 3103, + "Total Cells": 7324, + "MUX": 3087, "XOR": 144, - "OR": 1044, - "AND": 916, + "OR": 1043, + "AND": 915, "NOT": 348, "DFFs": [ "$_DFF_N_ 1", @@ -1545,7 +1545,7 @@ "test_name": "vexriscv/MuraxWithRamInit/k6_frac_N10_frac_chain_mem32K_40nm", "exit": 1, "errors": [ - "MuraxWithRamInit.v:0 Can not open file `MuraxWithRamInit.v_toplevel_system_ram_ram_symbol0.bin` for \\$readmemb." + "MuraxWithRamInit.v:1616 Can not open file `MuraxWithRamInit.v_toplevel_system_ram_ram_symbol0.bin` for \\$readmemb." ] }, "vexriscv/VexRiscvFull/k6_frac_N10_frac_chain_mem32K_40nm": { @@ -1591,8 +1591,8 @@ "Average Path": 4, "Estimated LUTs": 4666, "Total Node": 1960, - "Wires": 8363, - "Wire Bits": 11546, + "Wires": 8366, + "Wire Bits": 11552, "Public Wires": 584, "Public Wire Bits": 584, "Total Cells": 9681, @@ -1818,16 +1818,16 @@ "Average Path": 3, "Estimated LUTs": 6611, "Total Node": 2574, - "Wires": 10968, - "Wire Bits": 15106, + "Wires": 10967, + "Wire Bits": 15099, "Public Wires": 583, "Public Wire Bits": 583, - "Total Cells": 13096, + "Total Cells": 13098, "MUX": 5888, "XOR": 331, - "OR": 1994, - "AND": 1246, - "NOT": 674, + "OR": 1996, + "AND": 1247, + "NOT": 673, "DFFs": [ "$_DFF_P_ 2303" ], @@ -1866,15 +1866,15 @@ "Estimated LUTs": 7117, "Total Node": 3035, "Wires": 11995, - "Wire Bits": 16363, + "Wire Bits": 16356, "Public Wires": 699, "Public Wire Bits": 699, - "Total Cells": 14058, + "Total Cells": 14060, "MUX": 6209, "XOR": 392, - "OR": 2170, - "AND": 1324, - "NOT": 727, + "OR": 2172, + "AND": 1325, + "NOT": 726, "DFFs": [ "$_DFF_P_ 2455" ], @@ -2220,16 +2220,16 @@ "Average Path": 4, "Estimated LUTs": 8969, "Total Node": 2639, - "Wires": 13227, - "Wire Bits": 18782, + "Wires": 13233, + "Wire Bits": 18788, "Public Wires": 674, "Public Wire Bits": 674, - "Total Cells": 16338, + "Total Cells": 16344, "MUX": 6669, "XOR": 1029, - "OR": 2804, - "AND": 1917, - "NOT": 779, + "OR": 2808, + "AND": 1918, + "NOT": 780, "DFFs": [ "$_DFF_P_ 2391" ], @@ -2360,8 +2360,8 @@ "Average Path": 5, "Estimated LUTs": 1535, "Total Node": 673, - "Wires": 2398, - "Wire Bits": 3931, + "Wires": 2397, + "Wire Bits": 3929, "Public Wires": 253, "Public Wire Bits": 253, "Total Cells": 3009, @@ -2426,56 +2426,56 @@ "test_name": "vexriscv/VexRiscvThreeStagesBar/k6_frac_N10_frac_chain_mem32K_40nm", "exit": 1, "errors": [ - "VexRiscvThreeStagesBar.v:0 Can not open file `VexRiscvThreeStagesBar.v_toplevel_RegFilePlugin_regFile.bin` for \\$readmemb." + "VexRiscvThreeStagesBar.v:851 Can not open file `VexRiscvThreeStagesBar.v_toplevel_RegFilePlugin_regFile.bin` for \\$readmemb." ] }, "vexriscv/VexRiscvThreeStages/k6_frac_N10_frac_chain_mem32K_40nm": { "test_name": "vexriscv/VexRiscvThreeStages/k6_frac_N10_frac_chain_mem32K_40nm", "exit": 1, "errors": [ - "VexRiscvThreeStages.v:0 Can not open file `VexRiscvThreeStages.v_toplevel_RegFilePlugin_regFile.bin` for \\$readmemb." + "VexRiscvThreeStages.v:858 Can not open file `VexRiscvThreeStages.v_toplevel_RegFilePlugin_regFile.bin` for \\$readmemb." ] }, "vexriscv/VexRiscvThreeStagesMDfast/k6_frac_N10_frac_chain_mem32K_40nm": { "test_name": "vexriscv/VexRiscvThreeStagesMDfast/k6_frac_N10_frac_chain_mem32K_40nm", "exit": 1, "errors": [ - "VexRiscvThreeStagesMDfast.v:0 Can not open file `VexRiscvThreeStagesMDfast.v_toplevel_RegFilePlugin_regFile.bin` for \\$readmemb." + "VexRiscvThreeStagesMDfast.v:998 Can not open file `VexRiscvThreeStagesMDfast.v_toplevel_RegFilePlugin_regFile.bin` for \\$readmemb." ] }, "vexriscv/VexRiscvThreeStagesMD/k6_frac_N10_frac_chain_mem32K_40nm": { "test_name": "vexriscv/VexRiscvThreeStagesMD/k6_frac_N10_frac_chain_mem32K_40nm", "exit": 1, "errors": [ - "VexRiscvThreeStagesMD.v:0 Can not open file `VexRiscvThreeStagesMD.v_toplevel_RegFilePlugin_regFile.bin` for \\$readmemb." + "VexRiscvThreeStagesMD.v:1009 Can not open file `VexRiscvThreeStagesMD.v_toplevel_RegFilePlugin_regFile.bin` for \\$readmemb." ] }, "vexriscv/VexRiscvTwoStagesBar/k6_frac_N10_frac_chain_mem32K_40nm": { "test_name": "vexriscv/VexRiscvTwoStagesBar/k6_frac_N10_frac_chain_mem32K_40nm", "exit": 1, "errors": [ - "VexRiscvTwoStagesBar.v:0 Can not open file `VexRiscvTwoStagesBar.v_toplevel_RegFilePlugin_regFile.bin` for \\$readmemb." + "VexRiscvTwoStagesBar.v:790 Can not open file `VexRiscvTwoStagesBar.v_toplevel_RegFilePlugin_regFile.bin` for \\$readmemb." ] }, "vexriscv/VexRiscvTwoStages/k6_frac_N10_frac_chain_mem32K_40nm": { "test_name": "vexriscv/VexRiscvTwoStages/k6_frac_N10_frac_chain_mem32K_40nm", "exit": 1, "errors": [ - "VexRiscvTwoStages.v:0 Can not open file `VexRiscvTwoStages.v_toplevel_RegFilePlugin_regFile.bin` for \\$readmemb." + "VexRiscvTwoStages.v:801 Can not open file `VexRiscvTwoStages.v_toplevel_RegFilePlugin_regFile.bin` for \\$readmemb." ] }, "vexriscv/VexRiscvTwoStagesMDfast/k6_frac_N10_frac_chain_mem32K_40nm": { "test_name": "vexriscv/VexRiscvTwoStagesMDfast/k6_frac_N10_frac_chain_mem32K_40nm", "exit": 1, "errors": [ - "VexRiscvTwoStagesMDfast.v:0 Can not open file `VexRiscvTwoStagesMDfast.v_toplevel_RegFilePlugin_regFile.bin` for \\$readmemb." + "VexRiscvTwoStagesMDfast.v:935 Can not open file `VexRiscvTwoStagesMDfast.v_toplevel_RegFilePlugin_regFile.bin` for \\$readmemb." ] }, "vexriscv/VexRiscvTwoStagesMD/k6_frac_N10_frac_chain_mem32K_40nm": { "test_name": "vexriscv/VexRiscvTwoStagesMD/k6_frac_N10_frac_chain_mem32K_40nm", "exit": 1, "errors": [ - "VexRiscvTwoStagesMD.v:0 Can not open file `VexRiscvTwoStagesMD.v_toplevel_RegFilePlugin_regFile.bin` for \\$readmemb." + "VexRiscvTwoStagesMD.v:946 Can not open file `VexRiscvTwoStagesMD.v_toplevel_RegFilePlugin_regFile.bin` for \\$readmemb." ] }, "DEFAULT": { diff --git a/utils/fasm/src/fasm.cpp b/utils/fasm/src/fasm.cpp index 5a1f314d331..9968473eb64 100644 --- a/utils/fasm/src/fasm.cpp +++ b/utils/fasm/src/fasm.cpp @@ -37,9 +37,9 @@ void FasmWriterVisitor::visit_top_impl(const char* top_level_name) { } void FasmWriterVisitor::visit_clb_impl(ClusterBlockId blk_id, const t_pb* clb) { - auto& place_ctx = g_vpr_ctx.placement(); auto& device_ctx = g_vpr_ctx.device(); auto& cluster_ctx = g_vpr_ctx.clustering(); + auto& block_locs = g_vpr_ctx.placement().block_locs(); current_blk_id_ = blk_id; @@ -48,10 +48,10 @@ void FasmWriterVisitor::visit_clb_impl(ClusterBlockId blk_id, const t_pb* clb) { root_clb_ = clb->pb_graph_node; - int x = place_ctx.block_locs[blk_id].loc.x; - int y = place_ctx.block_locs[blk_id].loc.y; - int layer_num = place_ctx.block_locs[blk_id].loc.layer; - int sub_tile = place_ctx.block_locs[blk_id].loc.sub_tile; + int x = block_locs[blk_id].loc.x; + int y = block_locs[blk_id].loc.y; + int layer_num = block_locs[blk_id].loc.layer; + int sub_tile = block_locs[blk_id].loc.sub_tile; physical_tile_ = device_ctx.grid.get_physical_type({x, y, layer_num}); logical_block_ = cluster_ctx.clb_nlist.block_type(blk_id); const auto& grid_meta = device_ctx.grid.get_metadata({x, y, layer_num}); diff --git a/utils/fasm/test/test_fasm.cpp b/utils/fasm/test/test_fasm.cpp index b700211825f..31c358d9d17 100644 --- a/utils/fasm/test/test_fasm.cpp +++ b/utils/fasm/test/test_fasm.cpp @@ -569,7 +569,7 @@ TEST_CASE("fasm_integration_test", "[fasm]") { // Verify occupied grid LOCs const auto & place_ctx = g_vpr_ctx.placement(); - for (const auto& loc: place_ctx.block_locs) { + for (const auto& loc: place_ctx.block_locs()) { // Do not consider "IOB" tiles. They do not have fasm features // defined in the arch. diff --git a/vpr/CMakeLists.txt b/vpr/CMakeLists.txt index 226822084f3..0cbaec216a6 100644 --- a/vpr/CMakeLists.txt +++ b/vpr/CMakeLists.txt @@ -109,21 +109,22 @@ endif () set_target_properties(libvpr PROPERTIES PREFIX "") #Avoid extra 'lib' prefix #Specify link-time dependencies +find_package(ZLIB) target_link_libraries(libvpr - libvtrutil - libarchfpga - libsdcparse - libblifparse - libtatum - libargparse - libpugixml - librrgraph + libvtrutil + libarchfpga + libsdcparse + libblifparse + libtatum + libargparse + libpugixml + librrgraph + ZLIB::ZLIB ) if(VPR_USE_SERVER) target_link_libraries(libvpr sockpp-static - -lz ) endif() diff --git a/vpr/src/analysis/timing_reports.cpp b/vpr/src/analysis/timing_reports.cpp index 88762367a95..7ff47a81cf9 100644 --- a/vpr/src/analysis/timing_reports.cpp +++ b/vpr/src/analysis/timing_reports.cpp @@ -12,13 +12,18 @@ #include "VprTimingGraphResolver.h" -void generate_setup_timing_stats(const std::string& prefix, const SetupTimingInfo& timing_info, const AnalysisDelayCalculator& delay_calc, const t_analysis_opts& analysis_opts, bool is_flat) { +void generate_setup_timing_stats(const std::string& prefix, + const SetupTimingInfo& timing_info, + const AnalysisDelayCalculator& delay_calc, + const t_analysis_opts& analysis_opts, + bool is_flat, + const BlkLocRegistry& blk_loc_registry) { auto& timing_ctx = g_vpr_ctx.timing(); auto& atom_ctx = g_vpr_ctx.atom(); print_setup_timing_summary(*timing_ctx.constraints, *timing_info.setup_analyzer(), "Final ", analysis_opts.write_timing_summary); - VprTimingGraphResolver resolver(atom_ctx.nlist, atom_ctx.lookup, *timing_ctx.graph, delay_calc, is_flat); + VprTimingGraphResolver resolver(atom_ctx.nlist, atom_ctx.lookup, *timing_ctx.graph, delay_calc, is_flat, blk_loc_registry); resolver.set_detail_level(analysis_opts.timing_report_detail); tatum::TimingReporter timing_reporter(resolver, *timing_ctx.graph, *timing_ctx.constraints); @@ -32,13 +37,18 @@ void generate_setup_timing_stats(const std::string& prefix, const SetupTimingInf timing_reporter.report_unconstrained_setup(prefix + "report_unconstrained_timing.setup.rpt", *timing_info.setup_analyzer()); } -void generate_hold_timing_stats(const std::string& prefix, const HoldTimingInfo& timing_info, const AnalysisDelayCalculator& delay_calc, const t_analysis_opts& analysis_opts, bool is_flat) { +void generate_hold_timing_stats(const std::string& prefix, + const HoldTimingInfo& timing_info, + const AnalysisDelayCalculator& delay_calc, + const t_analysis_opts& analysis_opts, + bool is_flat, + const BlkLocRegistry& blk_loc_registry) { auto& timing_ctx = g_vpr_ctx.timing(); auto& atom_ctx = g_vpr_ctx.atom(); print_hold_timing_summary(*timing_ctx.constraints, *timing_info.hold_analyzer(), "Final "); - VprTimingGraphResolver resolver(atom_ctx.nlist, atom_ctx.lookup, *timing_ctx.graph, delay_calc, is_flat); + VprTimingGraphResolver resolver(atom_ctx.nlist, atom_ctx.lookup, *timing_ctx.graph, delay_calc, is_flat, blk_loc_registry); resolver.set_detail_level(analysis_opts.timing_report_detail); tatum::TimingReporter timing_reporter(resolver, *timing_ctx.graph, *timing_ctx.constraints); diff --git a/vpr/src/analysis/timing_reports.h b/vpr/src/analysis/timing_reports.h index f09f20127e5..72e1013dece 100644 --- a/vpr/src/analysis/timing_reports.h +++ b/vpr/src/analysis/timing_reports.h @@ -5,7 +5,20 @@ #include "AnalysisDelayCalculator.h" #include "vpr_types.h" -void generate_setup_timing_stats(const std::string& prefix, const SetupTimingInfo& timing_info, const AnalysisDelayCalculator& delay_calc, const t_analysis_opts& report_detail, bool is_flat); -void generate_hold_timing_stats(const std::string& prefix, const HoldTimingInfo& timing_info, const AnalysisDelayCalculator& delay_calc, const t_analysis_opts& report_detail, bool is_flat); +class BlkLocRegistry; + +void generate_setup_timing_stats(const std::string& prefix, + const SetupTimingInfo& timing_info, + const AnalysisDelayCalculator& delay_calc, + const t_analysis_opts& report_detail, + bool is_flat, + const BlkLocRegistry& blk_loc_registry); + +void generate_hold_timing_stats(const std::string& prefix, + const HoldTimingInfo& timing_info, + const AnalysisDelayCalculator& delay_calc, + const t_analysis_opts& report_detail, + bool is_flat, + const BlkLocRegistry& blk_loc_registry); #endif diff --git a/vpr/src/base/ShowSetup.cpp b/vpr/src/base/ShowSetup.cpp index cdf51112e46..b9e32702b5d 100644 --- a/vpr/src/base/ShowSetup.cpp +++ b/vpr/src/base/ShowSetup.cpp @@ -527,10 +527,10 @@ static void ShowPlacerOpts(const t_placer_opts& PlacerOpts, VTR_LOG("PlacerOpts.pad_loc_type: "); switch (PlacerOpts.pad_loc_type) { - case FREE: + case e_pad_loc_type::FREE: VTR_LOG("FREE\n"); break; - case RANDOM: + case e_pad_loc_type::RANDOM: VTR_LOG("RANDOM\n"); break; default: diff --git a/vpr/src/base/ShowSetup.h b/vpr/src/base/ShowSetup.h index 4abef99da81..2991a1f42fe 100644 --- a/vpr/src/base/ShowSetup.h +++ b/vpr/src/base/ShowSetup.h @@ -1,6 +1,13 @@ #ifndef SHOWSETUP_H #define SHOWSETUP_H +#include +#include +#include + +class t_logical_block_type; +class t_vpr_setup; + struct ClusteredNetlistStats { private: void writeHuman(std::ostream& output) const; diff --git a/vpr/src/base/blk_loc_registry.cpp b/vpr/src/base/blk_loc_registry.cpp new file mode 100644 index 00000000000..b8a6348dc1c --- /dev/null +++ b/vpr/src/base/blk_loc_registry.cpp @@ -0,0 +1,114 @@ + +#include "blk_loc_registry.h" +#include "globals.h" + +const vtr::vector_map& BlkLocRegistry::block_locs() const { + return block_locs_; +} + +vtr::vector_map& BlkLocRegistry::mutable_block_locs() { + return block_locs_; +} + +const GridBlock& BlkLocRegistry::grid_blocks() const { + return grid_blocks_; +} + +GridBlock& BlkLocRegistry::mutable_grid_blocks() { + return grid_blocks_; +} + +const vtr::vector_map& BlkLocRegistry::physical_pins() const { + return physical_pins_; +} + +vtr::vector_map& BlkLocRegistry::mutable_physical_pins() { + return physical_pins_; +} + +int BlkLocRegistry::tile_pin_index(const ClusterPinId pin) const { + return physical_pins_[pin]; +} + +int BlkLocRegistry::net_pin_to_tile_pin_index(const ClusterNetId net_id, int net_pin_index) const { + auto& cluster_ctx = g_vpr_ctx.clustering(); + + // Get the logical pin index of pin within its logical block type + ClusterPinId pin_id = cluster_ctx.clb_nlist.net_pin(net_id, net_pin_index); + + return this->tile_pin_index(pin_id); +} + +void BlkLocRegistry::set_block_location(ClusterBlockId blk_id, const t_pl_loc& location) { + auto& device_ctx = g_vpr_ctx.device(); + auto& cluster_ctx = g_vpr_ctx.clustering(); + + const std::string& block_name = cluster_ctx.clb_nlist.block_name(blk_id); + + //Check if block location is out of range of grid dimensions + if (location.x < 0 || location.x > int(device_ctx.grid.width() - 1) + || location.y < 0 || location.y > int(device_ctx.grid.height() - 1)) { + VPR_THROW(VPR_ERROR_PLACE, "Block %s with ID %d is out of range at location (%d, %d). \n", + block_name.c_str(), blk_id, location.x, location.y); + } + + //Set the location of the block + block_locs_[blk_id].loc = location; + + //Check if block is at an illegal location + auto physical_tile = device_ctx.grid.get_physical_type({location.x, location.y, location.layer}); + auto logical_block = cluster_ctx.clb_nlist.block_type(blk_id); + + if (location.sub_tile >= physical_tile->capacity || location.sub_tile < 0) { + VPR_THROW(VPR_ERROR_PLACE, "Block %s subtile number (%d) is out of range. \n", block_name.c_str(), location.sub_tile); + } + + if (!is_sub_tile_compatible(physical_tile, logical_block, block_locs_[blk_id].loc.sub_tile)) { + VPR_THROW(VPR_ERROR_PLACE, "Attempt to place block %s with ID %d at illegal location (%d,%d,%d). \n", + block_name.c_str(), + blk_id, + location.x, + location.y, + location.layer); + } + + //Mark the grid location and usage of the block + grid_blocks_.set_block_at_location(location, blk_id); + grid_blocks_.increment_usage({location.x, location.y, location.layer}); + + place_sync_external_block_connections(blk_id); +} + +void BlkLocRegistry::place_sync_external_block_connections(ClusterBlockId iblk) { + const auto& cluster_ctx = g_vpr_ctx.clustering(); + const auto& clb_nlist = cluster_ctx.clb_nlist; + + t_pl_loc block_loc = block_locs_[iblk].loc; + + auto physical_tile = physical_tile_type(block_loc); + auto logical_block = clb_nlist.block_type(iblk); + + int sub_tile_index = get_sub_tile_index(iblk, block_locs_); + auto sub_tile = physical_tile->sub_tiles[sub_tile_index]; + + VTR_ASSERT(sub_tile.num_phy_pins % sub_tile.capacity.total() == 0); + + int max_num_block_pins = sub_tile.num_phy_pins / sub_tile.capacity.total(); + /* Logical location and physical location is offset by z * max_num_block_pins */ + + int rel_capacity = block_loc.sub_tile - sub_tile.capacity.low; + + for (ClusterPinId pin : clb_nlist.block_pins(iblk)) { + int logical_pin_index = clb_nlist.pin_logical_index(pin); + int sub_tile_pin_index = get_sub_tile_physical_pin(sub_tile_index, physical_tile, logical_block, logical_pin_index); + + int new_physical_pin_index = sub_tile.sub_tile_to_tile_pin_indices[sub_tile_pin_index + rel_capacity * max_num_block_pins]; + + auto result = physical_pins_.find(pin); + if (result != physical_pins_.end()) { + physical_pins_[pin] = new_physical_pin_index; + } else { + physical_pins_.insert(pin, new_physical_pin_index); + } + } +} diff --git a/vpr/src/base/blk_loc_registry.h b/vpr/src/base/blk_loc_registry.h new file mode 100644 index 00000000000..99567d17e0a --- /dev/null +++ b/vpr/src/base/blk_loc_registry.h @@ -0,0 +1,85 @@ +#ifndef VTR_BLK_LOC_REGISTRY_H +#define VTR_BLK_LOC_REGISTRY_H + +#include "clustered_netlist_fwd.h" +#include "vtr_vector_map.h" +#include "vpr_types.h" +#include "grid_block.h" + +struct t_block_loc; + +/** + * @class BlkLocRegistry contains information about the placement of clustered blocks. + * More specifically: + * 1) block_locs stores the location where each clustered blocks is placed at. + * 2) grid_blocks stores which blocks (if any) are placed at a given location. + * 3) physical_pins stores the mapping between the pins of a clustered block and + * the pins of the physical tile where the clustered blocks is placed. + * + */ +class BlkLocRegistry { + public: + BlkLocRegistry() = default; + ~BlkLocRegistry() = default; + BlkLocRegistry(const BlkLocRegistry&) = delete; + BlkLocRegistry& operator=(const BlkLocRegistry&) = default; + BlkLocRegistry(BlkLocRegistry&&) = delete; + BlkLocRegistry& operator=(BlkLocRegistry&&) = delete; + + private: + ///@brief Clustered block placement locations + vtr::vector_map block_locs_; + + ///@brief Clustered block associated with each grid location (i.e. inverse of block_locs) + GridBlock grid_blocks_; + + ///@brief Clustered pin placement mapping with physical pin + vtr::vector_map physical_pins_; + + public: + const vtr::vector_map& block_locs() const; + vtr::vector_map& mutable_block_locs(); + + const GridBlock& grid_blocks() const; + GridBlock& mutable_grid_blocks(); + + const vtr::vector_map& physical_pins() const; + vtr::vector_map& mutable_physical_pins(); + + ///@brief Returns the physical pin of the tile, related to the given ClusterPinId + int tile_pin_index(const ClusterPinId pin) const; + + ///@brief Returns the physical pin of the tile, related to the given ClusterNedId, and the net pin index. + int net_pin_to_tile_pin_index(const ClusterNetId net_id, int net_pin_index) const; + + /** + * @brief Performs error checking to see if location is legal for block type, + * and sets the location and grid usage of the block if it is legal. + * @param blk_id The unique ID of the clustered block whose location is to set. + * @param location The location where the clustered block should placed at. + */ + void set_block_location(ClusterBlockId blk_id, const t_pl_loc& location); + + /** + * @brief Syncs the logical block pins corresponding to the input iblk with the corresponding chosen physical tile + * @param iblk cluster block ID to sync within the assigned physical tile + * + * This routine updates the physical pins vector of the place context after the placement step + * to synchronize the pins related to the logical block with the actual connection interface of + * the belonging physical tile with the RR graph. + * + * This step is required as the logical block can be placed at any compatible sub tile locations + * within a physical tile. + * Given that it is possible to have equivalent logical blocks within a specific sub tile, with + * a different subset of IO pins, the various pins offsets must be correctly computed and assigned + * to the physical pins vector, so that, when the net RR terminals are computed, the correct physical + * tile IO pins are selected. + * + * This routine uses the x,y and sub_tile coordinates of the clb netlist, and expects those to place each netlist block + * at a legal location that can accommodate it. + * It does not check for overuse of locations, therefore it can be used with placements that have resource overuse. + */ + void place_sync_external_block_connections(ClusterBlockId iblk); +}; + +#endif //VTR_BLK_LOC_REGISTRY_H diff --git a/vpr/src/base/grid_block.cpp b/vpr/src/base/grid_block.cpp new file mode 100644 index 00000000000..9053830473e --- /dev/null +++ b/vpr/src/base/grid_block.cpp @@ -0,0 +1,59 @@ + +#include "grid_block.h" + +#include "globals.h" + +void GridBlock::zero_initialize() { + auto& device_ctx = g_vpr_ctx.device(); + + /* Initialize all occupancy to zero. */ + for (int layer_num = 0; layer_num < (int)device_ctx.grid.get_num_layers(); layer_num++) { + for (int i = 0; i < (int)device_ctx.grid.width(); i++) { + for (int j = 0; j < (int)device_ctx.grid.height(); j++) { + set_usage({i, j, layer_num}, 0); + auto tile = device_ctx.grid.get_physical_type({i, j, layer_num}); + + for (const auto& sub_tile : tile->sub_tiles) { + auto capacity = sub_tile.capacity; + + for (int k = 0; k < capacity.total(); k++) { + set_block_at_location({i, j, k + capacity.low, layer_num}, ClusterBlockId::INVALID()); + } + } + } + } + } +} + +void GridBlock::load_from_block_locs(const vtr::vector_map& block_locs) { + auto& cluster_ctx = g_vpr_ctx.clustering(); + auto& device_ctx = g_vpr_ctx.device(); + + zero_initialize(); + + for (ClusterBlockId blk_id : cluster_ctx.clb_nlist.blocks()) { + t_pl_loc location = block_locs[blk_id].loc; + + VTR_ASSERT(location.x < (int)device_ctx.grid.width()); + VTR_ASSERT(location.y < (int)device_ctx.grid.height()); + + set_block_at_location(location, blk_id); + increment_usage({location.x, location.y, location.layer}); + } +} + +int GridBlock::increment_usage(const t_physical_tile_loc& loc) { + int curr_usage = get_usage(loc); + int updated_usage = set_usage(loc, curr_usage + 1); + + return updated_usage; +} + +int GridBlock::decrement_usage(const t_physical_tile_loc& loc) { + int curr_usage = get_usage(loc); + int updated_usage = set_usage(loc, curr_usage - 1); + + return updated_usage; +} + + diff --git a/vpr/src/base/grid_block.h b/vpr/src/base/grid_block.h new file mode 100644 index 00000000000..12e934f0af9 --- /dev/null +++ b/vpr/src/base/grid_block.h @@ -0,0 +1,92 @@ +#ifndef VTR_GRID_BLOCK_H +#define VTR_GRID_BLOCK_H + +#include "clustered_netlist_fwd.h" +#include "physical_types.h" +#include "vpr_types.h" + +#include + +///@brief Stores the clustered blocks placed at a particular grid location +struct t_grid_blocks { + int usage; ///capacity] + */ + std::vector blocks; + + /** + * @brief Test if a subtile at a grid location is occupied by a block. + * + * Returns true if the subtile corresponds to the passed-in id is not + * occupied by a block at this grid location. The subtile id serves + * as the z-dimensional offset in the grid indexing. + */ + inline bool subtile_empty(size_t isubtile) const { + return blocks[isubtile] == ClusterBlockId::INVALID(); + } +}; + +class GridBlock { + public: + GridBlock() = default; + + GridBlock(size_t width, size_t height, size_t layers) { + grid_blocks_.resize({layers, width, height}); + } + + inline void initialized_grid_block_at_location(const t_physical_tile_loc& loc, int num_sub_tiles) { + grid_blocks_[loc.layer_num][loc.x][loc.y].blocks.resize(num_sub_tiles, ClusterBlockId::INVALID()); + } + + inline void set_block_at_location(const t_pl_loc& loc, ClusterBlockId blk_id) { + grid_blocks_[loc.layer][loc.x][loc.y].blocks[loc.sub_tile] = blk_id; + } + + inline ClusterBlockId block_at_location(const t_pl_loc& loc) const { + return grid_blocks_[loc.layer][loc.x][loc.y].blocks[loc.sub_tile]; + } + + inline size_t num_blocks_at_location(const t_physical_tile_loc& loc) const { + return grid_blocks_[loc.layer_num][loc.x][loc.y].blocks.size(); + } + + inline int set_usage(const t_physical_tile_loc loc, int usage) { + return grid_blocks_[loc.layer_num][loc.x][loc.y].usage = usage; + } + + inline int get_usage(const t_physical_tile_loc loc) const { + return grid_blocks_[loc.layer_num][loc.x][loc.y].usage; + } + + inline bool is_sub_tile_empty(const t_physical_tile_loc loc, int sub_tile) const { + return grid_blocks_[loc.layer_num][loc.x][loc.y].subtile_empty(sub_tile); + } + + inline void clear() { + grid_blocks_.clear(); + } + + /** + * @brief Initialize usage to 0 and blockID to INVALID for all grid block locations + */ + void zero_initialize(); + + /** + * @brief Initializes the GridBlock object with the given block_locs. + * @param block_locs Stores the location of each clustered block. + */ + void load_from_block_locs(const vtr::vector_map& block_locs); + + int increment_usage(const t_physical_tile_loc& loc); + + int decrement_usage(const t_physical_tile_loc& loc); + + private: + vtr::NdMatrix grid_blocks_; +}; + +#endif //VTR_GRID_BLOCK_H diff --git a/vpr/src/base/load_flat_place.cpp b/vpr/src/base/load_flat_place.cpp index 01b2978a310..f13b9f35167 100644 --- a/vpr/src/base/load_flat_place.cpp +++ b/vpr/src/base/load_flat_place.cpp @@ -9,12 +9,13 @@ static void print_flat_cluster(FILE* fp, ClusterBlockId iblk, static void print_flat_cluster(FILE* fp, ClusterBlockId iblk, std::vector& atoms) { + const auto& atom_ctx = g_vpr_ctx.atom(); + const auto& block_locs = g_vpr_ctx.placement().block_locs(); - auto& atom_ctx = g_vpr_ctx.atom(); - t_pl_loc loc = g_vpr_ctx.placement().block_locs[iblk].loc; + t_pl_loc loc = block_locs[iblk].loc; size_t bnum = size_t(iblk); - for (auto atom : atoms) { + for (AtomBlockId atom : atoms) { t_pb_graph_node* atom_pbgn = atom_ctx.lookup.atom_pb(atom)->pb_graph_node; fprintf(fp, "%s %d %d %d %d #%zu %s\n", atom_ctx.nlist.block_name(atom).c_str(), loc.x, loc.y, loc.sub_tile, @@ -26,15 +27,16 @@ static void print_flat_cluster(FILE* fp, ClusterBlockId iblk, /* prints a flat placement file */ void print_flat_placement(const char* flat_place_file) { - + const auto& block_locs = g_vpr_ctx.placement().block_locs(); + FILE* fp; ClusterAtomsLookup atoms_lookup; auto& cluster_ctx = g_vpr_ctx.clustering(); - if (!g_vpr_ctx.placement().block_locs.empty()) { + if (!block_locs.empty()) { fp = fopen(flat_place_file, "w"); - for (auto iblk : cluster_ctx.clb_nlist.blocks()) { + for (ClusterBlockId iblk : cluster_ctx.clb_nlist.blocks()) { auto atoms = atoms_lookup.atoms_in_cluster(iblk); print_flat_cluster(fp, iblk, atoms); } diff --git a/vpr/src/base/place_and_route.cpp b/vpr/src/base/place_and_route.cpp index 2701b46cc09..f95ff2b9b00 100644 --- a/vpr/src/base/place_and_route.cpp +++ b/vpr/src/base/place_and_route.cpp @@ -34,6 +34,7 @@ #include "route_common.h" #include "place_macro.h" #include "power.h" +#include "place_util.h" #include "RoutingDelayCalculator.h" #include "timing_info.h" @@ -348,7 +349,7 @@ int binary_search_place_and_route(const Netlist<>& placement_net_list, ScreenUpdatePriority::MINOR, is_flat); - if (success && Fc_clipped == false) { + if (success && !Fc_clipped) { final = current; save_routing(best_routing, route_ctx.clb_opins_used_locally, @@ -357,8 +358,9 @@ int binary_search_place_and_route(const Netlist<>& placement_net_list, if (placer_opts.place_freq == PLACE_ALWAYS) { auto& cluster_ctx = g_vpr_ctx.clustering(); // Cluster-based net_list is used for placement - print_place(filename_opts.NetFile.c_str(), cluster_ctx.clb_nlist.netlist_id().c_str(), - filename_opts.PlaceFile.c_str()); + std::string placement_id = print_place(filename_opts.NetFile.c_str(), cluster_ctx.clb_nlist.netlist_id().c_str(), + filename_opts.PlaceFile.c_str(), g_vpr_ctx.placement().block_locs()); + g_vpr_ctx.mutable_placement().placement_id = placement_id; } } @@ -389,7 +391,7 @@ int binary_search_place_and_route(const Netlist<>& placement_net_list, &warnings, is_flat); - init_draw_coords(final); + init_draw_coords(final, g_vpr_ctx.placement().blk_loc_registry()); /* Allocate and load additional rr_graph information needed only by the router. */ alloc_and_load_rr_node_route_structs(); @@ -556,26 +558,28 @@ static float comp_width(t_chan* chan, float x, float separation) { break; } - return (val); + return val; } /** * @brief After placement, logical pins for blocks, and nets must be updated to correspond with physical pins of type. * - * This is required by blocks with capacity > 1 (e.g. typically IOs with multiple instaces in each placement - * gride location). Since they may be swapped around during placement, we need to update which pins the various + * This is required by blocks with capacity > 1 (e.g. typically IOs with multiple instances in each placement + * grid location). Since they may be swapped around during placement, we need to update which pins the various * nets use. * - * This updates both the external inter-block net connecitivity (i.e. the clustered netlist), and the intra-block + * This updates both the external inter-block net connectivity (i.e. the clustered netlist), and the intra-block * connectivity (since the internal pins used also change). * * This function should only be called once */ void post_place_sync() { /* Go through each block */ - auto& cluster_ctx = g_vpr_ctx.clustering(); + const auto& cluster_ctx = g_vpr_ctx.clustering(); + auto& blk_loc_registry = g_vpr_ctx.mutable_placement().mutable_blk_loc_registry(); + // Cluster-based netlist is used for placement - for (auto block_id : cluster_ctx.clb_nlist.blocks()) { - place_sync_external_block_connections(block_id); + for (const ClusterBlockId block_id : cluster_ctx.clb_nlist.blocks()) { + blk_loc_registry.place_sync_external_block_connections(block_id); } } diff --git a/vpr/src/base/read_circuit.cpp b/vpr/src/base/read_circuit.cpp index dd2be16f7cd..4d6fab3f25d 100644 --- a/vpr/src/base/read_circuit.cpp +++ b/vpr/src/base/read_circuit.cpp @@ -4,10 +4,8 @@ #include "atom_netlist.h" #include "atom_netlist_utils.h" #include "echo_files.h" - #include "vtr_assert.h" #include "vtr_log.h" -#include "vtr_util.h" #include "vtr_path.h" #include "vtr_time.h" @@ -145,34 +143,31 @@ static void process_circuit(AtomNetlist& netlist, } static void show_circuit_stats(const AtomNetlist& netlist) { + // Count the block statistics std::map block_type_counts; - - //Count the block statistics + std::map lut_size_counts; for (auto blk_id : netlist.blocks()) { + // For each model, count the number of occurrences in the netlist. const t_model* blk_model = netlist.block_model(blk_id); + ++block_type_counts[blk_model->name]; + // If this block is a LUT, also count the occurences of this size of LUT + // for more logging information. if (blk_model->name == std::string(MODEL_NAMES)) { - //LUT - size_t lut_size = 0; + // May have zero (no input LUT) or one input port auto in_ports = netlist.block_input_ports(blk_id); - - //May have zero (no input LUT) or one input port + VTR_ASSERT(in_ports.size() <= 1 && "Expected number of input ports for LUT to be 0 or 1"); + size_t lut_size = 0; if (in_ports.size() == 1) { + // Use the number of pins in the input port to determine the + // size of the LUT. auto port_id = *in_ports.begin(); - - //Figure out the LUT size - lut_size = netlist.port_width(port_id); - - } else { - VTR_ASSERT(in_ports.size() == 0); + lut_size = netlist.port_pins(port_id).size(); } - - ++block_type_counts[std::to_string(lut_size) + "-LUT"]; - } else { - //Other types - ++block_type_counts[blk_model->name]; + ++lut_size_counts[std::to_string(lut_size) + "-LUT"]; } } - //Count the net statistics + + // Count the net statistics std::map net_stats; for (auto net_id : netlist.nets()) { double fanout = netlist.net_sinks(net_id).size(); @@ -189,21 +184,32 @@ static void show_circuit_stats(const AtomNetlist& netlist) { } net_stats["Avg Fanout"] /= netlist.nets().size(); - //Determine the maximum length of a type name for nice formatting + // Determine the maximum length of a type name for nice formatting size_t max_block_type_len = 0; for (const auto& kv : block_type_counts) { max_block_type_len = std::max(max_block_type_len, kv.first.size()); } + size_t max_lut_size_len = 0; + for (const auto& kv : lut_size_counts) { + max_lut_size_len = std::max(max_lut_size_len, kv.first.size()); + } size_t max_net_type_len = 0; for (const auto& kv : net_stats) { max_net_type_len = std::max(max_net_type_len, kv.first.size()); } - //Print the statistics + // Print the statistics VTR_LOG("Circuit Statistics:\n"); VTR_LOG(" Blocks: %zu\n", netlist.blocks().size()); for (const auto& kv : block_type_counts) { VTR_LOG(" %-*s: %7zu\n", max_block_type_len, kv.first.c_str(), kv.second); + // If this block is a LUT, print the different sizes of LUTs in the + // design. + if (kv.first == std::string(MODEL_NAMES)) { + for (const auto& lut_kv : lut_size_counts) { + VTR_LOG(" %-*s: %7zu\n", max_lut_size_len, lut_kv.first.c_str(), lut_kv.second); + } + } } VTR_LOG(" Nets : %zu\n", netlist.nets().size()); for (const auto& kv : net_stats) { diff --git a/vpr/src/base/read_options.cpp b/vpr/src/base/read_options.cpp index 48bfc1d2fb2..9ceb3237f64 100644 --- a/vpr/src/base/read_options.cpp +++ b/vpr/src/base/read_options.cpp @@ -532,9 +532,9 @@ struct ParseFixPins { ConvertedValue from_str(const std::string& str) { ConvertedValue conv_value; if (str == "free") - conv_value.set_value(FREE); + conv_value.set_value(e_pad_loc_type::FREE); else if (str == "random") - conv_value.set_value(RANDOM); + conv_value.set_value(e_pad_loc_type::RANDOM); else { std::stringstream msg; msg << "Invalid conversion from '" << str << "' to e_router_algorithm (expected one of: " << argparse::join(default_choices(), ", ") << ")"; @@ -545,10 +545,10 @@ struct ParseFixPins { ConvertedValue to_str(e_pad_loc_type val) { ConvertedValue conv_value; - if (val == FREE) + if (val == e_pad_loc_type::FREE) conv_value.set_value("free"); else { - VTR_ASSERT(val == RANDOM); + VTR_ASSERT(val == e_pad_loc_type::RANDOM); conv_value.set_value("random"); } return conv_value; diff --git a/vpr/src/base/read_place.cpp b/vpr/src/base/read_place.cpp index 4e52df3b040..5813a780a26 100644 --- a/vpr/src/base/read_place.cpp +++ b/vpr/src/base/read_place.cpp @@ -1,9 +1,7 @@ #include #include #include -#include -#include "vtr_assert.h" #include "vtr_util.h" #include "vtr_log.h" #include "vtr_digest.h" @@ -17,23 +15,22 @@ #include "read_xml_arch_file.h" #include "place_util.h" -void read_place_header( - std::ifstream& placement_file, - const char* net_file, - const char* place_file, - bool verify_file_hashes, - const DeviceGrid& grid); - -void read_place_body( - std::ifstream& placement_file, - const char* place_file, - bool is_place_file); - -void read_place( - const char* net_file, - const char* place_file, - bool verify_file_digests, - const DeviceGrid& grid) { +static void read_place_header(std::ifstream& placement_file, + const char* net_file, + const char* place_file, + bool verify_file_digests, + const DeviceGrid& grid); + +static std::string read_place_body(std::ifstream& placement_file, + BlkLocRegistry& blk_loc_registry, + const char* place_file, + bool is_place_file); + +std::string read_place(const char* net_file, + const char* place_file, + BlkLocRegistry& blk_loc_registry, + bool verify_file_digests, + const DeviceGrid& grid) { std::ifstream fstream(place_file); if (!fstream) { VPR_FATAL_ERROR(VPR_ERROR_PLACE_F, @@ -47,13 +44,16 @@ void read_place( VTR_LOG("\n"); read_place_header(fstream, net_file, place_file, verify_file_digests, grid); - read_place_body(fstream, place_file, is_place_file); + std::string placement_id = read_place_body(fstream, blk_loc_registry, place_file, is_place_file); VTR_LOG("Successfully read %s.\n", place_file); VTR_LOG("\n"); + + return placement_id; } -void read_constraints(const char* constraints_file) { +void read_constraints(const char* constraints_file, + BlkLocRegistry& blk_loc_registry) { std::ifstream fstream(constraints_file); if (!fstream) { VPR_FATAL_ERROR(VPR_ERROR_PLACE_F, @@ -66,7 +66,7 @@ void read_constraints(const char* constraints_file) { VTR_LOG("Reading %s.\n", constraints_file); VTR_LOG("\n"); - read_place_body(fstream, constraints_file, is_place_file); + read_place_body(fstream, blk_loc_registry, constraints_file, is_place_file); VTR_LOG("Successfully read constraints file %s.\n", constraints_file); VTR_LOG("\n"); @@ -80,11 +80,11 @@ void read_constraints(const char* constraints_file) { * The verify_file_digests bool is used to decide whether to give a warning or an error if the netlist files do not match. * An error is given if the grid size has changed. */ -void read_place_header(std::ifstream& placement_file, - const char* net_file, - const char* place_file, - bool verify_file_digests, - const DeviceGrid& grid) { +static void read_place_header(std::ifstream& placement_file, + const char* net_file, + const char* place_file, + bool verify_file_digests, + const DeviceGrid& grid) { auto& cluster_ctx = g_vpr_ctx.clustering(); std::string line; @@ -205,12 +205,13 @@ void read_place_header(std::ifstream& placement_file, * The bool is_place_file indicates if the file should be read as a place file (is_place_file = true) * or a constraints file (is_place_file = false). */ -void read_place_body(std::ifstream& placement_file, - const char* place_file, - bool is_place_file) { +static std::string read_place_body(std::ifstream& placement_file, + BlkLocRegistry& blk_loc_registry, + const char* place_file, + bool is_place_file) { auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.mutable_placement(); auto& atom_ctx = g_vpr_ctx.atom(); + auto& block_locs = blk_loc_registry.mutable_block_locs(); std::string line; int lineno = 0; @@ -219,7 +220,7 @@ void read_place_body(std::ifstream& placement_file, vtr::vector_map seen_blocks; //initialize seen_blocks - for (auto block_id : cluster_ctx.clb_nlist.blocks()) { + for (ClusterBlockId block_id : cluster_ctx.clb_nlist.blocks()) { int seen_count = 0; seen_blocks.insert(block_id, seen_count); } @@ -286,10 +287,10 @@ void read_place_body(std::ifstream& placement_file, //Check if block is listed multiple times with conflicting locations in constraints file if (seen_blocks[blk_id] > 0) { - if (block_x != place_ctx.block_locs[blk_id].loc.x || - block_y != place_ctx.block_locs[blk_id].loc.y || - sub_tile_index != place_ctx.block_locs[blk_id].loc.sub_tile || - block_layer != place_ctx.block_locs[blk_id].loc.layer) { + if (block_x != block_locs[blk_id].loc.x || + block_y != block_locs[blk_id].loc.y || + sub_tile_index != block_locs[blk_id].loc.sub_tile || + block_layer != block_locs[blk_id].loc.layer) { std::string cluster_name = cluster_ctx.clb_nlist.block_name(blk_id); VPR_THROW(VPR_ERROR_PLACE, "The location of cluster %s (#%d) is specified %d times in the constraints file with conflicting locations. \n" @@ -305,20 +306,20 @@ void read_place_body(std::ifstream& placement_file, loc.layer = block_layer; if (seen_blocks[blk_id] == 0) { - if (is_place_file && place_ctx.block_locs[blk_id].is_fixed) { - const auto& contraint_loc = place_ctx.block_locs[blk_id].loc; - if (loc != contraint_loc) { + if (is_place_file && block_locs[blk_id].is_fixed) { + const t_pl_loc& constraint_loc = block_locs[blk_id].loc; + if (loc != constraint_loc) { VPR_THROW(VPR_ERROR_PLACE, "The new location assigned to cluster #%d is (%d,%d,%d,%d), which is inconsistent with the location specified in the constraint file (%d,%d,%d,%d).", - blk_id, loc.x, loc.y, loc.layer, loc.sub_tile, contraint_loc.x, contraint_loc.y, contraint_loc.layer, contraint_loc.sub_tile); + blk_id, loc.x, loc.y, loc.layer, loc.sub_tile, constraint_loc.x, constraint_loc.y, constraint_loc.layer, constraint_loc.sub_tile); } } - set_block_location(blk_id, loc); + blk_loc_registry.set_block_location(blk_id, loc); } //need to lock down blocks if it is a constraints file if (!is_place_file) { - place_ctx.block_locs[blk_id].is_fixed = true; + block_locs[blk_id].is_fixed = true; } //mark the block as seen @@ -335,7 +336,7 @@ void read_place_body(std::ifstream& placement_file, //For place files, check that all blocks have been read //For constraints files, not all blocks need to be read if (is_place_file) { - for (auto block_id : cluster_ctx.clb_nlist.blocks()) { + for (ClusterBlockId block_id : cluster_ctx.clb_nlist.blocks()) { if (seen_blocks[block_id] == 0) { VPR_THROW(VPR_ERROR_PLACE, "Block %d has not been read from the place file. \n", block_id); } @@ -344,7 +345,9 @@ void read_place_body(std::ifstream& placement_file, //Want to make a hash for place file to be used during routing for error checking if (is_place_file) { - place_ctx.placement_id = vtr::secure_digest_file(place_file); + return vtr::secure_digest_file(place_file); + } else { + return {}; } } @@ -354,15 +357,15 @@ void read_place_body(std::ifstream& placement_file, * The architecture and netlist files used to generate this placement are recorded * in the file to avoid loading a placement with the wrong support file later. */ -void print_place(const char* net_file, - const char* net_id, - const char* place_file, - bool is_place_file) { +std::string print_place(const char* net_file, + const char* net_id, + const char* place_file, + const vtr::vector_map& block_locs, + bool is_place_file) { FILE* fp; auto& device_ctx = g_vpr_ctx.device(); auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.mutable_placement(); fp = fopen(place_file, "w"); @@ -375,10 +378,10 @@ void print_place(const char* net_file, fprintf(fp, "#----------\t--\t--\t------\t-----\t------------\n"); } - if (!place_ctx.block_locs.empty()) { //Only if placement exists - for (auto blk_id : cluster_ctx.clb_nlist.blocks()) { + if (!block_locs.empty()) { //Only if placement exists + for (ClusterBlockId blk_id : cluster_ctx.clb_nlist.blocks()) { // if block is not placed, skip (useful for printing legalizer output) - if (!is_place_file && (place_ctx.block_locs[blk_id].loc.x == INVALID_X)) { + if (!is_place_file && (block_locs[blk_id].loc.x == INVALID_X)) { continue; } fprintf(fp, "%s\t", cluster_ctx.clb_nlist.block_pb(blk_id)->name); @@ -386,15 +389,15 @@ void print_place(const char* net_file, fprintf(fp, "\t"); fprintf(fp, "%d\t%d\t%d\t%d", - place_ctx.block_locs[blk_id].loc.x, - place_ctx.block_locs[blk_id].loc.y, - place_ctx.block_locs[blk_id].loc.sub_tile, - place_ctx.block_locs[blk_id].loc.layer); + block_locs[blk_id].loc.x, + block_locs[blk_id].loc.y, + block_locs[blk_id].loc.sub_tile, + block_locs[blk_id].loc.layer); fprintf(fp, "\t#%zu\n", size_t(blk_id)); } } fclose(fp); //Calculate the ID of the placement - place_ctx.placement_id = vtr::secure_digest_file(place_file); + return vtr::secure_digest_file(place_file); } diff --git a/vpr/src/base/read_place.h b/vpr/src/base/read_place.h index 4dfd9aef82e..088f17dd546 100644 --- a/vpr/src/base/read_place.h +++ b/vpr/src/base/read_place.h @@ -1,21 +1,31 @@ #ifndef READ_PLACE_H #define READ_PLACE_H +#include "vtr_vector_map.h" + +#include + + +class PlacerState; +class ClusterBlockId; +struct t_block_loc; + /** * This function is for reading a place file when placement is skipped. * It takes in the current netlist file and grid dimensions to check that they match those that were used when placement was generated. * The verify_file_hashes bool is used to decide whether to give a warning or an error if the netlist files do not match. */ -void read_place( - const char* net_file, - const char* place_file, - bool verify_file_hashes, - const DeviceGrid& grid); +std::string read_place(const char* net_file, + const char* place_file, + BlkLocRegistry& blk_loc_registry, + bool verify_file_hashes, + const DeviceGrid& grid); /** * This function is used to read a constraints file that specifies the desired locations of blocks. */ -void read_constraints(const char* constraints_file); +void read_constraints(const char* constraints_file, + BlkLocRegistry& blk_loc_registry); /** * This function prints out a place file. @@ -27,9 +37,10 @@ void read_constraints(const char* constraints_file); * will not be included; this file is used as a placement constraints * file when running placement in order to place orphan clusters. */ -void print_place(const char* net_file, - const char* net_id, - const char* place_file, - bool is_place_file = true); +std::string print_place(const char* net_file, + const char* net_id, + const char* place_file, + const vtr::vector_map& block_locs, + bool is_place_file = true); #endif diff --git a/vpr/src/base/read_route.cpp b/vpr/src/base/read_route.cpp index 777ca226710..998e0c5434f 100644 --- a/vpr/src/base/read_route.cpp +++ b/vpr/src/base/read_route.cpp @@ -222,7 +222,7 @@ static void process_nodes(const Netlist<>& net_list, std::ifstream& fp, ClusterN auto& device_ctx = g_vpr_ctx.mutable_device(); const auto& rr_graph = device_ctx.rr_graph; auto& route_ctx = g_vpr_ctx.mutable_routing(); - auto& place_ctx = g_vpr_ctx.placement(); + const auto& grid_blocks = g_vpr_ctx.placement().grid_blocks(); t_trace* head_ptr = nullptr; t_trace* tptr = nullptr; @@ -323,7 +323,9 @@ static void process_nodes(const Netlist<>& net_list, std::ifstream& fp, ClusterN ptc = atoi(tokens[5 + offset].c_str()); if (rr_graph.node_ptc_num(RRNodeId(inode)) != ptc) { vpr_throw(VPR_ERROR_ROUTE, filename, lineno, - "The ptc num of node %d does not match the rr graph, Running without flat routing; if this file was created with flat routing, re-run vpr with the --flat_routing option", inode); + "The ptc num of node %d does not match the rr graph, Running without flat routing; " + "if this file was created with flat routing, re-run vpr with the --flat_routing option", + inode); } /*Process switches and pb pin info if it is ipin or opin type*/ @@ -335,12 +337,10 @@ static void process_nodes(const Netlist<>& net_list, std::ifstream& fp, ClusterN int width_offset = device_ctx.grid.get_width_offset({x, y, layer_num}); int height_offset = device_ctx.grid.get_height_offset({x, y, layer_num}); auto physical_tile = device_ctx.grid.get_physical_type({x, y, layer_num}); - const t_sub_tile* sub_tile; - int sub_tile_rel_cap; - std::tie(sub_tile, sub_tile_rel_cap) = get_sub_tile_from_pin_physical_num(physical_tile, pin_num); + auto [sub_tile, sub_tile_rel_cap] = get_sub_tile_from_pin_physical_num(physical_tile, pin_num); int sub_tile_offset = sub_tile->capacity.low + sub_tile_rel_cap; - ClusterBlockId iblock = place_ctx.grid_blocks.block_at_location({x - width_offset, y - height_offset, sub_tile_offset, layer_num}); + ClusterBlockId iblock = grid_blocks.block_at_location({x - width_offset, y - height_offset, sub_tile_offset, layer_num}); VTR_ASSERT(iblock); const t_pb_graph_pin* pb_pin; @@ -569,7 +569,7 @@ static bool check_rr_graph_connectivity(RRNodeId prev_node, RRNodeId node) { void print_route(const Netlist<>& net_list, FILE* fp, bool is_flat) { - auto& place_ctx = g_vpr_ctx.placement(); + const auto& grid_blocks = g_vpr_ctx.placement().grid_blocks(); auto& device_ctx = g_vpr_ctx.device(); const auto& rr_graph = device_ctx.rr_graph; auto& route_ctx = g_vpr_ctx.mutable_routing(); @@ -642,13 +642,11 @@ void print_route(const Netlist<>& net_list, int pin_num = rr_graph.node_pin_num(inode); int xoffset = device_ctx.grid.get_width_offset({ilow, jlow, layer_num}); int yoffset = device_ctx.grid.get_height_offset({ilow, jlow, layer_num}); - const t_sub_tile* sub_tile; - int sub_tile_rel_cap; - std::tie(sub_tile, sub_tile_rel_cap) = get_sub_tile_from_pin_physical_num(physical_tile, pin_num); + auto [sub_tile, sub_tile_rel_cap] = get_sub_tile_from_pin_physical_num(physical_tile, pin_num); int sub_tile_offset = sub_tile->capacity.low + sub_tile_rel_cap; - ClusterBlockId iblock = place_ctx.grid_blocks.block_at_location({ilow - xoffset, jlow - yoffset, - sub_tile_offset, layer_num}); + ClusterBlockId iblock = grid_blocks.block_at_location({ilow - xoffset, jlow - yoffset, + sub_tile_offset, layer_num}); VTR_ASSERT(iblock); const t_pb_graph_pin* pb_pin; if (is_pin_on_tile(physical_tile, pin_num)) { diff --git a/vpr/src/base/stats.cpp b/vpr/src/base/stats.cpp index bc09e68418d..bda53d16a56 100644 --- a/vpr/src/base/stats.cpp +++ b/vpr/src/base/stats.cpp @@ -1,12 +1,9 @@ -#include -#include #include #include #include "route_tree.h" #include "vtr_assert.h" #include "vtr_log.h" -#include "vtr_math.h" #include "vtr_ndmatrix.h" #include "vpr_types.h" @@ -55,11 +52,10 @@ void routing_stats(const Netlist<>& net_list, enum e_directionality directionality, int wire_to_ipin_switch, bool is_flat) { - float area, used_area; - auto& device_ctx = g_vpr_ctx.device(); auto& rr_graph = device_ctx.rr_graph; auto& cluster_ctx = g_vpr_ctx.clustering(); + const auto& block_locs = g_vpr_ctx.placement().block_locs(); int num_rr_switch = rr_graph.num_rr_switches(); @@ -69,7 +65,7 @@ void routing_stats(const Netlist<>& net_list, VTR_LOG("Logic area (in minimum width transistor areas, excludes I/Os and empty grid tiles)...\n"); - area = 0; + float area = 0; for (int layer_num = 0; layer_num < device_ctx.grid.get_num_layers(); layer_num++) { for (int i = 0; i < (int)device_ctx.grid.width(); i++) { for (int j = 0; j < (int)device_ctx.grid.height(); j++) { @@ -92,9 +88,10 @@ void routing_stats(const Netlist<>& net_list, /* Todo: need to add pitch of routing to blocks with height > 3 */ VTR_LOG("\tTotal logic block area (Warning, need to add pitch of routing to blocks with height > 3): %g\n", area); - used_area = 0; - for (auto blk_id : cluster_ctx.clb_nlist.blocks()) { - auto type = physical_tile_type(blk_id); + float used_area = 0; + for (ClusterBlockId blk_id : cluster_ctx.clb_nlist.blocks()) { + t_pl_loc block_loc = block_locs[blk_id].loc; + auto type = physical_tile_type(block_loc); if (!is_io_type(type)) { if (type->area == UNDEFINED) { used_area += grid_logic_tile_area * type->width * type->height; @@ -111,8 +108,9 @@ void routing_stats(const Netlist<>& net_list, get_segment_usage_stats(segment_inf); } - if (full_stats == true) + if (full_stats) { print_wirelen_prob_dist(is_flat); + } } /** @@ -120,26 +118,20 @@ void routing_stats(const Netlist<>& net_list, * and net length in the routing. */ void length_and_bends_stats(const Netlist<>& net_list, bool is_flat) { - int bends, total_bends, max_bends; - int length, total_length, max_length; - int segments, total_segments, max_segments; - float av_bends, av_length, av_segments; - int num_global_nets, num_clb_opins_reserved, num_absorbed_nets; - - bool is_absorbed; - - max_bends = 0; - total_bends = 0; - max_length = 0; - total_length = 0; - max_segments = 0; - total_segments = 0; - num_global_nets = 0; - num_clb_opins_reserved = 0; - num_absorbed_nets = 0; + int max_bends = 0; + int total_bends = 0; + int max_length = 0; + int total_length = 0; + int max_segments = 0; + int total_segments = 0; + int num_global_nets = 0; + int num_clb_opins_reserved = 0; + int num_absorbed_nets = 0; for (auto net_id : net_list.nets()) { if (!net_list.net_is_ignored(net_id) && net_list.net_sinks(net_id).size() != 0) { /* Globals don't count. */ + int bends, length, segments; + bool is_absorbed; get_num_bends_and_length(net_id, &bends, &length, &segments, &is_absorbed); total_bends += bends; @@ -162,12 +154,12 @@ void length_and_bends_stats(const Netlist<>& net_list, bool is_flat) { } } - av_bends = (float)total_bends / (float)((int)net_list.nets().size() - num_global_nets); + float av_bends = (float)total_bends / (float)((int)net_list.nets().size() - num_global_nets); VTR_LOG("\n"); VTR_LOG("Average number of bends per net: %#g Maximum # of bends: %d\n", av_bends, max_bends); VTR_LOG("\n"); - av_length = (float)total_length / (float)((int)net_list.nets().size() - num_global_nets); + float av_length = (float)total_length / (float)((int)net_list.nets().size() - num_global_nets); VTR_LOG("Number of global nets: %d\n", num_global_nets); VTR_LOG("Number of routed nets (nonglobal): %d\n", (int)net_list.nets().size() - num_global_nets); VTR_LOG("Wire length results (in units of 1 clb segments)...\n"); @@ -175,7 +167,7 @@ void length_and_bends_stats(const Netlist<>& net_list, bool is_flat) { VTR_LOG("\tMaximum net length: %d\n", max_length); VTR_LOG("\n"); - av_segments = (float)total_segments / (float)((int)net_list.nets().size() - num_global_nets); + float av_segments = (float)total_segments / (float)((int)net_list.nets().size() - num_global_nets); VTR_LOG("Wire length results in terms of physical segments...\n"); VTR_LOG("\tTotal wiring segments used: %d, average wire segments per net: %#g\n", total_segments, av_segments); VTR_LOG("\tMaximum segments used by a net: %d\n", max_segments); @@ -422,17 +414,17 @@ void print_wirelen_prob_dist(bool is_flat) { * (i.e. the clock when it is marked global). */ void print_lambda() { - int ipin; int num_inputs_used = 0; - float lambda; auto& cluster_ctx = g_vpr_ctx.clustering(); + auto& block_locs = g_vpr_ctx.placement().block_locs(); - for (auto blk_id : cluster_ctx.clb_nlist.blocks()) { - auto type = physical_tile_type(blk_id); + for (ClusterBlockId blk_id : cluster_ctx.clb_nlist.blocks()) { + t_pl_loc block_loc = block_locs[blk_id].loc; + auto type = physical_tile_type(block_loc); VTR_ASSERT(type != nullptr); if (!is_io_type(type)) { - for (ipin = 0; ipin < type->num_pins; ipin++) { + for (int ipin = 0; ipin < type->num_pins; ipin++) { if (get_pin_type_from_pin_physical_num(type, ipin) == RECEIVER) { ClusterNetId net_id = cluster_ctx.clb_nlist.block_net(blk_id, ipin); if (net_id != ClusterNetId::INVALID()) /* Pin is connected? */ @@ -443,7 +435,7 @@ void print_lambda() { } } - lambda = (float)num_inputs_used / (float)cluster_ctx.clb_nlist.blocks().size(); + float lambda = (float)num_inputs_used / (float)cluster_ctx.clb_nlist.blocks().size(); VTR_LOG("Average lambda (input pins used per clb) is: %g\n", lambda); } diff --git a/vpr/src/base/vpr_api.cpp b/vpr/src/base/vpr_api.cpp index faa24f753be..11dfa49a584 100644 --- a/vpr/src/base/vpr_api.cpp +++ b/vpr/src/base/vpr_api.cpp @@ -790,7 +790,7 @@ bool vpr_place_flow(const Netlist<>& net_list, t_vpr_setup& vpr_setup, const t_a void vpr_place(const Netlist<>& net_list, t_vpr_setup& vpr_setup, const t_arch& arch) { bool is_flat = false; - if (placer_needs_lookahead(vpr_setup)) { + if (vpr_setup.PlacerOpts.place_algorithm.is_timing_driven()) { // Prime lookahead cache to avoid adding lookahead computation cost to // the placer timer. // Flat_routing is disabled in placement @@ -818,10 +818,13 @@ void vpr_place(const Netlist<>& net_list, t_vpr_setup& vpr_setup, const t_arch& auto& filename_opts = vpr_setup.FileNameOpts; auto& cluster_ctx = g_vpr_ctx.clustering(); + const auto& block_locs = g_vpr_ctx.placement().block_locs(); + auto& placement_id = g_vpr_ctx.mutable_placement().placement_id; - print_place(filename_opts.NetFile.c_str(), - cluster_ctx.clb_nlist.netlist_id().c_str(), - filename_opts.PlaceFile.c_str()); + placement_id = print_place(filename_opts.NetFile.c_str(), + cluster_ctx.clb_nlist.netlist_id().c_str(), + filename_opts.PlaceFile.c_str(), + block_locs); } void vpr_load_placement(t_vpr_setup& vpr_setup, const t_arch& arch) { @@ -832,10 +835,14 @@ void vpr_load_placement(t_vpr_setup& vpr_setup, const t_arch& arch) { const auto& filename_opts = vpr_setup.FileNameOpts; //Initialize placement data structures, which will be filled when loading placement - init_placement_context(); + auto& block_locs = place_ctx.mutable_block_locs(); + GridBlock& grid_blocks = place_ctx.mutable_grid_blocks(); + init_placement_context(block_locs, grid_blocks); //Load an existing placement from a file - read_place(filename_opts.NetFile.c_str(), filename_opts.PlaceFile.c_str(), filename_opts.verify_file_digests, device_ctx.grid); + place_ctx.placement_id = read_place(filename_opts.NetFile.c_str(), filename_opts.PlaceFile.c_str(), + place_ctx.mutable_blk_loc_registry(), + filename_opts.verify_file_digests, device_ctx.grid); //Ensure placement macros are loaded so that they can be drawn after placement (e.g. during routing) place_ctx.pl_macros = alloc_and_load_placement_macros(arch.Directs, arch.num_directs); @@ -859,7 +866,7 @@ RouteStatus vpr_route_flow(const Netlist<>& net_list, route_status = RouteStatus(true, -1); } else { //Do or load - // set the net_is_ignored flag for nets that that have route_model set to ideal in route constraints + // set the net_is_ignored flag for nets that have route_model set to ideal in route constraints apply_route_constraints(g_vpr_ctx.routing().constraints); int chan_width = router_opts.fixed_channel_width; @@ -1073,7 +1080,7 @@ RouteStatus vpr_load_routing(t_vpr_setup& vpr_setup, net_delay); timing_info->update(); } - init_draw_coords(fixed_channel_width); + init_draw_coords(fixed_channel_width, g_vpr_ctx.placement().blk_loc_registry()); return RouteStatus(is_legal, fixed_channel_width); } @@ -1112,7 +1119,7 @@ void vpr_create_rr_graph(t_vpr_setup& vpr_setup, const t_arch& arch, int chan_wi &warnings, is_flat); //Initialize drawing, now that we have an RR graph - init_draw_coords(chan_width_fac); + init_draw_coords(chan_width_fac, g_vpr_ctx.placement().blk_loc_registry()); } void vpr_init_graphics(const t_vpr_setup& vpr_setup, const t_arch& arch, bool is_flat) { @@ -1278,8 +1285,8 @@ static void free_atoms() { static void free_placement() { auto& place_ctx = g_vpr_ctx.mutable_placement(); - place_ctx.block_locs.clear(); - place_ctx.grid_blocks.clear(); + place_ctx.mutable_block_locs().clear(); + place_ctx.mutable_grid_blocks().clear(); } static void free_routing() { @@ -1473,6 +1480,7 @@ void vpr_analysis(const Netlist<>& net_list, bool is_flat) { auto& route_ctx = g_vpr_ctx.routing(); auto& atom_ctx = g_vpr_ctx.atom(); + const auto& blk_loc_registry = g_vpr_ctx.placement().blk_loc_registry(); if (route_ctx.route_trees.empty()) { VPR_FATAL_ERROR(VPR_ERROR_ANALYSIS, "No routing loaded -- can not perform post-routing analysis"); @@ -1493,8 +1501,7 @@ void vpr_analysis(const Netlist<>& net_list, //Load the net delays NetPinsMatrix net_delay = make_net_pins_matrix(net_list); - load_net_delay_from_routing(net_list, - net_delay); + load_net_delay_from_routing(net_list, net_delay); //Do final timing analysis auto analysis_delay_calc = std::make_shared(atom_ctx.nlist, atom_ctx.lookup, net_delay, vpr_setup.RouterOpts.flat_routing); @@ -1509,10 +1516,10 @@ void vpr_analysis(const Netlist<>& net_list, //Timing stats VTR_LOG("\n"); - generate_hold_timing_stats(/*prefix=*/"", *timing_info, - *analysis_delay_calc, vpr_setup.AnalysisOpts, vpr_setup.RouterOpts.flat_routing); - generate_setup_timing_stats(/*prefix=*/"", *timing_info, - *analysis_delay_calc, vpr_setup.AnalysisOpts, vpr_setup.RouterOpts.flat_routing); + generate_hold_timing_stats(/*prefix=*/"", *timing_info, *analysis_delay_calc, + vpr_setup.AnalysisOpts, vpr_setup.RouterOpts.flat_routing, blk_loc_registry); + generate_setup_timing_stats(/*prefix=*/"", *timing_info, *analysis_delay_calc, + vpr_setup.AnalysisOpts, vpr_setup.RouterOpts.flat_routing, blk_loc_registry); //Write the post-synthesis netlist if (vpr_setup.AnalysisOpts.gen_post_synthesis_netlist) { diff --git a/vpr/src/base/vpr_constraints_writer.cpp b/vpr/src/base/vpr_constraints_writer.cpp index 62cb2f666d2..0de68549aec 100644 --- a/vpr/src/base/vpr_constraints_writer.cpp +++ b/vpr/src/base/vpr_constraints_writer.cpp @@ -54,7 +54,7 @@ void write_vpr_floorplan_constraints(const char* file_name, int expand, bool sub void setup_vpr_floorplan_constraints_one_loc(VprConstraints& constraints, int expand, bool subtile) { auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.placement(); + auto& block_locs = g_vpr_ctx.placement().block_locs(); int part_id = 0; /* @@ -69,7 +69,7 @@ void setup_vpr_floorplan_constraints_one_loc(VprConstraints& constraints, int ex Partition part; part.set_name(part_name); - const auto& loc = place_ctx.block_locs[blk_id].loc; + const auto& loc = block_locs[blk_id].loc; PartitionRegion pr; Region reg(loc.x - expand, loc.y - expand, @@ -94,7 +94,7 @@ void setup_vpr_floorplan_constraints_one_loc(VprConstraints& constraints, int ex void setup_vpr_floorplan_constraints_cutpoints(VprConstraints& constraints, int horizontal_cutpoints, int vertical_cutpoints) { auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.placement(); + auto& block_locs = g_vpr_ctx.placement().block_locs(); auto& device_ctx = g_vpr_ctx.device(); const int n_layers = device_ctx.grid.get_num_layers(); @@ -159,8 +159,8 @@ void setup_vpr_floorplan_constraints_cutpoints(VprConstraints& constraints, int */ for (ClusterBlockId blk_id : cluster_ctx.clb_nlist.blocks()) { const std::unordered_set& atoms = cluster_to_atoms(blk_id); - int x = place_ctx.block_locs[blk_id].loc.x; - int y = place_ctx.block_locs[blk_id].loc.y; + int x = block_locs[blk_id].loc.x; + int y = block_locs[blk_id].loc.y; int width = device_ctx.grid.width(); int height = device_ctx.grid.height(); VTR_ASSERT(x >= 0 && x < width); diff --git a/vpr/src/base/vpr_context.h b/vpr/src/base/vpr_context.h index 1d6ed2e291a..0309258c65e 100644 --- a/vpr/src/base/vpr_context.h +++ b/vpr/src/base/vpr_context.h @@ -5,6 +5,7 @@ #include #include +#include "prepack.h" #include "vpr_types.h" #include "vtr_ndmatrix.h" #include "vtr_optional.h" @@ -33,6 +34,7 @@ #include "noc_traffic_flows.h" #include "noc_routing.h" #include "tatum/report/TimingPath.hpp" +#include "blk_loc_registry.h" #ifndef NO_SERVER @@ -71,34 +73,17 @@ struct AtomContext : public Context { /******************************************************************** * Atom Netlist ********************************************************************/ - /** - * @brief constructor - * - * In the constructor initialize the list of pack molecules to nullptr and defines a custom deletor for it - */ - AtomContext() - : list_of_pack_molecules(nullptr, free_pack_molecules) {} - - ///@brief Atom netlist + /// @brief Atom netlist AtomNetlist nlist; - ///@brief Mappings to/from the Atom Netlist to physically described .blif models + /// @brief Mappings to/from the Atom Netlist to physically described .blif models AtomLookup lookup; - /** - * @brief The molecules associated with each atom block. - * - * This map is loaded in the pre-packing stage and freed at the very end of vpr flow run. - * The pointers in this multimap is shared with list_of_pack_molecules. - */ - std::multimap atom_molecules; - - /** - * @brief A linked list of all the packing molecules that are loaded in pre-packing stage. - * - * Is is useful in freeing the pack molecules at the destructor of the Atom context using free_pack_molecules. - */ - std::unique_ptr list_of_pack_molecules; + /// @brief Prepacker object which performs prepacking and stores the pack + /// molecules. Has a method to get the pack molecule of an AtomBlock. + /// TODO: This is mainly only used in the clusterer. It can probably be + /// removed from the AtomContext entirely. + Prepacker prepacker; }; /** @@ -385,14 +370,48 @@ struct PackingMultithreadingContext : public Context { * or related placer algorithm state. */ struct PlacementContext : public Context { - ///@brief Clustered block placement locations - vtr::vector_map block_locs; + private: + /** + * Determines if blk_loc_registry_ can be accessed by calling getter methods. + * This flag should be set to false at the beginning of the placement stage, + * and set to true at the end of placement. This ensures that variables that + * are subject to change during placement are kept local to the placement stage. + */ + bool loc_vars_are_accessible_ = true; - ///@brief Clustered pin placement mapping with physical pin - vtr::vector_map physical_pins; + /** + * @brief Stores block location information, which is subject to change during the + * placement stage. + */ + BlkLocRegistry blk_loc_registry_; - ///@brief Clustered block associated with each grid location (i.e. inverse of block_locs) - GridBlock grid_blocks; + public: + + const vtr::vector_map& block_locs() const { VTR_ASSERT_SAFE(loc_vars_are_accessible_); return blk_loc_registry_.block_locs(); } + vtr::vector_map& mutable_block_locs() { VTR_ASSERT_SAFE(loc_vars_are_accessible_); return blk_loc_registry_.mutable_block_locs(); } + const GridBlock& grid_blocks() const { VTR_ASSERT_SAFE(loc_vars_are_accessible_); return blk_loc_registry_.grid_blocks(); } + GridBlock& mutable_grid_blocks() { VTR_ASSERT_SAFE(loc_vars_are_accessible_); return blk_loc_registry_.mutable_grid_blocks(); } + vtr::vector_map& mutable_physical_pins() { VTR_ASSERT_SAFE(loc_vars_are_accessible_); return blk_loc_registry_.mutable_physical_pins(); } + const vtr::vector_map& physical_pins() const { VTR_ASSERT_SAFE(loc_vars_are_accessible_); return blk_loc_registry_.physical_pins(); } + BlkLocRegistry& mutable_blk_loc_registry() { VTR_ASSERT_SAFE(loc_vars_are_accessible_); return blk_loc_registry_; } + const BlkLocRegistry& blk_loc_registry() const { VTR_ASSERT_SAFE(loc_vars_are_accessible_); return blk_loc_registry_; } + + /** + * @brief Makes blk_loc_registry_ inaccessible through the getter methods. + * + * This method should be called at the beginning of the placement stage to + * guarantee that the placement stage code does not access block location variables + * stored in the global state. + */ + void lock_loc_vars() { VTR_ASSERT_SAFE(loc_vars_are_accessible_); loc_vars_are_accessible_ = false; } + + /** + * @brief Makes blk_loc_registry_ accessible through the getter methods. + * + * This method should be called at the end of the placement stage to + * make the block location information accessible for subsequent stages. + */ + void unlock_loc_vars() { VTR_ASSERT_SAFE(!loc_vars_are_accessible_); loc_vars_are_accessible_ = true; } ///@brief The pl_macros array stores all the placement macros (usually carry chains). std::vector pl_macros; diff --git a/vpr/src/base/vpr_signal_handler.cpp b/vpr/src/base/vpr_signal_handler.cpp index a8fff7b4394..66cb879ff79 100644 --- a/vpr/src/base/vpr_signal_handler.cpp +++ b/vpr/src/base/vpr_signal_handler.cpp @@ -90,7 +90,7 @@ void checkpoint() { std::string placer_checkpoint_file = "placer_checkpoint.place"; VTR_LOG("Attempting to checkpoint current placement to file: %s\n", placer_checkpoint_file.c_str()); - print_place(nullptr, nullptr, placer_checkpoint_file.c_str()); + print_place(nullptr, nullptr, placer_checkpoint_file.c_str(), g_vpr_ctx.placement().block_locs()); std::string router_checkpoint_file = "router_checkpoint.route"; VTR_LOG("Attempting to checkpoint current routing to file: %s\n", router_checkpoint_file.c_str()); diff --git a/vpr/src/base/vpr_types.cpp b/vpr/src/base/vpr_types.cpp index 475a9a30d19..8a802a3a234 100644 --- a/vpr/src/base/vpr_types.cpp +++ b/vpr/src/base/vpr_types.cpp @@ -452,15 +452,6 @@ void t_pb::set_atom_pin_bit_index(const t_pb_graph_pin* gpin, BitIndex atom_pin_ pin_rotations_[gpin] = atom_pin_bit_idx; } -void free_pack_molecules(t_pack_molecule* list_of_pack_molecules) { - t_pack_molecule* cur_pack_molecule = list_of_pack_molecules; - while (cur_pack_molecule != nullptr) { - cur_pack_molecule = list_of_pack_molecules->next; - delete list_of_pack_molecules; - list_of_pack_molecules = cur_pack_molecule; - } -} - /** * Free linked lists found in cluster_placement_stats_list */ @@ -535,11 +526,11 @@ void t_cluster_placement_stats::flush_invalid_queue() { } bool t_cluster_placement_stats::in_flight_empty() { - return (in_flight.empty()); + return in_flight.empty(); } t_pb_type* t_cluster_placement_stats::in_flight_type() { - return (in_flight.begin()->second->pb_graph_node->pb_type); + return in_flight.begin()->second->pb_graph_node->pb_type; } void t_cluster_placement_stats::free_primitives() { @@ -557,4 +548,4 @@ void t_cluster_placement_stats::free_primitives() { delete primitive.second; } } -} \ No newline at end of file +} diff --git a/vpr/src/base/vpr_types.h b/vpr/src/base/vpr_types.h index a6d78feb6f1..e169a9e82a5 100644 --- a/vpr/src/base/vpr_types.h +++ b/vpr/src/base/vpr_types.h @@ -48,6 +48,7 @@ #include "rr_graph_fwd.h" #include "rr_graph_cost.h" #include "rr_graph_type.h" +#include "vtr_vector_map.h" /******************************************************************************* * Global data types and constants @@ -94,12 +95,6 @@ enum class ScreenUpdatePriority { /* Used to avoid floating-point errors when comparing values close to 0 */ #define EPSILON 1.e-15 -#define FIRST_ITER_WIRELENTH_LIMIT 0.85 /* If used wirelength exceeds this value in first iteration of routing, do not route */ - -/* Defining macros for the placement_ctx t_grid_blocks. Assumes that ClusterBlockId's won't exceed positive 32-bit integers */ -constexpr auto EMPTY_BLOCK_ID = ClusterBlockId(-1); -constexpr auto INVALID_BLOCK_ID = ClusterBlockId(-2); - /* * Files */ @@ -839,73 +834,6 @@ struct t_block_loc { bool is_fixed = false; }; -///@brief Stores the clustered blocks placed at a particular grid location -struct t_grid_blocks { - int usage; ///capacity] - */ - std::vector blocks; - - /** - * @brief Test if a subtile at a grid location is occupied by a block. - * - * Returns true if the subtile corresponds to the passed-in id is not - * occupied by a block at this grid location. The subtile id serves - * as the z-dimensional offset in the grid indexing. - */ - inline bool subtile_empty(size_t isubtile) const { - return blocks[isubtile] == EMPTY_BLOCK_ID; - } -}; - -class GridBlock { - public: - GridBlock() = default; - - GridBlock(size_t width, size_t height, size_t layers) { - grid_blocks_.resize({layers, width, height}); - } - - inline void initialized_grid_block_at_location(const t_physical_tile_loc& loc, int num_sub_tiles) { - grid_blocks_[loc.layer_num][loc.x][loc.y].blocks.resize(num_sub_tiles, EMPTY_BLOCK_ID); - } - - inline void set_block_at_location(const t_pl_loc& loc, ClusterBlockId blk_id) { - grid_blocks_[loc.layer][loc.x][loc.y].blocks[loc.sub_tile] = blk_id; - } - - inline ClusterBlockId block_at_location(const t_pl_loc& loc) const { - return grid_blocks_[loc.layer][loc.x][loc.y].blocks[loc.sub_tile]; - } - - inline size_t num_blocks_at_location(const t_physical_tile_loc& loc) const { - return grid_blocks_[loc.layer_num][loc.x][loc.y].blocks.size(); - } - - inline int set_usage(const t_physical_tile_loc loc, int usage) { - return grid_blocks_[loc.layer_num][loc.x][loc.y].usage = usage; - } - - inline int get_usage(const t_physical_tile_loc loc) const { - return grid_blocks_[loc.layer_num][loc.x][loc.y].usage; - } - - inline bool is_sub_tile_empty(const t_physical_tile_loc loc, int sub_tile) const { - return grid_blocks_[loc.layer_num][loc.x][loc.y].subtile_empty(sub_tile); - } - - inline void clear() { - grid_blocks_.clear(); - } - - private: - vtr::NdMatrix grid_blocks_; -}; - ///@brief Names of various files struct t_file_name_opts { std::string ArchFile; @@ -1104,7 +1032,7 @@ class t_place_algorithm { e_place_algorithm algo = e_place_algorithm::CRITICALITY_TIMING_PLACE; }; -enum e_pad_loc_type { +enum class e_pad_loc_type { FREE, RANDOM }; @@ -1919,11 +1847,6 @@ typedef vtr::vector>> t_clb_op typedef std::vector> t_arch_switch_fanin; -/** - * @brief Free the linked list that saves all the packing molecules. - */ -void free_pack_molecules(t_pack_molecule* list_of_pack_molecules); - /** * @brief Free the linked lists to placement locations based on status of primitive inside placement stats data structure. */ diff --git a/vpr/src/draw/draw.cpp b/vpr/src/draw/draw.cpp index ec4f764868f..d87375dc8c3 100644 --- a/vpr/src/draw/draw.cpp +++ b/vpr/src/draw/draw.cpp @@ -570,16 +570,18 @@ void free_draw_structs() { #endif /* NO_GRAPHICS */ } -void init_draw_coords(float width_val) { +void init_draw_coords(float clb_width, const BlkLocRegistry& blk_loc_registry) { #ifndef NO_GRAPHICS - /* Load the arrays containing the left and bottom coordinates of the clbs * - * forming the FPGA. tile_width_val sets the width and height of a drawn * - * clb. */ t_draw_state* draw_state = get_draw_state_vars(); t_draw_coords* draw_coords = get_draw_coords_vars(); - auto& device_ctx = g_vpr_ctx.device(); + const auto& device_ctx = g_vpr_ctx.device(); const auto& rr_graph = device_ctx.rr_graph; + /* Store a reference to block location variables so that other drawing + * functions can access block location information without accessing + * the global placement state, which is inaccessible during placement.*/ + set_graphics_blk_loc_registry_ref(blk_loc_registry); + if (!draw_state->show_graphics && !draw_state->save_graphics && draw_state->graphics_commands.empty()) return; //do not initialize only if --disp off and --save_graphics off @@ -593,7 +595,7 @@ void init_draw_coords(float width_val) { draw_state->draw_rr_node[inode].node_highlighted = false; } } - draw_coords->tile_width = width_val; + draw_coords->tile_width = clb_width; draw_coords->pin_size = 0.3; for (const auto& type : device_ctx.physical_tile_types) { auto num_pins = type.num_pins; @@ -636,7 +638,8 @@ void init_draw_coords(float width_val) { {(1. + VISIBLE_MARGIN) * draw_width, (1. + VISIBLE_MARGIN) * draw_height}); #else - (void)width_val; + (void)clb_width; + (void)blk_loc_registry; #endif /* NO_GRAPHICS */ } @@ -717,10 +720,7 @@ void act_on_key_press(ezgl::application* app, GdkEventKey* /*event*/, char* key_ } void act_on_mouse_press(ezgl::application* app, GdkEventButton* event, double x, double y) { - // std::cout << "User clicked the "; - if (event->button == 1) { - // std::cout << "left "; if (window_mode) { //click on any two points to form new window rectangle bound @@ -780,12 +780,6 @@ void act_on_mouse_press(ezgl::application* app, GdkEventButton* event, double x, highlight_blocks(x, y); } } - // else if (event->button == 2) - // std::cout << "middle "; - // else if (event->button == 3) - // std::cout << "right "; - - // std::cout << "mouse button at coordinates (" << x << "," << y << ") " << std::endl; } void act_on_mouse_move(ezgl::application* app, GdkEventButton* /* event */, double x, double y) { @@ -1006,14 +1000,14 @@ static void highlight_blocks(double x, double y) { char msg[vtr::bufsize]; ClusterBlockId clb_index = get_cluster_block_id_from_xy_loc(x, y); - if (clb_index == EMPTY_BLOCK_ID || clb_index == ClusterBlockId::INVALID()) { + if (clb_index == ClusterBlockId::INVALID()) { return; /* Nothing was found on any layer*/ } auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.placement(); + auto& block_locs = get_graphics_blk_loc_registry_ref().block_locs(); - VTR_ASSERT(clb_index != EMPTY_BLOCK_ID); + VTR_ASSERT(clb_index != ClusterBlockId::INVALID()); ezgl::rectangle clb_bbox = draw_coords->get_absolute_clb_bbox(clb_index, cluster_ctx.clb_nlist.block_type(clb_index)); // note: this will clear the selected sub-block if show_blk_internal is 0, @@ -1033,8 +1027,8 @@ static void highlight_blocks(double x, double y) { clb_index); sprintf(msg, "Block #%zu (%s) at (%d, %d) selected.", size_t(clb_index), cluster_ctx.clb_nlist.block_name(clb_index).c_str(), - place_ctx.block_locs[clb_index].loc.x, - place_ctx.block_locs[clb_index].loc.y); + block_locs[clb_index].loc.x, + block_locs[clb_index].loc.y); } //If manual moves is activated, then user can select block from the grid. @@ -1047,16 +1041,15 @@ static void highlight_blocks(double x, double y) { application.update_message(msg); application.refresh_drawing(); - return; } ClusterBlockId get_cluster_block_id_from_xy_loc(double x, double y) { t_draw_coords* draw_coords = get_draw_coords_vars(); t_draw_state* draw_state = get_draw_state_vars(); - ClusterBlockId clb_index = EMPTY_BLOCK_ID; + auto clb_index = ClusterBlockId::INVALID(); auto& device_ctx = g_vpr_ctx.device(); auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.placement(); + const auto& grid_blocks = get_graphics_blk_loc_registry_ref().grid_blocks(); /// determine block /// ezgl::rectangle clb_bbox; @@ -1079,21 +1072,21 @@ ClusterBlockId get_cluster_block_id_from_xy_loc(double x, double y) { // iterate over sub_blocks const auto& type = device_ctx.grid.get_physical_type({i, j, layer_num}); for (int k = 0; k < type->capacity; ++k) { - clb_index = place_ctx.grid_blocks.block_at_location({i, j, k, layer_num}); - if (clb_index != EMPTY_BLOCK_ID) { + clb_index = grid_blocks.block_at_location({i, j, k, layer_num}); + if (clb_index) { clb_bbox = draw_coords->get_absolute_clb_bbox(clb_index, cluster_ctx.clb_nlist.block_type(clb_index)); if (clb_bbox.contains({x, y})) { return clb_index; // we've found the clb } else { - clb_index = EMPTY_BLOCK_ID; + clb_index = ClusterBlockId::INVALID(); } } } } } } - // Searched all layers and found no clb at specified location, returning clb_index = EMPTY_BLOCK_ID. + // Searched all layers and found no clb at specified location, returning clb_index = ClusterBlockId::INVALID(). return clb_index; } diff --git a/vpr/src/draw/draw.h b/vpr/src/draw/draw.h index 1c39f12f49b..2bbd17d077f 100644 --- a/vpr/src/draw/draw.h +++ b/vpr/src/draw/draw.h @@ -44,9 +44,15 @@ extern ezgl::application application; void update_screen(ScreenUpdatePriority priority, const char* msg, enum pic_type pic_on_screen_val, std::shared_ptr timing_info); -//Initializes the drawing locations. //FIXME: Currently broken if no rr-graph is loaded -void init_draw_coords(float clb_width); +/** + * @brief Load the arrays containing the left and bottom coordinates of the clbs. + * forming the FPGA. + * + * @param clb_width The width and height of a drawn clb. + * @param blk_loc_registry A reference to placement location information. + */ +void init_draw_coords(float clb_width, const BlkLocRegistry& blk_loc_registry); /* Sets the static show_graphics and gr_automode variables to the * * desired values. They control if graphics are enabled and, if so, * @@ -132,7 +138,7 @@ bool highlight_loc_with_specific_color(t_pl_loc curr_loc, ezgl::color& loc_color * block types than colour choices. This ensures we support any number of types, although the colours may repeat.*/ ezgl::color get_block_type_color(t_physical_tile_type_ptr type); -/* Lightens a color's luminance [0, 1] by an aboslute 'amount' */ +/* Lightens a color's luminance [0, 1] by an absolute 'amount' */ ezgl::color lighten_color(ezgl::color color, float amount); void toggle_window_mode(GtkWidget* /*widget*/, ezgl::application* /*app*/); @@ -162,7 +168,7 @@ t_draw_layer_display get_element_visibility_and_transparency(int src_layer, int * @param x * @param y * @return returns the ClusterBlockId of the clb at the specified (x,y) location (in world coordinates) as seen by looking downwards from the top of a 3D FPGA. - * Chooses the clb on the top visible layer if there are overlapping blocks. Returns EMPTY_BLOCK_ID (-1) otherwise,if clb is not found on any visible layer. + * Chooses the clb on the top visible layer if there are overlapping blocks. Returns INVALID(-1) otherwise,if clb is not found on any visible layer. */ ClusterBlockId get_cluster_block_id_from_xy_loc(double x, double y); diff --git a/vpr/src/draw/draw_basic.cpp b/vpr/src/draw/draw_basic.cpp index e37de7a84fa..82ad456f70f 100644 --- a/vpr/src/draw/draw_basic.cpp +++ b/vpr/src/draw/draw_basic.cpp @@ -103,7 +103,7 @@ void drawplace(ezgl::renderer* g) { t_draw_coords* draw_coords = get_draw_coords_vars(); auto& device_ctx = g_vpr_ctx.device(); auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.placement(); + const auto& grid_blocks = get_graphics_blk_loc_registry_ref().grid_blocks(); ClusterBlockId bnum; int num_sub_tiles; @@ -136,12 +136,10 @@ void drawplace(ezgl::renderer* g) { for (int k = 0; k < num_sub_tiles; ++k) { /* Look at the tile at start of large block */ - bnum = place_ctx.grid_blocks.block_at_location({i, j, k, layer_num}); + bnum = grid_blocks.block_at_location({i, j, k, layer_num}); /* Fill background for the clb. Do not fill if "show_blk_internal" * is toggled. */ - if (bnum == INVALID_BLOCK_ID) - continue; //Determine the block color and logical type ezgl::color block_color; @@ -159,8 +157,8 @@ void drawplace(ezgl::renderer* g) { block_color); } // No color specified at this location; use the block color. - if (current_loc_is_highlighted == false) { - if (bnum != EMPTY_BLOCK_ID) { + if (!current_loc_is_highlighted) { + if (bnum) { block_color = draw_state->block_color(bnum); } else { block_color = get_block_type_color(type); @@ -184,15 +182,14 @@ void drawplace(ezgl::renderer* g) { g->set_color(ezgl::BLACK, transparency_factor); - g->set_line_dash( - (EMPTY_BLOCK_ID == bnum) ? ezgl::line_dash::asymmetric_5_3 : ezgl::line_dash::none); + g->set_line_dash((bnum == ClusterBlockId::INVALID()) ? ezgl::line_dash::asymmetric_5_3 : ezgl::line_dash::none); if (draw_state->draw_block_outlines) { g->draw_rectangle(abs_clb_bbox); } if (draw_state->draw_block_text) { /* Draw text if the space has parts of the netlist */ - if (bnum != EMPTY_BLOCK_ID && bnum != INVALID_BLOCK_ID) { + if (bnum) { std::string name = cluster_ctx.clb_nlist.block_name( bnum) + vtr::string_fmt(" (#%zu)", size_t(bnum)); @@ -230,7 +227,7 @@ void drawnets(ezgl::renderer* g) { ClusterBlockId b1, b2; auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.placement(); + auto& block_locs = get_graphics_blk_loc_registry_ref().block_locs(); float transparency_factor; float NET_ALPHA = draw_state->net_alpha; @@ -244,7 +241,7 @@ void drawnets(ezgl::renderer* g) { /* Draw the net as a star from the source to each sink. Draw from centers of * * blocks (or sub blocks in the case of IOs). */ - for (auto net_id : cluster_ctx.clb_nlist.nets()) { + for (ClusterNetId net_id : cluster_ctx.clb_nlist.nets()) { if (cluster_ctx.clb_nlist.net_is_ignored(net_id)) { continue; /* Don't draw */ } @@ -256,7 +253,7 @@ void drawnets(ezgl::renderer* g) { b1 = cluster_ctx.clb_nlist.net_driver_block(net_id); //The layer of the net driver block - driver_block_layer_num = place_ctx.block_locs[b1].loc.layer; + driver_block_layer_num = block_locs[b1].loc.layer; //To only show nets that are connected to currently active layers on the screen if (!draw_state->draw_layer_display[driver_block_layer_num].visible) { @@ -264,11 +261,11 @@ void drawnets(ezgl::renderer* g) { } ezgl::point2d driver_center = draw_coords->get_absolute_clb_bbox(b1, cluster_ctx.clb_nlist.block_type(b1)).center(); - for (auto pin_id : cluster_ctx.clb_nlist.net_sinks(net_id)) { + for (ClusterPinId pin_id : cluster_ctx.clb_nlist.net_sinks(net_id)) { b2 = cluster_ctx.clb_nlist.pin_block(pin_id); //the layer of the pin block (net sinks) - sink_block_layer_num = place_ctx.block_locs[b2].loc.layer; + sink_block_layer_num =block_locs[b2].loc.layer; t_draw_layer_display element_visibility = get_element_visibility_and_transparency(driver_block_layer_num, sink_block_layer_num); @@ -277,7 +274,7 @@ void drawnets(ezgl::renderer* g) { } transparency_factor = element_visibility.alpha; - //Take the higher of the 2 transparency values that the user can select from the UI + //Take the highest of the 2 transparency values that the user can select from the UI // Compare the current cross layer transparency to the overall Net transparency set by the user. g->set_color(draw_state->net_color[net_id], fmin(transparency_factor, draw_state->net_color[net_id].alpha * NET_ALPHA)); @@ -793,7 +790,7 @@ bool is_edge_valid_to_draw(RRNodeId current_node, RRNodeId prev_node) { } /* Draws any placement macros (e.g. carry chains, which require specific relative placements - * between some blocks) if the Placement Macros (in the GUI) is seelected. + * between some blocks) if the Placement Macros (in the GUI) is selected. */ void draw_placement_macros(ezgl::renderer* g) { t_draw_state* draw_state = get_draw_state_vars(); @@ -804,8 +801,9 @@ void draw_placement_macros(ezgl::renderer* g) { t_draw_coords* draw_coords = get_draw_coords_vars(); auto& place_ctx = g_vpr_ctx.placement(); - for (size_t imacro = 0; imacro < place_ctx.pl_macros.size(); ++imacro) { - const t_pl_macro* pl_macro = &place_ctx.pl_macros[imacro]; + auto& block_locs = get_graphics_blk_loc_registry_ref().block_locs(); + + for (const t_pl_macro& pl_macro : place_ctx.pl_macros) { //TODO: for now we just draw the bounding box of the macro, which is incorrect for non-rectangular macros... int xlow = std::numeric_limits::max(); @@ -815,24 +813,23 @@ void draw_placement_macros(ezgl::renderer* g) { int x_root = OPEN; int y_root = OPEN; - for (size_t imember = 0; imember < pl_macro->members.size(); - ++imember) { - const t_pl_macro_member* member = &pl_macro->members[imember]; + for (size_t imember = 0; imember < pl_macro.members.size(); ++imember) { + const t_pl_macro_member& member = pl_macro.members[imember]; - ClusterBlockId blk = member->blk_index; + ClusterBlockId blk = member.blk_index; if (imember == 0) { - x_root = place_ctx.block_locs[blk].loc.x; - y_root = place_ctx.block_locs[blk].loc.y; + x_root = block_locs[blk].loc.x; + y_root = block_locs[blk].loc.y; } - int x = x_root + member->offset.x; - int y = y_root + member->offset.y; + int x = x_root + member.offset.x; + int y = y_root + member.offset.y; xlow = std::min(xlow, x); ylow = std::min(ylow, y); - xhigh = std::max(xhigh, x + physical_tile_type(blk)->width); - yhigh = std::max(yhigh, y + physical_tile_type(blk)->height); + xhigh = std::max(xhigh, x + physical_tile_type(block_locs[blk].loc)->width); + yhigh = std::max(yhigh, y + physical_tile_type(block_locs[blk].loc)->height); } double draw_xlow = draw_coords->tile_x[xlow]; @@ -1187,13 +1184,13 @@ void draw_crit_path_elements(const std::vector& paths, const } int get_timing_path_node_layer_num(tatum::NodeId node) { - auto& place_ctx = g_vpr_ctx.placement(); + auto& block_locs = get_graphics_blk_loc_registry_ref().block_locs(); auto& atom_ctx = g_vpr_ctx.atom(); AtomPinId atom_pin = atom_ctx.lookup.tnode_atom_pin(node); AtomBlockId atom_block = atom_ctx.nlist.pin_block(atom_pin); ClusterBlockId clb_block = atom_ctx.lookup.atom_clb(atom_block); - return place_ctx.block_locs[clb_block].loc.layer; + return block_locs[clb_block].loc.layer; } bool is_flyline_valid_to_draw(int src_layer, int sink_layer) { @@ -1420,6 +1417,7 @@ void draw_block_pin_util() { auto& device_ctx = g_vpr_ctx.device(); auto& cluster_ctx = g_vpr_ctx.clustering(); + auto& block_locs = get_graphics_blk_loc_registry_ref().block_locs(); std::map total_input_pins; std::map total_output_pins; @@ -1434,9 +1432,9 @@ void draw_block_pin_util() { auto blks = cluster_ctx.clb_nlist.blocks(); vtr::vector pin_util(blks.size()); - for (auto blk : blks) { - auto type = physical_tile_type(blk); - + for (ClusterBlockId blk : blks) { + t_pl_loc block_loc = block_locs[blk].loc; + auto type = physical_tile_type(block_loc); if (draw_state->show_blk_pin_util == DRAW_BLOCK_PIN_UTIL_TOTAL) { pin_util[blk] = cluster_ctx.clb_nlist.block_pins(blk).size() / float(total_input_pins[type] + total_output_pins[type]); diff --git a/vpr/src/draw/draw_global.cpp b/vpr/src/draw/draw_global.cpp index 391b659bbcf..936b0eeb4a2 100644 --- a/vpr/src/draw/draw_global.cpp +++ b/vpr/src/draw/draw_global.cpp @@ -26,6 +26,13 @@ static t_draw_state draw_state; */ static t_draw_coords draw_coords; +/** + * @brief Stores a reference to a PlaceLocVars to be used in the graphics code. + * @details This reference let us pass in a currently-being-optimized placement state, + * rather than using the global placement state in placement context that is valid only once placement is done + */ +static std::optional> blk_loc_registry_ref; + /*********************** Accessor Subroutines Definition ********************/ /* This accessor function returns pointer to the global variable @@ -40,4 +47,12 @@ t_draw_state* get_draw_state_vars() { return &draw_state; } +void set_graphics_blk_loc_registry_ref(const BlkLocRegistry& blk_loc_registry) { + blk_loc_registry_ref = std::ref(blk_loc_registry); +} + +const BlkLocRegistry& get_graphics_blk_loc_registry_ref() { + return blk_loc_registry_ref->get(); +} + #endif // NO_GRAPHICS diff --git a/vpr/src/draw/draw_global.h b/vpr/src/draw/draw_global.h index f1eec3967f5..9ba5d734020 100644 --- a/vpr/src/draw/draw_global.h +++ b/vpr/src/draw/draw_global.h @@ -27,6 +27,24 @@ t_draw_coords* get_draw_coords_vars(); t_draw_state* get_draw_state_vars(); +/** + * @brief Set the reference to placement location variable. + * + * During the placement stage, this reference should point to a local object + * in the placement stage because the placement stage does not change the + * global stage in place_ctx until the end of placement. After the placement is + * done, the reference should point to the global state stored in place_ctx. + * + * @param blk_loc_registry The PlaceLocVars that the reference will point to. + */ +void set_graphics_blk_loc_registry_ref(const BlkLocRegistry& blk_loc_registry); + +/** + * @brief Returns the reference to placement block location variables. + * @return A const reference to placement block location variables. + */ +const BlkLocRegistry& get_graphics_blk_loc_registry_ref(); + #endif // NO_GRAPHICS #endif diff --git a/vpr/src/draw/draw_rr.cpp b/vpr/src/draw/draw_rr.cpp index f17812df9c9..f2b573f69e7 100644 --- a/vpr/src/draw/draw_rr.cpp +++ b/vpr/src/draw/draw_rr.cpp @@ -926,8 +926,7 @@ void draw_get_rr_pin_coords(const t_rr_node& node, float* xcen, float* ycen, con default: vpr_throw(VPR_ERROR_OTHER, __FILE__, __LINE__, - "in draw_get_rr_pin_coords: Unexpected side %s.\n", - SIDE_STRING[pin_side]); + "in draw_get_rr_pin_coords: Unexpected side.\n"); break; } diff --git a/vpr/src/draw/draw_searchbar.cpp b/vpr/src/draw/draw_searchbar.cpp index fd11b0a2f43..f3457c45992 100644 --- a/vpr/src/draw/draw_searchbar.cpp +++ b/vpr/src/draw/draw_searchbar.cpp @@ -110,14 +110,17 @@ void draw_highlight_blocks_color(t_logical_block_type_ptr type, t_draw_state* draw_state = get_draw_state_vars(); auto& cluster_ctx = g_vpr_ctx.clustering(); + auto& block_locs = get_graphics_blk_loc_registry_ref().block_locs(); for (k = 0; k < type->pb_type->num_pins; k++) { /* Each pin on a CLB */ ClusterNetId net_id = cluster_ctx.clb_nlist.block_net(blk_id, k); - if (net_id == ClusterNetId::INVALID()) + if (net_id == ClusterNetId::INVALID()) { continue; + } - auto physical_tile = physical_tile_type(blk_id); + t_pl_loc block_loc = block_locs[blk_id].loc; + auto physical_tile = physical_tile_type(block_loc); int physical_pin = get_physical_pin(physical_tile, type, k); auto class_type = get_pin_type_from_pin_physical_num(physical_tile, physical_pin); diff --git a/vpr/src/draw/draw_types.cpp b/vpr/src/draw/draw_types.cpp index bd63798d398..d2ed9e47c3c 100644 --- a/vpr/src/draw/draw_types.cpp +++ b/vpr/src/draw/draw_types.cpp @@ -13,13 +13,15 @@ *******************************************/ ezgl::color t_draw_state::block_color(ClusterBlockId blk) const { if (use_default_block_color_[blk]) { - t_physical_tile_type_ptr tile_type = nullptr; auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.placement(); - if (place_ctx.block_locs.empty()) { //No placement, pick best match + const auto& block_locs = get_graphics_blk_loc_registry_ref().block_locs(); + + t_physical_tile_type_ptr tile_type = nullptr; + if (block_locs.empty()) { //No placement, pick best match tile_type = pick_physical_type(cluster_ctx.clb_nlist.block_type(blk)); } else { // Have placement, select physical tile implementing blk - tile_type = physical_tile_type(blk); + t_pl_loc block_loc = block_locs[blk].loc; + tile_type = physical_tile_type(block_loc); } VTR_ASSERT(tile_type != nullptr); return get_block_type_color(tile_type); @@ -85,12 +87,13 @@ float t_draw_coords::get_tile_height() { } ezgl::rectangle t_draw_coords::get_pb_bbox(ClusterBlockId clb_index, const t_pb_graph_node& pb_gnode) { - auto& place_ctx = g_vpr_ctx.placement(); + auto& block_locs = get_graphics_blk_loc_registry_ref().block_locs(); auto& cluster_ctx = g_vpr_ctx.clustering(); - return get_pb_bbox(place_ctx.block_locs[clb_index].loc.layer, - place_ctx.block_locs[clb_index].loc.x, - place_ctx.block_locs[clb_index].loc.y, - place_ctx.block_locs[clb_index].loc.sub_tile, + + return get_pb_bbox(block_locs[clb_index].loc.layer, + block_locs[clb_index].loc.x, + block_locs[clb_index].loc.y, + block_locs[clb_index].loc.sub_tile, cluster_ctx.clb_nlist.block_type(clb_index), pb_gnode); } @@ -149,9 +152,9 @@ ezgl::rectangle t_draw_coords::get_absolute_pb_bbox(const ClusterBlockId clb_ind } ezgl::rectangle t_draw_coords::get_absolute_clb_bbox(const ClusterBlockId clb_index, const t_logical_block_type_ptr block_type) { - auto& place_ctx = g_vpr_ctx.placement(); + auto& block_locs = get_graphics_blk_loc_registry_ref().block_locs(); - t_pl_loc loc = place_ctx.block_locs[clb_index].loc; + t_pl_loc loc = block_locs[clb_index].loc; return get_pb_bbox(loc.layer, loc.x, loc.y, loc.sub_tile, block_type); } diff --git a/vpr/src/draw/draw_types.h b/vpr/src/draw/draw_types.h index 4750dc37dfe..3779af4cf79 100644 --- a/vpr/src/draw/draw_types.h +++ b/vpr/src/draw/draw_types.h @@ -397,7 +397,7 @@ struct t_draw_coords { private: float tile_width; - friend void init_draw_coords(float); + friend void init_draw_coords(float width_val, const BlkLocRegistry& blk_loc_registry); }; #endif // NO_GRAPHICS diff --git a/vpr/src/draw/intra_logic_block.cpp b/vpr/src/draw/intra_logic_block.cpp index 214ba01fe23..855f2262e63 100644 --- a/vpr/src/draw/intra_logic_block.cpp +++ b/vpr/src/draw/intra_logic_block.cpp @@ -152,7 +152,7 @@ void draw_internal_draw_subblk(ezgl::renderer* g) { } auto& device_ctx = g_vpr_ctx.device(); auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.placement(); + const auto& grid_blocks = get_graphics_blk_loc_registry_ref().grid_blocks(); int total_layer_num = device_ctx.grid.get_num_layers(); @@ -175,14 +175,16 @@ void draw_internal_draw_subblk(ezgl::renderer* g) { int num_sub_tiles = type->capacity; for (int k = 0; k < num_sub_tiles; ++k) { /* Don't draw if block is empty. */ - if (place_ctx.grid_blocks.block_at_location({i, j, k, layer_num}) == EMPTY_BLOCK_ID || place_ctx.grid_blocks.block_at_location({i, j, k, layer_num}) == INVALID_BLOCK_ID) + if (!grid_blocks.block_at_location({i, j, k, layer_num})) { continue; + } /* Get block ID */ - ClusterBlockId bnum = place_ctx.grid_blocks.block_at_location({i, j, k, layer_num}); + ClusterBlockId bnum = grid_blocks.block_at_location({i, j, k, layer_num}); /* Safety check, that physical blocks exists in the CLB */ - if (cluster_ctx.clb_nlist.block_pb(bnum) == nullptr) + if (cluster_ctx.clb_nlist.block_pb(bnum) == nullptr) { continue; + } draw_internal_pb(bnum, cluster_ctx.clb_nlist.block_pb(bnum), ezgl::rectangle({0, 0}, 0, 0), cluster_ctx.clb_nlist.block_type(bnum), g); } } @@ -260,7 +262,6 @@ static void draw_internal_load_coords(int type_descrip_index, t_pb_graph_node* p } } } - return; } /* Helper function which computes bounding box values for a sub-block. The coordinates @@ -272,7 +273,7 @@ draw_internal_calc_coords(int type_descrip_index, t_pb_graph_node* pb_graph_node float sub_tile_x, sub_tile_y; float child_width, child_height; auto& device_ctx = g_vpr_ctx.device(); - auto& place_ctx = g_vpr_ctx.placement(); + const auto& grid_blocks = get_graphics_blk_loc_registry_ref().grid_blocks(); // get the bbox for this pb type ezgl::rectangle& pb_bbox = get_draw_coords_vars()->blk_info.at(type_descrip_index).get_pb_bbox_ref(*pb_graph_node); @@ -290,7 +291,7 @@ draw_internal_calc_coords(int type_descrip_index, t_pb_graph_node* pb_graph_node int capacity = device_ctx.physical_tile_types[type_descrip_index].capacity; // TODO: this is a hack - should be fixed for the layer_num const auto& type = device_ctx.grid.get_physical_type({1, 0, 0}); - if (capacity > 1 && device_ctx.grid.width() > 0 && device_ctx.grid.height() > 0 && place_ctx.grid_blocks.get_usage({1, 0, 0}) != 0 + if (capacity > 1 && device_ctx.grid.width() > 0 && device_ctx.grid.height() > 0 && grid_blocks.get_usage({1, 0, 0}) != 0 && type_descrip_index == type->index) { // that should test for io blocks, and setting capacity_divisor > 1 // will squish every thing down @@ -329,8 +330,6 @@ draw_internal_calc_coords(int type_descrip_index, t_pb_graph_node* pb_graph_node *blk_width = child_width; *blk_height = child_height; - - return; } # ifndef NO_GRAPHICS @@ -342,7 +341,7 @@ static void draw_internal_pb(const ClusterBlockId clb_index, t_pb* pb, const ezg t_draw_coords* draw_coords = get_draw_coords_vars(); t_draw_state* draw_state = get_draw_state_vars(); - auto& place_ctx = g_vpr_ctx.placement(); + auto& block_locs = get_graphics_blk_loc_registry_ref().block_locs(); t_selected_sub_block_info& sel_sub_info = get_selected_sub_block_info(); @@ -350,7 +349,7 @@ static void draw_internal_pb(const ClusterBlockId clb_index, t_pb* pb, const ezg ezgl::rectangle temp = draw_coords->get_pb_bbox(clb_index, *pb->pb_graph_node); ezgl::rectangle abs_bbox = temp + parent_bbox.bottom_left(); - int layer_num = place_ctx.block_locs[clb_index].loc.layer; + int layer_num = block_locs[clb_index].loc.layer; int transparency_factor = draw_state->draw_layer_display[layer_num].alpha; // if we've gone too far, don't draw anything @@ -560,7 +559,7 @@ void draw_logical_connections(ezgl::renderer* g) { t_draw_state* draw_state = get_draw_state_vars(); auto& atom_ctx = g_vpr_ctx.atom(); - auto& place_ctx = g_vpr_ctx.placement(); + auto& block_locs = get_graphics_blk_loc_registry_ref().block_locs(); g->set_line_dash(ezgl::line_dash::none); @@ -578,7 +577,7 @@ void draw_logical_connections(ezgl::renderer* g) { AtomBlockId src_blk_id = atom_ctx.nlist.pin_block(driver_pin_id); ClusterBlockId src_clb = atom_ctx.lookup.atom_clb(src_blk_id); - int src_layer_num = place_ctx.block_locs[src_clb].loc.layer; + int src_layer_num = block_locs[src_clb].loc.layer; //To only show primitive nets that are connected to currently active layers on the screen if (!draw_state->draw_layer_display[src_layer_num].visible) { continue; /* Don't Draw */ @@ -593,7 +592,7 @@ void draw_logical_connections(ezgl::renderer* g) { AtomBlockId sink_blk_id = atom_ctx.nlist.pin_block(sink_pin_id); const t_pb_graph_node* sink_pb_gnode = atom_ctx.lookup.atom_pb_graph_node(sink_blk_id); ClusterBlockId sink_clb = atom_ctx.lookup.atom_clb(sink_blk_id); - int sink_layer_num = place_ctx.block_locs[sink_clb].loc.layer; + int sink_layer_num = block_locs[sink_clb].loc.layer; t_draw_layer_display element_visibility = get_element_visibility_and_transparency(src_layer_num, sink_layer_num); @@ -653,7 +652,7 @@ void find_pin_index_at_model_scope(const AtomPinId pin_id, const AtomBlockId blk int atom_port_index = atom_ctx.nlist.pin_port_bit(pin_id); //The index of this pin in the model is the pins counted so-far - //(i.e. accross previous ports) plus the index in the port + //(i.e. across previous ports) plus the index in the port *pin_index = pin_cnt + atom_port_index; } diff --git a/vpr/src/draw/manual_moves.cpp b/vpr/src/draw/manual_moves.cpp index 3d907550396..00fb05e3ab2 100644 --- a/vpr/src/draw/manual_moves.cpp +++ b/vpr/src/draw/manual_moves.cpp @@ -5,7 +5,11 @@ * @brief Contains the function definitions needed for manual moves feature. * * Includes the graphics/gtk function for manual moves. The Manual Move Generator class is defined manual_move_generator.h/cpp. - * The manual move feature allows the user to select a move by choosing the block to move, x position, y position, subtile position. If the placer accepts the move, the user can accept or reject the move with respect to the delta cost, delta timing and delta bounding box cost displayed on the UI. The manual move feature interacts with placement through the ManualMoveGenerator class in the manual_move_generator.cpp/h files and in the place.cpp file by checking if the manual move toggle button in the UI is active or not, and calls the function needed. + * The manual move feature allows the user to select a move by choosing the block to move, x position, y position, subtile position. + * If the placer accepts the move, the user can accept or reject the move with respect to the delta cost, + * delta timing and delta bounding box cost displayed on the UI. The manual move feature interacts with placement through + * the ManualMoveGenerator class in the manual_move_generator.cpp/h files and in the place.cpp file by checking + * if the manual move toggle button in the UI is active or not, and calls the function needed. */ #include "manual_moves.h" @@ -144,8 +148,8 @@ void calculate_cost_callback(GtkWidget* /*widget*/, GtkWidget* grid) { bool is_manual_move_legal(ClusterBlockId block_id, t_pl_loc to) { auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.placement(); auto& device_ctx = g_vpr_ctx.device(); + const auto& grid_blocks = get_graphics_blk_loc_registry_ref().grid_blocks(); //if the block is not found if ((!cluster_ctx.clb_nlist.valid_block_id(ClusterBlockId(block_id)))) { @@ -169,16 +173,16 @@ bool is_manual_move_legal(ClusterBlockId block_id, t_pl_loc to) { } //If the destination block is user constrained, abort this swap - auto b_to = place_ctx.grid_blocks.block_at_location(to); - if (b_to != INVALID_BLOCK_ID && b_to != EMPTY_BLOCK_ID) { - if (place_ctx.block_locs[b_to].is_fixed) { + ClusterBlockId b_to = grid_blocks.block_at_location(to); + if (b_to) { + if (get_graphics_blk_loc_registry_ref().block_locs()[b_to].is_fixed) { invalid_breakpoint_entry_window("Block is fixed"); return false; } } //If the block requested is already in that location. - t_pl_loc current_block_loc = place_ctx.block_locs[block_id].loc; + t_pl_loc current_block_loc = get_graphics_blk_loc_registry_ref().block_locs()[block_id].loc; if (to.x == current_block_loc.x && to.y == current_block_loc.y && to.sub_tile == current_block_loc.sub_tile) { invalid_breakpoint_entry_window("The block is currently in this location"); return false; @@ -301,7 +305,12 @@ e_move_result pl_do_manual_move(double d_cost, double d_timing, double d_boundin return move_outcome; } -e_create_move manual_move_display_and_propose(ManualMoveGenerator& manual_move_generator, t_pl_blocks_to_be_moved& blocks_affected, e_move_type& move_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { +e_create_move manual_move_display_and_propose(ManualMoveGenerator& manual_move_generator, + t_pl_blocks_to_be_moved& blocks_affected, + e_move_type& move_type, + float rlim, + const t_placer_opts& placer_opts, + const PlacerCriticalities* criticalities) { draw_manual_moves_window(""); update_screen(ScreenUpdatePriority::MAJOR, " ", PLACEMENT, nullptr); move_type = e_move_type::MANUAL_MOVE; diff --git a/vpr/src/draw/manual_moves.h b/vpr/src/draw/manual_moves.h index 94d981a1e35..7f78ff0e876 100644 --- a/vpr/src/draw/manual_moves.h +++ b/vpr/src/draw/manual_moves.h @@ -149,11 +149,18 @@ bool string_is_a_number(const std::string& block_id); * @param d_bounding_box: Delta bounding box for cost summary dialog function. * @param move_outcome: Move result from placement for cost summary dialog function. * - * Helper function used in place.cpp. The ManualMovesState variable are updated and the manual_move_cost_summary_dialog is called to display the cost members to the user in the UI and waits for the user to either ACCPET/REJECT the manual move. + * Helper function used in place.cpp. The ManualMovesState variable are updated and + * the manual_move_cost_summary_dialog is called to display the cost members to the user + * in the UI and waits for the user to either ACCEPT/REJECT the manual move. */ e_move_result pl_do_manual_move(double d_cost, double d_timing, double d_bounding_box, e_move_result& move_outcome); -e_create_move manual_move_display_and_propose(ManualMoveGenerator& manual_move_generator, t_pl_blocks_to_be_moved& blocks_affected, e_move_type& move_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities); +e_create_move manual_move_display_and_propose(ManualMoveGenerator& manual_move_generator, + t_pl_blocks_to_be_moved& blocks_affected, + e_move_type& move_type, + float rlim, + const t_placer_opts& placer_opts, + const PlacerCriticalities* criticalities); #endif /*NO_GRAPHICS*/ diff --git a/vpr/src/draw/search_bar.cpp b/vpr/src/draw/search_bar.cpp index bd7e160d4ad..2842577b2fa 100644 --- a/vpr/src/draw/search_bar.cpp +++ b/vpr/src/draw/search_bar.cpp @@ -283,12 +283,12 @@ void auto_zoom_rr_node(RRNodeId rr_node_id) { void highlight_cluster_block(ClusterBlockId clb_index) { char msg[vtr::bufsize]; auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.placement(); + const auto& block_locs = get_graphics_blk_loc_registry_ref().block_locs(); /// determine block /// ezgl::rectangle clb_bbox; - VTR_ASSERT(clb_index != EMPTY_BLOCK_ID); + VTR_ASSERT(clb_index != ClusterBlockId::INVALID()); ezgl::point2d point_in_clb = clb_bbox.bottom_left(); highlight_sub_block(point_in_clb, clb_index, cluster_ctx.clb_nlist.block_pb(clb_index)); @@ -300,7 +300,9 @@ void highlight_cluster_block(ClusterBlockId clb_index) { } else { /* Highlight block and fan-in/fan-outs. */ draw_highlight_blocks_color(cluster_ctx.clb_nlist.block_type(clb_index), clb_index); - sprintf(msg, "Block #%zu (%s) at (%d, %d) selected.", size_t(clb_index), cluster_ctx.clb_nlist.block_name(clb_index).c_str(), place_ctx.block_locs[clb_index].loc.x, place_ctx.block_locs[clb_index].loc.y); + sprintf(msg, "Block #%zu (%s) at (%d, %d) selected.", + size_t(clb_index), cluster_ctx.clb_nlist.block_name(clb_index).c_str(), + block_locs[clb_index].loc.x, block_locs[clb_index].loc.y); } application.update_message(msg); diff --git a/vpr/src/pack/cluster.cpp b/vpr/src/pack/cluster.cpp index 47b277f2872..a5ee38b8d0c 100644 --- a/vpr/src/pack/cluster.cpp +++ b/vpr/src/pack/cluster.cpp @@ -33,46 +33,28 @@ * The output of clustering is 400 t_pb of type BLE which represent the clustered user netlist. * Each of the 400 t_pb will reference one of the 4 BLE-type t_pb_graph_nodes. */ +#include "cluster.h" + +#include #include #include #include #include #include -#include -#include - -#include "vtr_assert.h" -#include "vtr_log.h" -#include "vtr_math.h" -#include "vtr_memory.h" -#include "vpr_types.h" -#include "vpr_error.h" - -#include "globals.h" +#include "PreClusterDelayCalculator.h" #include "atom_netlist.h" -#include "pack_types.h" -#include "cluster.h" -#include "cluster_util.h" -#include "output_clustering.h" -#include "SetupGrid.h" -#include "read_xml_arch_file.h" -#include "vpr_utils.h" -#include "cluster_placement.h" -#include "echo_files.h" #include "cluster_router.h" -#include "lb_type_rr_graph.h" - -#include "timing_info.h" -#include "timing_reports.h" -#include "PreClusterDelayCalculator.h" -#include "PreClusterTimingGraphResolver.h" -#include "tatum/echo_writer.hpp" -#include "tatum/report/graphviz_dot_writer.hpp" -#include "tatum/TimingReporter.hpp" - -#include "re_cluster_util.h" +#include "cluster_util.h" #include "constraints_report.h" +#include "globals.h" +#include "pack_types.h" +#include "prepack.h" +#include "timing_info.h" +#include "vpr_types.h" +#include "vpr_utils.h" +#include "vtr_assert.h" +#include "vtr_log.h" /* * When attraction groups are created, the purpose is to pack more densely by adding more molecules @@ -87,10 +69,9 @@ static constexpr int ATTRACTION_GROUPS_MAX_REPEATED_MOLECULES = 500; std::map do_clustering(const t_packer_opts& packer_opts, const t_analysis_opts& analysis_opts, const t_arch* arch, - t_pack_molecule* molecule_head, + Prepacker& prepacker, const std::unordered_set& is_clock, const std::unordered_set& is_global, - const std::unordered_map& expected_lowest_cost_pb_gnode, bool allow_unrelated_clustering, bool balance_block_type_utilization, std::vector* lb_type_rr_graphs, @@ -173,11 +154,11 @@ std::map do_clustering(const t_packer_opts& pa helper_ctx.max_cluster_size = 0; max_pb_depth = 0; - const t_molecule_stats max_molecule_stats = calc_max_molecules_stats(molecule_head); + const t_molecule_stats max_molecule_stats = prepacker.calc_max_molecule_stats(atom_ctx.nlist); - mark_all_molecules_valid(molecule_head); + prepacker.mark_all_molecules_valid(); - cluster_stats.num_molecules = count_molecules(molecule_head); + cluster_stats.num_molecules = prepacker.get_num_molecules(); get_max_cluster_size_and_pb_depth(helper_ctx.max_cluster_size, max_pb_depth); @@ -193,7 +174,7 @@ std::map do_clustering(const t_packer_opts& pa check_for_duplicate_inputs (); #endif alloc_and_init_clustering(max_molecule_stats, - &(helper_ctx.cluster_placement_stats), &(helper_ctx.primitives_list), molecule_head, + &(helper_ctx.cluster_placement_stats), &(helper_ctx.primitives_list), prepacker, clustering_data, net_output_feeds_driving_block_input, unclustered_list_head_size, cluster_stats.num_molecules); @@ -213,7 +194,7 @@ std::map do_clustering(const t_packer_opts& pa vtr::vector atom_criticality(atom_ctx.nlist.blocks().size(), 0.); if (packer_opts.timing_driven) { - calc_init_packing_timing(packer_opts, analysis_opts, expected_lowest_cost_pb_gnode, + calc_init_packing_timing(packer_opts, analysis_opts, prepacker, clustering_delay_calc, timing_info, atom_criticality); } diff --git a/vpr/src/pack/cluster.h b/vpr/src/pack/cluster.h index e08e58dac50..76b2315ceae 100644 --- a/vpr/src/pack/cluster.h +++ b/vpr/src/pack/cluster.h @@ -1,6 +1,6 @@ #ifndef CLUSTER_H #define CLUSTER_H -#include + #include #include #include @@ -11,13 +11,14 @@ #include "attraction_groups.h" #include "cluster_util.h" +class Prepacker; + std::map do_clustering(const t_packer_opts& packer_opts, const t_analysis_opts& analysis_opts, const t_arch* arch, - t_pack_molecule* molecule_head, + Prepacker& prepacker, const std::unordered_set& is_clock, const std::unordered_set& is_global, - const std::unordered_map& expected_lowest_cost_pb_gnode, bool allow_unrelated_clustering, bool balance_block_type_utilization, std::vector* lb_type_rr_graphs, diff --git a/vpr/src/pack/cluster_util.cpp b/vpr/src/pack/cluster_util.cpp index 9d698672cf7..8fd0bcfa56f 100644 --- a/vpr/src/pack/cluster_util.cpp +++ b/vpr/src/pack/cluster_util.cpp @@ -1,9 +1,17 @@ #include "cluster_util.h" +#include +#include "PreClusterTimingGraphResolver.h" +#include "PreClusterDelayCalculator.h" +#include "atom_netlist.h" #include "cluster_router.h" #include "cluster_placement.h" +#include "concrete_timing_info.h" #include "output_clustering.h" - +#include "prepack.h" +#include "tatum/TimingReporter.hpp" +#include "tatum/echo_writer.hpp" +#include "vpr_context.h" #include "vtr_math.h" #include "SetupGrid.h" @@ -175,7 +183,7 @@ void check_clustering() { //calculate the initial timing at the start of packing stage void calc_init_packing_timing(const t_packer_opts& packer_opts, const t_analysis_opts& analysis_opts, - const std::unordered_map& expected_lowest_cost_pb_gnode, + const Prepacker& prepacker, std::shared_ptr& clustering_delay_calc, std::shared_ptr& timing_info, vtr::vector& atom_criticality) { @@ -184,7 +192,7 @@ void calc_init_packing_timing(const t_packer_opts& packer_opts, /* * Initialize the timing analyzer */ - clustering_delay_calc = std::make_shared(atom_ctx.nlist, atom_ctx.lookup, packer_opts.inter_cluster_net_delay, expected_lowest_cost_pb_gnode); + clustering_delay_calc = std::make_shared(atom_ctx.nlist, atom_ctx.lookup, packer_opts.inter_cluster_net_delay, prepacker); timing_info = make_setup_timing_info(clustering_delay_calc, packer_opts.timing_update_type); //Calculate the initial timing @@ -496,18 +504,14 @@ void add_molecule_to_pb_stats_candidates(t_pack_molecule* molecule, void alloc_and_init_clustering(const t_molecule_stats& max_molecule_stats, t_cluster_placement_stats** cluster_placement_stats, t_pb_graph_node*** primitives_list, - t_pack_molecule* molecules_head, + const Prepacker& prepacker, t_clustering_data& clustering_data, std::unordered_map& net_output_feeds_driving_block_input, int& unclustered_list_head_size, int num_molecules) { /* Allocates the main data structures used for clustering and properly * * initializes them. */ - - t_molecule_link* next_ptr; - t_pack_molecule* cur_molecule; - t_pack_molecule** molecule_array; - int max_molecule_size; + const AtomContext& atom_ctx = g_vpr_ctx.atom(); /* alloc and load list of molecules to pack */ clustering_data.unclustered_list_head = new t_molecule_link[max_molecule_stats.num_used_ext_inputs + 1]; @@ -518,36 +522,32 @@ void alloc_and_init_clustering(const t_molecule_stats& max_molecule_stats, clustering_data.unclustered_list_head[i].next = nullptr; } - molecule_array = new t_pack_molecule*[num_molecules]; - cur_molecule = molecules_head; - for (int i = 0; i < num_molecules; i++) { - VTR_ASSERT(cur_molecule != nullptr); - molecule_array[i] = cur_molecule; - cur_molecule = cur_molecule->next; - } - VTR_ASSERT(cur_molecule == nullptr); - qsort((void*)molecule_array, num_molecules, sizeof(t_pack_molecule*), - compare_molecule_gain); + // Create a sorted list of molecules, sorted on increasing molecule base gain. + std::vector molecules_vector = prepacker.get_molecules_vector(); + VTR_ASSERT(molecules_vector.size() == (size_t)num_molecules); + std::stable_sort(molecules_vector.begin(), + molecules_vector.end(), + [](t_pack_molecule* a, t_pack_molecule* b) { + return a->base_gain < b->base_gain; + }); clustering_data.memory_pool = new t_molecule_link[num_molecules]; - next_ptr = clustering_data.memory_pool; + t_molecule_link* next_ptr = clustering_data.memory_pool; - for (int i = 0; i < num_molecules; i++) { + for (t_pack_molecule* mol : molecules_vector) { //Figure out how many external inputs are used by this molecule - t_molecule_stats molecule_stats = calc_molecule_stats(molecule_array[i]); + t_molecule_stats molecule_stats = calc_molecule_stats(mol, atom_ctx.nlist); int ext_inps = molecule_stats.num_used_ext_inputs; //Insert the molecule into the unclustered lists by number of external inputs - next_ptr->moleculeptr = molecule_array[i]; + next_ptr->moleculeptr = mol; next_ptr->next = clustering_data.unclustered_list_head[ext_inps].next; clustering_data.unclustered_list_head[ext_inps].next = next_ptr; next_ptr++; } - delete[] molecule_array; /* load net info */ - auto& atom_ctx = g_vpr_ctx.atom(); for (AtomNetId net : atom_ctx.nlist.nets()) { AtomPinId driver_pin = atom_ctx.nlist.net_driver(net); AtomBlockId driver_block = atom_ctx.nlist.pin_block(driver_pin); @@ -568,16 +568,9 @@ void alloc_and_init_clustering(const t_molecule_stats& max_molecule_stats, * primitive_list is referenced by index, for example a atom block in index 2 of a molecule matches to a primitive in index 2 in primitive_list * this array must be the size of the biggest molecule */ - max_molecule_size = 1; - cur_molecule = molecules_head; - while (cur_molecule != nullptr) { - if (cur_molecule->num_blocks > max_molecule_size) { - max_molecule_size = cur_molecule->num_blocks; - } - cur_molecule = cur_molecule->next; - } + size_t max_molecule_size = prepacker.get_max_molecule_size(); *primitives_list = new t_pb_graph_node*[max_molecule_size]; - for (int i = 0; i < max_molecule_size; i++) + for (size_t i = 0; i < max_molecule_size; i++) (*primitives_list)[i] = nullptr; } @@ -1119,12 +1112,8 @@ e_block_pack_status try_pack_molecule(t_cluster_placement_stats* cluster_placeme for (int i = 0; i < molecule_size; i++) { if (molecule->atom_block_ids[i]) { /* invalidate all molecules that share atom block with current molecule */ - - auto rng = atom_ctx.atom_molecules.equal_range(molecule->atom_block_ids[i]); - for (const auto& kv : vtr::make_range(rng.first, rng.second)) { - t_pack_molecule* cur_molecule = kv.second; - cur_molecule->valid = false; - } + t_pack_molecule* cur_molecule = atom_ctx.prepacker.get_atom_molecule(molecule->atom_block_ids[i]); + cur_molecule->valid = false; commit_primitive(cluster_placement_stats_ptr, primitives_list[i]); } @@ -2324,15 +2313,12 @@ void add_cluster_molecule_candidates_by_connectivity_and_timing(t_pb* cur_pb, for (AtomBlockId blk_id : cur_pb->pb_stats->marked_blocks) { if (atom_ctx.lookup.atom_clb(blk_id) == ClusterBlockId::INVALID()) { - auto rng = atom_ctx.atom_molecules.equal_range(blk_id); - for (const auto& kv : vtr::make_range(rng.first, rng.second)) { - t_pack_molecule* molecule = kv.second; - if (molecule->valid) { - bool success = check_free_primitives_for_molecule_atoms(molecule, cluster_placement_stats_ptr); - if (success) { - add_molecule_to_pb_stats_candidates(molecule, - cur_pb->pb_stats->gain, cur_pb, feasible_block_array_size, attraction_groups); - } + t_pack_molecule* molecule = atom_ctx.prepacker.get_atom_molecule(blk_id); + if (molecule->valid) { + bool success = check_free_primitives_for_molecule_atoms(molecule, cluster_placement_stats_ptr); + if (success) { + add_molecule_to_pb_stats_candidates(molecule, + cur_pb->pb_stats->gain, cur_pb, feasible_block_array_size, attraction_groups); } } } @@ -2362,16 +2348,13 @@ void add_cluster_molecule_candidates_by_highfanout_connectivity(t_pb* cur_pb, AtomBlockId blk_id = atom_ctx.nlist.pin_block(pin_id); if (atom_ctx.lookup.atom_clb(blk_id) == ClusterBlockId::INVALID()) { - auto rng = atom_ctx.atom_molecules.equal_range(blk_id); - for (const auto& kv : vtr::make_range(rng.first, rng.second)) { - t_pack_molecule* molecule = kv.second; - if (molecule->valid) { - bool success = check_free_primitives_for_molecule_atoms(molecule, cluster_placement_stats_ptr); - if (success) { - add_molecule_to_pb_stats_candidates(molecule, - cur_pb->pb_stats->gain, cur_pb, std::min(feasible_block_array_size, AAPACK_MAX_HIGH_FANOUT_EXPLORE), attraction_groups); - count++; - } + t_pack_molecule* molecule = atom_ctx.prepacker.get_atom_molecule(blk_id); + if (molecule->valid) { + bool success = check_free_primitives_for_molecule_atoms(molecule, cluster_placement_stats_ptr); + if (success) { + add_molecule_to_pb_stats_candidates(molecule, + cur_pb->pb_stats->gain, cur_pb, std::min(feasible_block_array_size, AAPACK_MAX_HIGH_FANOUT_EXPLORE), attraction_groups); + count++; } } } @@ -2451,15 +2434,12 @@ void add_cluster_molecule_candidates_by_attraction_group(t_pb* cur_pb, //Only consider molecules that are unpacked and of the correct type if (atom_ctx.lookup.atom_clb(atom_id) == ClusterBlockId::INVALID() && std::find(candidate_types.begin(), candidate_types.end(), cluster_type) != candidate_types.end()) { - auto rng = atom_ctx.atom_molecules.equal_range(atom_id); - for (const auto& kv : vtr::make_range(rng.first, rng.second)) { - t_pack_molecule* molecule = kv.second; - if (molecule->valid) { - bool success = check_free_primitives_for_molecule_atoms(molecule, cluster_placement_stats_ptr); - if (success) { - add_molecule_to_pb_stats_candidates(molecule, - cur_pb->pb_stats->gain, cur_pb, feasible_block_array_size, attraction_groups); - } + t_pack_molecule* molecule = atom_ctx.prepacker.get_atom_molecule(atom_id); + if (molecule->valid) { + bool success = check_free_primitives_for_molecule_atoms(molecule, cluster_placement_stats_ptr); + if (success) { + add_molecule_to_pb_stats_candidates(molecule, + cur_pb->pb_stats->gain, cur_pb, feasible_block_array_size, attraction_groups); } } } @@ -2486,15 +2466,12 @@ void add_cluster_molecule_candidates_by_attraction_group(t_pb* cur_pb, //Only consider molecules that are unpacked and of the correct type if (atom_ctx.lookup.atom_clb(blk_id) == ClusterBlockId::INVALID() && std::find(candidate_types.begin(), candidate_types.end(), cluster_type) != candidate_types.end()) { - auto rng = atom_ctx.atom_molecules.equal_range(blk_id); - for (const auto& kv : vtr::make_range(rng.first, rng.second)) { - t_pack_molecule* molecule = kv.second; - if (molecule->valid) { - bool success = check_free_primitives_for_molecule_atoms(molecule, cluster_placement_stats_ptr); - if (success) { - add_molecule_to_pb_stats_candidates(molecule, - cur_pb->pb_stats->gain, cur_pb, feasible_block_array_size, attraction_groups); - } + t_pack_molecule* molecule = atom_ctx.prepacker.get_atom_molecule(blk_id); + if (molecule->valid) { + bool success = check_free_primitives_for_molecule_atoms(molecule, cluster_placement_stats_ptr); + if (success) { + add_molecule_to_pb_stats_candidates(molecule, + cur_pb->pb_stats->gain, cur_pb, feasible_block_array_size, attraction_groups); } } } @@ -2604,33 +2581,17 @@ t_pack_molecule* get_molecule_for_cluster(t_pb* cur_pb, return best_molecule; } -void mark_all_molecules_valid(t_pack_molecule* molecule_head) { - for (auto cur_molecule = molecule_head; cur_molecule != nullptr; cur_molecule = cur_molecule->next) { - cur_molecule->valid = true; - } -} - -int count_molecules(t_pack_molecule* molecule_head) { - int num_molecules = 0; - for (auto cur_molecule = molecule_head; cur_molecule != nullptr; cur_molecule = cur_molecule->next) { - ++num_molecules; - } - return num_molecules; -} - //Calculates molecule statistics for a single molecule -t_molecule_stats calc_molecule_stats(const t_pack_molecule* molecule) { +t_molecule_stats calc_molecule_stats(const t_pack_molecule* molecule, const AtomNetlist& atom_nlist) { t_molecule_stats molecule_stats; - auto& atom_ctx = g_vpr_ctx.atom(); - //Calculate the number of available pins on primitives within the molecule for (auto blk : molecule->atom_block_ids) { if (!blk) continue; ++molecule_stats.num_blocks; //Record number of valid blocks in molecule - const t_model* model = atom_ctx.nlist.block_model(blk); + const t_model* model = atom_nlist.block_model(blk); for (const t_model_ports* input_port = model->inputs; input_port != nullptr; input_port = input_port->next) { molecule_stats.num_input_pins += input_port->size; @@ -2647,12 +2608,12 @@ t_molecule_stats calc_molecule_stats(const t_pack_molecule* molecule) { for (auto blk : molecule->atom_block_ids) { if (!blk) continue; - for (auto pin : atom_ctx.nlist.block_pins(blk)) { - auto net = atom_ctx.nlist.pin_net(pin); + for (auto pin : atom_nlist.block_pins(blk)) { + auto net = atom_nlist.pin_net(pin); - auto pin_type = atom_ctx.nlist.pin_type(pin); + auto pin_type = atom_nlist.pin_type(pin); if (pin_type == PinType::SINK) { - auto driver_blk = atom_ctx.nlist.net_driver_block(net); + auto driver_blk = atom_nlist.net_driver_block(net); if (molecule_atoms.count(driver_blk)) { //Pin driven by a block within the molecule @@ -2666,8 +2627,8 @@ t_molecule_stats calc_molecule_stats(const t_pack_molecule* molecule) { VTR_ASSERT(pin_type == PinType::DRIVER); bool net_leaves_molecule = false; - for (auto sink_pin : atom_ctx.nlist.net_sinks(net)) { - auto sink_blk = atom_ctx.nlist.pin_block(sink_pin); + for (auto sink_pin : atom_nlist.net_sinks(net)) { + auto sink_blk = atom_nlist.pin_block(sink_pin); if (!molecule_atoms.count(sink_blk)) { //There is at least one sink outside of the current molecule @@ -2689,33 +2650,10 @@ t_molecule_stats calc_molecule_stats(const t_pack_molecule* molecule) { return molecule_stats; } -//Calculates maximum molecule statistics accross all molecules in linked list -t_molecule_stats calc_max_molecules_stats(const t_pack_molecule* molecule_head) { - t_molecule_stats max_molecules_stats; - - for (auto cur_molecule = molecule_head; cur_molecule != nullptr; cur_molecule = cur_molecule->next) { - //Calculate per-molecule statistics - t_molecule_stats cur_molecule_stats = calc_molecule_stats(cur_molecule); - - //Record the maximums (member-wise) over all molecules - max_molecules_stats.num_blocks = std::max(max_molecules_stats.num_blocks, cur_molecule_stats.num_blocks); - - max_molecules_stats.num_pins = std::max(max_molecules_stats.num_pins, cur_molecule_stats.num_pins); - max_molecules_stats.num_input_pins = std::max(max_molecules_stats.num_input_pins, cur_molecule_stats.num_input_pins); - max_molecules_stats.num_output_pins = std::max(max_molecules_stats.num_output_pins, cur_molecule_stats.num_output_pins); - - max_molecules_stats.num_used_ext_pins = std::max(max_molecules_stats.num_used_ext_pins, cur_molecule_stats.num_used_ext_pins); - max_molecules_stats.num_used_ext_inputs = std::max(max_molecules_stats.num_used_ext_inputs, cur_molecule_stats.num_used_ext_inputs); - max_molecules_stats.num_used_ext_outputs = std::max(max_molecules_stats.num_used_ext_outputs, cur_molecule_stats.num_used_ext_outputs); - } - - return max_molecules_stats; -} - std::vector initialize_seed_atoms(const e_cluster_seed seed_type, const t_molecule_stats& max_molecule_stats, const vtr::vector& atom_criticality) { - auto& atom_ctx = g_vpr_ctx.atom(); + const AtomContext& atom_ctx = g_vpr_ctx.atom(); //Put all atoms in seed list std::vector seed_atoms(atom_ctx.nlist.blocks().begin(), atom_ctx.nlist.blocks().end()); @@ -2732,18 +2670,9 @@ std::vector initialize_seed_atoms(const e_cluster_seed seed_type, } else if (seed_type == e_cluster_seed::MAX_INPUTS) { //By number of used molecule input pins for (auto blk : atom_ctx.nlist.blocks()) { - int max_molecule_inputs = 0; - auto molecule_rng = atom_ctx.atom_molecules.equal_range(blk); - for (const auto& kv : vtr::make_range(molecule_rng.first, molecule_rng.second)) { - const t_pack_molecule* blk_mol = kv.second; - - const t_molecule_stats molecule_stats = calc_molecule_stats(blk_mol); - - //Keep the max over all molecules associated with the atom - max_molecule_inputs = std::max(max_molecule_inputs, molecule_stats.num_used_ext_inputs); - } - - atom_gains[blk] = max_molecule_inputs; + const t_pack_molecule* blk_mol = atom_ctx.prepacker.get_atom_molecule(blk); + const t_molecule_stats molecule_stats = calc_molecule_stats(blk_mol, atom_ctx.nlist); + atom_gains[blk] = molecule_stats.num_used_ext_inputs; } } else if (seed_type == e_cluster_seed::BLEND) { @@ -2752,96 +2681,72 @@ std::vector initialize_seed_atoms(const e_cluster_seed seed_type, /* Score seed gain of each block as a weighted sum of timing criticality, * number of tightly coupled blocks connected to it, and number of external inputs */ float seed_blend_fac = 0.5; - float max_blend_gain = 0; - - auto molecule_rng = atom_ctx.atom_molecules.equal_range(blk); - for (const auto& kv : vtr::make_range(molecule_rng.first, molecule_rng.second)) { - const t_pack_molecule* blk_mol = kv.second; - const t_molecule_stats molecule_stats = calc_molecule_stats(blk_mol); + const t_pack_molecule* blk_mol = atom_ctx.prepacker.get_atom_molecule(blk); + const t_molecule_stats molecule_stats = calc_molecule_stats(blk_mol, atom_ctx.nlist); + VTR_ASSERT(max_molecule_stats.num_used_ext_inputs > 0); - VTR_ASSERT(max_molecule_stats.num_used_ext_inputs > 0); - - float blend_gain = (seed_blend_fac * atom_criticality[blk] - + (1 - seed_blend_fac) * (molecule_stats.num_used_ext_inputs / max_molecule_stats.num_used_ext_inputs)); - blend_gain *= (1 + 0.2 * (molecule_stats.num_blocks - 1)); - - //Keep the max over all molecules associated with the atom - max_blend_gain = std::max(max_blend_gain, blend_gain); - } - atom_gains[blk] = max_blend_gain; + float blend_gain = (seed_blend_fac * atom_criticality[blk] + + (1 - seed_blend_fac) * (molecule_stats.num_used_ext_inputs / max_molecule_stats.num_used_ext_inputs)); + blend_gain *= (1 + 0.2 * (molecule_stats.num_blocks - 1)); + atom_gains[blk] = blend_gain; } } else if (seed_type == e_cluster_seed::MAX_PINS || seed_type == e_cluster_seed::MAX_INPUT_PINS) { //By pins per molecule (i.e. available pins on primitives, not pins in use) for (auto blk : atom_ctx.nlist.blocks()) { - int max_molecule_pins = 0; - auto molecule_rng = atom_ctx.atom_molecules.equal_range(blk); - for (const auto& kv : vtr::make_range(molecule_rng.first, molecule_rng.second)) { - const t_pack_molecule* mol = kv.second; - - const t_molecule_stats molecule_stats = calc_molecule_stats(mol); - - //Keep the max over all molecules associated with the atom - int molecule_pins = 0; - if (seed_type == e_cluster_seed::MAX_PINS) { - //All pins - molecule_pins = molecule_stats.num_pins; - } else { - VTR_ASSERT(seed_type == e_cluster_seed::MAX_INPUT_PINS); - //Input pins only - molecule_pins = molecule_stats.num_input_pins; - } + const t_pack_molecule* mol = atom_ctx.prepacker.get_atom_molecule(blk); + const t_molecule_stats molecule_stats = calc_molecule_stats(mol, atom_ctx.nlist); - //Keep the max over all molecules associated with the atom - max_molecule_pins = std::max(max_molecule_pins, molecule_pins); + int molecule_pins = 0; + if (seed_type == e_cluster_seed::MAX_PINS) { + //All pins + molecule_pins = molecule_stats.num_pins; + } else { + VTR_ASSERT(seed_type == e_cluster_seed::MAX_INPUT_PINS); + //Input pins only + molecule_pins = molecule_stats.num_input_pins; } - atom_gains[blk] = max_molecule_pins; + + atom_gains[blk] = molecule_pins; } } else if (seed_type == e_cluster_seed::BLEND2) { for (auto blk : atom_ctx.nlist.blocks()) { - float max_gain = 0; - auto molecule_rng = atom_ctx.atom_molecules.equal_range(blk); - for (const auto& kv : vtr::make_range(molecule_rng.first, molecule_rng.second)) { - const t_pack_molecule* mol = kv.second; + const t_pack_molecule* mol = atom_ctx.prepacker.get_atom_molecule(blk); + const t_molecule_stats molecule_stats = calc_molecule_stats(mol, atom_ctx.nlist); - const t_molecule_stats molecule_stats = calc_molecule_stats(mol); + float pin_ratio = vtr::safe_ratio(molecule_stats.num_pins, max_molecule_stats.num_pins); + float input_pin_ratio = vtr::safe_ratio(molecule_stats.num_input_pins, max_molecule_stats.num_input_pins); + float output_pin_ratio = vtr::safe_ratio(molecule_stats.num_output_pins, max_molecule_stats.num_output_pins); + float used_ext_pin_ratio = vtr::safe_ratio(molecule_stats.num_used_ext_pins, max_molecule_stats.num_used_ext_pins); + float used_ext_input_pin_ratio = vtr::safe_ratio(molecule_stats.num_used_ext_inputs, max_molecule_stats.num_used_ext_inputs); + float used_ext_output_pin_ratio = vtr::safe_ratio(molecule_stats.num_used_ext_outputs, max_molecule_stats.num_used_ext_outputs); + float num_blocks_ratio = vtr::safe_ratio(molecule_stats.num_blocks, max_molecule_stats.num_blocks); + float criticality = atom_criticality[blk]; - float pin_ratio = vtr::safe_ratio(molecule_stats.num_pins, max_molecule_stats.num_pins); - float input_pin_ratio = vtr::safe_ratio(molecule_stats.num_input_pins, max_molecule_stats.num_input_pins); - float output_pin_ratio = vtr::safe_ratio(molecule_stats.num_output_pins, max_molecule_stats.num_output_pins); - float used_ext_pin_ratio = vtr::safe_ratio(molecule_stats.num_used_ext_pins, max_molecule_stats.num_used_ext_pins); - float used_ext_input_pin_ratio = vtr::safe_ratio(molecule_stats.num_used_ext_inputs, max_molecule_stats.num_used_ext_inputs); - float used_ext_output_pin_ratio = vtr::safe_ratio(molecule_stats.num_used_ext_outputs, max_molecule_stats.num_used_ext_outputs); - float num_blocks_ratio = vtr::safe_ratio(molecule_stats.num_blocks, max_molecule_stats.num_blocks); - float criticality = atom_criticality[blk]; + constexpr float PIN_WEIGHT = 0.; + constexpr float INPUT_PIN_WEIGHT = 0.5; + constexpr float OUTPUT_PIN_WEIGHT = 0.; + constexpr float USED_PIN_WEIGHT = 0.; + constexpr float USED_INPUT_PIN_WEIGHT = 0.2; + constexpr float USED_OUTPUT_PIN_WEIGHT = 0.; + constexpr float BLOCKS_WEIGHT = 0.2; + constexpr float CRITICALITY_WEIGHT = 0.1; - constexpr float PIN_WEIGHT = 0.; - constexpr float INPUT_PIN_WEIGHT = 0.5; - constexpr float OUTPUT_PIN_WEIGHT = 0.; - constexpr float USED_PIN_WEIGHT = 0.; - constexpr float USED_INPUT_PIN_WEIGHT = 0.2; - constexpr float USED_OUTPUT_PIN_WEIGHT = 0.; - constexpr float BLOCKS_WEIGHT = 0.2; - constexpr float CRITICALITY_WEIGHT = 0.1; + float gain = PIN_WEIGHT * pin_ratio + + INPUT_PIN_WEIGHT * input_pin_ratio + + OUTPUT_PIN_WEIGHT * output_pin_ratio - float gain = PIN_WEIGHT * pin_ratio - + INPUT_PIN_WEIGHT * input_pin_ratio - + OUTPUT_PIN_WEIGHT * output_pin_ratio + + USED_PIN_WEIGHT * used_ext_pin_ratio + + USED_INPUT_PIN_WEIGHT * used_ext_input_pin_ratio + + USED_OUTPUT_PIN_WEIGHT * used_ext_output_pin_ratio - + USED_PIN_WEIGHT * used_ext_pin_ratio - + USED_INPUT_PIN_WEIGHT * used_ext_input_pin_ratio - + USED_OUTPUT_PIN_WEIGHT * used_ext_output_pin_ratio + + BLOCKS_WEIGHT * num_blocks_ratio + + CRITICALITY_WEIGHT * criticality; - + BLOCKS_WEIGHT * num_blocks_ratio - + CRITICALITY_WEIGHT * criticality; - - max_gain = std::max(max_gain, gain); - } - - atom_gains[blk] = max_gain; + atom_gains[blk] = gain; } } else { @@ -2878,15 +2783,10 @@ t_pack_molecule* get_highest_gain_seed_molecule(int& seed_index, const std::vect if (atom_ctx.lookup.atom_clb(blk_id) == ClusterBlockId::INVALID()) { t_pack_molecule* best = nullptr; - // Iterate over all the molecules associated with the selected atom - // and select the one with the highest gain - auto rng = atom_ctx.atom_molecules.equal_range(blk_id); - for (const auto& kv : vtr::make_range(rng.first, rng.second)) { - t_pack_molecule* molecule = kv.second; - if (molecule->valid) { - if (best == nullptr || (best->base_gain) < (molecule->base_gain)) { - best = molecule; - } + t_pack_molecule* molecule = atom_ctx.prepacker.get_atom_molecule(blk_id); + if (molecule->valid) { + if (best == nullptr || (best->base_gain) < (molecule->base_gain)) { + best = molecule; } } VTR_ASSERT(best != nullptr); @@ -2961,24 +2861,6 @@ float get_molecule_gain(t_pack_molecule* molecule, std::map& return gain; } -int compare_molecule_gain(const void* a, const void* b) { - float base_gain_a, base_gain_b, diff; - const t_pack_molecule *molecule_a, *molecule_b; - molecule_a = (*(const t_pack_molecule* const*)a); - molecule_b = (*(const t_pack_molecule* const*)b); - - base_gain_a = molecule_a->base_gain; - base_gain_b = molecule_b->base_gain; - diff = base_gain_a - base_gain_b; - if (diff > 0) { - return 1; - } - if (diff < 0) { - return -1; - } - return 0; -} - /* Determine if speculatively packed cur_pb is pin feasible * Runtime is actually not that bad for this. It's worst case O(k^2) where k is the * number of pb_graph pins. Can use hash tables or make incremental if becomes an issue. @@ -3368,12 +3250,9 @@ void load_transitive_fanout_candidates(ClusterBlockId clb_index, } else { pb_stats->gain[blk_id] += 0.001; } - auto rng = atom_ctx.atom_molecules.equal_range(blk_id); - for (const auto& kv : vtr::make_range(rng.first, rng.second)) { - t_pack_molecule* molecule = kv.second; - if (molecule->valid) { - transitive_fanout_candidates.insert({molecule->atom_block_ids[molecule->root], molecule}); - } + t_pack_molecule* molecule = atom_ctx.prepacker.get_atom_molecule(blk_id); + if (molecule->valid) { + transitive_fanout_candidates.insert({molecule->atom_block_ids[molecule->root], molecule}); } } } diff --git a/vpr/src/pack/cluster_util.h b/vpr/src/pack/cluster_util.h index 31a829c82d0..4f190645ff0 100644 --- a/vpr/src/pack/cluster_util.h +++ b/vpr/src/pack/cluster_util.h @@ -1,18 +1,16 @@ #ifndef CLUSTER_UTIL_H #define CLUSTER_UTIL_H -#include "globals.h" -#include "atom_netlist.h" +#include #include "pack_types.h" -#include "echo_files.h" -#include "vpr_utils.h" -#include "constraints_report.h" +#include "vtr_vector.h" -#include "concrete_timing_info.h" -#include "PreClusterDelayCalculator.h" -#include "PreClusterTimingGraphResolver.h" -#include "tatum/echo_writer.hpp" -#include "tatum/TimingReporter.hpp" +class AtomNetId; +class ClusterBlockId; +class PreClusterDelayCalculator; +class Prepacker; +class SetupTimingInfo; +class t_pack_molecule; /** * @file @@ -113,7 +111,7 @@ void check_clustering(); //calculate the initial timing at the start of packing stage void calc_init_packing_timing(const t_packer_opts& packer_opts, const t_analysis_opts& analysis_opts, - const std::unordered_map& expected_lowest_cost_pb_gnode, + const Prepacker& prepacker, std::shared_ptr& clustering_delay_calc, std::shared_ptr& timing_info, vtr::vector& atom_criticality); @@ -150,7 +148,7 @@ void remove_molecule_from_pb_stats_candidates(t_pack_molecule* molecule, void alloc_and_init_clustering(const t_molecule_stats& max_molecule_stats, t_cluster_placement_stats** cluster_placement_stats, t_pb_graph_node*** primitives_list, - t_pack_molecule* molecules_head, + const Prepacker& prepacker, t_clustering_data& clustering_data, std::unordered_map& net_output_feeds_driving_block_input, int& unclustered_list_head_size, @@ -437,13 +435,7 @@ t_pack_molecule* get_molecule_for_cluster(t_pb* cur_pb, const int& unclustered_list_head_size, std::map>& primitive_candidate_block_types); -void mark_all_molecules_valid(t_pack_molecule* molecule_head); - -int count_molecules(t_pack_molecule* molecule_head); - -t_molecule_stats calc_molecule_stats(const t_pack_molecule* molecule); - -t_molecule_stats calc_max_molecules_stats(const t_pack_molecule* molecule_head); +t_molecule_stats calc_molecule_stats(const t_pack_molecule* molecule, const AtomNetlist& atom_nlist); std::vector initialize_seed_atoms(const e_cluster_seed seed_type, const t_molecule_stats& max_molecule_stats, @@ -453,7 +445,6 @@ t_pack_molecule* get_highest_gain_seed_molecule(int& seed_index, const std::vect float get_molecule_gain(t_pack_molecule* molecule, std::map& blk_gain, AttractGroupId cluster_attraction_group_id, AttractionInfo& attraction_groups, int num_molecule_failures); -int compare_molecule_gain(const void* a, const void* b); int net_sinks_reachable_in_cluster(const t_pb_graph_pin* driver_pb_gpin, const int depth, const AtomNetId net_id); void print_seed_gains(const char* fname, const std::vector& seed_atoms, const vtr::vector& atom_gain, const vtr::vector& atom_criticality); diff --git a/vpr/src/pack/pack.cpp b/vpr/src/pack/pack.cpp index a76c9e698d4..e8c68ea2244 100644 --- a/vpr/src/pack/pack.cpp +++ b/vpr/src/pack/pack.cpp @@ -1,22 +1,18 @@ #include -#include -#include +#include "vpr_context.h" #include "vtr_assert.h" #include "vtr_log.h" -#include "vtr_math.h" #include "vpr_error.h" #include "vpr_types.h" -#include "read_xml_arch_file.h" #include "globals.h" #include "prepack.h" #include "pack_types.h" #include "pack.h" #include "cluster.h" #include "SetupGrid.h" -#include "re_cluster.h" #include "noc_aware_cluster_util.h" /* #define DUMP_PB_GRAPH 1 */ @@ -42,14 +38,13 @@ bool try_pack(t_packer_opts* packer_opts, const t_model* library_models, float interc_delay, std::vector* lb_type_rr_graphs) { - auto& helper_ctx = g_vpr_ctx.mutable_cl_helper(); - auto& atom_ctx = g_vpr_ctx.atom(); - auto& atom_mutable_ctx = g_vpr_ctx.mutable_atom(); + AtomContext& atom_mutable_ctx = g_vpr_ctx.mutable_atom(); + const AtomContext& atom_ctx = g_vpr_ctx.atom(); + ClusteringHelperContext& helper_ctx = g_vpr_ctx.mutable_cl_helper(); + const DeviceContext& device_ctx = g_vpr_ctx.device(); std::unordered_set is_clock, is_global; - std::unordered_map expected_lowest_cost_pb_gnode; //The molecules associated with each atom block t_clustering_data clustering_data; - std::vector list_of_packing_patterns; VTR_LOG("Begin packing '%s'.\n", packer_opts->circuit_file_name.c_str()); /* determine number of models in the architecture */ @@ -75,21 +70,9 @@ bool try_pack(t_packer_opts* packer_opts, VTR_LOG("\ttotal blocks: %zu, total nets: %zu, total inputs: %zu, total outputs: %zu\n", atom_ctx.nlist.blocks().size(), atom_ctx.nlist.nets().size(), num_p_inputs, num_p_outputs); + // Run the prepacker, packing the atoms into molecules. VTR_LOG("Begin prepacking.\n"); - list_of_packing_patterns = alloc_and_load_pack_patterns(); - - //To ensure the list of packing patterns gets freed in case of an error, we create - //a unique_ptr with custom deleter which will free the list at the end of the current - //scope. - auto list_of_packing_patterns_deleter = [](std::vector* ptr) { - free_list_of_pack_patterns(*ptr); - }; - std::unique_ptr, decltype(list_of_packing_patterns_deleter)> list_of_packing_patterns_cleanup_guard(&list_of_packing_patterns, - list_of_packing_patterns_deleter); - - atom_mutable_ctx.list_of_pack_molecules.reset(alloc_and_load_pack_molecules(list_of_packing_patterns.data(), - expected_lowest_cost_pb_gnode, - list_of_packing_patterns.size())); + atom_mutable_ctx.prepacker.init(atom_ctx.nlist, device_ctx.logical_block_types); /* We keep attraction groups off in the first iteration, and * only turn on in later iterations if some floorplan regions turn out to be overfull. @@ -137,10 +120,10 @@ bool try_pack(t_packer_opts* packer_opts, helper_ctx.num_used_type_instances = do_clustering( *packer_opts, *analysis_opts, - arch, atom_mutable_ctx.list_of_pack_molecules.get(), + arch, + atom_mutable_ctx.prepacker, is_clock, is_global, - expected_lowest_cost_pb_gnode, allow_unrelated_clustering, balance_block_type_util, lb_type_rr_graphs, @@ -304,7 +287,6 @@ std::unordered_set alloc_and_load_is_clock() { * the corresponding entry by adding the clock to is_clock. * only for an error check. */ - int num_clocks = 0; std::unordered_set is_clock; /* Want to identify all the clock nets. */ @@ -315,7 +297,6 @@ std::unordered_set alloc_and_load_is_clock() { auto net_id = atom_ctx.nlist.pin_net(pin_id); if (!is_clock.count(net_id)) { is_clock.insert(net_id); - num_clocks++; } } } @@ -385,4 +366,4 @@ static int count_models(const t_model* user_models) { } return n_models; -} \ No newline at end of file +} diff --git a/vpr/src/pack/pack.h b/vpr/src/pack/pack.h index 9f811b78f52..0115d2c859a 100644 --- a/vpr/src/pack/pack.h +++ b/vpr/src/pack/pack.h @@ -1,9 +1,11 @@ #ifndef PACK_H #define PACK_H + #include #include #include "vpr_types.h" -#include "atom_netlist_fwd.h" + +class AtomNetId; bool try_pack(t_packer_opts* packer_opts, const t_analysis_opts* analysis_opts, diff --git a/vpr/src/pack/post_routing_pb_pin_fixup.cpp b/vpr/src/pack/post_routing_pb_pin_fixup.cpp index ceb9263e12b..2126c0b7b1a 100644 --- a/vpr/src/pack/post_routing_pb_pin_fixup.cpp +++ b/vpr/src/pack/post_routing_pb_pin_fixup.cpp @@ -1090,7 +1090,7 @@ void sync_netlists_to_routing(const Netlist<>& net_list, device_ctx, clustering_ctx, rr_node_nets, - placement_ctx.block_locs[clb_blk_id].loc, + placement_ctx.block_locs()[clb_blk_id].loc, clb_blk_id, num_mismatches, verbose, diff --git a/vpr/src/pack/prepack.cpp b/vpr/src/pack/prepack.cpp index 3307472ac79..a5928ba85f7 100644 --- a/vpr/src/pack/prepack.cpp +++ b/vpr/src/pack/prepack.cpp @@ -10,30 +10,43 @@ * March 12, 2012 */ +#include "prepack.h" + #include #include #include #include #include +#include -#include "vtr_util.h" -#include "vtr_assert.h" -#include "vtr_memory.h" - -#include "vpr_types.h" -#include "vpr_error.h" - -#include "read_xml_arch_file.h" -#include "globals.h" #include "atom_netlist.h" -#include "prepack.h" -#include "vpr_utils.h" +#include "cluster_util.h" #include "echo_files.h" -#include "attraction_groups.h" +#include "physical_types.h" +#include "vpr_error.h" +#include "vpr_types.h" +#include "vpr_utils.h" +#include "vtr_assert.h" +#include "vtr_range.h" +#include "vtr_util.h" +#include "vtr_vector.h" /*****************************************/ /*Local Function Declaration */ /*****************************************/ +static std::vector alloc_and_load_pack_patterns(const std::vector& logical_block_types); + +static void free_list_of_pack_patterns(std::vector& list_of_pack_patterns); + +static void free_pack_pattern(t_pack_patterns* pack_pattern); + +static t_pack_molecule* alloc_and_load_pack_molecules(t_pack_patterns* list_of_pack_patterns, + vtr::vector& expected_lowest_cost_pb_gnode, + const int num_packing_patterns, + std::multimap& atom_molecules, + const AtomNetlist& atom_nlist, + const std::vector& logical_block_types); + static void discover_pattern_names_in_pb_graph_node(t_pb_graph_node* pb_graph_node, std::unordered_map& pattern_names); @@ -65,21 +78,30 @@ static void free_pack_pattern_block(t_pack_pattern_block* pattern_block, t_pack_ static t_pack_molecule* try_create_molecule(t_pack_patterns* list_of_pack_patterns, const int pack_pattern_index, - AtomBlockId blk_id); + AtomBlockId blk_id, + std::multimap& atom_molecules, + const AtomNetlist& atom_nlist); static bool try_expand_molecule(t_pack_molecule* molecule, - const AtomBlockId blk_id); + const AtomBlockId blk_id, + const std::multimap& atom_molecules, + const AtomNetlist& atom_nlist); static void print_pack_molecules(const char* fname, const t_pack_patterns* list_of_pack_patterns, const int num_pack_patterns, - const t_pack_molecule* list_of_molecules); + const t_pack_molecule* list_of_molecules, + const AtomNetlist& atom_nlist); -static t_pb_graph_node* get_expected_lowest_cost_primitive_for_atom_block(const AtomBlockId blk_id); +static t_pb_graph_node* get_expected_lowest_cost_primitive_for_atom_block(const AtomBlockId blk_id, + const std::vector& logical_block_types); static t_pb_graph_node* get_expected_lowest_cost_primitive_for_atom_block_in_pb_graph_node(const AtomBlockId blk_id, t_pb_graph_node* curr_pb_graph_node, float* cost); -static AtomBlockId find_new_root_atom_for_chain(const AtomBlockId blk_id, const t_pack_patterns* list_of_pack_pattern); +static AtomBlockId find_new_root_atom_for_chain(const AtomBlockId blk_id, + const t_pack_patterns* list_of_pack_patterns, + const std::multimap& atom_molecules, + const AtomNetlist& atom_nlist); static std::vector find_end_of_path(t_pb_graph_pin* input_pin, int pattern_index); @@ -90,15 +112,22 @@ static void find_all_equivalent_chains(t_pack_patterns* chain_pattern, const t_p static void update_chain_root_pins(t_pack_patterns* chain_pattern, const std::vector& chain_input_pins); -static t_pb_graph_pin* get_connected_primitive_pin(const t_pb_graph_pin* input_pin, const int pack_pattern); - static void get_all_connected_primitive_pins(const t_pb_graph_pin* cluster_input_pin, std::vector& connected_primitive_pins); -static void init_molecule_chain_info(const AtomBlockId blk_id, t_pack_molecule* molecule); +static void init_molecule_chain_info(const AtomBlockId blk_id, + t_pack_molecule* molecule, + const std::multimap& atom_molecules, + const AtomNetlist& atom_nlist); -static AtomBlockId get_sink_block(const AtomBlockId block_id, const t_model_ports* model_port, const BitIndex pin_number); +static AtomBlockId get_sink_block(const AtomBlockId block_id, + const t_model_ports* model_port, + const BitIndex pin_number, + const AtomNetlist& atom_nlist); -static AtomBlockId get_driving_block(const AtomBlockId block_id, const t_model_ports* model_port, const BitIndex pin_number); +static AtomBlockId get_driving_block(const AtomBlockId block_id, + const t_model_ports* model_port, + const BitIndex pin_number, + const AtomNetlist& atom_nlist); static void print_chain_starting_points(t_pack_patterns* chain_pattern); @@ -116,15 +145,14 @@ static void print_chain_starting_points(t_pack_patterns* chain_pattern); * (general packing) or upstream (in tech mapping). * If this limitation is too constraining, code is designed so that this limitation can be removed. */ -std::vector alloc_and_load_pack_patterns() { +static std::vector alloc_and_load_pack_patterns(const std::vector& logical_block_types) { int L_num_blocks; std::vector list_of_packing_patterns; t_pb_graph_edge* expansion_edge; - auto& device_ctx = g_vpr_ctx.device(); /* alloc and initialize array of packing patterns based on architecture complex blocks */ std::unordered_map pattern_names; - for (auto& type : device_ctx.logical_block_types) { + for (const t_logical_block_type& type : logical_block_types) { discover_pattern_names_in_pb_graph_node(type.pb_graph_head, pattern_names); } @@ -132,7 +160,7 @@ std::vector alloc_and_load_pack_patterns() { /* load packing patterns by traversing the edges to find edges belonging to pattern */ for (size_t i = 0; i < pattern_names.size(); i++) { - for (auto& type : device_ctx.logical_block_types) { + for (const t_logical_block_type& type : logical_block_types) { // find an edge that belongs to this pattern expansion_edge = find_expansion_edge_of_pattern(i, type.pb_graph_head); if (!expansion_edge) { @@ -343,13 +371,13 @@ static std::vector alloc_and_init_pattern_list_from_hash(std::u return nlist; } -void free_list_of_pack_patterns(std::vector& list_of_pack_patterns) { +static void free_list_of_pack_patterns(std::vector& list_of_pack_patterns) { for (size_t i = 0; i < list_of_pack_patterns.size(); i++) { free_pack_pattern(&list_of_pack_patterns[i]); } } -void free_pack_pattern(t_pack_patterns* pack_pattern) { +static void free_pack_pattern(t_pack_patterns* pack_pattern) { if (pack_pattern) { int num_pack_pattern_blocks = pack_pattern->num_blocks; t_pack_pattern_block** pattern_block_list = new t_pack_pattern_block*[num_pack_pattern_blocks]; @@ -772,15 +800,16 @@ static void backward_expand_pack_pattern_from_edge(const t_pb_graph_edge* expans * 3. Chained molecules are molecules that follow a carry-chain style pattern, * ie. a single linear chain that can be split across multiple complex blocks */ -t_pack_molecule* alloc_and_load_pack_molecules(t_pack_patterns* list_of_pack_patterns, - std::unordered_map& expected_lowest_cost_pb_gnode, - const int num_packing_patterns) { +static t_pack_molecule* alloc_and_load_pack_molecules(t_pack_patterns* list_of_pack_patterns, + vtr::vector& expected_lowest_cost_pb_gnode, + const int num_packing_patterns, + std::multimap& atom_molecules, + const AtomNetlist& atom_nlist, + const std::vector& logical_block_types) { int i, j, best_pattern; t_pack_molecule* list_of_molecules_head; t_pack_molecule* cur_molecule; bool* is_used; - auto& atom_ctx = g_vpr_ctx.atom(); - auto& atom_mutable_ctx = g_vpr_ctx.mutable_atom(); is_used = new bool[num_packing_patterns]; for (i = 0; i < num_packing_patterns; i++) @@ -813,11 +842,11 @@ t_pack_molecule* alloc_and_load_pack_molecules(t_pack_patterns* list_of_pack_pat VTR_ASSERT(is_used[best_pattern] == false); is_used[best_pattern] = true; - auto blocks = atom_ctx.nlist.blocks(); + auto blocks = atom_nlist.blocks(); for (auto blk_iter = blocks.begin(); blk_iter != blocks.end(); ++blk_iter) { auto blk_id = *blk_iter; - cur_molecule = try_create_molecule(list_of_pack_patterns, best_pattern, blk_id); + cur_molecule = try_create_molecule(list_of_pack_patterns, best_pattern, blk_id, atom_molecules, atom_nlist); if (cur_molecule != nullptr) { cur_molecule->next = list_of_molecules_head; /* In the event of multiple molecules with the same atom block pattern, @@ -829,7 +858,7 @@ t_pack_molecule* alloc_and_load_pack_molecules(t_pack_patterns* list_of_pack_pat //Note: atom_molecules is an (ordered) multimap so the last molecule // inserted for a given blk_id will be the last valid element // in the equal_range - auto rng = atom_ctx.atom_molecules.equal_range(blk_id); //The range of molecules matching this block + auto rng = atom_molecules.equal_range(blk_id); //The range of molecules matching this block bool range_empty = (rng.first == rng.second); bool cur_was_last_inserted = false; if (!range_empty) { @@ -852,8 +881,8 @@ t_pack_molecule* alloc_and_load_pack_molecules(t_pack_patterns* list_of_pack_pat * If a block belongs to a molecule, then carrying the single atoms around can make the packing problem * more difficult because now it needs to consider splitting molecules. */ - for (auto blk_id : atom_ctx.nlist.blocks()) { - t_pb_graph_node* best = get_expected_lowest_cost_primitive_for_atom_block(blk_id); + for (auto blk_id : atom_nlist.blocks()) { + t_pb_graph_node* best = get_expected_lowest_cost_primitive_for_atom_block(blk_id, logical_block_types); if (!best) { /* Free the molecules in the linked list to avoid memory leakage */ cur_molecule = list_of_molecules_head; @@ -864,14 +893,14 @@ t_pack_molecule* alloc_and_load_pack_molecules(t_pack_patterns* list_of_pack_pat } VPR_FATAL_ERROR(VPR_ERROR_PACK, "Failed to find any location to pack primitive of type '%s' in architecture", - atom_ctx.nlist.block_model(blk_id)->name); + atom_nlist.block_model(blk_id)->name); } VTR_ASSERT_SAFE(nullptr != best); expected_lowest_cost_pb_gnode[blk_id] = best; - auto rng = atom_ctx.atom_molecules.equal_range(blk_id); + auto rng = atom_molecules.equal_range(blk_id); bool rng_empty = (rng.first == rng.second); if (rng_empty) { cur_molecule = new t_pack_molecule; @@ -887,14 +916,15 @@ t_pack_molecule* alloc_and_load_pack_molecules(t_pack_patterns* list_of_pack_pat cur_molecule->base_gain = 1; list_of_molecules_head = cur_molecule; - atom_mutable_ctx.atom_molecules.insert({blk_id, cur_molecule}); + atom_molecules.insert({blk_id, cur_molecule}); } } if (getEchoEnabled() && isEchoFileEnabled(E_ECHO_PRE_PACKING_MOLECULES_AND_PATTERNS)) { print_pack_molecules(getEchoFileName(E_ECHO_PRE_PACKING_MOLECULES_AND_PATTERNS), list_of_pack_patterns, num_packing_patterns, - list_of_molecules_head); + list_of_molecules_head, + atom_nlist); } return list_of_molecules_head; @@ -933,11 +963,11 @@ static void free_pack_pattern_block(t_pack_pattern_block* pattern_block, t_pack_ */ static t_pack_molecule* try_create_molecule(t_pack_patterns* list_of_pack_patterns, const int pack_pattern_index, - AtomBlockId blk_id) { + AtomBlockId blk_id, + std::multimap& atom_molecules, + const AtomNetlist& atom_nlist) { t_pack_molecule* molecule; - auto& atom_mutable_ctx = g_vpr_ctx.mutable_atom(); - auto pack_pattern = &list_of_pack_patterns[pack_pattern_index]; // Check pack pattern validity @@ -948,7 +978,7 @@ static t_pack_molecule* try_create_molecule(t_pack_patterns* list_of_pack_patter // If a chain pattern extends beyond a single logic block, we must find // the furthest blk_id up the chain that is not mapped to a molecule yet. if (pack_pattern->is_chain) { - blk_id = find_new_root_atom_for_chain(blk_id, pack_pattern); + blk_id = find_new_root_atom_for_chain(blk_id, pack_pattern, atom_molecules, atom_nlist); if (!blk_id) return nullptr; } @@ -960,12 +990,12 @@ static t_pack_molecule* try_create_molecule(t_pack_patterns* list_of_pack_patter molecule->num_blocks = pack_pattern->num_blocks; molecule->root = pack_pattern->root_block->block_id; - if (try_expand_molecule(molecule, blk_id)) { + if (try_expand_molecule(molecule, blk_id, atom_molecules, atom_nlist)) { // Success! commit molecule // update chain info for chain molecules if (molecule->pack_pattern->is_chain) { - init_molecule_chain_info(blk_id, molecule); + init_molecule_chain_info(blk_id, molecule, atom_molecules, atom_nlist); } // update the atom_molcules with the atoms that are mapped to this molecule @@ -976,7 +1006,7 @@ static t_pack_molecule* try_create_molecule(t_pack_patterns* list_of_pack_patter continue; } - atom_mutable_ctx.atom_molecules.insert({blk_id2, molecule}); + atom_molecules.insert({blk_id2, molecule}); } } else { // Failed to create molecule @@ -1001,9 +1031,9 @@ static t_pack_molecule* try_create_molecule(t_pack_patterns* list_of_pack_patter * blk_id : chosen to be the root of this molecule and the code is expanding from */ static bool try_expand_molecule(t_pack_molecule* molecule, - const AtomBlockId blk_id) { - auto& atom_ctx = g_vpr_ctx.atom(); - + const AtomBlockId blk_id, + const std::multimap& atom_molecules, + const AtomNetlist& atom_nlist) { // root block of the pack pattern, which is the starting point of this pattern const auto pattern_root_block = molecule->pack_pattern->root_block; // bool array indicating whether a position in a pack pattern is optional or should @@ -1035,7 +1065,7 @@ static bool try_expand_molecule(t_pack_molecule* molecule, continue; } - if (!block_id || !primitive_type_feasible(block_id, pattern_block->pb_type) || (molecule_atom_block_id && molecule_atom_block_id != block_id) || atom_ctx.atom_molecules.find(block_id) != atom_ctx.atom_molecules.end()) { + if (!block_id || !primitive_type_feasible(block_id, pattern_block->pb_type) || (molecule_atom_block_id && molecule_atom_block_id != block_id) || atom_molecules.find(block_id) != atom_molecules.end()) { // Stopping conditions, if: // 1) this is an invalid atom block (nothing) // 2) this atom block cannot fit in this primitive type @@ -1062,7 +1092,7 @@ static bool try_expand_molecule(t_pack_molecule* molecule, // find the block this connection is driving and add it to the queue auto port_model = block_connection->from_pin->port->model_port; auto ipin = block_connection->from_pin->pin_number; - auto sink_blk_id = get_sink_block(block_id, port_model, ipin); + auto sink_blk_id = get_sink_block(block_id, port_model, ipin, atom_nlist); // add this sink block id with its corresponding pattern block to the queue pattern_block_queue.push(std::make_pair(block_connection->to_block, sink_blk_id)); // this block is being driven by this connection @@ -1070,7 +1100,7 @@ static bool try_expand_molecule(t_pack_molecule* molecule, // find the block that is driving this connection and it to the queue auto port_model = block_connection->to_pin->port->model_port; auto ipin = block_connection->to_pin->pin_number; - auto driver_blk_id = get_driving_block(block_id, port_model, ipin); + auto driver_blk_id = get_driving_block(block_id, port_model, ipin, atom_nlist); // add this driver block id with its corresponding pattern block to the queue pattern_block_queue.push(std::make_pair(block_connection->from_block, driver_blk_id)); } @@ -1094,17 +1124,18 @@ static bool try_expand_molecule(t_pack_molecule* molecule, * model_port : the model of the port driving the net * pin_number : the pin_number of the pin driving the net (pin index within the port) */ -static AtomBlockId get_sink_block(const AtomBlockId block_id, const t_model_ports* model_port, const BitIndex pin_number) { - auto& atom_ctx = g_vpr_ctx.atom(); - - auto port_id = atom_ctx.nlist.find_atom_port(block_id, model_port); +static AtomBlockId get_sink_block(const AtomBlockId block_id, + const t_model_ports* model_port, + const BitIndex pin_number, + const AtomNetlist& atom_nlist) { + auto port_id = atom_nlist.find_atom_port(block_id, model_port); if (port_id) { - auto net_id = atom_ctx.nlist.port_net(port_id, pin_number); - if (net_id && atom_ctx.nlist.net_sinks(net_id).size() == 1) { /* Single fanout assumption */ - auto net_sinks = atom_ctx.nlist.net_sinks(net_id); + auto net_id = atom_nlist.port_net(port_id, pin_number); + if (net_id && atom_nlist.net_sinks(net_id).size() == 1) { /* Single fanout assumption */ + auto net_sinks = atom_nlist.net_sinks(net_id); auto sink_pin_id = *(net_sinks.begin()); - return atom_ctx.nlist.pin_block(sink_pin_id); + return atom_nlist.pin_block(sink_pin_id); } } @@ -1119,19 +1150,20 @@ static AtomBlockId get_sink_block(const AtomBlockId block_id, const t_model_port * model_port : the model of the port driven by the net * pin_number : the pin_number of the pin driven by the net (pin index within the port) */ -static AtomBlockId get_driving_block(const AtomBlockId block_id, const t_model_ports* model_port, const BitIndex pin_number) { - auto& atom_ctx = g_vpr_ctx.atom(); - - auto port_id = atom_ctx.nlist.find_atom_port(block_id, model_port); +static AtomBlockId get_driving_block(const AtomBlockId block_id, + const t_model_ports* model_port, + const BitIndex pin_number, + const AtomNetlist& atom_nlist) { + auto port_id = atom_nlist.find_atom_port(block_id, model_port); if (port_id) { - auto net_id = atom_ctx.nlist.port_net(port_id, pin_number); - if (net_id && atom_ctx.nlist.net_sinks(net_id).size() == 1) { /* Single fanout assumption */ + auto net_id = atom_nlist.port_net(port_id, pin_number); + if (net_id && atom_nlist.net_sinks(net_id).size() == 1) { /* Single fanout assumption */ - auto driver_blk_id = atom_ctx.nlist.net_driver_block(net_id); + auto driver_blk_id = atom_nlist.net_driver_block(net_id); if (model_port->is_clock) { - auto driver_blk_type = atom_ctx.nlist.block_type(driver_blk_id); + auto driver_blk_type = atom_nlist.block_type(driver_blk_id); // TODO: support multi-clock primitives. // If the driver block is a .input block, this assertion should not @@ -1141,7 +1173,7 @@ static AtomBlockId get_driving_block(const AtomBlockId block_id, const t_model_p VTR_ASSERT(pin_number == 1 || (pin_number == 0 && driver_blk_type == AtomBlockType::INPAD)); } - return atom_ctx.nlist.net_driver_block(net_id); + return atom_nlist.net_driver_block(net_id); } } @@ -1151,11 +1183,11 @@ static AtomBlockId get_driving_block(const AtomBlockId block_id, const t_model_p static void print_pack_molecules(const char* fname, const t_pack_patterns* list_of_pack_patterns, const int num_pack_patterns, - const t_pack_molecule* list_of_molecules) { + const t_pack_molecule* list_of_molecules, + const AtomNetlist& atom_nlist) { int i; FILE* fp; const t_pack_molecule* list_of_molecules_current; - auto& atom_ctx = g_vpr_ctx.atom(); fp = std::fopen(fname, "w"); fprintf(fp, "# of pack patterns %d\n", num_pack_patterns); @@ -1174,7 +1206,7 @@ static void print_pack_molecules(const char* fname, if (list_of_molecules_current->type == MOLECULE_SINGLE_ATOM) { fprintf(fp, "\nmolecule type: atom\n"); fprintf(fp, "\tpattern index %d: atom block %s\n", i, - atom_ctx.nlist.block_name(list_of_molecules_current->atom_block_ids[0]).c_str()); + atom_nlist.block_name(list_of_molecules_current->atom_block_ids[0]).c_str()); } else if (list_of_molecules_current->type == MOLECULE_FORCED_PACK) { fprintf(fp, "\nmolecule type: %s\n", list_of_molecules_current->pack_pattern->name); @@ -1185,7 +1217,7 @@ static void print_pack_molecules(const char* fname, } else { fprintf(fp, "\tpattern index %d: atom block %s", i, - atom_ctx.nlist.block_name(list_of_molecules_current->atom_block_ids[i]).c_str()); + atom_nlist.block_name(list_of_molecules_current->atom_block_ids[i]).c_str()); if (list_of_molecules_current->pack_pattern->root_block->block_id == i) { fprintf(fp, " root node\n"); } else { @@ -1203,15 +1235,15 @@ static void print_pack_molecules(const char* fname, } /* Search through all primitives and return the lowest cost primitive that fits this atom block */ -static t_pb_graph_node* get_expected_lowest_cost_primitive_for_atom_block(const AtomBlockId blk_id) { +static t_pb_graph_node* get_expected_lowest_cost_primitive_for_atom_block(const AtomBlockId blk_id, + const std::vector& logical_block_types) { float cost, best_cost; t_pb_graph_node *current, *best; - auto& device_ctx = g_vpr_ctx.device(); best_cost = UNDEFINED; best = nullptr; current = nullptr; - for (const auto& type : device_ctx.logical_block_types) { + for (const t_logical_block_type& type : logical_block_types) { cost = UNDEFINED; current = get_expected_lowest_cost_primitive_for_atom_block_in_pb_graph_node(blk_id, type.pb_graph_head, &cost); if (cost != UNDEFINED) { @@ -1301,17 +1333,18 @@ static int compare_pack_pattern(const t_pack_patterns* pattern_a, const t_pack_p * block_index: index of current atom * list_of_pack_pattern: ptr to current chain pattern */ -static AtomBlockId find_new_root_atom_for_chain(const AtomBlockId blk_id, const t_pack_patterns* list_of_pack_pattern) { +static AtomBlockId find_new_root_atom_for_chain(const AtomBlockId blk_id, + const t_pack_patterns* list_of_pack_patterns, + const std::multimap& atom_molecules, + const AtomNetlist& atom_nlist) { AtomBlockId new_root_blk_id; t_pb_graph_pin* root_ipin; t_pb_graph_node* root_pb_graph_node; t_model_ports* model_port; - auto& atom_ctx = g_vpr_ctx.atom(); - - VTR_ASSERT(list_of_pack_pattern->is_chain == true); - VTR_ASSERT(list_of_pack_pattern->chain_root_pins.size()); - root_ipin = list_of_pack_pattern->chain_root_pins[0][0]; + VTR_ASSERT(list_of_pack_patterns->is_chain == true); + VTR_ASSERT(list_of_pack_patterns->chain_root_pins.size()); + root_ipin = list_of_pack_patterns->chain_root_pins[0][0]; root_pb_graph_node = root_ipin->parent_node; if (primitive_type_feasible(blk_id, root_pb_graph_node->pb_type) == false) { @@ -1322,7 +1355,7 @@ static AtomBlockId find_new_root_atom_for_chain(const AtomBlockId blk_id, const model_port = root_ipin->port->model_port; // find the block id of the atom block driving the input of this block - AtomBlockId driver_blk_id = atom_ctx.nlist.find_atom_pin_driver(blk_id, model_port, root_ipin->pin_number); + AtomBlockId driver_blk_id = atom_nlist.find_atom_pin_driver(blk_id, model_port, root_ipin->pin_number); // if there is no driver block for this net // then it is the furthest up the chain @@ -1330,7 +1363,7 @@ static AtomBlockId find_new_root_atom_for_chain(const AtomBlockId blk_id, const return blk_id; } // check if driver atom is already packed - auto rng = atom_ctx.atom_molecules.equal_range(driver_blk_id); + auto rng = atom_molecules.equal_range(driver_blk_id); bool rng_empty = (rng.first == rng.second); if (!rng_empty) { /* Driver is used/invalid, so current block is the furthest up the chain, return it */ @@ -1338,7 +1371,7 @@ static AtomBlockId find_new_root_atom_for_chain(const AtomBlockId blk_id, const } // didn't find furthest atom up the chain, keep searching further up the chain - new_root_blk_id = find_new_root_atom_for_chain(driver_blk_id, list_of_pack_pattern); + new_root_blk_id = find_new_root_atom_for_chain(driver_blk_id, list_of_pack_patterns, atom_molecules, atom_nlist); if (!new_root_blk_id) { return blk_id; @@ -1561,30 +1594,6 @@ static void update_chain_root_pins(t_pack_patterns* chain_pattern, chain_pattern->chain_root_pins = primitive_input_pins; } -/** - * Find the next primitive input pin connected to the given cluster_input_pin. - * Following edges that are annotated with pack_pattern index - */ -static t_pb_graph_pin* get_connected_primitive_pin(const t_pb_graph_pin* cluster_input_pin, const int pack_pattern) { - for (int iedge = 0; iedge < cluster_input_pin->num_output_edges; iedge++) { - const auto& output_edge = cluster_input_pin->output_edges[iedge]; - // if edge is annotated with pack pattern or its pack pattern could be inferred - if (output_edge->annotated_with_pattern(pack_pattern) || output_edge->infer_pattern) { - for (int ipin = 0; ipin < output_edge->num_output_pins; ipin++) { - if (output_edge->output_pins[ipin]->is_primitive_pin()) { - return output_edge->output_pins[ipin]; - } - return get_connected_primitive_pin(output_edge->output_pins[ipin], pack_pattern); - } - } - } - - // primitive input pin should always - // be found when using this function - VTR_ASSERT(false); - return nullptr; -} - /** * This function takes a pin as an input an does a depth first search on all the output edges * of this pin till it finds all the primitive input pins connected to this pin. For example, @@ -1623,28 +1632,29 @@ static void get_all_connected_primitive_pins(const t_pb_graph_pin* cluster_input * The second one should should be the molecule directly after that one * and so on. */ -static void init_molecule_chain_info(const AtomBlockId blk_id, t_pack_molecule* molecule) { +static void init_molecule_chain_info(const AtomBlockId blk_id, + t_pack_molecule* molecule, + const std::multimap &atom_molecules, + const AtomNetlist& atom_nlist) { // the input molecule to this function should have a pack // pattern assigned to it and the input block should be valid VTR_ASSERT(molecule->pack_pattern && blk_id); - auto& atom_ctx = g_vpr_ctx.atom(); - auto root_ipin = molecule->pack_pattern->chain_root_pins[0][0]; auto model_pin = root_ipin->port->model_port; auto pin_bit = root_ipin->pin_number; // find the atom driving the chain input pin of this atom - auto driver_atom_id = atom_ctx.nlist.find_atom_pin_driver(blk_id, model_pin, pin_bit); + auto driver_atom_id = atom_nlist.find_atom_pin_driver(blk_id, model_pin, pin_bit); // find the molecule this driver atom is mapped to - auto itr = atom_ctx.atom_molecules.find(driver_atom_id); + auto itr = atom_molecules.find(driver_atom_id); // if this is the first molecule to be created for this chain // initialize the chain info data structure. This is the case // if either there is no driver to the block input pin or // if the driver is not part of a molecule - if (!driver_atom_id || itr == atom_ctx.atom_molecules.end()) { + if (!driver_atom_id || itr == atom_molecules.end()) { // allocate chain info molecule->chain_info = std::make_shared(); // this is not the first molecule to be created for this chain @@ -1681,3 +1691,79 @@ static void print_chain_starting_points(t_pack_patterns* chain_pattern) { VTR_LOG("\n"); } + +/** + * This function frees the linked list of pack molecules. + */ +static void free_pack_molecules(t_pack_molecule* list_of_pack_molecules) { + t_pack_molecule* cur_pack_molecule = list_of_pack_molecules; + while (cur_pack_molecule != nullptr) { + cur_pack_molecule = list_of_pack_molecules->next; + delete list_of_pack_molecules; + list_of_pack_molecules = cur_pack_molecule; + } +} + +void Prepacker::init(const AtomNetlist& atom_nlist, const std::vector& logical_block_types) { + VTR_ASSERT(list_of_pack_molecules == nullptr && "Prepacker cannot be initialized twice."); + + // Allocate the pack patterns from the logical block types. + list_of_pack_patterns = alloc_and_load_pack_patterns(logical_block_types); + // Use the pack patterns to allocate and load the pack molecules. + std::multimap atom_molecules_multimap; + expected_lowest_cost_pb_gnode.resize(atom_nlist.blocks().size(), nullptr); + list_of_pack_molecules = alloc_and_load_pack_molecules(list_of_pack_patterns.data(), + expected_lowest_cost_pb_gnode, + list_of_pack_patterns.size(), + atom_molecules_multimap, + atom_nlist, + logical_block_types); + + // The multimap is a legacy thing. Since blocks can be part of multiple pack + // patterns, during prepacking a block may be contained within multiple + // molecules. However, by the end of prepacking, molecules should be + // combined such that each block is contained in one and only one molecule. + atom_molecules.resize(atom_nlist.blocks().size(), nullptr); + for (AtomBlockId blk_id : atom_nlist.blocks()) { + // Every atom block should be packed into a single molecule (no more + // or less). + VTR_ASSERT(atom_molecules_multimap.count(blk_id) == 1); + atom_molecules[blk_id] = atom_molecules_multimap.find(blk_id)->second; + } +} + +t_molecule_stats Prepacker::calc_max_molecule_stats(const AtomNetlist& atom_nlist) const { + t_molecule_stats max_molecules_stats; + t_pack_molecule* molecule_head = list_of_pack_molecules; + for (auto cur_molecule = molecule_head; cur_molecule != nullptr; cur_molecule = cur_molecule->next) { + //Calculate per-molecule statistics + (void)atom_nlist; + t_molecule_stats cur_molecule_stats = calc_molecule_stats(cur_molecule, atom_nlist); + + //Record the maximums (member-wise) over all molecules + max_molecules_stats.num_blocks = std::max(max_molecules_stats.num_blocks, cur_molecule_stats.num_blocks); + + max_molecules_stats.num_pins = std::max(max_molecules_stats.num_pins, cur_molecule_stats.num_pins); + max_molecules_stats.num_input_pins = std::max(max_molecules_stats.num_input_pins, cur_molecule_stats.num_input_pins); + max_molecules_stats.num_output_pins = std::max(max_molecules_stats.num_output_pins, cur_molecule_stats.num_output_pins); + + max_molecules_stats.num_used_ext_pins = std::max(max_molecules_stats.num_used_ext_pins, cur_molecule_stats.num_used_ext_pins); + max_molecules_stats.num_used_ext_inputs = std::max(max_molecules_stats.num_used_ext_inputs, cur_molecule_stats.num_used_ext_inputs); + max_molecules_stats.num_used_ext_outputs = std::max(max_molecules_stats.num_used_ext_outputs, cur_molecule_stats.num_used_ext_outputs); + } + + return max_molecules_stats; +} + +void Prepacker::reset() { + // When the prepacker is reset (or destroyed), clean up the internal data + // members. + free_list_of_pack_patterns(list_of_pack_patterns); + free_pack_molecules(list_of_pack_molecules); + // Reset everything to default state. + list_of_pack_patterns.clear(); + list_of_pack_molecules = nullptr; + atom_molecules.clear(); + expected_lowest_cost_pb_gnode.clear(); +} + diff --git a/vpr/src/pack/prepack.h b/vpr/src/pack/prepack.h index de29a40436b..e6ac79cd425 100644 --- a/vpr/src/pack/prepack.h +++ b/vpr/src/pack/prepack.h @@ -1,21 +1,198 @@ /* - * Prepacking: Group together technology-mapped netlist blocks before packing. This gives hints to the packer on what groups of blocks to keep together during packing. - * Primary use 1) "Forced" packs (eg LUT+FF pair) - * 2) Carry-chains + * Prepacking: Group together technology-mapped netlist blocks before packing. + * This gives hints to the packer on what groups of blocks to keep together + * during packing. + * + * Primary uses: 1) "Forced" packs (eg LUT+FF pair) + * 2) Carry-chains */ #ifndef PREPACK_H #define PREPACK_H -#include -#include "atom_netlist_fwd.h" -#include "arch_types.h" + +#include #include "vpr_types.h" +#include "vtr_assert.h" +#include "vtr_vector.h" + +class AtomNetlist; +class AtomBlockId; +struct t_molecule_stats; +struct t_logical_block_type; + +/** + * @brief Class that performs prepacking. + * + * This class maintains the prepacking state, allowing the use of molecules + * (prepacked atoms) while this object exists. After prepacking, every atom will + * be part of a molecule (with a large number being part of single-atom + * molecules). + * + * Molecules currently come from pack patterns in the architecture file. For + * example, a 3-bit carry chain in most architectures would turn into a molecule + * containing the 3 atoms forming the carry chain. + * + * To use the prepacker, call the init method with a complete atom netlist. + * Then maintain this object (do not reset or destroy it) so long as the + * molecules are needed. + * + * // Initialize device and atom netlist + * // ... + * Prepacker prepacker; + * prepacker.init(atom_ctx.nlist, device_ctx.logical_block_types); + * // ... + * // Use the prepacked molecules. + * // ... + * prepacker.reset(); // Or if the prepacker object is destroyed. + * // Prepacked molecules can no longer be used beyond this point. + * + */ +class Prepacker { +public: + // The constructor is default, the init method performs prepacking. + Prepacker() = default; + + // This class maintains pointers to internal data structures, and as such + // should not be copied or moved (prevents unsafe accesses). + Prepacker(const Prepacker&) = delete; + Prepacker& operator=(const Prepacker&) = delete; + + /** + * @brief Performs prepacking. + * + * Initializes the prepacker by performing prepacking and allocating the + * necessary data strucutres. + * + * @param atom_nlist The atom netlist to prepack. + * @param logical_block_types A list of the logical block types on the device. + */ + void init(const AtomNetlist& atom_nlist, const std::vector &logical_block_types); + + /** + * @brief Get the cluster molecule containing the given atom block. + * + * @param blk_id The atom block to get the molecule of. + */ + inline t_pack_molecule* get_atom_molecule(AtomBlockId blk_id) const { + // Safety debug to ensure the blk is valid and has a molecule entry. + VTR_ASSERT_SAFE(blk_id.is_valid() && (size_t)blk_id < atom_molecules.size()); + // Safety debug to ensure the molecule is valid + VTR_ASSERT_DEBUG(atom_molecules[blk_id] != nullptr); + return atom_molecules[blk_id]; + } + + /** + * @brief Get the expected lowest cost physical block graph node for the + * given atom block. + * + * @param blk_id The atom block to get the pb graph node of. + */ + inline t_pb_graph_node* get_expected_lowest_cost_pb_gnode(AtomBlockId blk_id) const { + // Safety debug to ensure the blk is valid and has an entry. + VTR_ASSERT_SAFE(blk_id.is_valid() && (size_t)blk_id < expected_lowest_cost_pb_gnode.size()); + // Ensure the entry is valid. + VTR_ASSERT(expected_lowest_cost_pb_gnode[blk_id] != nullptr); + return expected_lowest_cost_pb_gnode[blk_id]; + } + + /** + * @brief Returns the total number of molecules in the prepacker. + */ + inline size_t get_num_molecules() const { + size_t num_molecules = 0; + t_pack_molecule* molecule_head = list_of_pack_molecules; + for (auto cur_molecule = molecule_head; cur_molecule != nullptr; cur_molecule = cur_molecule->next) { + ++num_molecules; + } + return num_molecules; + } + + /** + * @brief Returns all of the molecules as a vector. + */ + inline std::vector get_molecules_vector() const { + std::vector molecules; + t_pack_molecule* molecule_head = list_of_pack_molecules; + for (auto cur_molecule = molecule_head; cur_molecule != nullptr; cur_molecule = cur_molecule->next) { + molecules.push_back(cur_molecule); + } + return molecules; + } + + /** + * @brief Marks all of the molecules as valid. + * + * Within clustering, the valid flag of a molecule is used to signify if any + * of the atoms in the molecule has been packed into a cluster yet or not. + * If any atom in the molecule has been packed, the flag will be false. + * + * This method is used before clustering to mark all the molecules as + * unpacked. + */ + inline void mark_all_molecules_valid() { + t_pack_molecule* molecule_head = list_of_pack_molecules; + for (auto cur_molecule = molecule_head; cur_molecule != nullptr; cur_molecule = cur_molecule->next) { + cur_molecule->valid = true; + } + } + + /** + * @brief Calculates maximum molecule statistics accross all molecules, + */ + t_molecule_stats calc_max_molecule_stats(const AtomNetlist& netlist) const; + + /** + * @brief Gets the largest number of blocks (atoms) that any molecule contains. + */ + inline size_t get_max_molecule_size() const { + size_t max_molecule_size = 1; + t_pack_molecule* molecule_head = list_of_pack_molecules; + for (auto cur_molecule = molecule_head; cur_molecule != nullptr; cur_molecule = cur_molecule->next) { + max_molecule_size = std::max(max_molecule_size, cur_molecule->num_blocks); + } + return max_molecule_size; + } + + /** + * @brief Resets the prepacker object. Clearing all state. + * + * This resets the prepacker, allowing it to prepack again and also freeing + * any state. + */ + void reset(); + + /// @brief Destructor of the prepacker class. Calls the reset method. + ~Prepacker() { reset(); } + +private: + /** + * @brief A linked list of all the packing molecules that are loaded in + * prepacking stage. + * + * All of the molecules in the prepacker are allocated into this linked list + * and must be freed eventually. + * + * TODO: Should use a vtr::vector instead of a linked list for storage. Then + * instead of pointers, IDs can be used to manipulate the molecules + * which would be safer. + */ + t_pack_molecule* list_of_pack_molecules = nullptr; + + /** + * @brief The molecules associated with each atom block. + * + * This vector is loaded in the init method and cleared in the reset method. + * The pointers in this vector are shared with list_of_pack_molecules. + */ + vtr::vector atom_molecules; + + /// @brief A vector of the expected lowest cost physical block graph node. + vtr::vector expected_lowest_cost_pb_gnode; -std::vector alloc_and_load_pack_patterns(); -void free_list_of_pack_patterns(std::vector& list_of_pack_patterns); -void free_pack_pattern(t_pack_patterns* pack_pattern); + /// @brief A list of the pack patterns used for prepacking. I think the + /// molecules keep pointers to this vector, so this needs to remain + /// for the lifetime of the molecules. + std::vector list_of_pack_patterns; +}; -t_pack_molecule* alloc_and_load_pack_molecules(t_pack_patterns* list_of_pack_patterns, - std::unordered_map& expected_lowest_cost_pb_gnode, - const int num_packing_patterns); #endif diff --git a/vpr/src/pack/re_cluster_util.cpp b/vpr/src/pack/re_cluster_util.cpp index 1e23ec468b8..46eb04955a5 100644 --- a/vpr/src/pack/re_cluster_util.cpp +++ b/vpr/src/pack/re_cluster_util.cpp @@ -82,10 +82,10 @@ void commit_mol_move(ClusterBlockId old_clb, //place the new cluster if this function called during placement (after the initial placement is done) if (!during_packing && new_clb_created) { int imacro; - g_vpr_ctx.mutable_placement().block_locs.resize(g_vpr_ctx.placement().block_locs.size() + 1); + g_vpr_ctx.mutable_placement().mutable_block_locs().resize(g_vpr_ctx.placement().block_locs().size() + 1); get_imacro_from_iblk(&imacro, old_clb, g_vpr_ctx.placement().pl_macros); set_imacro_for_iblk(&imacro, new_clb); - place_one_block(new_clb, device_ctx.pad_loc_type, nullptr, nullptr); + place_one_block(new_clb, device_ctx.pad_loc_type, nullptr, nullptr, g_vpr_ctx.mutable_placement().mutable_blk_loc_registry()); } } diff --git a/vpr/src/place/RL_agent_util.cpp b/vpr/src/place/RL_agent_util.cpp index aa149b5d4e4..78984f49928 100644 --- a/vpr/src/place/RL_agent_util.cpp +++ b/vpr/src/place/RL_agent_util.cpp @@ -2,11 +2,13 @@ #include "static_move_generator.h" #include "manual_move_generator.h" -void create_move_generators(std::unique_ptr& move_generator, - std::unique_ptr& move_generator2, - const t_placer_opts& placer_opts, - int move_lim, - float noc_attraction_weight) { +std::pair, std::unique_ptr> create_move_generators(PlacerState& placer_state, + const t_placer_opts& placer_opts, + int move_lim, + double noc_attraction_weight) { + + std::pair, std::unique_ptr> move_generators; + if (!placer_opts.RL_agent_placement) { // RL agent is disabled auto move_types = placer_opts.place_static_move_prob; move_types.resize((int)e_move_type::NUMBER_OF_AUTO_MOVES, 0.0f); @@ -18,8 +20,8 @@ void create_move_generators(std::unique_ptr& move_generator, move_name.c_str(), placer_opts.place_static_move_prob[move_type]); } - move_generator = std::make_unique(placer_opts.place_static_move_prob); - move_generator2 = std::make_unique(placer_opts.place_static_move_prob); + move_generators.first = std::make_unique(placer_state, placer_opts.place_static_move_prob); + move_generators.second = std::make_unique(placer_state, placer_opts.place_static_move_prob); } else { //RL based placement /* For the non timing driven placement: the agent has a single state * * - Available moves are (Uniform / Median / Centroid) * @@ -71,17 +73,19 @@ void create_move_generators(std::unique_ptr& move_generator, placer_opts.place_agent_epsilon); } karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); - move_generator = std::make_unique(karmed_bandit_agent1, - noc_attraction_weight, - placer_opts.place_high_fanout_net); + move_generators.first = std::make_unique(placer_state, + karmed_bandit_agent1, + noc_attraction_weight, + placer_opts.place_high_fanout_net); //agent's 2nd state karmed_bandit_agent2 = std::make_unique(second_state_avail_moves, e_agent_space::MOVE_TYPE, placer_opts.place_agent_epsilon); karmed_bandit_agent2->set_step(placer_opts.place_agent_gamma, move_lim); - move_generator2 = std::make_unique(karmed_bandit_agent2, - noc_attraction_weight, - placer_opts.place_high_fanout_net); + move_generators.second = std::make_unique(placer_state, + karmed_bandit_agent2, + noc_attraction_weight, + placer_opts.place_high_fanout_net); } else { std::unique_ptr karmed_bandit_agent1, karmed_bandit_agent2; //agent's 1st state @@ -95,18 +99,22 @@ void create_move_generators(std::unique_ptr& move_generator, e_agent_space::MOVE_TYPE); } karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); - move_generator = std::make_unique(karmed_bandit_agent1, - noc_attraction_weight, - placer_opts.place_high_fanout_net); + move_generators.first = std::make_unique(placer_state, + karmed_bandit_agent1, + noc_attraction_weight, + placer_opts.place_high_fanout_net); //agent's 2nd state karmed_bandit_agent2 = std::make_unique(second_state_avail_moves, e_agent_space::MOVE_TYPE); karmed_bandit_agent2->set_step(placer_opts.place_agent_gamma, move_lim); - move_generator2 = std::make_unique(karmed_bandit_agent2, - noc_attraction_weight, - placer_opts.place_high_fanout_net); + move_generators.second = std::make_unique(placer_state, + karmed_bandit_agent2, + noc_attraction_weight, + placer_opts.place_high_fanout_net); } } + + return move_generators; } void assign_current_move_generator(std::unique_ptr& move_generator, diff --git a/vpr/src/place/RL_agent_util.h b/vpr/src/place/RL_agent_util.h index b50e2caed42..afe8bf3b6cb 100644 --- a/vpr/src/place/RL_agent_util.h +++ b/vpr/src/place/RL_agent_util.h @@ -14,14 +14,21 @@ enum class e_agent_state { * * This function creates 2 move generators to be used by the annealer. The type of the move generators created here depends on the * type selected in placer_opts. - * It returns a unique pointer for each move generator in move_generator and move_generator2 - * move_lim: represents the num of moves per temp. + * + * @param placer_state Move generators store a reference to the placer context to avoid global state access. + * @param placer_opts Contains information about the placement algorithm and its parameters. + * @param move_lim represents the num of moves per temp. + * @param noc_attraction_weight The attraction weight by which the NoC-biased centroid move adjust the computed location + * towards reachable NoC routers from the moving block. + * + * @return Two unique pointers referring to move generators. These move generators are supposed to be used + * in the first and second states of the agent. + * */ -void create_move_generators(std::unique_ptr& move_generator, - std::unique_ptr& move_generator2, - const t_placer_opts& placer_opts, - int move_lim, - float noc_attraction_weight); +std::pair, std::unique_ptr> create_move_generators(PlacerState& placer_state, + const t_placer_opts& placer_opts, + int move_lim, + double noc_attraction_weight); /** * @brief copy one of the available move_generators to be the current move_generator that would be used in the placement based on the placer_options and the agent state @@ -34,7 +41,7 @@ void assign_current_move_generator(std::unique_ptr& move_generato std::unique_ptr& current_move_generator); /** - * @ brief move the updated current_move_generator to its original move_Generator structure based on he placer_options and the agent state + * @brief move the updated current_move_generator to its original move_Generator structure based on the placer_options and the agent state */ void update_move_generator(std::unique_ptr& move_generator, std::unique_ptr& move_generator2, diff --git a/vpr/src/place/analytic_placer.cpp b/vpr/src/place/analytic_placer.cpp index 4752756bba3..4bb632fbdb7 100644 --- a/vpr/src/place/analytic_placer.cpp +++ b/vpr/src/place/analytic_placer.cpp @@ -128,7 +128,9 @@ constexpr int HEAP_STALLED_ITERATIONS_STOP = 15; * Currently only initializing AP configuration parameters * Placement & device info is accessed via g_vpr_ctx */ -AnalyticPlacer::AnalyticPlacer() { + +AnalyticPlacer::AnalyticPlacer(BlkLocRegistry& blk_loc_registry) + : blk_loc_registry_ref_(blk_loc_registry) { //Eigen::initParallel(); // TODO: PlacerHeapCfg should be externally configured & supplied @@ -301,11 +303,11 @@ void AnalyticPlacer::build_legal_locations() { // initialize other data members void AnalyticPlacer::init() { const ClusteredNetlist& clb_nlist = g_vpr_ctx.clustering().clb_nlist; - PlacementContext& place_ctx = g_vpr_ctx.mutable_placement(); + auto& init_block_locs = blk_loc_registry_ref_.block_locs(); for (auto blk_id : clb_nlist.blocks()) { blk_locs.insert(blk_id, BlockLocation{}); - blk_locs[blk_id].loc = place_ctx.block_locs[blk_id].loc; // transfer of initial placement + blk_locs[blk_id].loc = init_block_locs[blk_id].loc; // transfer of initial placement row_num.insert(blk_id, DONT_SOLVE); // no blocks are moved by default, until they are setup in setup_solve_blks() } @@ -320,7 +322,7 @@ void AnalyticPlacer::init() { }; for (auto blk_id : clb_nlist.blocks()) { - if (!place_ctx.block_locs[blk_id].is_fixed && has_connections(blk_id)) + if (!init_block_locs[blk_id].is_fixed && has_connections(blk_id)) // not fixed and has connections // matrix equation is formulated based on connections, so requires at least one connection if (imacro(blk_id) == NO_MACRO || macro_head(blk_id) == blk_id) { @@ -412,7 +414,7 @@ void AnalyticPlacer::setup_solve_blks(t_logical_block_type_ptr blkTypes) { void AnalyticPlacer::update_macros() { for (auto& macro : g_vpr_ctx.mutable_placement().pl_macros) { ClusterBlockId head_id = macro.members[0].blk_index; - bool mac_can_be_placed = macro_can_be_placed(macro, blk_locs[head_id].loc, true); + bool mac_can_be_placed = macro_can_be_placed(macro, blk_locs[head_id].loc, true, blk_loc_registry_ref_); //if macro can not be placed in this head pos, change the head pos if (!mac_can_be_placed) { @@ -421,7 +423,7 @@ void AnalyticPlacer::update_macros() { } //macro should be placed successfully after changing the head position - VTR_ASSERT(macro_can_be_placed(macro, blk_locs[head_id].loc, true)); + VTR_ASSERT(macro_can_be_placed(macro, blk_locs[head_id].loc, true, blk_loc_registry_ref_)); //update other member's location based on head pos for (auto member = ++macro.members.begin(); member != macro.members.end(); ++member) { @@ -741,7 +743,7 @@ std::string AnalyticPlacer::print_overlap(vtr::Matrix& overlap, FILE* fp) { void AnalyticPlacer::print_place(const char* place_file) { const DeviceContext& device_ctx = g_vpr_ctx.device(); const ClusteredNetlist& clb_nlist = g_vpr_ctx.clustering().clb_nlist; - PlacementContext& place_ctx = g_vpr_ctx.mutable_placement(); + auto& block_locs = blk_loc_registry_ref_.block_locs(); FILE* fp; @@ -772,7 +774,7 @@ void AnalyticPlacer::print_place(const char* place_file) { "------------", "--------"); - if (!place_ctx.block_locs.empty()) { //Only if placement exists + if (!block_locs.empty()) { //Only if placement exists for (auto blk_id : clb_nlist.blocks()) { fprintf(fp, "%-25s %-18s %-12s %-25s %-5d %-5d %-10d #%-13zu %-8s\n", clb_nlist.block_name(blk_id).c_str(), @@ -783,7 +785,7 @@ void AnalyticPlacer::print_place(const char* place_file) { blk_locs[blk_id].loc.y, blk_locs[blk_id].loc.sub_tile, size_t(blk_id), - (place_ctx.block_locs[blk_id].is_fixed ? "true" : "false")); + (block_locs[blk_id].is_fixed ? "true" : "false")); } fprintf(fp, "\ntotal_HPWL: %d\n", total_hpwl()); vtr::Matrix overlap; diff --git a/vpr/src/place/analytic_placer.h b/vpr/src/place/analytic_placer.h index e31775adf7e..a1f4ff8dcbe 100644 --- a/vpr/src/place/analytic_placer.h +++ b/vpr/src/place/analytic_placer.h @@ -122,7 +122,8 @@ class AnalyticPlacer { * @brief Constructor of AnalyticPlacer, currently initializes AnalyticPlacerCfg for the analytic placer * To tune these parameters, change directly in constructor */ - AnalyticPlacer(); + AnalyticPlacer() = delete; + explicit AnalyticPlacer(BlkLocRegistry& blk_loc_registry); /* * @brief main function of analytic placement @@ -180,6 +181,9 @@ class AnalyticPlacer { // Lookup from blockID to block location vtr::vector_map blk_locs; + // reference to the placement location variables + BlkLocRegistry& blk_loc_registry_ref_; + /* * The set of blks of different types to be placed by AnalyticPlacement process, * i.e. the free variable blocks. diff --git a/vpr/src/place/centroid_move_generator.cpp b/vpr/src/place/centroid_move_generator.cpp index a1b79b92f7a..508d8cc75da 100644 --- a/vpr/src/place/centroid_move_generator.cpp +++ b/vpr/src/place/centroid_move_generator.cpp @@ -3,6 +3,7 @@ #include "globals.h" #include "directed_moves_util.h" #include "place_constraints.h" +#include "placer_state.h" #include "move_utils.h" #include @@ -15,12 +16,16 @@ vtr::vector CentroidMoveGenerator::cluster_to_noc_gr std::map CentroidMoveGenerator::noc_router_to_noc_group_; -CentroidMoveGenerator::CentroidMoveGenerator() - : noc_attraction_w_(0.0f) +CentroidMoveGenerator::CentroidMoveGenerator(PlacerState& placer_state) + : MoveGenerator(placer_state) + , noc_attraction_w_(0.0f) , noc_attraction_enabled_(false) {} -CentroidMoveGenerator::CentroidMoveGenerator(float noc_attraction_weight, size_t high_fanout_net) - : noc_attraction_w_(noc_attraction_weight) +CentroidMoveGenerator::CentroidMoveGenerator(PlacerState& placer_state, + float noc_attraction_weight, + size_t high_fanout_net) + : MoveGenerator(placer_state) + , noc_attraction_w_(noc_attraction_weight) , noc_attraction_enabled_(true) { VTR_ASSERT(noc_attraction_weight > 0.0 && noc_attraction_weight <= 1.0); @@ -39,12 +44,20 @@ e_create_move CentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& block float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/) { + auto& placer_state = placer_state_.get(); + const auto& block_locs = placer_state.block_locs(); + const auto& device_ctx = g_vpr_ctx.device(); + const auto& cluster_ctx = g_vpr_ctx.clustering(); + const auto& place_move_ctx = placer_state.move(); + const auto& blk_loc_registry = placer_state.blk_loc_registry(); + // Find a movable block based on blk_type ClusterBlockId b_from = propose_block_to_move(placer_opts, proposed_action.logical_blk_type_index, - false, - nullptr, - nullptr); + /*highly_crit_block=*/false, + /*net_from=*/nullptr, + /*pin_from=*/nullptr, + placer_state); VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, "Centroid Move Choose Block %d - rlim %f\n", @@ -57,14 +70,11 @@ e_create_move CentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& block return e_create_move::ABORT; } - const auto& device_ctx = g_vpr_ctx.device(); - const auto& place_ctx = g_vpr_ctx.placement(); - const auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_move_ctx = g_placer_ctx.mutable_move(); - t_pl_loc from = place_ctx.block_locs[b_from].loc; - auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); - auto grid_from_type = device_ctx.grid.get_physical_type({from.x, from.y, from.layer}); + + t_pl_loc from = block_locs[b_from].loc; + t_logical_block_type_ptr cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); + t_physical_tile_type_ptr grid_from_type = device_ctx.grid.get_physical_type({from.x, from.y, from.layer}); VTR_ASSERT(is_tile_compatible(grid_from_type, cluster_from_type)); t_range_limiters range_limiters{rlim, @@ -74,17 +84,17 @@ e_create_move CentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& block t_pl_loc to, centroid; /* Calculate the centroid location*/ - calculate_centroid_loc(b_from, false, centroid, nullptr, noc_attraction_enabled_, noc_attraction_w_); + calculate_centroid_loc(b_from, false, centroid, nullptr, noc_attraction_enabled_, noc_attraction_w_, blk_loc_registry); // Centroid location is not necessarily a valid location, and the downstream location expects a valid // layer for the centroid location. So if the layer is not valid, we set it to the same layer as from loc. centroid.layer = (centroid.layer < 0) ? from.layer : centroid.layer; /* Find a location near the weighted centroid_loc */ - if (!find_to_loc_centroid(cluster_from_type, from, centroid, range_limiters, to, b_from)) { + if (!find_to_loc_centroid(cluster_from_type, from, centroid, range_limiters, to, b_from, blk_loc_registry)) { return e_create_move::ABORT; } - e_create_move create_move = ::create_move(blocks_affected, b_from, to); + e_create_move create_move = ::create_move(blocks_affected, b_from, to, blk_loc_registry); //Check that all the blocks affected by the move would still be in a legal floorplan region after the swap if (!floorplan_legal(blocks_affected)) { @@ -135,7 +145,7 @@ void CentroidMoveGenerator::initialize_noc_groups(size_t high_fanout_net) { const auto router_block_type = cluster_ctx.clb_nlist.block_type(router_blk_ids[0]); // iterate over logical NoC routers and start a BFS - for (auto router_blk_id : router_blk_ids) { + for (ClusterBlockId router_blk_id : router_blk_ids) { if (block_visited[router_blk_id]) { continue; @@ -181,7 +191,7 @@ void CentroidMoveGenerator::initialize_noc_groups(size_t high_fanout_net) { } if (cluster_ctx.clb_nlist.pin_type(pin_id) == PinType::DRIVER) { - for (auto sink_pin_id : cluster_ctx.clb_nlist.net_sinks(net_id)) { + for (ClusterPinId sink_pin_id : cluster_ctx.clb_nlist.net_sinks(net_id)) { ClusterBlockId sink_block_id = cluster_ctx.clb_nlist.pin_block(sink_pin_id); if (!block_visited[sink_block_id]) { block_visited[sink_block_id] = true; diff --git a/vpr/src/place/centroid_move_generator.h b/vpr/src/place/centroid_move_generator.h index 2a0b99234c5..fb8176aa1bd 100644 --- a/vpr/src/place/centroid_move_generator.h +++ b/vpr/src/place/centroid_move_generator.h @@ -21,10 +21,13 @@ class CentroidMoveGenerator : public MoveGenerator { public: /** - * The move generator created by calling this constructor only consider + * The move generator created by calling this constructor only considers * netlist connectivity for computing the centroid location. + * + * @param placer_state A mutable reference to the placement state which will + * be stored in this object. */ - CentroidMoveGenerator(); + explicit CentroidMoveGenerator(PlacerState& placer_state); /** * The move generator created by calling this constructor considers both @@ -33,13 +36,17 @@ class CentroidMoveGenerator : public MoveGenerator { * in the graph representing the clustered netlist. When finding connected * components, none of the nets whose fanout is larger than high_fanout_net * are traversed. + * @param placer_state A mutable reference to the placement state which will + * be stored in this object. * @param noc_attraction_weight Specifies how much the computed centroid * is adjusted towards the location of NoC routers in the same NoC group as * the clustered block to be moved. * @param high_fanout_net All nets with a fanout larger than this number are * ignored when forming NoC groups. */ - CentroidMoveGenerator(float noc_attraction_weight, size_t high_fanout_net); + CentroidMoveGenerator(PlacerState& placer_state, + float noc_attraction_weight, + size_t high_fanout_net); /** diff --git a/vpr/src/place/critical_uniform_move_generator.cpp b/vpr/src/place/critical_uniform_move_generator.cpp index 9fbc93a7645..9f6641a732e 100644 --- a/vpr/src/place/critical_uniform_move_generator.cpp +++ b/vpr/src/place/critical_uniform_move_generator.cpp @@ -1,39 +1,51 @@ #include "critical_uniform_move_generator.h" #include "globals.h" #include "place_constraints.h" +#include "placer_state.h" #include "move_utils.h" -e_create_move CriticalUniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, t_propose_action& proposed_action, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/) { +CriticalUniformMoveGenerator::CriticalUniformMoveGenerator(PlacerState& placer_state) + : MoveGenerator(placer_state) {} + +e_create_move CriticalUniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, + t_propose_action& proposed_action, + float rlim, + const t_placer_opts& placer_opts, + const PlacerCriticalities* /*criticalities*/) { + auto& cluster_ctx = g_vpr_ctx.clustering(); + const auto& placer_state = placer_state_.get(); + const auto& block_locs = placer_state.block_locs(); + const auto& blk_loc_registry = placer_state.blk_loc_registry(); + ClusterNetId net_from; int pin_from; //Find a movable block based on blk_type ClusterBlockId b_from = propose_block_to_move(placer_opts, proposed_action.logical_blk_type_index, - true, + /*highly_crit_block=*/true, &net_from, - &pin_from); - VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, "Critical Uniform Move Choose Block %d - rlim %f\n", size_t(b_from), rlim); + &pin_from, + placer_state); - auto& place_ctx = g_vpr_ctx.placement(); - auto& cluster_ctx = g_vpr_ctx.clustering(); + VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, "Critical Uniform Move Choose Block %d - rlim %f\n", size_t(b_from), rlim); if (!b_from) { //No movable block found VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, "\tNo movable block found\n"); return e_create_move::ABORT; } - t_pl_loc from = place_ctx.block_locs[b_from].loc; + t_pl_loc from = block_locs[b_from].loc; auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); auto grid_from_type = g_vpr_ctx.device().grid.get_physical_type({from.x, from.y, from.layer}); VTR_ASSERT(is_tile_compatible(grid_from_type, cluster_from_type)); t_pl_loc to; to.layer = from.layer; - if (!find_to_loc_uniform(cluster_from_type, rlim, from, to, b_from)) { + if (!find_to_loc_uniform(cluster_from_type, rlim, from, to, b_from, blk_loc_registry)) { return e_create_move::ABORT; } - e_create_move create_move = ::create_move(blocks_affected, b_from, to); + e_create_move create_move = ::create_move(blocks_affected, b_from, to, blk_loc_registry); //Check that all the blocks affected by the move would still be in a legal floorplan region after the swap if (!floorplan_legal(blocks_affected)) { @@ -42,3 +54,4 @@ e_create_move CriticalUniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved return create_move; } + diff --git a/vpr/src/place/critical_uniform_move_generator.h b/vpr/src/place/critical_uniform_move_generator.h index a5a08af7c3b..8de342a788e 100644 --- a/vpr/src/place/critical_uniform_move_generator.h +++ b/vpr/src/place/critical_uniform_move_generator.h @@ -15,7 +15,16 @@ * Returns its choices by filling in affected_blocks. */ class CriticalUniformMoveGenerator : public MoveGenerator { - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, t_propose_action& proposed_action, float rlim, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/) override; + public: + CriticalUniformMoveGenerator() = delete; + explicit CriticalUniformMoveGenerator(PlacerState& placer_state); + + private: + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, + t_propose_action& proposed_action, + float rlim, + const t_placer_opts& /*placer_opts*/, + const PlacerCriticalities* /*criticalities*/) override; }; #endif diff --git a/vpr/src/place/cut_spreader.cpp b/vpr/src/place/cut_spreader.cpp index 88b0f913346..fed8216795e 100644 --- a/vpr/src/place/cut_spreader.cpp +++ b/vpr/src/place/cut_spreader.cpp @@ -12,6 +12,7 @@ # include "globals.h" # include "vtr_log.h" # include "place_util.h" +# include "grid_block.h" // sentinel for base case in CutSpreader (i.e. only 1 block left in region) constexpr std::pair BASE_CASE = {-2, -2}; @@ -405,7 +406,7 @@ void CutSpreader::expand_regions() { std::pair CutSpreader::cut_region(SpreaderRegion& r, bool dir) { const DeviceContext& device_ctx = g_vpr_ctx.device(); const ClusteredNetlist& clb_nlist = g_vpr_ctx.clustering().clb_nlist; - PlacementContext& place_ctx = g_vpr_ctx.mutable_placement(); + const auto& pl_macros = g_vpr_ctx.placement().pl_macros; // TODO: CutSpreader is not compatible with 3D FPGA VTR_ASSERT(device_ctx.grid.get_num_layers() == 1); @@ -503,7 +504,7 @@ std::pair CutSpreader::cut_region(SpreaderRegion& r, bool dir) { // while left subarea is over-utilized, move logic blocks to the right subarea one at a time while (pivot > 0 && rl.overused(ap->ap_cfg.beta)) { auto& move_blk = cut_blks.at(pivot); - int size = (imacro(move_blk) != NO_MACRO) ? place_ctx.pl_macros[imacro(move_blk)].members.size() : 1; + int size = (imacro(move_blk) != NO_MACRO) ? pl_macros[imacro(move_blk)].members.size() : 1; rl.n_blks -= size; rr.n_blks += size; pivot--; @@ -511,7 +512,7 @@ std::pair CutSpreader::cut_region(SpreaderRegion& r, bool dir) { // while right subarea is over-utilized, move logic blocks to the left subarea one at a time while (pivot < int(cut_blks.size()) - 1 && rr.overused(ap->ap_cfg.beta)) { auto& move_blk = cut_blks.at(pivot + 1); - int size = (imacro(move_blk) != NO_MACRO) ? place_ctx.pl_macros[imacro(move_blk)].members.size() : 1; + int size = (imacro(move_blk) != NO_MACRO) ? pl_macros[imacro(move_blk)].members.size() : 1; rl.n_blks += size; rr.n_blks -= size; pivot++; @@ -617,7 +618,7 @@ int CutSpreader::initial_source_cut(SpreaderRegion& r, bool dir, int& clearance_l, int& clearance_r) { - PlacementContext& place_ctx = g_vpr_ctx.mutable_placement(); + const auto& pl_macros = g_vpr_ctx.placement().pl_macros; // pivot is the midpoint of cut_blks in terms of total block size (counting macro members) // this ensures the initial partitions have similar number of blocks @@ -625,7 +626,7 @@ int CutSpreader::initial_source_cut(SpreaderRegion& r, int pivot = 0; // midpoint in terms of index of cut_blks for (auto& blk : cut_blks) { // if blk is part of macro (only macro heads in cut_blks, no macro members), add that macro's size - pivot_blks += (imacro(blk) != NO_MACRO) ? place_ctx.pl_macros[imacro(blk)].members.size() : 1; + pivot_blks += (imacro(blk) != NO_MACRO) ? pl_macros[imacro(blk)].members.size() : 1; if (pivot_blks >= r.n_blks / 2) break; pivot++; @@ -670,16 +671,16 @@ int CutSpreader::initial_target_cut(SpreaderRegion& r, int& right_blks_n, int& left_tiles_n, int& right_tiles_n) { - PlacementContext& place_ctx = g_vpr_ctx.mutable_placement(); + const auto& pl_macros = g_vpr_ctx.mutable_placement().pl_macros; // To achieve smallest difference in utilization, first move all tiles to right partition left_blks_n = 0, right_blks_n = 0; left_tiles_n = 0, right_tiles_n = r.n_tiles; // count number of blks in each partition, from initial source cut for (int i = 0; i <= init_source_cut; i++) - left_blks_n += (imacro(cut_blks.at(i)) != NO_MACRO) ? place_ctx.pl_macros[imacro(cut_blks.at(i))].members.size() : 1; + left_blks_n += (imacro(cut_blks.at(i)) != NO_MACRO) ? pl_macros[imacro(cut_blks.at(i))].members.size() : 1; for (int i = init_source_cut + 1; i < int(cut_blks.size()); i++) - right_blks_n += (imacro(cut_blks.at(i)) != NO_MACRO) ? place_ctx.pl_macros[imacro(cut_blks.at(i))].members.size() : 1; + right_blks_n += (imacro(cut_blks.at(i)) != NO_MACRO) ? pl_macros[imacro(cut_blks.at(i))].members.size() : 1; int best_tgt_cut = -1; double best_deltaU = std::numeric_limits::max(); @@ -805,14 +806,15 @@ void CutSpreader::linear_spread_subarea(std::vector& cut_blks, */ void CutSpreader::strict_legalize() { auto& clb_nlist = g_vpr_ctx.clustering().clb_nlist; - auto& place_ctx = g_vpr_ctx.mutable_placement(); + const auto& block_locs = ap->blk_loc_registry_ref_.block_locs(); + const auto& pl_macros = g_vpr_ctx.placement().pl_macros; int max_x = g_vpr_ctx.device().grid.width(); int max_y = g_vpr_ctx.device().grid.height(); // clear the location of all blocks in place_ctx for (auto blk : clb_nlist.blocks()) { - if (!place_ctx.block_locs[blk].is_fixed && (ap->row_num[blk] != DONT_SOLVE || (imacro(blk) != NO_MACRO && ap->row_num[macro_head(blk)] != DONT_SOLVE))) { - unbind_tile(place_ctx.block_locs[blk].loc); + if (!block_locs[blk].is_fixed && (ap->row_num[blk] != DONT_SOLVE || (imacro(blk) != NO_MACRO && ap->row_num[macro_head(blk)] != DONT_SOLVE))) { + unbind_tile(block_locs[blk].loc); } } @@ -821,9 +823,9 @@ void CutSpreader::strict_legalize() { // length of the macro they are in (for single blocks, priority = 1). // This prioritizes the placement of longest macros over single blocks std::priority_queue> remaining; - for (auto blk : ap->solve_blks) { + for (ClusterBlockId blk : ap->solve_blks) { if (imacro(blk) != NO_MACRO) // blk is head block of a macro (only head blks are solved) - remaining.emplace(place_ctx.pl_macros[imacro(blk)].members.size(), blk); + remaining.emplace(pl_macros[imacro(blk)].members.size(), blk); else remaining.emplace(1, blk); } @@ -961,13 +963,14 @@ void CutSpreader::strict_legalize() { * Place blk on sub_tile location by modifying place_ctx.grid_blocks, place_ctx.block_locs, and ap->blk_locs[blk].loc */ void CutSpreader::bind_tile(t_pl_loc sub_tile, ClusterBlockId blk) { - auto& place_ctx = g_vpr_ctx.mutable_placement(); - VTR_ASSERT(place_ctx.grid_blocks.block_at_location(sub_tile) == EMPTY_BLOCK_ID); - VTR_ASSERT(place_ctx.block_locs[blk].is_fixed == false); - place_ctx.grid_blocks.set_block_at_location(sub_tile, blk); - place_ctx.block_locs[blk].loc = sub_tile; - place_ctx.grid_blocks.set_usage({sub_tile.x, sub_tile.y, sub_tile.layer}, - place_ctx.grid_blocks.get_usage({sub_tile.x, sub_tile.y, sub_tile.layer}) + 1); + auto& grid_blocks = ap->blk_loc_registry_ref_.mutable_grid_blocks(); + auto& block_locs = ap->blk_loc_registry_ref_.mutable_block_locs(); + + VTR_ASSERT(grid_blocks.block_at_location(sub_tile) == ClusterBlockId::INVALID()); + VTR_ASSERT(block_locs[blk].is_fixed == false); + grid_blocks.set_block_at_location(sub_tile, blk); + block_locs[blk].loc = sub_tile; + grid_blocks.increment_usage({sub_tile.x, sub_tile.y, sub_tile.layer}); ap->blk_locs[blk].loc = sub_tile; } @@ -976,14 +979,15 @@ void CutSpreader::bind_tile(t_pl_loc sub_tile, ClusterBlockId blk) { * Remove placement at sub_tile location by clearing place_ctx.block_locs and place_Ctx.grid_blocks */ void CutSpreader::unbind_tile(t_pl_loc sub_tile) { - auto& place_ctx = g_vpr_ctx.mutable_placement(); - VTR_ASSERT(place_ctx.grid_blocks.block_at_location(sub_tile) != EMPTY_BLOCK_ID); - ClusterBlockId blk = place_ctx.grid_blocks.block_at_location(sub_tile); - VTR_ASSERT(place_ctx.block_locs[blk].is_fixed == false); - place_ctx.block_locs[blk].loc = t_pl_loc{}; - place_ctx.grid_blocks.set_block_at_location(sub_tile, EMPTY_BLOCK_ID); - place_ctx.grid_blocks.set_usage({sub_tile.x, sub_tile.y, sub_tile.layer}, - place_ctx.grid_blocks.get_usage({sub_tile.x, sub_tile.y, sub_tile.layer}) - 1); + auto& grid_blocks = ap->blk_loc_registry_ref_.mutable_grid_blocks(); + auto& block_locs = ap->blk_loc_registry_ref_.mutable_block_locs(); + + VTR_ASSERT(grid_blocks.block_at_location(sub_tile) != ClusterBlockId::INVALID()); + ClusterBlockId blk = grid_blocks.block_at_location(sub_tile); + VTR_ASSERT(block_locs[blk].is_fixed == false); + block_locs[blk].loc = t_pl_loc{}; + grid_blocks.set_block_at_location(sub_tile, ClusterBlockId::INVALID()); + grid_blocks.decrement_usage({sub_tile.x, sub_tile.y, sub_tile.layer}); } /* @@ -992,10 +996,12 @@ void CutSpreader::unbind_tile(t_pl_loc sub_tile) { * the block in place_ctx.grid_blocks) */ bool CutSpreader::is_placed(ClusterBlockId blk) { - auto& place_ctx = g_vpr_ctx.mutable_placement(); - if (place_ctx.block_locs[blk].loc != t_pl_loc{}) { - auto loc = place_ctx.block_locs[blk].loc; - VTR_ASSERT(place_ctx.grid_blocks.block_at_location(loc) == blk); + const auto& grid_blocks = ap->blk_loc_registry_ref_.grid_blocks(); + const auto& block_locs = ap->blk_loc_registry_ref_.block_locs(); + + if (block_locs[blk].loc != t_pl_loc{}) { + auto loc = block_locs[blk].loc; + VTR_ASSERT(grid_blocks.block_at_location(loc) == blk); return true; } return false; @@ -1025,15 +1031,15 @@ bool CutSpreader::try_place_blk(ClusterBlockId blk, int& best_inp_len, t_pl_loc& best_subtile, std::priority_queue>& remaining) { - auto& place_ctx = g_vpr_ctx.mutable_placement(); + const auto& grid_blocks = ap->blk_loc_registry_ref_.grid_blocks(); const ClusteredNetlist& clb_nlist = g_vpr_ctx.clustering().clb_nlist; - // iteration at current radius has exceed exploration limit, and a candidate sub_tile (best_subtile) is found + // iteration at current radius has exceeded exploration limit, and a candidate sub_tile (best_subtile) is found // then blk is placed in best_subtile if (exceeds_explore_limit && best_subtile != t_pl_loc{}) { // find the logic block bound to (placed on) best_subtile - ClusterBlockId bound_blk = place_ctx.grid_blocks.block_at_location(best_subtile); - if (bound_blk != EMPTY_BLOCK_ID) { // if best_subtile has a logic block + ClusterBlockId bound_blk = grid_blocks.block_at_location(best_subtile); + if (bound_blk) { // if best_subtile has a logic block unbind_tile(best_subtile); // clear bound_block and best_subtile's placement info remaining.emplace(1, bound_blk); // put bound_blk back into remaining blocks to place } @@ -1043,8 +1049,8 @@ bool CutSpreader::try_place_blk(ClusterBlockId blk, // if exploration limit is not met or a candidate sub_tile is not found yet for (auto sub_t : subtiles_at_location[nx][ny]) { // for each available sub_tile at random location - ClusterBlockId bound_blk = place_ctx.grid_blocks.block_at_location(sub_t); // logic blk at [nx, ny] - if (bound_blk == EMPTY_BLOCK_ID + ClusterBlockId bound_blk = grid_blocks.block_at_location(sub_t); // logic blk at [nx, ny] + if (bound_blk == ClusterBlockId::INVALID() || ripup_radius_met || rand() % (20000) < 10) { /* conditions when a sub_tile at nx, ny is considered: @@ -1054,7 +1060,7 @@ bool CutSpreader::try_place_blk(ClusterBlockId blk, * OR * 2) a 0.05% chance of acceptance. */ - if (bound_blk != EMPTY_BLOCK_ID && imacro(bound_blk) != NO_MACRO) + if (bound_blk && imacro(bound_blk) != NO_MACRO) // do not sub_tiles when the block placed on it is part of a macro, as they have higher priority continue; if (!exceeds_explore_limit) { // if still in exploration phase, find best_subtile with smallest best_inp_len @@ -1077,7 +1083,7 @@ bool CutSpreader::try_place_blk(ClusterBlockId blk, } break; } else { // exploration phase passed and still no best_subtile yet, choose the next compatible sub_tile - if (bound_blk != EMPTY_BLOCK_ID) { + if (bound_blk) { remaining.emplace(1, bound_blk); unbind_tile(sub_t); // remove bound_blk and place blk on sub_t } @@ -1103,7 +1109,8 @@ bool CutSpreader::try_place_macro(ClusterBlockId blk, int nx, int ny, std::priority_queue>& remaining) { - auto& place_ctx = g_vpr_ctx.mutable_placement(); + const auto& pl_macros = g_vpr_ctx.placement().pl_macros; + const auto& grid_blocks = ap->blk_loc_registry_ref_.grid_blocks(); const ClusteredNetlist& clb_nlist = g_vpr_ctx.clustering().clb_nlist; for (auto sub_t : subtiles_at_location[nx][ny]) { @@ -1127,8 +1134,8 @@ bool CutSpreader::try_place_macro(ClusterBlockId blk, // if the target location has a logic block, ensure it's not part of a macro // because a macro placed before the current one has higher priority (longer chain) - ClusterBlockId bound = place_ctx.grid_blocks.block_at_location(target); - if (bound != EMPTY_BLOCK_ID && imacro(bound) != NO_MACRO) { + ClusterBlockId bound = grid_blocks.block_at_location(target); + if (bound && imacro(bound) != NO_MACRO) { placement_impossible = true; break; } @@ -1136,7 +1143,7 @@ bool CutSpreader::try_place_macro(ClusterBlockId blk, targets.emplace_back(visit_blk, target); if (macro_head(visit_blk) == visit_blk) { // if visit_blk is the head block of the macro // push all macro members to visit queue along with their calculated positions - const std::vector& members = place_ctx.pl_macros[imacro(blk)].members; + const std::vector& members = pl_macros[imacro(blk)].members; for (auto member = members.begin() + 1; member != members.end(); ++member) { t_pl_loc mloc = target + member->offset; // calculate member_loc using (head blk location + offset) visit.emplace(member->blk_index, mloc); @@ -1146,8 +1153,8 @@ bool CutSpreader::try_place_macro(ClusterBlockId blk, if (!placement_impossible) { // if placement is possible, apply this placement for (auto& target : targets) { - ClusterBlockId bound = place_ctx.grid_blocks.block_at_location(target.second); - if (bound != EMPTY_BLOCK_ID) { + ClusterBlockId bound = grid_blocks.block_at_location(target.second); + if (bound) { // if target location has a logic block, displace it and put it in remaining queue to be placed later unbind_tile(target.second); remaining.emplace(1, bound); diff --git a/vpr/src/place/directed_moves_util.cpp b/vpr/src/place/directed_moves_util.cpp index 7cfdab8e16c..b8a950d832a 100644 --- a/vpr/src/place/directed_moves_util.cpp +++ b/vpr/src/place/directed_moves_util.cpp @@ -2,21 +2,25 @@ #include "directed_moves_util.h" #include "centroid_move_generator.h" -void get_coordinate_of_pin(ClusterPinId pin, t_physical_tile_loc& tile_loc) { - auto& device_ctx = g_vpr_ctx.device(); - auto& grid = device_ctx.grid; - auto& place_ctx = g_vpr_ctx.placement(); - auto& cluster_ctx = g_vpr_ctx.clustering(); +t_physical_tile_loc get_coordinate_of_pin(ClusterPinId pin, + const BlkLocRegistry& blk_loc_registry) { + const auto& device_ctx = g_vpr_ctx.device(); + const auto& grid = device_ctx.grid; + const auto& cluster_ctx = g_vpr_ctx.clustering(); - int pnum = tile_pin_index(pin); + int pnum = blk_loc_registry.tile_pin_index(pin); ClusterBlockId block = cluster_ctx.clb_nlist.pin_block(pin); - tile_loc.x = place_ctx.block_locs[block].loc.x + physical_tile_type(block)->pin_width_offset[pnum]; - tile_loc.y = place_ctx.block_locs[block].loc.y + physical_tile_type(block)->pin_height_offset[pnum]; - tile_loc.layer_num = place_ctx.block_locs[block].loc.layer; + t_physical_tile_loc tile_loc; + t_pl_loc block_loc = blk_loc_registry.block_locs()[block].loc; + tile_loc.x = block_loc.x + physical_tile_type(block_loc)->pin_width_offset[pnum]; + tile_loc.y = block_loc.y + physical_tile_type(block_loc)->pin_height_offset[pnum]; + tile_loc.layer_num = block_loc.layer; tile_loc.x = std::max(std::min(tile_loc.x, (int)grid.width() - 2), 1); //-2 for no perim channels tile_loc.y = std::max(std::min(tile_loc.y, (int)grid.height() - 2), 1); //-2 for no perim channels + + return tile_loc; } void calculate_centroid_loc(ClusterBlockId b_from, @@ -24,19 +28,18 @@ void calculate_centroid_loc(ClusterBlockId b_from, t_pl_loc& centroid, const PlacerCriticalities* criticalities, bool noc_attraction_enabled, - float noc_attraction_weight) { - auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.placement(); + float noc_attraction_weight, + const BlkLocRegistry& blk_loc_registry) { + const auto& cluster_ctx = g_vpr_ctx.clustering(); + const auto& block_locs = blk_loc_registry.block_locs(); - t_physical_tile_loc tile_loc; - int ipin; float acc_weight = 0; float acc_x = 0; float acc_y = 0; float acc_layer = 0; float weight = 1; - int from_block_layer_num = g_vpr_ctx.placement().block_locs[b_from].loc.layer; + int from_block_layer_num = block_locs[b_from].loc.layer; VTR_ASSERT(from_block_layer_num != OPEN); //iterate over the from block pins @@ -68,14 +71,14 @@ void calculate_centroid_loc(ClusterBlockId b_from, * This case rarely happens but causes QoR degradation */ if (pin_id == sink_pin_id) continue; - ipin = cluster_ctx.clb_nlist.pin_net_index(sink_pin_id); + int ipin = cluster_ctx.clb_nlist.pin_net_index(sink_pin_id); if (timing_weights) { weight = criticalities->criticality(net_id, ipin); } else { weight = 1; } - get_coordinate_of_pin(sink_pin_id, tile_loc); + t_physical_tile_loc tile_loc = get_coordinate_of_pin(sink_pin_id, blk_loc_registry); acc_x += tile_loc.x * weight; acc_y += tile_loc.y * weight; @@ -86,7 +89,7 @@ void calculate_centroid_loc(ClusterBlockId b_from, //else the pin is sink --> only care about its driver else { - ipin = cluster_ctx.clb_nlist.pin_net_index(pin_id); + int ipin = cluster_ctx.clb_nlist.pin_net_index(pin_id); if (timing_weights) { weight = criticalities->criticality(net_id, ipin); } else { @@ -95,7 +98,7 @@ void calculate_centroid_loc(ClusterBlockId b_from, ClusterPinId source_pin = cluster_ctx.clb_nlist.net_driver(net_id); - get_coordinate_of_pin(source_pin, tile_loc); + t_physical_tile_loc tile_loc = get_coordinate_of_pin(source_pin, blk_loc_registry); acc_x += tile_loc.x * weight; acc_y += tile_loc.y * weight; @@ -118,7 +121,7 @@ void calculate_centroid_loc(ClusterBlockId b_from, acc_weight *= (1.0f - noc_attraction_weight); for (ClusterBlockId router_blk_id : noc_routers) { - t_block_loc router_loc = place_ctx.block_locs[router_blk_id]; + t_block_loc router_loc = block_locs[router_blk_id]; acc_x += router_loc.loc.x * single_noc_weight; acc_y += router_loc.loc.y * single_noc_weight; acc_weight += single_noc_weight; @@ -133,10 +136,10 @@ void calculate_centroid_loc(ClusterBlockId b_from, } static std::map available_reward_function = { - {"basic", BASIC}, - {"nonPenalizing_basic", NON_PENALIZING_BASIC}, - {"runtime_aware", RUNTIME_AWARE}, - {"WLbiased_runtime_aware", WL_BIASED_RUNTIME_AWARE}}; + {"basic", e_reward_function::BASIC}, + {"nonPenalizing_basic", e_reward_function::NON_PENALIZING_BASIC}, + {"runtime_aware", e_reward_function::RUNTIME_AWARE}, + {"WLbiased_runtime_aware", e_reward_function::WL_BIASED_RUNTIME_AWARE}}; e_reward_function string_to_reward(const std::string& st) { return available_reward_function[st]; diff --git a/vpr/src/place/directed_moves_util.h b/vpr/src/place/directed_moves_util.h index dc2f07c4643..cef889d5e4e 100644 --- a/vpr/src/place/directed_moves_util.h +++ b/vpr/src/place/directed_moves_util.h @@ -7,7 +7,7 @@ /** * @brief enum represents the different reward functions */ -enum e_reward_function { +enum class e_reward_function { BASIC, ///@ directly uses the change of the annealing cost function NON_PENALIZING_BASIC, ///@ same as basic reward function but with 0 reward if it's a hill-climbing one RUNTIME_AWARE, ///@ same as NON_PENALIZING_BASIC but with normalizing with the runtime factor of each move type @@ -17,7 +17,8 @@ enum e_reward_function { e_reward_function string_to_reward(const std::string& st); ///@brief Helper function that returns the x, y coordinates of a pin -void get_coordinate_of_pin(ClusterPinId pin, t_physical_tile_loc& tile_loc); +t_physical_tile_loc get_coordinate_of_pin(ClusterPinId pin, + const BlkLocRegistry& blk_loc_registry); /** * @brief Calculates the exact centroid location @@ -46,13 +47,15 @@ void calculate_centroid_loc(ClusterBlockId b_from, t_pl_loc& centroid, const PlacerCriticalities* criticalities, bool noc_attraction_enabled, - float noc_attraction_weight); + float noc_attraction_weight, + const BlkLocRegistry& blk_loc_registry); inline void calculate_centroid_loc(ClusterBlockId b_from, bool timing_weights, t_pl_loc& centroid, - const PlacerCriticalities* criticalities) { - calculate_centroid_loc(b_from, timing_weights, centroid, criticalities, false, 0.0f); + const PlacerCriticalities* criticalities, + const BlkLocRegistry& blk_loc_registry) { + calculate_centroid_loc(b_from, timing_weights, centroid, criticalities, false, 0.0f, blk_loc_registry); } #endif diff --git a/vpr/src/place/feasible_region_move_generator.cpp b/vpr/src/place/feasible_region_move_generator.cpp index 995c2a37836..d321f0d2ebd 100644 --- a/vpr/src/place/feasible_region_move_generator.cpp +++ b/vpr/src/place/feasible_region_move_generator.cpp @@ -1,19 +1,37 @@ #include "feasible_region_move_generator.h" + #include "globals.h" -#include -#include "math.h" #include "place_constraints.h" +#include "placer_state.h" #include "move_utils.h" -e_create_move FeasibleRegionMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, t_propose_action& proposed_action, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { +#include +#include + +FeasibleRegionMoveGenerator::FeasibleRegionMoveGenerator(PlacerState& placer_state) + : MoveGenerator(placer_state) {} + +e_create_move FeasibleRegionMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, + t_propose_action& proposed_action, + float rlim, + const t_placer_opts& placer_opts, + const PlacerCriticalities* criticalities) { + const auto& cluster_ctx = g_vpr_ctx.clustering(); + auto& placer_state = placer_state_.get(); + auto& place_move_ctx = placer_state.mutable_move(); + const auto& block_locs = placer_state.block_locs(); + const auto& blk_loc_registry = placer_state.blk_loc_registry(); + ClusterNetId net_from; int pin_from; //Find a movable block based on blk_type ClusterBlockId b_from = propose_block_to_move(placer_opts, proposed_action.logical_blk_type_index, - true, + /*highly_crit_block=*/true, &net_from, - &pin_from); + &pin_from, + placer_state); + VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, "Feasible Region Move Choose Block %di - rlim %f\n", size_t(b_from), rlim); if (!b_from) { //No movable block found @@ -21,12 +39,8 @@ e_create_move FeasibleRegionMoveGenerator::propose_move(t_pl_blocks_to_be_moved& return e_create_move::ABORT; } - auto& place_ctx = g_vpr_ctx.placement(); - auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_move_ctx = g_placer_ctx.mutable_move(); - //from block data - t_pl_loc from = place_ctx.block_locs[b_from].loc; + t_pl_loc from = block_locs[b_from].loc; auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); auto grid_from_type = g_vpr_ctx.device().grid.get_physical_type({from.x, from.y, from.layer}); VTR_ASSERT(is_tile_compatible(grid_from_type, cluster_from_type)); @@ -35,8 +49,6 @@ e_create_move FeasibleRegionMoveGenerator::propose_move(t_pl_blocks_to_be_moved& t_pl_loc to; // Currently, we don't change the layer for this move to.layer = from.layer; - int ipin; - ClusterBlockId bnum; int max_x, min_x, max_y, min_y; place_move_ctx.X_coord.clear(); @@ -47,11 +59,11 @@ e_create_move FeasibleRegionMoveGenerator::propose_move(t_pl_blocks_to_be_moved& if (cluster_ctx.clb_nlist.net_is_ignored(net_id)) continue; - ipin = cluster_ctx.clb_nlist.pin_net_index(pin_id); + int ipin = cluster_ctx.clb_nlist.pin_net_index(pin_id); if (criticalities->criticality(net_id, ipin) > placer_opts.place_crit_limit) { - bnum = cluster_ctx.clb_nlist.net_driver_block(net_id); - place_move_ctx.X_coord.push_back(place_ctx.block_locs[bnum].loc.x); - place_move_ctx.Y_coord.push_back(place_ctx.block_locs[bnum].loc.y); + ClusterBlockId bnum = cluster_ctx.clb_nlist.net_driver_block(net_id); + place_move_ctx.X_coord.push_back(block_locs[bnum].loc.x); + place_move_ctx.Y_coord.push_back(block_locs[bnum].loc.y); } } if (!place_move_ctx.X_coord.empty()) { @@ -69,7 +81,7 @@ e_create_move FeasibleRegionMoveGenerator::propose_move(t_pl_blocks_to_be_moved& //Get the most critical output of the node int xt, yt; ClusterBlockId b_output = cluster_ctx.clb_nlist.net_pin_block(net_from, pin_from); - t_pl_loc output_loc = place_ctx.block_locs[b_output].loc; + t_pl_loc output_loc = block_locs[b_output].loc; xt = output_loc.x; yt = output_loc.y; @@ -113,7 +125,7 @@ e_create_move FeasibleRegionMoveGenerator::propose_move(t_pl_blocks_to_be_moved& placer_opts.place_dm_rlim}; // Try to find a legal location inside the feasible region - if (!find_to_loc_median(cluster_from_type, from, &FR_coords, to, b_from)) { + if (!find_to_loc_median(cluster_from_type, from, &FR_coords, to, b_from, blk_loc_registry)) { /** If there is no legal location in the feasible region, calculate the center of the FR and try to find a legal location * in a range around this center. */ @@ -122,11 +134,11 @@ e_create_move FeasibleRegionMoveGenerator::propose_move(t_pl_blocks_to_be_moved& center.y = (FR_coords.ymin + FR_coords.ymax) / 2; // TODO: Currently, we don't move blocks between different types of layers center.layer = from.layer; - if (!find_to_loc_centroid(cluster_from_type, from, center, range_limiters, to, b_from)) + if (!find_to_loc_centroid(cluster_from_type, from, center, range_limiters, to, b_from, blk_loc_registry)) return e_create_move::ABORT; } - e_create_move create_move = ::create_move(blocks_affected, b_from, to); + e_create_move create_move = ::create_move(blocks_affected, b_from, to, blk_loc_registry); //Check that all the blocks affected by the move would still be in a legal floorplan region after the swap if (!floorplan_legal(blocks_affected)) { @@ -134,4 +146,4 @@ e_create_move FeasibleRegionMoveGenerator::propose_move(t_pl_blocks_to_be_moved& } return create_move; -} +} \ No newline at end of file diff --git a/vpr/src/place/feasible_region_move_generator.h b/vpr/src/place/feasible_region_move_generator.h index 0f635c00a57..1d0e3a9224e 100644 --- a/vpr/src/place/feasible_region_move_generator.h +++ b/vpr/src/place/feasible_region_move_generator.h @@ -19,7 +19,16 @@ * */ class FeasibleRegionMoveGenerator : public MoveGenerator { - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, t_propose_action& proposed_action, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) override; + public: + FeasibleRegionMoveGenerator() = delete; + explicit FeasibleRegionMoveGenerator(PlacerState& placer_state); + + private: + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, + t_propose_action& proposed_action, + float rlim, + const t_placer_opts& placer_opts, + const PlacerCriticalities* criticalities) override; }; #endif diff --git a/vpr/src/place/initial_noc_placement.cpp b/vpr/src/place/initial_noc_placement.cpp index 1170062ccc2..9aa14b561bf 100644 --- a/vpr/src/place/initial_noc_placement.cpp +++ b/vpr/src/place/initial_noc_placement.cpp @@ -1,5 +1,7 @@ #include "initial_noc_placment.h" + +#include "vpr_types.h" #include "initial_placement.h" #include "noc_place_utils.h" #include "noc_place_checkpoint.h" @@ -31,8 +33,11 @@ static bool accept_noc_swap(double delta_cost, double prob); * @brief Places a constrained NoC router within its partition region. * * @param router_blk_id NoC router cluster block ID + * @param blk_loc_registry Placement block location information. To be + * filled with the location where pl_macro is placed. */ -static void place_constrained_noc_router(ClusterBlockId router_blk_id); +static void place_constrained_noc_router(ClusterBlockId router_blk_id, + BlkLocRegistry& blk_loc_registry); /** * @brief Randomly places unconstrained NoC routers. @@ -40,16 +45,22 @@ static void place_constrained_noc_router(ClusterBlockId router_blk_id); * @param unfixed_routers Contains the cluster block ID for all unconstrained * NoC routers. * @param seed Used for shuffling NoC routers. + * @param blk_loc_registry Placement block location information. To be filled + * with the location where pl_macro is placed. */ static void place_noc_routers_randomly(std::vector& unfixed_routers, - int seed); + int seed, + BlkLocRegistry& blk_loc_registry); /** * @brief Runs a simulated annealing optimizer for NoC routers. * * @param noc_opts Contains weighting factors for NoC cost terms. + * @param blk_loc_registry Placement block location information. + * To be filled with the location where pl_macro is placed. */ -static void noc_routers_anneal(const t_noc_opts& noc_opts); +static void noc_routers_anneal(const t_noc_opts& noc_opts, + BlkLocRegistry& blk_loc_registry); /** * @brief Returns the compressed grid of NoC. @@ -88,7 +99,8 @@ static bool accept_noc_swap(double delta_cost, double prob) { } } -static void place_constrained_noc_router(ClusterBlockId router_blk_id) { +static void place_constrained_noc_router(ClusterBlockId router_blk_id, + BlkLocRegistry& blk_loc_registry) { auto& cluster_ctx = g_vpr_ctx.clustering(); const auto& floorplanning_ctx = g_vpr_ctx.floorplanning(); @@ -104,11 +116,11 @@ static void place_constrained_noc_router(ClusterBlockId router_blk_id) { bool macro_placed = false; for (int i_try = 0; i_try < MAX_NUM_TRIES_TO_PLACE_MACROS_RANDOMLY && !macro_placed; i_try++) { - macro_placed = try_place_macro_randomly(pl_macro, pr, block_type, FREE); + macro_placed = try_place_macro_randomly(pl_macro, pr, block_type, e_pad_loc_type::FREE, blk_loc_registry); } if (!macro_placed) { - macro_placed = try_place_macro_exhaustively(pl_macro, pr, block_type, FREE); + macro_placed = try_place_macro_exhaustively(pl_macro, pr, block_type, e_pad_loc_type::FREE, blk_loc_registry); } if (!macro_placed) { @@ -116,10 +128,14 @@ static void place_constrained_noc_router(ClusterBlockId router_blk_id) { } } -static void place_noc_routers_randomly(std::vector& unfixed_routers, int seed) { - auto& place_ctx = g_vpr_ctx.placement(); - auto& noc_ctx = g_vpr_ctx.noc(); - auto& device_ctx = g_vpr_ctx.device(); +static void place_noc_routers_randomly(std::vector& unfixed_routers, + int seed, + BlkLocRegistry& blk_loc_registry) { + const auto& compressed_grids = g_vpr_ctx.placement().compressed_block_grids; + const auto& noc_ctx = g_vpr_ctx.noc(); + const auto& cluster_ctx = g_vpr_ctx.clustering(); + const auto& device_ctx = g_vpr_ctx.device(); + const GridBlock& grid_blocks = blk_loc_registry.grid_blocks(); /* * Unconstrained NoC routers are placed randomly, then NoC cost is optimized using simulated annealing. @@ -142,8 +158,11 @@ static void place_noc_routers_randomly(std::vector& unfixed_rout vtr::RandState rand_state = seed; vtr::shuffle(noc_phy_routers.begin(), noc_phy_routers.end(), rand_state); + // Get the logical block type for router + const auto router_block_type = cluster_ctx.clb_nlist.block_type(noc_ctx.noc_traffic_flows_storage.get_router_clusters_in_netlist()[0]); + // Get the compressed grid for NoC - const auto& compressed_noc_grid = get_compressed_noc_grid(); + const auto& compressed_noc_grid = compressed_grids[router_block_type->index]; // Iterate over shuffled physical routers to place logical routers // Since physical routers are shuffled, router placement would be random @@ -157,7 +176,7 @@ static void place_noc_routers_randomly(std::vector& unfixed_rout t_pl_loc loc(router_phy_loc, sub_tile); - if (place_ctx.grid_blocks.is_sub_tile_empty(router_phy_loc, sub_tile)) { + if (grid_blocks.is_sub_tile_empty(router_phy_loc, sub_tile)) { // Pick one of the unplaced routers ClusterBlockId logical_router_bid = unfixed_routers.back(); unfixed_routers.pop_back(); @@ -169,7 +188,7 @@ static void place_noc_routers_randomly(std::vector& unfixed_rout t_pl_macro pl_macro; pl_macro.members.push_back(macro_member); - bool legal = try_place_macro(pl_macro, loc); + bool legal = try_place_macro(pl_macro, loc, blk_loc_registry); if (!legal) { VPR_FATAL_ERROR(VPR_ERROR_PLACE, "Could not place a router cluster into an empty physical router."); } @@ -182,8 +201,10 @@ static void place_noc_routers_randomly(std::vector& unfixed_rout } // end for of random router placement } -static void noc_routers_anneal(const t_noc_opts& noc_opts) { +static void noc_routers_anneal(const t_noc_opts& noc_opts, + BlkLocRegistry& blk_loc_registry) { auto& noc_ctx = g_vpr_ctx.noc(); + const auto& block_locs = blk_loc_registry.block_locs(); // Only NoC related costs are considered t_placer_costs costs; @@ -240,17 +261,16 @@ static void noc_routers_anneal(const t_noc_opts& noc_opts) { // Generate and evaluate router moves for (int i_move = 0; i_move < N_MOVES; i_move++) { - e_create_move create_move_outcome = e_create_move::ABORT; blocks_affected.clear_move_blocks(); // Shrink the range limit over time float r_lim_decayed = 1.0f + (N_MOVES - i_move) * (max_r_lim / N_MOVES); - create_move_outcome = propose_router_swap(blocks_affected, r_lim_decayed); + e_create_move create_move_outcome = propose_router_swap(blocks_affected, r_lim_decayed, blk_loc_registry); if (create_move_outcome != e_create_move::ABORT) { - apply_move_blocks(blocks_affected); + apply_move_blocks(blocks_affected, blk_loc_registry); NocCostTerms noc_delta_c; - find_affected_noc_routers_and_update_noc_costs(blocks_affected, noc_delta_c); + find_affected_noc_routers_and_update_noc_costs(blocks_affected, noc_delta_c, block_locs); double delta_cost = calculate_noc_cost(noc_delta_c, costs.noc_cost_norm_factors, noc_opts); double prob = starting_prob - i_move * prob_step; @@ -258,28 +278,31 @@ static void noc_routers_anneal(const t_noc_opts& noc_opts) { if (move_accepted) { costs.cost += delta_cost; - commit_move_blocks(blocks_affected); + commit_move_blocks(blocks_affected, blk_loc_registry.mutable_grid_blocks()); commit_noc_costs(); costs += noc_delta_c; // check if the current placement is better than the stored checkpoint if (costs.cost < checkpoint.get_cost() || !checkpoint.is_valid()) { - checkpoint.save_checkpoint(costs.cost); + checkpoint.save_checkpoint(costs.cost, block_locs); } } else { // The proposed move is rejected - revert_move_blocks(blocks_affected); - revert_noc_traffic_flow_routes(blocks_affected); + revert_move_blocks(blocks_affected, blk_loc_registry); + revert_noc_traffic_flow_routes(blocks_affected, block_locs); } } } if (checkpoint.get_cost() < costs.cost) { - checkpoint.restore_checkpoint(costs); + checkpoint.restore_checkpoint(costs, blk_loc_registry); } } -void initial_noc_placement(const t_noc_opts& noc_opts, const t_placer_opts& placer_opts) { +void initial_noc_placement(const t_noc_opts& noc_opts, + const t_placer_opts& placer_opts, + BlkLocRegistry& blk_loc_registry) { vtr::ScopedStartFinishTimer timer("Initial NoC Placement"); auto& noc_ctx = g_vpr_ctx.noc(); + const auto& block_locs = blk_loc_registry.block_locs(); // Get all the router clusters const std::vector& router_blk_ids = noc_ctx.noc_traffic_flows_storage.get_router_clusters_in_netlist(); @@ -289,28 +312,28 @@ void initial_noc_placement(const t_noc_opts& noc_opts, const t_placer_opts& plac // Check for floorplanning constraints and place constrained NoC routers for (const ClusterBlockId router_blk_id : router_blk_ids) { // The block is fixed and was placed in mark_fixed_blocks() - if (is_block_placed((router_blk_id))) { + if (is_block_placed(router_blk_id, block_locs)) { continue; } if (is_cluster_constrained(router_blk_id)) { - place_constrained_noc_router(router_blk_id); + place_constrained_noc_router(router_blk_id, blk_loc_registry); } else { unfixed_routers.push_back(router_blk_id); } } // Place unconstrained NoC routers randomly - place_noc_routers_randomly(unfixed_routers, placer_opts.seed); + place_noc_routers_randomly(unfixed_routers, placer_opts.seed, blk_loc_registry); // populate internal data structures to maintain route, bandwidth usage, and latencies - initial_noc_routing({}); + initial_noc_routing({}, block_locs); // Run the simulated annealing optimizer for NoC routers - noc_routers_anneal(noc_opts); + noc_routers_anneal(noc_opts, blk_loc_registry); // check if there is any cycles - bool has_cycle = noc_routing_has_cycle(); + bool has_cycle = noc_routing_has_cycle(block_locs); if (has_cycle) { VPR_FATAL_ERROR(VPR_ERROR_PLACE, "At least one cycle was found in NoC channel dependency graph. This may cause a deadlock " diff --git a/vpr/src/place/initial_noc_placment.h b/vpr/src/place/initial_noc_placment.h index 7727f15f6aa..3a37f95969c 100644 --- a/vpr/src/place/initial_noc_placment.h +++ b/vpr/src/place/initial_noc_placment.h @@ -1,15 +1,22 @@ -#ifndef VTR_INITIAL_NOC_PLACMENT_H -#define VTR_INITIAL_NOC_PLACMENT_H +#ifndef VTR_INITIAL_NOC_PLACEMENT_H +#define VTR_INITIAL_NOC_PLACEMENT_H -#include "vpr_types.h" +struct t_noc_opts; +struct t_placer_opts; +class BlkLocRegistry; /** * @brief Randomly places NoC routers, then runs a quick simulated annealing * to minimize NoC costs. * * @param noc_opts NoC-related options. Used to calculate NoC-related costs. + * @param placer_opts Contain the placement algorithm options including the seed. + * @param blk_loc_registry Placement block location information. To be filled + * with the location where pl_macro is placed. */ -void initial_noc_placement(const t_noc_opts& noc_opts, const t_placer_opts& placer_opts); +void initial_noc_placement(const t_noc_opts& noc_opts, + const t_placer_opts& placer_opts, + BlkLocRegistry& blk_loc_registry); -#endif //VTR_INITIAL_NOC_PLACMENT_H +#endif //VTR_INITIAL_NOC_PLACEMENT_H diff --git a/vpr/src/place/initial_placement.cpp b/vpr/src/place/initial_placement.cpp index f7644a2a808..8636de52759 100644 --- a/vpr/src/place/initial_placement.cpp +++ b/vpr/src/place/initial_placement.cpp @@ -1,6 +1,7 @@ #include "vtr_memory.h" #include "vtr_random.h" #include "vtr_time.h" +#include "vpr_types.h" #include "globals.h" #include "read_place.h" @@ -12,9 +13,9 @@ #include "move_utils.h" #include "region.h" #include "directed_moves_util.h" -#include "vpr_types.h" #include "echo_files.h" + #include #include #include @@ -36,15 +37,20 @@ static constexpr int SORT_WEIGHT_PER_TILES_OUTSIDE_OF_PR = 100; * @brief Set chosen grid locations to EMPTY block id before each placement iteration * * @param unplaced_blk_types_index Block types that their grid locations must be cleared. - * + * @param blk_loc_registry Placement block location information. To be filled with the location + * where pl_macro is placed. */ -static void clear_block_type_grid_locs(const std::unordered_set& unplaced_blk_types_index); +static void clear_block_type_grid_locs(const std::unordered_set& unplaced_blk_types_index, + BlkLocRegistry& blk_loc_registry); /** * @brief Initializes the grid to empty. It also initialized the location for * all blocks to unplaced. + * + * @param blk_loc_registry Placement block location information. To be filled with the location + * where pl_macro is placed. */ -static void clear_all_grid_locs(); +static void clear_all_grid_locs(BlkLocRegistry& blk_loc_registry); /** * @brief Control routine for placing a macro. @@ -61,14 +67,17 @@ static void clear_all_grid_locs(); * @param pad_loc_type Used to check whether an io block needs to be marked as fixed. * @param blk_types_empty_locs_in_grid First location (lowest y) and number of remaining blocks in each column for the blk_id type. * @param block_scores The block_scores (ranking of what to place next) for unplaced blocks connected to this macro should be updated. + * @param blk_loc_registry Placement block location information. To be filled with the location + * where pl_macro is placed. * * @return true if macro was placed, false if not. */ static bool place_macro(int macros_max_num_tries, const t_pl_macro& pl_macro, - enum e_pad_loc_type pad_loc_type, + e_pad_loc_type pad_loc_type, std::vector* blk_types_empty_locs_in_grid, - vtr::vector& block_scores); + vtr::vector& block_scores, + BlkLocRegistry& blk_loc_registry); /* * Assign scores to each block based on macro size and floorplanning constraints. @@ -79,14 +88,16 @@ static vtr::vector assign_block_scores(); /** * @brief Tries to find y coordinate for macro head location based on macro direction - * * * @param first_macro_loc The first available location that can place the macro blocks. * @param pl_macro The macro to be placed. + * @param blk_loc_registry Placement block location information. To be filled with the location + * where pl_macro is placed. * * @return y coordinate of the location that macro head should be placed */ -static int get_y_loc_based_on_macro_direction(t_grid_empty_locs_block_type first_macro_loc, const t_pl_macro& pl_macro); +static int get_y_loc_based_on_macro_direction(t_grid_empty_locs_block_type first_macro_loc, + const t_pl_macro& pl_macro); /** * @brief Tries to get the first available location of a specific block type that can accommodate macro blocks @@ -128,8 +139,13 @@ static std::vector init_blk_types_empty_locations( * @param pl_macro The macro to be fixed. * @param loc The location at which the head of the macro is placed. * @param pad_loc_type Used to check whether an io block needs to be marked as fixed. + * @param block_locs Clustered block locations used to mark the IO blocks that are to be placed + * randomly as fixed. */ -static inline void fix_IO_block_types(const t_pl_macro& pl_macro, t_pl_loc loc, enum e_pad_loc_type pad_loc_type); +static inline void fix_IO_block_types(const t_pl_macro& pl_macro, + t_pl_loc loc, + e_pad_loc_type pad_loc_type, + vtr::vector_map& block_locs); /** * @brief Determine whether a specific macro can be placed in a specific location. @@ -150,10 +166,14 @@ static bool is_loc_legal(const t_pl_loc& loc, * * @param pl_macro The macro to be placed. * @param centroid specified location (x,y,subtile) for the pl_macro head member. + * @param blk_loc_registry Placement block location information. To be filled with the location + * where pl_macro is placed. * * @return a vector of blocks that are connected to this block but not yet placed so their scores can later be updated. */ -static std::vector find_centroid_loc(const t_pl_macro& pl_macro, t_pl_loc& centroid); +static std::vector find_centroid_loc(const t_pl_macro& pl_macro, + t_pl_loc& centroid, + const BlkLocRegistry& blk_loc_registry); /** * @brief Tries to find a nearest location to the centroid location if calculated centroid location is not legal or is occupied. @@ -161,10 +181,15 @@ static std::vector find_centroid_loc(const t_pl_macro& pl_macro, * @param centroid_loc Calculated location in try_centroid_placement function for the block. * @param block_type Logical block type of the macro blocks. * @param search_for_empty If set, the function tries to find an empty location. + * @param blk_loc_registry Placement block location information. To be filled with the location + * where pl_macro is placed. * * @return true if the function can find any location near the centroid one, false otherwise. */ -static bool find_centroid_neighbor(t_pl_loc& centroid_loc, t_logical_block_type_ptr block_type, bool search_for_empty); +static bool find_centroid_neighbor(t_pl_loc& centroid_loc, + t_logical_block_type_ptr block_type, + bool search_for_empty, + const BlkLocRegistry& blk_loc_registry); /** * @brief tries to place a macro at a centroid location of its placed connections. @@ -174,15 +199,18 @@ static bool find_centroid_neighbor(t_pl_loc& centroid_loc, t_logical_block_type_ * constrained. * @param block_type Logical block type of the macro blocks. * @param pad_loc_type Used to check whether an io block needs to be marked as fixed. - * @param block_scores The block_scores (ranking of what to place next) for unplaced blocks connected to this macro are updated in this routine. + * @param block_scores The block_scores (ranking of what to place next) for unplaced blocks connected to this macro are updated in this routine. + * @param blk_loc_registry Placement block location information. To be filled with the location + * where pl_macro is placed. * * @return true if the macro gets placed, false if not. */ static bool try_centroid_placement(const t_pl_macro& pl_macro, const PartitionRegion& pr, t_logical_block_type_ptr block_type, - enum e_pad_loc_type pad_loc_type, - vtr::vector& block_scores); + e_pad_loc_type pad_loc_type, + vtr::vector& block_scores, + BlkLocRegistry& blk_loc_registry); /** * @brief Looks for a valid placement location for macro in second iteration, tries to place as many macros as possible in one column @@ -194,47 +222,53 @@ static bool try_centroid_placement(const t_pl_macro& pl_macro, * @param block_type Logical block type of the macro blocks. * @param pad_loc_type Used to check whether an io block needs to be marked as fixed. * @param blk_types_empty_locs_in_grid first location (lowest y) and number of remaining blocks in each column for the blk_id type + * @param blk_loc_registry Placement block location information. To be filled with the location + * where pl_macro is placed. * * @return true if the macro gets placed, false if not. */ static bool try_dense_placement(const t_pl_macro& pl_macro, const PartitionRegion& pr, t_logical_block_type_ptr block_type, - enum e_pad_loc_type pad_loc_type, - std::vector* blk_types_empty_locs_in_grid); + e_pad_loc_type pad_loc_type, + std::vector* blk_types_empty_locs_in_grid, + BlkLocRegistry& blk_loc_registry); /** * @brief Tries for MAX_INIT_PLACE_ATTEMPTS times to place all blocks considering their floorplanning constraints and the device size * * @param pad_loc_type Used to check whether an io block needs to be marked as fixed. * @param constraints_file Used to read block locations if any constraints is available. + * @param blk_loc_registry Placement block location information. To be filled with the location + * where pl_macro is placed. */ static void place_all_blocks(const t_placer_opts& placer_opts, vtr::vector& block_scores, - enum e_pad_loc_type pad_loc_type, - const char* constraints_file); + e_pad_loc_type pad_loc_type, + const char* constraints_file, + BlkLocRegistry& blk_loc_registry); /** * @brief If any blocks remain unplaced after all initial placement iterations, this routine * throws an error indicating that initial placement can not be done with the current device size or * floorplanning constraints. */ -static void check_initial_placement_legality(); +static void check_initial_placement_legality(const vtr::vector_map& block_locs); /** * @brief Fills movable_blocks in global PlacementContext */ -static void alloc_and_load_movable_blocks(); +static void alloc_and_load_movable_blocks(const vtr::vector_map& block_locs); -static void check_initial_placement_legality() { +static void check_initial_placement_legality(const vtr::vector_map& block_locs) { auto& cluster_ctx = g_vpr_ctx.clustering(); auto& place_ctx = g_vpr_ctx.placement(); auto& device_ctx = g_vpr_ctx.device(); int unplaced_blocks = 0; - for (auto blk_id : cluster_ctx.clb_nlist.blocks()) { - if (place_ctx.block_locs[blk_id].loc.x == INVALID_X) { + for (ClusterBlockId blk_id : cluster_ctx.clb_nlist.blocks()) { + if (block_locs[blk_id].loc.x == INVALID_X) { VTR_LOG("Block %s (# %d) of type %s could not be placed during initial placement iteration %d\n", cluster_ctx.clb_nlist.block_name(blk_id).c_str(), blk_id, @@ -252,7 +286,7 @@ static void check_initial_placement_legality() { } for (auto movable_blk_id : place_ctx.movable_blocks) { - if (place_ctx.block_locs[movable_blk_id].is_fixed) { + if (block_locs[movable_blk_id].is_fixed) { VPR_FATAL_ERROR(VPR_ERROR_PLACE, "Fixed block was mistakenly marked as movable during initial placement.\n"); } } @@ -260,7 +294,7 @@ static void check_initial_placement_legality() { for (const auto& logical_block_type : device_ctx.logical_block_types) { const auto& movable_blocks_of_type = place_ctx.movable_blocks_per_type[logical_block_type.index]; for (const auto& movable_blk_id : movable_blocks_of_type) { - if (place_ctx.block_locs[movable_blk_id].is_fixed) { + if (block_locs[movable_blk_id].is_fixed) { VPR_FATAL_ERROR(VPR_ERROR_PLACE, "Fixed block %d of logical type %s was mistakenly marked as movable during initial placement.\n", (size_t)movable_blk_id, logical_block_type.name); } @@ -274,10 +308,9 @@ static void check_initial_placement_legality() { } } -bool is_block_placed(ClusterBlockId blk_id) { - auto& place_ctx = g_vpr_ctx.placement(); - - return (place_ctx.block_locs[blk_id].loc.x != INVALID_X); +bool is_block_placed(ClusterBlockId blk_id, + const vtr::vector_map& block_locs) { + return (block_locs[blk_id].loc.x != INVALID_X); } static bool is_loc_legal(const t_pl_loc& loc, @@ -313,7 +346,10 @@ static bool is_loc_legal(const t_pl_loc& loc, return legal; } -static bool find_centroid_neighbor(t_pl_loc& centroid_loc, t_logical_block_type_ptr block_type, bool search_for_empty) { +static bool find_centroid_neighbor(t_pl_loc& centroid_loc, + t_logical_block_type_ptr block_type, + bool search_for_empty, + const BlkLocRegistry& blk_loc_registry) { const auto& compressed_block_grid = g_vpr_ctx.placement().compressed_block_grids[block_type->index]; const int num_layers = g_vpr_ctx.device().grid.get_num_layers(); const int centroid_loc_layer_num = centroid_loc.layer; @@ -345,9 +381,10 @@ static bool find_centroid_neighbor(t_pl_loc& centroid_loc, t_logical_block_type_ {cx_from, cy_from, layer_from}, search_range, to_compressed_loc, - false, + /*is_median=*/false, centroid_loc_layer_num, - search_for_empty); + search_for_empty, + blk_loc_registry); if (!legal) { return false; @@ -358,20 +395,21 @@ static bool find_centroid_neighbor(t_pl_loc& centroid_loc, t_logical_block_type_ return legal; } -static std::vector find_centroid_loc(const t_pl_macro& pl_macro, t_pl_loc& centroid) { - auto& cluster_ctx = g_vpr_ctx.clustering(); +static std::vector find_centroid_loc(const t_pl_macro& pl_macro, + t_pl_loc& centroid, + const BlkLocRegistry& blk_loc_registry) { + const auto& cluster_ctx = g_vpr_ctx.clustering(); + const auto& block_locs = blk_loc_registry.block_locs(); - t_physical_tile_loc tile_loc; float acc_weight = 0; float acc_x = 0; float acc_y = 0; - int head_layer_num = OPEN; bool find_layer = false; std::vector layer_count(g_vpr_ctx.device().grid.get_num_layers(), 0); ClusterBlockId head_blk = pl_macro.members.at(0).blk_index; // For now, we put the macro in the same layer as the head block - head_layer_num = g_vpr_ctx.placement().block_locs[head_blk].loc.layer; + int head_layer_num = block_locs[head_blk].loc.layer; // If block is placed, we use the layer of the block. Otherwise, the layer will be determined later if (head_layer_num == OPEN) { find_layer = true; @@ -399,18 +437,18 @@ static std::vector find_centroid_loc(const t_pl_macro& pl_macro, if (cluster_ctx.clb_nlist.net_is_ignored(net_id)) { continue; } - for (auto sink_pin_id : cluster_ctx.clb_nlist.net_sinks(net_id)) { + for (ClusterPinId sink_pin_id : cluster_ctx.clb_nlist.net_sinks(net_id)) { /* Ignore if one of the sinks is the block itself*/ if (pin_id == sink_pin_id) continue; - if (!is_block_placed(cluster_ctx.clb_nlist.pin_block(sink_pin_id))) { + if (!is_block_placed(cluster_ctx.clb_nlist.pin_block(sink_pin_id), block_locs)) { //add unplaced block to connected_blocks_to_update vector to update its score later. connected_blocks_to_update.push_back(cluster_ctx.clb_nlist.pin_block(sink_pin_id)); continue; } - get_coordinate_of_pin(sink_pin_id, tile_loc); + t_physical_tile_loc tile_loc = get_coordinate_of_pin(sink_pin_id, blk_loc_registry); if (find_layer) { VTR_ASSERT(tile_loc.layer_num != OPEN); layer_count[tile_loc.layer_num]++; @@ -424,13 +462,13 @@ static std::vector find_centroid_loc(const t_pl_macro& pl_macro, //else the pin is sink --> only care about its driver else { ClusterPinId source_pin = cluster_ctx.clb_nlist.net_driver(net_id); - if (!is_block_placed(cluster_ctx.clb_nlist.pin_block(source_pin))) { + if (!is_block_placed(cluster_ctx.clb_nlist.pin_block(source_pin), block_locs)) { //add unplaced block to connected_blocks_to_update vector to update its score later. connected_blocks_to_update.push_back(cluster_ctx.clb_nlist.pin_block(source_pin)); continue; } - get_coordinate_of_pin(source_pin, tile_loc); + t_physical_tile_loc tile_loc = get_coordinate_of_pin(source_pin, blk_loc_registry); if (find_layer) { VTR_ASSERT(tile_loc.layer_num != OPEN); layer_count[tile_loc.layer_num]++; @@ -460,12 +498,15 @@ static std::vector find_centroid_loc(const t_pl_macro& pl_macro, static bool try_centroid_placement(const t_pl_macro& pl_macro, const PartitionRegion& pr, t_logical_block_type_ptr block_type, - enum e_pad_loc_type pad_loc_type, - vtr::vector& block_scores) { + e_pad_loc_type pad_loc_type, + vtr::vector& block_scores, + BlkLocRegistry& blk_loc_registry) { + auto& block_locs = blk_loc_registry.mutable_block_locs(); + t_pl_loc centroid_loc(OPEN, OPEN, OPEN, OPEN); std::vector unplaced_blocks_to_update_their_score; - unplaced_blocks_to_update_their_score = find_centroid_loc(pl_macro, centroid_loc); + unplaced_blocks_to_update_their_score = find_centroid_loc(pl_macro, centroid_loc, blk_loc_registry); //no suggestion was available for this block type if (!is_loc_on_chip({centroid_loc.x, centroid_loc.y, centroid_loc.layer})) { @@ -476,7 +517,7 @@ static bool try_centroid_placement(const t_pl_macro& pl_macro, //try to find a near location that meet these requirements bool neighbor_legal_loc = false; if (!is_loc_legal(centroid_loc, pr, block_type)) { - neighbor_legal_loc = find_centroid_neighbor(centroid_loc, block_type, false); + neighbor_legal_loc = find_centroid_neighbor(centroid_loc, block_type, false, blk_loc_registry); if (!neighbor_legal_loc) { //no neighbor candidate found return false; } @@ -502,15 +543,13 @@ static bool try_centroid_placement(const t_pl_macro& pl_macro, VTR_ASSERT(width_offset == 0); VTR_ASSERT(height_offset == 0); - bool legal; - - legal = try_place_macro(pl_macro, centroid_loc); + bool legal = try_place_macro(pl_macro, centroid_loc, blk_loc_registry); if (legal) { - fix_IO_block_types(pl_macro, centroid_loc, pad_loc_type); + fix_IO_block_types(pl_macro, centroid_loc, pad_loc_type, block_locs); //after placing the current block, its connections' score must be updated. - for (auto blk_id : unplaced_blocks_to_update_their_score) { + for (ClusterBlockId blk_id : unplaced_blocks_to_update_their_score) { block_scores[blk_id].number_of_placed_connections++; } } @@ -520,10 +559,8 @@ static bool try_centroid_placement(const t_pl_macro& pl_macro, static int get_y_loc_based_on_macro_direction(t_grid_empty_locs_block_type first_macro_loc, const t_pl_macro& pl_macro) { int y = first_macro_loc.first_avail_loc.y; - /* - * if the macro member offset is positive, it means that macro head should be placed at the first location of first_macro_loc. + /* if the macro member offset is positive, it means that macro head should be placed at the first location of first_macro_loc. * otherwise, macro head should be placed at the last available location to ensure macro_can_be_placed can check macro location correctly. - * */ if (pl_macro.members.size() > 1) { if (pl_macro.members.at(1).offset.y < 0) { @@ -605,15 +642,18 @@ static std::vector init_blk_types_empty_locations( return block_type_empty_locs; } -static inline void fix_IO_block_types(const t_pl_macro& pl_macro, t_pl_loc loc, enum e_pad_loc_type pad_loc_type) { +static inline void fix_IO_block_types(const t_pl_macro& pl_macro, + t_pl_loc loc, + e_pad_loc_type pad_loc_type, + vtr::vector_map& block_locs) { const auto& device_ctx = g_vpr_ctx.device(); - auto& place_ctx = g_vpr_ctx.mutable_placement(); + //If the user marked the IO block pad_loc_type as RANDOM, that means it should be randomly //placed and then stay fixed to that location, which is why the macro members are marked as fixed. const auto& type = device_ctx.grid.get_physical_type({loc.x, loc.y, loc.layer}); - if (is_io_type(type) && pad_loc_type == RANDOM) { - for (const auto& pl_macro_member : pl_macro.members) { - place_ctx.block_locs[pl_macro_member.blk_index].is_fixed = true; + if (is_io_type(type) && pad_loc_type == e_pad_loc_type::RANDOM) { + for (const t_pl_macro_member& pl_macro_member : pl_macro.members) { + block_locs[pl_macro_member.blk_index].is_fixed = true; } } } @@ -621,9 +661,9 @@ static inline void fix_IO_block_types(const t_pl_macro& pl_macro, t_pl_loc loc, bool try_place_macro_randomly(const t_pl_macro& pl_macro, const PartitionRegion& pr, t_logical_block_type_ptr block_type, - enum e_pad_loc_type pad_loc_type) { + e_pad_loc_type pad_loc_type, + BlkLocRegistry& blk_loc_registry) { const auto& compressed_block_grid = g_vpr_ctx.placement().compressed_block_grids[block_type->index]; - t_pl_loc loc; /* * Getting various values needed for the find_compatible_compressed_loc_in_range() routine called below. @@ -667,14 +707,18 @@ bool try_place_macro_randomly(const t_pl_macro& pl_macro, min_compressed_loc.y, max_compressed_loc.y, selected_layer, selected_layer}, to_compressed_loc, - false, + /*is_median=*/false, selected_layer, - false); + /*search_for_empty=*/false, + blk_loc_registry); + + if (!legal) { //No valid position found return false; } + t_pl_loc loc; compressed_grid_to_loc(block_type, to_compressed_loc, loc); auto& device_ctx = g_vpr_ctx.device(); @@ -684,10 +728,11 @@ bool try_place_macro_randomly(const t_pl_macro& pl_macro, VTR_ASSERT(width_offset == 0); VTR_ASSERT(height_offset == 0); - legal = try_place_macro(pl_macro, loc); + legal = try_place_macro(pl_macro, loc, blk_loc_registry); if (legal) { - fix_IO_block_types(pl_macro, loc, pad_loc_type); + auto& block_locs = blk_loc_registry.mutable_block_locs(); + fix_IO_block_types(pl_macro, loc, pad_loc_type, block_locs); } return legal; @@ -696,9 +741,11 @@ bool try_place_macro_randomly(const t_pl_macro& pl_macro, bool try_place_macro_exhaustively(const t_pl_macro& pl_macro, const PartitionRegion& pr, t_logical_block_type_ptr block_type, - enum e_pad_loc_type pad_loc_type) { + e_pad_loc_type pad_loc_type, + BlkLocRegistry& blk_loc_registry) { const auto& compressed_block_grid = g_vpr_ctx.placement().compressed_block_grids[block_type->index]; - auto& place_ctx = g_vpr_ctx.mutable_placement(); + auto& block_locs = blk_loc_registry.mutable_block_locs(); + const GridBlock& grid_blocks = blk_loc_registry.grid_blocks(); const std::vector& regions = pr.get_regions(); @@ -744,11 +791,11 @@ bool try_place_macro_exhaustively(const t_pl_macro& pl_macro, int subtile = regions[reg].get_sub_tile(); to_loc.sub_tile = subtile; - if (place_ctx.grid_blocks.block_at_location(to_loc) == EMPTY_BLOCK_ID) { - placed = try_place_macro(pl_macro, to_loc); + if (grid_blocks.block_at_location(to_loc) == ClusterBlockId::INVALID()) { + placed = try_place_macro(pl_macro, to_loc, blk_loc_registry); if (placed) { - fix_IO_block_types(pl_macro, to_loc, pad_loc_type); + fix_IO_block_types(pl_macro, to_loc, pad_loc_type, block_locs); } } } else { @@ -759,10 +806,10 @@ bool try_place_macro_exhaustively(const t_pl_macro& pl_macro, for (int st = st_low; st <= st_high && !placed; st++) { to_loc.sub_tile = st; - if (place_ctx.grid_blocks.block_at_location(to_loc) == EMPTY_BLOCK_ID) { - placed = try_place_macro(pl_macro, to_loc); + if (grid_blocks.block_at_location(to_loc) == ClusterBlockId::INVALID()) { + placed = try_place_macro(pl_macro, to_loc, blk_loc_registry); if (placed) { - fix_IO_block_types(pl_macro, to_loc, pad_loc_type); + fix_IO_block_types(pl_macro, to_loc, pad_loc_type, block_locs); } } } @@ -784,8 +831,9 @@ bool try_place_macro_exhaustively(const t_pl_macro& pl_macro, static bool try_dense_placement(const t_pl_macro& pl_macro, const PartitionRegion& pr, t_logical_block_type_ptr block_type, - enum e_pad_loc_type pad_loc_type, - std::vector* blk_types_empty_locs_in_grid) { + e_pad_loc_type pad_loc_type, + std::vector* blk_types_empty_locs_in_grid, + BlkLocRegistry& blk_loc_registry) { t_pl_loc loc; int column_index = get_blk_type_first_loc(loc, pl_macro, blk_types_empty_locs_in_grid); @@ -801,11 +849,11 @@ static bool try_dense_placement(const t_pl_macro& pl_macro, VTR_ASSERT(width_offset == 0); VTR_ASSERT(height_offset == 0); - bool legal = false; - legal = try_place_macro(pl_macro, loc); + bool legal = try_place_macro(pl_macro, loc, blk_loc_registry); if (legal) { - fix_IO_block_types(pl_macro, loc, pad_loc_type); + auto& block_locs = blk_loc_registry.mutable_block_locs(); + fix_IO_block_types(pl_macro, loc, pad_loc_type, block_locs); } //Dense placement found a legal position for pl_macro; @@ -814,10 +862,13 @@ static bool try_dense_placement(const t_pl_macro& pl_macro, return legal; } -bool try_place_macro(const t_pl_macro& pl_macro, t_pl_loc head_pos) { - auto& place_ctx = g_vpr_ctx.mutable_placement(); +bool try_place_macro(const t_pl_macro& pl_macro, + t_pl_loc head_pos, + BlkLocRegistry& blk_loc_registry) { + bool f_placer_debug = g_vpr_ctx.placement().f_placer_debug; + const GridBlock& grid_blocks = blk_loc_registry.grid_blocks(); - VTR_LOGV_DEBUG(place_ctx.f_placer_debug, "\t\t\t\tTry to place the macro at %dx%dx%dx%d\n", + VTR_LOGV_DEBUG(f_placer_debug, "\t\t\t\tTry to place the macro at %dx%dx%dx%d\n", head_pos.x, head_pos.y, head_pos.sub_tile, @@ -826,38 +877,37 @@ bool try_place_macro(const t_pl_macro& pl_macro, t_pl_loc head_pos) { bool macro_placed = false; // If that location is occupied, do nothing. - if (place_ctx.grid_blocks.block_at_location(head_pos) != EMPTY_BLOCK_ID) { - return (macro_placed); + if (grid_blocks.block_at_location(head_pos)) { + return macro_placed; } - bool mac_can_be_placed = macro_can_be_placed(pl_macro, head_pos, false); + bool mac_can_be_placed = macro_can_be_placed(pl_macro, head_pos, /*check_all_legality=*/false, blk_loc_registry); if (mac_can_be_placed) { // Place down the macro macro_placed = true; - VTR_LOGV_DEBUG(place_ctx.f_placer_debug, "\t\t\t\tMacro is placed at the given location\n"); - for (const auto& pl_macro_member : pl_macro.members) { + VTR_LOGV_DEBUG(f_placer_debug, "\t\t\t\tMacro is placed at the given location\n"); + for (const t_pl_macro_member& pl_macro_member : pl_macro.members) { t_pl_loc member_pos = head_pos + pl_macro_member.offset; - ClusterBlockId iblk = pl_macro_member.blk_index; - - set_block_location(iblk, member_pos); - + blk_loc_registry.set_block_location(iblk, member_pos); } // Finish placing all the members in the macro } - return (macro_placed); + return macro_placed; } static bool place_macro(int macros_max_num_tries, const t_pl_macro& pl_macro, enum e_pad_loc_type pad_loc_type, std::vector* blk_types_empty_locs_in_grid, - vtr::vector& block_scores) { + vtr::vector& block_scores, + BlkLocRegistry& blk_loc_registry) { + const auto& block_locs = blk_loc_registry.block_locs(); ClusterBlockId blk_id = pl_macro.members[0].blk_index; VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, "\t\tHead of the macro is Block %d\n", size_t(blk_id)); - if (is_block_placed(blk_id)) { + if (is_block_placed(blk_id, block_locs)) { VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, "\t\t\tBlock is already placed\n", size_t(blk_id)); return true; } @@ -881,18 +931,18 @@ static bool place_macro(int macros_max_num_tries, //We need to place densely in second iteration to be able to find a legal initial placement solution if (blk_types_empty_locs_in_grid != nullptr && !blk_types_empty_locs_in_grid->empty()) { VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, "\t\t\tTry dense placement\n"); - macro_placed = try_dense_placement(pl_macro, pr, block_type, pad_loc_type, blk_types_empty_locs_in_grid); + macro_placed = try_dense_placement(pl_macro, pr, block_type, pad_loc_type, blk_types_empty_locs_in_grid, blk_loc_registry); } if (!macro_placed) { VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, "\t\t\tTry centroid placement\n"); - macro_placed = try_centroid_placement(pl_macro, pr, block_type, pad_loc_type, block_scores); + macro_placed = try_centroid_placement(pl_macro, pr, block_type, pad_loc_type, block_scores, blk_loc_registry); } VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, "\t\t\tMacro is placed: %d\n", macro_placed); // If macro is not placed yet, try to place the macro randomly for the max number of random tries for (int itry = 0; itry < macros_max_num_tries && !macro_placed; itry++) { VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, "\t\t\tTry random place iter: %d\n", itry); - macro_placed = try_place_macro_randomly(pl_macro, pr, block_type, pad_loc_type); + macro_placed = try_place_macro_randomly(pl_macro, pr, block_type, pad_loc_type, blk_loc_registry); } // Finished all tries if (!macro_placed) { @@ -904,7 +954,7 @@ static bool place_macro(int macros_max_num_tries, // Exhaustive placement of carry macros VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, "\t\t\tTry exhaustive placement\n"); - macro_placed = try_place_macro_exhaustively(pl_macro, pr, block_type, pad_loc_type); + macro_placed = try_place_macro_exhaustively(pl_macro, pr, block_type, pad_loc_type, blk_loc_registry); } return macro_placed; } @@ -955,10 +1005,11 @@ static vtr::vector assign_block_scores() { } -static void place_all_blocks([[maybe_unused]] const t_placer_opts& placer_opts, +static void place_all_blocks(const t_placer_opts& placer_opts, vtr::vector& block_scores, enum e_pad_loc_type pad_loc_type, - const char* constraints_file) { + const char* constraints_file, + BlkLocRegistry& blk_loc_registry) { auto& cluster_ctx = g_vpr_ctx.clustering(); auto& place_ctx = g_vpr_ctx.placement(); auto& device_ctx = g_vpr_ctx.device(); @@ -981,12 +1032,12 @@ static void place_all_blocks([[maybe_unused]] const t_placer_opts& placer_opts, for (auto iter_no = 0; iter_no < MAX_INIT_PLACE_ATTEMPTS; iter_no++) { //clear grid for a new placement iteration - clear_block_type_grid_locs(unplaced_blk_type_in_curr_itr); + clear_block_type_grid_locs(unplaced_blk_type_in_curr_itr, blk_loc_registry); unplaced_blk_type_in_curr_itr.clear(); // read the constraint file if the user has provided one and this is not the first attempt if (strlen(constraints_file) != 0 && iter_no != 0) { - read_constraints(constraints_file); + read_constraints(constraints_file, blk_loc_registry); } //resize the vector to store unplaced block types empty locations @@ -1011,12 +1062,14 @@ static void place_all_blocks([[maybe_unused]] const t_placer_opts& placer_opts, #ifdef VTR_ENABLE_DEBUG_LOGGING enable_placer_debug(placer_opts, blk_id); +#else + (void)placer_opts; #endif VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, "Popped Block %d\n", size_t(blk_id)); blocks_placed_since_heap_update++; - bool block_placed = place_one_block(blk_id, pad_loc_type, &blk_types_empty_locs_in_grid[blk_id_type->index], &block_scores); + bool block_placed = place_one_block(blk_id, pad_loc_type, &blk_types_empty_locs_in_grid[blk_id_type->index], &block_scores, blk_loc_registry); //update heap based on update_heap_freq calculated above if (blocks_placed_since_heap_update % (update_heap_freq) == 0) { @@ -1044,7 +1097,7 @@ static void place_all_blocks([[maybe_unused]] const t_placer_opts& placer_opts, } //loop over block types with macro that have failed to be placed, and add their locations in grid for the next iteration - for (auto itype : unplaced_blk_type_in_curr_itr) { + for (int itype : unplaced_blk_type_in_curr_itr) { blk_types_empty_locs_in_grid[itype] = init_blk_types_empty_locations(itype); } @@ -1053,8 +1106,13 @@ static void place_all_blocks([[maybe_unused]] const t_placer_opts& placer_opts, } } -static void clear_block_type_grid_locs(const std::unordered_set& unplaced_blk_types_index) { +static void clear_block_type_grid_locs(const std::unordered_set& unplaced_blk_types_index, + BlkLocRegistry& blk_loc_registry) { auto& device_ctx = g_vpr_ctx.device(); + auto& cluster_ctx = g_vpr_ctx.clustering(); + auto& grid_blocks = blk_loc_registry.mutable_grid_blocks(); + auto& block_locs = blk_loc_registry.mutable_block_locs(); + bool clear_all_block_types = false; /* check if all types should be cleared @@ -1065,24 +1123,18 @@ static void clear_block_type_grid_locs(const std::unordered_set& unplaced_b clear_all_block_types = true; } - auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.mutable_placement(); - int itype; - /* We'll use the grid to record where everything goes. Initialize to the grid has no * blocks placed anywhere. */ for (int layer_num = 0; layer_num < device_ctx.grid.get_num_layers(); layer_num++) { for (int i = 0; i < (int)device_ctx.grid.width(); i++) { for (int j = 0; j < (int)device_ctx.grid.height(); j++) { - const auto& type = device_ctx.grid.get_physical_type({i, j, layer_num}); - itype = type->index; + const t_physical_tile_type_ptr type = device_ctx.grid.get_physical_type({i, j, layer_num}); + int itype = type->index; if (clear_all_block_types || unplaced_blk_types_index.count(itype)) { - place_ctx.grid_blocks.set_usage({i, j, layer_num}, 0); + grid_blocks.set_usage({i, j, layer_num}, 0); for (int k = 0; k < device_ctx.physical_tile_types[itype].capacity; k++) { - if (place_ctx.grid_blocks.block_at_location({i, j, k, layer_num}) != INVALID_BLOCK_ID) { - place_ctx.grid_blocks.set_block_at_location({i, j, k, layer_num}, EMPTY_BLOCK_ID); - } + grid_blocks.set_block_at_location({i, j, k, layer_num}, ClusterBlockId::INVALID()); } } } @@ -1090,15 +1142,15 @@ static void clear_block_type_grid_locs(const std::unordered_set& unplaced_b } /* Similarly, mark all blocks as not being placed yet. */ - for (auto blk_id : cluster_ctx.clb_nlist.blocks()) { - auto blk_type = cluster_ctx.clb_nlist.block_type(blk_id)->index; + for (ClusterBlockId blk_id : cluster_ctx.clb_nlist.blocks()) { + int blk_type = cluster_ctx.clb_nlist.block_type(blk_id)->index; if (clear_all_block_types || unplaced_blk_types_index.count(blk_type)) { - place_ctx.block_locs[blk_id].loc = t_pl_loc(); + block_locs[blk_id].loc = t_pl_loc(); } } } -static void clear_all_grid_locs() { +static void clear_all_grid_locs(BlkLocRegistry& blk_loc_registry) { auto& device_ctx = g_vpr_ctx.device(); std::unordered_set blk_types_to_be_cleared; @@ -1106,53 +1158,53 @@ static void clear_all_grid_locs() { // Insert all the logical block types into the set except the empty type // clear_block_type_grid_locs does not expect empty type to be among given types - for (const auto& logical_type : logical_block_types) { + for (const t_logical_block_type& logical_type : logical_block_types) { if (!is_empty_type(&logical_type)) { blk_types_to_be_cleared.insert(logical_type.index); } } - clear_block_type_grid_locs(blk_types_to_be_cleared); + clear_block_type_grid_locs(blk_types_to_be_cleared, blk_loc_registry); } -bool place_one_block(const ClusterBlockId& blk_id, +bool place_one_block(const ClusterBlockId blk_id, enum e_pad_loc_type pad_loc_type, std::vector* blk_types_empty_locs_in_grid, - vtr::vector* block_scores) { - auto& place_ctx = g_vpr_ctx.placement(); + vtr::vector* block_scores, + BlkLocRegistry& blk_loc_registry) { + const std::vector& pl_macros = g_vpr_ctx.placement().pl_macros; + const auto& block_locs = blk_loc_registry.block_locs(); //Check if block has already been placed - if (is_block_placed(blk_id)) { + if (is_block_placed(blk_id, block_locs)) { return true; } bool placed_macro = false; //Lookup to see if the block is part of a macro - t_pl_macro pl_macro; int imacro; - get_imacro_from_iblk(&imacro, blk_id, place_ctx.pl_macros); + get_imacro_from_iblk(&imacro, blk_id, pl_macros); if (imacro != -1) { //If the block belongs to a macro, pass that macro to the placement routines VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, "\tBelongs to a macro %d\n", imacro); - pl_macro = place_ctx.pl_macros[imacro]; - placed_macro = place_macro(MAX_NUM_TRIES_TO_PLACE_MACROS_RANDOMLY, pl_macro, pad_loc_type, blk_types_empty_locs_in_grid, (*block_scores)); + const t_pl_macro& pl_macro = pl_macros[imacro]; + placed_macro = place_macro(MAX_NUM_TRIES_TO_PLACE_MACROS_RANDOMLY, pl_macro, pad_loc_type, blk_types_empty_locs_in_grid, *block_scores, blk_loc_registry); } else { //If it does not belong to a macro, create a macro with the one block and then pass to the placement routines //This is done so that the initial placement flow can be the same whether the block belongs to a macro or not t_pl_macro_member macro_member; - t_pl_offset block_offset(0, 0, 0, 0); - macro_member.blk_index = blk_id; - macro_member.offset = block_offset; + macro_member.offset = t_pl_offset(0, 0, 0, 0); + t_pl_macro pl_macro; pl_macro.members.push_back(macro_member); - placed_macro = place_macro(MAX_NUM_TRIES_TO_PLACE_MACROS_RANDOMLY, pl_macro, pad_loc_type, blk_types_empty_locs_in_grid, (*block_scores)); + placed_macro = place_macro(MAX_NUM_TRIES_TO_PLACE_MACROS_RANDOMLY, pl_macro, pad_loc_type, blk_types_empty_locs_in_grid, *block_scores, blk_loc_registry); } return placed_macro; } -static void alloc_and_load_movable_blocks() { +static void alloc_and_load_movable_blocks(const vtr::vector_map& block_locs) { auto& place_ctx = g_vpr_ctx.mutable_placement(); const auto& cluster_ctx = g_vpr_ctx.clustering(); const auto& device_ctx = g_vpr_ctx.device(); @@ -1165,8 +1217,8 @@ static void alloc_and_load_movable_blocks() { // iterate over all clustered blocks and store block ids of movable ones - for (auto blk_id : cluster_ctx.clb_nlist.blocks()) { - const auto& loc = place_ctx.block_locs[blk_id]; + for (ClusterBlockId blk_id : cluster_ctx.clb_nlist.blocks()) { + const auto& loc = block_locs[blk_id]; if (!loc.is_fixed) { place_ctx.movable_blocks.push_back(blk_id); @@ -1178,13 +1230,15 @@ static void alloc_and_load_movable_blocks() { void initial_placement(const t_placer_opts& placer_opts, const char* constraints_file, - const t_noc_opts& noc_opts) { + const t_noc_opts& noc_opts, + BlkLocRegistry& blk_loc_registry) { vtr::ScopedStartFinishTimer timer("Initial Placement"); + auto& block_locs = blk_loc_registry.mutable_block_locs(); /* Initialize the grid blocks to empty. * Initialize all the blocks to unplaced. */ - clear_all_grid_locs(); + clear_all_grid_locs(blk_loc_registry); /* Go through cluster blocks to calculate the tightest placement * floorplan constraint for each constrained block @@ -1192,9 +1246,8 @@ void initial_placement(const t_placer_opts& placer_opts, propagate_place_constraints(); /*Mark the blocks that have already been locked to one spot via floorplan constraints - * as fixed, so they do not get moved during initial placement or later during the simulated annealing stage of placement - */ - mark_fixed_blocks(); + * as fixed, so they do not get moved during initial placement or later during the simulated annealing stage of placement*/ + mark_fixed_blocks(blk_loc_registry); // Compute and store compressed floorplanning constraints alloc_and_load_compressed_cluster_constraints(); @@ -1202,16 +1255,18 @@ void initial_placement(const t_placer_opts& placer_opts, // read the constraint file and place fixed blocks if (strlen(constraints_file) != 0) { - read_constraints(constraints_file); + read_constraints(constraints_file, blk_loc_registry); } + + if(!placer_opts.read_initial_place_file.empty()) { const auto& grid = g_vpr_ctx.device().grid; - read_place(nullptr, placer_opts.read_initial_place_file.c_str(), false, grid); + read_place(nullptr, placer_opts.read_initial_place_file.c_str(), blk_loc_registry, false, grid); } else { if (noc_opts.noc) { // NoC routers are placed before other blocks - initial_noc_placement(noc_opts, placer_opts); + initial_noc_placement(noc_opts, placer_opts, blk_loc_registry); propagate_place_constraints(); } @@ -1219,13 +1274,13 @@ void initial_placement(const t_placer_opts& placer_opts, vtr::vector block_scores = assign_block_scores(); //Place all blocks - place_all_blocks(placer_opts, block_scores, placer_opts.pad_loc_type, constraints_file); + place_all_blocks(placer_opts, block_scores, placer_opts.pad_loc_type, constraints_file, blk_loc_registry); } - alloc_and_load_movable_blocks(); + alloc_and_load_movable_blocks(block_locs); // ensure all blocks are placed and that NoC routing has no cycles - check_initial_placement_legality(); + check_initial_placement_legality(block_locs); //#ifdef VERBOSE // VTR_LOG("At end of initial_placement.\n"); diff --git a/vpr/src/place/initial_placement.h b/vpr/src/place/initial_placement.h index 44a3772087d..bb1d413bd64 100644 --- a/vpr/src/place/initial_placement.h +++ b/vpr/src/place/initial_placement.h @@ -1,10 +1,13 @@ #ifndef VPR_INITIAL_PLACEMENT_H #define VPR_INITIAL_PLACEMENT_H -#include "vpr_types.h" + #include "place_macro.h" #include "partition_region.h" +#include "vpr_types.h" +#include "vtr_vector_map.h" + /* The maximum number of tries when trying to place a macro at a * * random location before trying exhaustive placement - find the first * * legal position and place it during initial placement. */ @@ -30,7 +33,7 @@ struct t_block_score { /** * @brief keeps track of available empty locations of a specific block type during initial placement. - * Used to densly place macros that failed to be placed in the first initial placement iteration (random placement) + * Used to densely place macros that failed to be placed in the first initial placement iteration (random placement) */ struct t_grid_empty_locs_block_type { /* @@ -49,17 +52,21 @@ struct t_grid_empty_locs_block_type { * @brief tries to place a macro at a random location * * @param pl_macro The macro to be placed. - * @param pr The PartitionRegion of the macro - represents its floorplanning constraints, is the size of the whole chip if the macro is not - * constrained. + * @param pr The PartitionRegion of the macro - represents its floorplanning constraints, + * is the size of the whole chip if the macro is not constrained. * @param block_type Logical block type of the macro blocks. * @param pad_loc_type Used to check whether an io block needs to be marked as fixed. + * @param blk_loc_registry Placement block location information. To be filled with the location + * where pl_macro is placed. * * @return true if the macro gets placed, false if not. */ bool try_place_macro_randomly(const t_pl_macro& pl_macro, const PartitionRegion& pr, t_logical_block_type_ptr block_type, - enum e_pad_loc_type pad_loc_type); + e_pad_loc_type pad_loc_type, + BlkLocRegistry& blk_loc_registry); + /** * @brief Looks for a valid placement location for macro exhaustively once the maximum number of random locations have been tried. @@ -69,13 +76,16 @@ bool try_place_macro_randomly(const t_pl_macro& pl_macro, * constrained. * @param block_type Logical block type of the macro blocks. * @param pad_loc_type Used to check whether an io block needs to be marked as fixed. + * @param blk_loc_registry Placement block location information. To be filled with the location + * where pl_macro is placed. * * @return true if the macro gets placed, false if not. */ bool try_place_macro_exhaustively(const t_pl_macro& pl_macro, const PartitionRegion& pr, t_logical_block_type_ptr block_type, - enum e_pad_loc_type pad_loc_type); + e_pad_loc_type pad_loc_type, + BlkLocRegistry& blk_loc_registry); /** * @brief Places the macro if the head position passed in is legal, and all the resulting @@ -83,19 +93,26 @@ bool try_place_macro_exhaustively(const t_pl_macro& pl_macro, * * @param pl_macro The macro to be placed. * @param head_pos The location of the macro head member. + * @param blk_loc_registry Placement block location information. To be filled with the location + * where pl_macro is placed. * * @return true if macro was placed, false if not. */ -bool try_place_macro(const t_pl_macro& pl_macro, t_pl_loc head_pos); +bool try_place_macro(const t_pl_macro& pl_macro, + t_pl_loc head_pos, + BlkLocRegistry& blk_loc_registry); /** * @brief Checks whether the block is already placed * * @param blk_id block id of the block to be checked + * @param blk_loc_registry Placement block location information. To be filled with the location + * where pl_macro is placed. * * @return true if the block was placed, false if not. */ -bool is_block_placed(ClusterBlockId blk_id); +bool is_block_placed(ClusterBlockId blk_id, + const vtr::vector_map& block_locs); /** * @brief Tries to find an initial placement location for each block considering floorplanning constraints @@ -108,12 +125,15 @@ bool is_block_placed(ClusterBlockId blk_id); * @param placer_opts Required by the function that set the status of f_placer_debug. * Also used to access pad_loc_type to see if a block needs to be marked fixed. * @param constraints_file Used to read block locations if any constraints is available. - * @param noc_enabled Used to check whether the user turned on the noc - * optimization during placement. + * @param noc_opts Contains information about if the NoC optimization is enabled + * and NoC-related weighting factors. + * @param blk_loc_registry Placement block location information. To be filled with the location + * where pl_macro is placed. */ void initial_placement(const t_placer_opts& placer_opts, const char* constraints_file, - const t_noc_opts& noc_opts); + const t_noc_opts& noc_opts, + BlkLocRegistry& blk_loc_registry); /** * @brief Looks for a valid placement location for block. @@ -121,9 +141,15 @@ void initial_placement(const t_placer_opts& placer_opts, * @param blk_id The block that should be placed. * @param pad_loc_type Used to check whether an io block needs to be marked as fixed. * @param blk_types_empty_locs_in_grid First location (lowest y) and number of remaining blocks in each column for the blk_id type - * + * @param block_scores Scores assign to different blocks to determine which one should be placed first. + * @param blk_loc_registry Placement block location information. To be filled with the location + * where pl_macro is placed. * * @return true if the block gets placed, false if not. */ -bool place_one_block(const ClusterBlockId& blk_id, enum e_pad_loc_type pad_loc_type, std::vector* blk_types_empty_locs_in_grid, vtr::vector* block_scores); +bool place_one_block(const ClusterBlockId blk_id, + e_pad_loc_type pad_loc_type, + std::vector* blk_types_empty_locs_in_grid, + vtr::vector* block_scores, + BlkLocRegistry& blk_loc_registry); #endif diff --git a/vpr/src/place/manual_move_generator.cpp b/vpr/src/place/manual_move_generator.cpp index 6e2cf43d5cc..36d198acd09 100644 --- a/vpr/src/place/manual_move_generator.cpp +++ b/vpr/src/place/manual_move_generator.cpp @@ -2,18 +2,36 @@ * @file manual_move_generator.cpp * @author Paula Perdomo * @date 2021-07-19 - * @brief Contains the ManualMoveGenerator class memeber definitions. The ManualMoveGenerator class inherits from the MoveGenerator class. The class contains a propose_move function that checks if the block requested to move by the user exists and determines whether the manual move is VALID/ABORTED by the placer. If the manual move is determined VALID, the move is created. A manual move is ABORTED if the block requested is not found or movable and if there aren't any compatible subtiles. + * @brief Contains the ManualMoveGenerator class member definitions. + * The ManualMoveGenerator class inherits from the MoveGenerator class. + * The class contains a propose_move function that checks if the block requested + * to move by the user exists and determines whether the manual move is VALID/ABORTED + * by the placer. If the manual move is determined VALID, the move is created. + * A manual move is ABORTED if the block requested is not found or movable and if there aren't any compatible subtiles. */ #include "manual_move_generator.h" #include "manual_moves.h" +#include "placer_state.h" #ifndef NO_GRAPHICS # include "draw.h" #endif //NO_GRAPHICS +ManualMoveGenerator::ManualMoveGenerator(PlacerState& placer_state) + : MoveGenerator(placer_state) {} + //Manual Move Generator function -e_create_move ManualMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, t_propose_action& /*proposed_action*/, float /*rlim*/, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/) { +e_create_move ManualMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, + t_propose_action& /*proposed_action*/, + float /*rlim*/, + const t_placer_opts& /*placer_opts*/, + const PlacerCriticalities* /*criticalities*/) { + auto& place_ctx = g_vpr_ctx.placement(); + auto& cluster_ctx = g_vpr_ctx.clustering(); + auto& device_ctx = g_vpr_ctx.device(); + auto& block_locs = placer_state_.get().block_locs(); + int block_id = -1; t_pl_loc to; @@ -30,12 +48,8 @@ e_create_move ManualMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_ return e_create_move::ABORT; //No movable block was found } - auto& place_ctx = g_vpr_ctx.placement(); - auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& device_ctx = g_vpr_ctx.device(); - //Gets the current location of the block to move. - t_pl_loc from = place_ctx.block_locs[b_from].loc; + t_pl_loc from = block_locs[b_from].loc; auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); auto grid_from_type = device_ctx.grid.get_physical_type({from.x, from.y, from.layer}); VTR_ASSERT(is_tile_compatible(grid_from_type, cluster_from_type)); @@ -51,6 +65,7 @@ e_create_move ManualMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_ return e_create_move::ABORT; } - e_create_move create_move = ::create_move(blocks_affected, b_from, to); + e_create_move create_move = ::create_move(blocks_affected, b_from, to, place_ctx.blk_loc_registry()); return create_move; } + diff --git a/vpr/src/place/manual_move_generator.h b/vpr/src/place/manual_move_generator.h index 2995006e908..684b110ba3b 100644 --- a/vpr/src/place/manual_move_generator.h +++ b/vpr/src/place/manual_move_generator.h @@ -26,8 +26,15 @@ */ class ManualMoveGenerator : public MoveGenerator { public: + ManualMoveGenerator() = delete; + explicit ManualMoveGenerator(PlacerState& placer_state); + //Evaluates if move is successful and legal or unable to do. - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, t_propose_action& /*proposed_action*/, float /*rlim*/, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/) override; + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, + t_propose_action& /*proposed_action*/, + float /*rlim*/, + const t_placer_opts& /*placer_opts*/, + const PlacerCriticalities* /*criticalities*/) override; }; #endif /*VPR_MANUAL_MOVE_GEN_H */ diff --git a/vpr/src/place/median_move_generator.cpp b/vpr/src/place/median_move_generator.cpp index 20ef207221d..3f116fe71c8 100644 --- a/vpr/src/place/median_move_generator.cpp +++ b/vpr/src/place/median_move_generator.cpp @@ -1,28 +1,35 @@ #include "median_move_generator.h" + #include "globals.h" -#include #include "place_constraints.h" -#include "placer_globals.h" +#include "placer_state.h" #include "move_utils.h" -static bool get_bb_incrementally(ClusterNetId net_id, - t_bb& bb_coord_new, - int xold, - int yold, - int layer_old, - int xnew, - int ynew, - int layer_new); +#include -static void get_bb_from_scratch_excluding_block(ClusterNetId net_id, t_bb& bb_coord_new, ClusterBlockId block_id, bool& skip_net); +MedianMoveGenerator::MedianMoveGenerator(PlacerState& placer_state) + : MoveGenerator(placer_state) {} + +e_create_move MedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, + t_propose_action& proposed_action, + float rlim, + const t_placer_opts& placer_opts, + const PlacerCriticalities* /*criticalities*/) { + const auto& cluster_ctx = g_vpr_ctx.clustering(); + const auto& device_ctx = g_vpr_ctx.device(); + auto& placer_state = placer_state_.get(); + auto& place_move_ctx = placer_state.mutable_move(); + const auto& block_locs = placer_state.block_locs(); + const auto& blk_loc_registry = placer_state.blk_loc_registry(); -e_create_move MedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, t_propose_action& proposed_action, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/) { //Find a movable block based on blk_type ClusterBlockId b_from = propose_block_to_move(placer_opts, proposed_action.logical_blk_type_index, - false, - nullptr, - nullptr); + /*highly_crit_block=*/false, + /*net_from=*/nullptr, + /*pin_from=*/nullptr, + placer_state); + VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, "Median Move Choose Block %d - rlim %f\n", size_t(b_from), rlim); if (!b_from) { //No movable block found @@ -30,15 +37,10 @@ e_create_move MedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_ return e_create_move::ABORT; } - auto& place_ctx = g_vpr_ctx.placement(); - auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& device_ctx = g_vpr_ctx.device(); - auto& place_move_ctx = g_placer_ctx.mutable_move(); - const int num_layers = device_ctx.grid.get_num_layers(); - t_pl_loc from = place_ctx.block_locs[b_from].loc; + t_pl_loc from = block_locs[b_from].loc; int from_layer = from.layer; auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); auto grid_from_type = g_vpr_ctx.device().grid.get_physical_type({from.x, from.y, from_layer}); @@ -49,8 +51,6 @@ e_create_move MedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_ t_bb coords(OPEN, OPEN, OPEN, OPEN, OPEN, OPEN); t_bb limit_coords; - ClusterBlockId bnum; - int pnum, xnew, xold, ynew, yold, layer_new, layer_old; //clear the vectors that saves X & Y coords //reused to save allocation time @@ -76,59 +76,58 @@ e_create_move MedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_ if (cluster_ctx.clb_nlist.net_sinks(net_id).size() < SMALL_NET) { //calculate the bb from scratch get_bb_from_scratch_excluding_block(net_id, coords, b_from, skip_net); - if (skip_net) + if (skip_net) { continue; + } } else { t_bb union_bb; - const bool& cube_bb = g_vpr_ctx.placement().cube_bb; + const bool cube_bb = g_vpr_ctx.placement().cube_bb; if (!cube_bb) { union_bb = union_2d_bb(place_move_ctx.layer_bb_coords[net_id]); } const auto& net_bb_coords = cube_bb ? place_move_ctx.bb_coords[net_id] : union_bb; //use the incremental update of the bb - bnum = cluster_ctx.clb_nlist.pin_block(pin_id); - pnum = tile_pin_index(pin_id); + ClusterBlockId bnum = cluster_ctx.clb_nlist.pin_block(pin_id); + int pnum = blk_loc_registry.tile_pin_index(pin_id); VTR_ASSERT(pnum >= 0); - xold = place_ctx.block_locs[bnum].loc.x + physical_tile_type(bnum)->pin_width_offset[pnum]; - yold = place_ctx.block_locs[bnum].loc.y + physical_tile_type(bnum)->pin_height_offset[pnum]; - layer_old = place_ctx.block_locs[bnum].loc.layer; + t_pl_loc block_loc = block_locs[bnum].loc; + t_physical_tile_type_ptr block_physical_type = physical_tile_type(block_loc); + int xold = block_loc.x + block_physical_type->pin_width_offset[pnum]; + int yold = block_loc.y + block_physical_type->pin_height_offset[pnum]; + int layer_old = block_loc.layer; xold = std::max(std::min(xold, (int)device_ctx.grid.width() - 2), 1); //-2 for no perim channels yold = std::max(std::min(yold, (int)device_ctx.grid.height() - 2), 1); //-2 for no perim channels layer_old = std::max(std::min(layer_old, (int)device_ctx.grid.get_num_layers() - 1), 0); - //To calulate the bb incrementally while excluding the moving block + //To calculate the bb incrementally while excluding the moving block //assume that the moving block is moved to a non-critical coord of the bb + int xnew; if (net_bb_coords.xmin == xold) { xnew = net_bb_coords.xmax; } else { xnew = net_bb_coords.xmin; } + int ynew; if (net_bb_coords.ymin == yold) { ynew = net_bb_coords.ymax; } else { ynew = net_bb_coords.ymin; } + int layer_new; if (net_bb_coords.layer_min == layer_old) { layer_new = net_bb_coords.layer_max; } else { layer_new = net_bb_coords.layer_min; } - // If the mvoing block is on the border of the bounding box, we cannot get - // the bounding box incrementatlly. In that case, bounding box should be calculated + // If the moving block is on the border of the bounding box, we cannot get + // the bounding box incrementally. In that case, bounding box should be calculated // from scratch. - if (!get_bb_incrementally(net_id, - coords, - xold, - yold, - layer_old, - xnew, - ynew, - layer_new)) { + if (!get_bb_incrementally(net_id, coords, xold, yold, layer_old, xnew, ynew, layer_new)) { get_bb_from_scratch_excluding_block(net_id, coords, b_from, skip_net); if (skip_net) continue; @@ -173,11 +172,11 @@ e_create_move MedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_ median_point.y = (limit_coords.ymin + limit_coords.ymax) / 2; median_point.layer = (limit_coords.layer_min + limit_coords.layer_max) / 2; - if (!find_to_loc_centroid(cluster_from_type, from, median_point, range_limiters, to, b_from)) { + if (!find_to_loc_centroid(cluster_from_type, from, median_point, range_limiters, to, b_from, blk_loc_registry)) { return e_create_move::ABORT; } - e_create_move create_move = ::create_move(blocks_affected, b_from, to); + e_create_move create_move = ::create_move(blocks_affected, b_from, to, blk_loc_registry); //Check that all the blocks affected by the move would still be in a legal floorplan region after the swap if (!floorplan_legal(blocks_affected)) { @@ -187,18 +186,13 @@ e_create_move MedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_ return create_move; } -/* Finds the bounding box of a net and stores its coordinates in the * - * bb_coord_new data structure. It excludes the moving block sent in * - * function arguments in block_id. It also returns whether this net * - * should be excluded from median calculation or not. * - * This routine should only be called for small nets, since it does * - * not determine enough information for the bounding box to be * - * updated incrementally later. * - * Currently assumes channels on both sides of the CLBs forming the * - * edges of the bounding box can be used. Essentially, I am assuming * - * the pins always lie on the outside of the bounding box. */ -static void get_bb_from_scratch_excluding_block(ClusterNetId net_id, t_bb& bb_coord_new, ClusterBlockId block_id, bool& skip_net) { +void MedianMoveGenerator::get_bb_from_scratch_excluding_block(ClusterNetId net_id, + t_bb& bb_coord_new, + ClusterBlockId block_id, + bool& skip_net) { //TODO: account for multiple physical pin instances per logical pin + const auto& placer_state = placer_state_.get(); + const auto& block_locs = placer_state.block_locs(); skip_net = true; @@ -213,7 +207,6 @@ static void get_bb_from_scratch_excluding_block(ClusterNetId net_id, t_bb& bb_co int pnum; auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.placement(); auto& device_ctx = g_vpr_ctx.device(); ClusterBlockId bnum = cluster_ctx.clb_nlist.net_driver_block(net_id); @@ -221,10 +214,11 @@ static void get_bb_from_scratch_excluding_block(ClusterNetId net_id, t_bb& bb_co if (bnum != block_id) { skip_net = false; - pnum = net_pin_to_tile_pin_index(net_id, 0); - int src_x = place_ctx.block_locs[bnum].loc.x + physical_tile_type(bnum)->pin_width_offset[pnum]; - int src_y = place_ctx.block_locs[bnum].loc.y + physical_tile_type(bnum)->pin_height_offset[pnum]; - int src_layer = place_ctx.block_locs[bnum].loc.layer; + pnum = placer_state.blk_loc_registry().net_pin_to_tile_pin_index(net_id, 0); + const t_pl_loc& block_loc = block_locs[bnum].loc; + int src_x = block_loc.x + physical_tile_type(block_loc)->pin_width_offset[pnum]; + int src_y = block_loc.y + physical_tile_type(block_loc)->pin_height_offset[pnum]; + int src_layer = block_loc.layer; xmin = src_x; ymin = src_y; @@ -235,15 +229,15 @@ static void get_bb_from_scratch_excluding_block(ClusterNetId net_id, t_bb& bb_co first_block = true; } - for (auto pin_id : cluster_ctx.clb_nlist.net_sinks(net_id)) { + for (ClusterPinId pin_id : cluster_ctx.clb_nlist.net_sinks(net_id)) { bnum = cluster_ctx.clb_nlist.pin_block(pin_id); - pnum = tile_pin_index(pin_id); + pnum = placer_state.blk_loc_registry().tile_pin_index(pin_id); if (bnum == block_id) continue; skip_net = false; - const auto& block_loc = place_ctx.block_locs[bnum].loc; - int x = block_loc.x + physical_tile_type(bnum)->pin_width_offset[pnum]; - int y = block_loc.y + physical_tile_type(bnum)->pin_height_offset[pnum]; + const auto& block_loc = block_locs[bnum].loc; + int x = block_loc.x + physical_tile_type(block_loc)->pin_width_offset[pnum]; + int y = block_loc.y + physical_tile_type(block_loc)->pin_height_offset[pnum]; int layer = block_loc.layer; if (!first_block) { @@ -290,31 +284,18 @@ static void get_bb_from_scratch_excluding_block(ClusterNetId net_id, t_bb& bb_co bb_coord_new.layer_max = std::max(std::min(layer_max, device_ctx.grid.get_num_layers() - 1), 0); } -/* - * Calculates the bounding box of a net by storing its coordinates * - * in the bb_coord_new data structure. It uses information from * - * PlaceMoveContext to calculate the bb incrementally. This routine * - * should only be called for large nets, since it has some overhead * - * relative to just doing a brute force bounding box calculation. * - * The bounding box coordinate and edge information for inet must be * - * valid before this routine is called. * - * Currently assumes channels on both sides of the CLBs forming the * - * edges of the bounding box can be used. Essentially, I am assuming * - * the pins always lie on the outside of the bounding box. * - * The x and y coordinates are the pin's x and y coordinates. */ -/* IO blocks are considered to be one cell in for simplicity. */ -static bool get_bb_incrementally(ClusterNetId net_id, - t_bb& bb_coord_new, - int xold, - int yold, - int layer_old, - int xnew, - int ynew, - int layer_new) { +bool MedianMoveGenerator::get_bb_incrementally(ClusterNetId net_id, + t_bb& bb_coord_new, + int xold, + int yold, + int layer_old, + int xnew, + int ynew, + int layer_new) { //TODO: account for multiple physical pin instances per logical pin auto& device_ctx = g_vpr_ctx.device(); - auto& place_move_ctx = g_placer_ctx.move(); + auto& place_move_ctx = placer_state_.get().move(); xnew = std::max(std::min(xnew, device_ctx.grid.width() - 2), 1); //-2 for no perim channels ynew = std::max(std::min(ynew, device_ctx.grid.height() - 2), 1); //-2 for no perim channels @@ -326,7 +307,7 @@ static bool get_bb_incrementally(ClusterNetId net_id, t_bb union_bb_edge; t_bb union_bb; - const bool& cube_bb = g_vpr_ctx.placement().cube_bb; + const bool cube_bb = g_vpr_ctx.placement().cube_bb; /* Calculating per-layer bounding box is more time consuming compared to cube bounding box. To speed up * this move, the bounding box used for this move is of the type cube bounding box even if the per-layer * bounding box is used by placement SA engine. diff --git a/vpr/src/place/median_move_generator.h b/vpr/src/place/median_move_generator.h index ccecdf86a0e..be932f78d1f 100644 --- a/vpr/src/place/median_move_generator.h +++ b/vpr/src/place/median_move_generator.h @@ -16,7 +16,48 @@ * around it */ class MedianMoveGenerator : public MoveGenerator { - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, t_propose_action& proposed_action, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/) override; + public: + MedianMoveGenerator() = delete; + explicit MedianMoveGenerator(PlacerState& placer_state); + + private: + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, + t_propose_action& proposed_action, + float rlim, + const t_placer_opts& placer_opts, + const PlacerCriticalities* /*criticalities*/) override; + + /** + * @brief Calculates the bounding box of a net by storing its coordinates + * in the bb_coord_new data structure. + * + * @details It uses information from PlaceMoveContext to calculate the bb incrementally. + * This routine should only be called for large nets, since it has some overhead + * relative to just doing a brute force bounding box calculation. The bounding box coordinate + * and edge information for inet must be valid before this routine is called. + * Currently assumes channels on both sides of the CLBs forming the edges of the bounding box + * can be used. Essentially, I am assuming the pins always lie on the outside of the bounding box. + * The x and y coordinates are the pin's x and y coordinates. IO blocks are considered to be + * one cell in for simplicity. */ + bool get_bb_incrementally(ClusterNetId net_id, t_bb& bb_coord_new, + int xold, int yold, int layer_old, + int xnew, int ynew, int layer_new); + + + /** + * @brief Finds the bounding box of a net and stores its coordinates in the bb_coord_new data structure. + * + * @details It excludes the moving block sent in function arguments in block_id. + * It also returns whether this net should be excluded from median calculation or not. + * This routine should only be called for small nets, since it does not determine + * enough information for the bounding box to be updated incrementally later. + * Currently assumes channels on both sides of the CLBs forming the edges of the bounding box can be used. + * Essentially, I am assuming the pins always lie on the outside of the bounding box. + */ + void get_bb_from_scratch_excluding_block(ClusterNetId net_id, + t_bb& bb_coord_new, + ClusterBlockId block_id, + bool& skip_net); }; #endif diff --git a/vpr/src/place/move_generator.h b/vpr/src/place/move_generator.h index 34d6d01cfa9..15315e4b01a 100644 --- a/vpr/src/place/move_generator.h +++ b/vpr/src/place/move_generator.h @@ -1,13 +1,15 @@ #ifndef VPR_MOVE_GENERATOR_H #define VPR_MOVE_GENERATOR_H + #include "vpr_types.h" #include "move_utils.h" #include "timing_place.h" #include "directed_moves_util.h" -#include "placer_globals.h" #include +class PlacerState; + struct MoveOutcomeStats { float delta_cost_norm = std::numeric_limits::quiet_NaN(); float delta_bb_cost_norm = std::numeric_limits::quiet_NaN(); @@ -42,6 +44,10 @@ struct MoveTypeStat { */ class MoveGenerator { public: + MoveGenerator(PlacerState& placer_state) + : placer_state_(placer_state) {} + + MoveGenerator() = delete; virtual ~MoveGenerator() = default; /** @@ -59,7 +65,11 @@ class MoveGenerator { * @param placer_opts: all the placer options * @param criticalities: the placer criticalities, useful for timing directed moves */ - virtual e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, t_propose_action& proposed_action, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) = 0; + virtual e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, + t_propose_action& proposed_action, + float rlim, + const t_placer_opts& placer_opts, + const PlacerCriticalities* criticalities) = 0; /** * @brief Recieves feedback about the outcome of the previously proposed move @@ -70,6 +80,9 @@ class MoveGenerator { * @param reward_fun: the name of the reward function used */ virtual void process_outcome(double /*reward*/, e_reward_function /*reward_fun*/) {} + + protected: + std::reference_wrapper placer_state_; }; #endif diff --git a/vpr/src/place/move_transactions.cpp b/vpr/src/place/move_transactions.cpp index db06d34e608..0065c70662d 100644 --- a/vpr/src/place/move_transactions.cpp +++ b/vpr/src/place/move_transactions.cpp @@ -2,7 +2,7 @@ #include "move_utils.h" #include "globals.h" -#include "place_util.h" +#include "grid_block.h" #include "vtr_assert.h" t_pl_blocks_to_be_moved::t_pl_blocks_to_be_moved(size_t max_blocks){ @@ -16,16 +16,16 @@ size_t t_pl_blocks_to_be_moved::get_size_and_increment() { } //Records that block 'blk' should be moved to the specified 'to' location -e_block_move_result t_pl_blocks_to_be_moved::record_block_move(ClusterBlockId blk, t_pl_loc to) { +e_block_move_result t_pl_blocks_to_be_moved::record_block_move(ClusterBlockId blk, + t_pl_loc to, + const BlkLocRegistry& blk_loc_registry) { auto [to_it, to_success] = moved_to.emplace(to); if (!to_success) { log_move_abort("duplicate block move to location"); return e_block_move_result::ABORT; } - auto& place_ctx = g_vpr_ctx.mutable_placement(); - - t_pl_loc from = place_ctx.block_locs[blk].loc; + t_pl_loc from = blk_loc_registry.block_locs()[blk].loc; auto [_, from_success] = moved_from.emplace(from); if (!from_success) { @@ -34,7 +34,7 @@ e_block_move_result t_pl_blocks_to_be_moved::record_block_move(ClusterBlockId bl return e_block_move_result::ABORT; } - VTR_ASSERT_SAFE(to.sub_tile < int(place_ctx.grid_blocks.num_blocks_at_location({to.x, to.y, to.layer}))); + VTR_ASSERT_SAFE(to.sub_tile < int(blk_loc_registry.grid_blocks().num_blocks_at_location({to.x, to.y, to.layer}))); // Sets up the blocks moved size_t imoved_blk = get_size_and_increment(); @@ -46,7 +46,7 @@ e_block_move_result t_pl_blocks_to_be_moved::record_block_move(ClusterBlockId bl } //Examines the currently proposed move and determine any empty locations -std::set t_pl_blocks_to_be_moved::t_pl_blocks_to_be_moved::determine_locations_emptied_by_move() { +std::set t_pl_blocks_to_be_moved::determine_locations_emptied_by_move() { std::set moved_from_set; std::set moved_to_set; @@ -67,8 +67,8 @@ std::set t_pl_blocks_to_be_moved::t_pl_blocks_to_be_moved::determine_l } //Moves the blocks in blocks_affected to their new locations -void apply_move_blocks(const t_pl_blocks_to_be_moved& blocks_affected) { - auto& place_ctx = g_vpr_ctx.mutable_placement(); +void apply_move_blocks(const t_pl_blocks_to_be_moved& blocks_affected, + BlkLocRegistry& blk_loc_registry) { auto& device_ctx = g_vpr_ctx.device(); //Swap the blocks, but don't swap the nets or update place_ctx.grid_blocks @@ -80,7 +80,7 @@ void apply_move_blocks(const t_pl_blocks_to_be_moved& blocks_affected) { const t_pl_loc& new_loc = moved_block.new_loc; // move the block to its new location - place_ctx.block_locs[blk].loc = new_loc; + blk_loc_registry.mutable_block_locs()[blk].loc = new_loc; // get physical tile type of the old location t_physical_tile_type_ptr old_type = device_ctx.grid.get_physical_type({old_loc.x,old_loc.y,old_loc.layer}); @@ -89,15 +89,15 @@ void apply_move_blocks(const t_pl_blocks_to_be_moved& blocks_affected) { //if physical tile type of old location does not equal physical tile type of new location, sync the new physical pins if (old_type != new_type) { - place_sync_external_block_connections(blk); + blk_loc_registry.place_sync_external_block_connections(blk); } } } //Commits the blocks in blocks_affected to their new locations (updates inverse //lookups via place_ctx.grid_blocks) -void commit_move_blocks(const t_pl_blocks_to_be_moved& blocks_affected) { - auto& place_ctx = g_vpr_ctx.mutable_placement(); +void commit_move_blocks(const t_pl_blocks_to_be_moved& blocks_affected, + GridBlock& grid_blocks) { /* Swap physical location */ for (const t_pl_moved_block& moved_block : blocks_affected.moved_blocks) { @@ -107,26 +107,24 @@ void commit_move_blocks(const t_pl_blocks_to_be_moved& blocks_affected) { const t_pl_loc& from = moved_block.old_loc; //Remove from old location only if it hasn't already been updated by a previous block update - if (place_ctx.grid_blocks.block_at_location(from) == blk) { - place_ctx.grid_blocks.set_block_at_location(from, EMPTY_BLOCK_ID); - place_ctx.grid_blocks.set_usage({from.x, from.y, from.layer}, - place_ctx.grid_blocks.get_usage({from.x, from.y, from.layer}) - 1); + if (grid_blocks.block_at_location(from) == blk) { + grid_blocks.set_block_at_location(from, ClusterBlockId::INVALID()); + grid_blocks.decrement_usage({from.x, from.y, from.layer}); } //Add to new location - if (place_ctx.grid_blocks.block_at_location(to) == EMPTY_BLOCK_ID) { + if (grid_blocks.block_at_location(to) == ClusterBlockId::INVALID()) { //Only need to increase usage if previously unused - place_ctx.grid_blocks.set_usage({to.x, to.y, to.layer}, - place_ctx.grid_blocks.get_usage({to.x, to.y, to.layer}) + 1); + grid_blocks.increment_usage({to.x, to.y, to.layer}); } - place_ctx.grid_blocks.set_block_at_location(to, blk); + grid_blocks.set_block_at_location(to, blk); } // Finish updating clb for all blocks } //Moves the blocks in blocks_affected to their old locations -void revert_move_blocks(const t_pl_blocks_to_be_moved& blocks_affected) { - auto& place_ctx = g_vpr_ctx.mutable_placement(); +void revert_move_blocks(const t_pl_blocks_to_be_moved& blocks_affected, + BlkLocRegistry& blk_loc_registry) { auto& device_ctx = g_vpr_ctx.device(); // Swap the blocks back, nets not yet swapped they don't need to be changed @@ -137,7 +135,7 @@ void revert_move_blocks(const t_pl_blocks_to_be_moved& blocks_affected) { const t_pl_loc& new_loc = moved_block.new_loc; // return the block to where it was before the swap - place_ctx.block_locs[blk].loc = old_loc; + blk_loc_registry.mutable_block_locs()[blk].loc = old_loc; // get physical tile type of the old location t_physical_tile_type_ptr old_type = device_ctx.grid.get_physical_type({old_loc.x,old_loc.y,old_loc.layer}); @@ -146,10 +144,11 @@ void revert_move_blocks(const t_pl_blocks_to_be_moved& blocks_affected) { //if physical tile type of old location does not equal physical tile type of new location, sync the new physical pins if (old_type != new_type) { - place_sync_external_block_connections(blk); + blk_loc_registry.place_sync_external_block_connections(blk); } - VTR_ASSERT_SAFE_MSG(place_ctx.grid_blocks.block_at_location(old_loc) == blk, "Grid blocks should only have been updated if swap committed (not reverted)"); + VTR_ASSERT_SAFE_MSG(blk_loc_registry.grid_blocks().block_at_location(old_loc) == blk, + "Grid blocks should only have been updated if swap committed (not reverted)"); } } diff --git a/vpr/src/place/move_transactions.h b/vpr/src/place/move_transactions.h index 65e4c89774b..453e248cdea 100644 --- a/vpr/src/place/move_transactions.h +++ b/vpr/src/place/move_transactions.h @@ -1,8 +1,12 @@ #ifndef VPR_MOVE_TRANSACTIONS_H #define VPR_MOVE_TRANSACTIONS_H + #include "vpr_types.h" #include "clustered_netlist_utils.h" +class BlkLocRegistry; +class GridBlock; + enum class e_block_move_result { VALID, //Move successful ABORT, //Unable to perform move @@ -30,7 +34,7 @@ struct t_pl_moved_block { * placement. * * Store the information on the blocks to be moved in a swap during * * placement, in the form of array of structs instead of struct with * - * arrays for cache effifiency * + * arrays for cache efficiency * * * moved blocks: a list of moved blocks data structure with * * information on the move. * @@ -55,7 +59,10 @@ struct t_pl_blocks_to_be_moved { */ void clear_move_blocks(); - e_block_move_result record_block_move(ClusterBlockId blk, t_pl_loc to); + + e_block_move_result record_block_move(ClusterBlockId blk, + t_pl_loc to, + const BlkLocRegistry& blk_loc_registry); std::set determine_locations_emptied_by_move(); @@ -67,10 +74,13 @@ struct t_pl_blocks_to_be_moved { }; -void apply_move_blocks(const t_pl_blocks_to_be_moved& blocks_affected); +void apply_move_blocks(const t_pl_blocks_to_be_moved& blocks_affected, + BlkLocRegistry& blk_loc_registry); -void commit_move_blocks(const t_pl_blocks_to_be_moved& blocks_affected); +void commit_move_blocks(const t_pl_blocks_to_be_moved& blocks_affected, + GridBlock& grid_blocks); -void revert_move_blocks(const t_pl_blocks_to_be_moved& blocks_affected); +void revert_move_blocks(const t_pl_blocks_to_be_moved& blocks_affected, + BlkLocRegistry& blk_loc_registry); #endif diff --git a/vpr/src/place/move_utils.cpp b/vpr/src/place/move_utils.cpp index 7036075d2d0..67889ca115a 100644 --- a/vpr/src/place/move_utils.cpp +++ b/vpr/src/place/move_utils.cpp @@ -10,7 +10,7 @@ #include "draw.h" #include "place_constraints.h" -#include "placer_globals.h" +#include "placer_state.h" //f_placer_breakpoint_reached is used to stop the placer when a breakpoint is reached. When this flag is true, it stops the placer after the current perturbation. Thus, when a breakpoint is reached, this flag is set to true. //Note: The flag is only effective if compiled with VTR_ENABLE_DEBUG_LOGGING @@ -39,22 +39,26 @@ void report_aborted_moves() { } } -e_create_move create_move(t_pl_blocks_to_be_moved& blocks_affected, ClusterBlockId b_from, t_pl_loc to) { - e_block_move_result outcome = find_affected_blocks(blocks_affected, b_from, to); +e_create_move create_move(t_pl_blocks_to_be_moved& blocks_affected, + ClusterBlockId b_from, + t_pl_loc to, + const BlkLocRegistry& blk_loc_registry) { + const auto& block_locs = blk_loc_registry.block_locs(); + const GridBlock& grid_blocks = blk_loc_registry.grid_blocks(); + e_block_move_result outcome = find_affected_blocks(blocks_affected, b_from, to, blk_loc_registry); if (outcome == e_block_move_result::INVERT) { //Try inverting the swap direction - auto& place_ctx = g_vpr_ctx.placement(); - ClusterBlockId b_to = place_ctx.grid_blocks.block_at_location(to); + ClusterBlockId b_to = grid_blocks.block_at_location(to); if (!b_to) { log_move_abort("inverted move no to block"); outcome = e_block_move_result::ABORT; } else { - t_pl_loc from = place_ctx.block_locs[b_from].loc; + t_pl_loc from = block_locs[b_from].loc; - outcome = find_affected_blocks(blocks_affected, b_to, from); + outcome = find_affected_blocks(blocks_affected, b_to, from, blk_loc_registry); if (outcome == e_block_move_result::INVERT) { log_move_abort("inverted move recursion"); @@ -63,8 +67,7 @@ e_create_move create_move(t_pl_blocks_to_be_moved& blocks_affected, ClusterBlock } } - if (outcome == e_block_move_result::VALID - || outcome == e_block_move_result::INVERT_VALID) { + if (outcome == e_block_move_result::VALID || outcome == e_block_move_result::INVERT_VALID) { return e_create_move::VALID; } else { VTR_ASSERT_SAFE(outcome == e_block_move_result::ABORT); @@ -72,19 +75,22 @@ e_create_move create_move(t_pl_blocks_to_be_moved& blocks_affected, ClusterBlock } } -e_block_move_result find_affected_blocks(t_pl_blocks_to_be_moved& blocks_affected, ClusterBlockId b_from, t_pl_loc to) { +e_block_move_result find_affected_blocks(t_pl_blocks_to_be_moved& blocks_affected, + ClusterBlockId b_from, + t_pl_loc to, + const BlkLocRegistry& blk_loc_registry) { /* Finds and set ups the affected_blocks array. * Returns abort_swap. */ VTR_ASSERT_SAFE(b_from); + const auto& block_locs = blk_loc_registry.block_locs(); + const GridBlock& grid_blocks = blk_loc_registry.grid_blocks(); + const auto& pl_macros = g_vpr_ctx.placement().pl_macros; + int imacro_from; e_block_move_result outcome = e_block_move_result::VALID; - auto& place_ctx = g_vpr_ctx.placement(); - - t_pl_loc from = place_ctx.block_locs[b_from].loc; - - auto& pl_macros = place_ctx.pl_macros; + t_pl_loc from = block_locs[b_from].loc; get_imacro_from_iblk(&imacro_from, b_from, pl_macros); if (imacro_from != -1) { @@ -94,12 +100,12 @@ e_block_move_result find_affected_blocks(t_pl_blocks_to_be_moved& blocks_affecte t_pl_offset swap_offset = to - from; int imember_from = 0; - outcome = record_macro_swaps(blocks_affected, imacro_from, imember_from, swap_offset); + outcome = record_macro_swaps(blocks_affected, imacro_from, imember_from, swap_offset, blk_loc_registry); VTR_ASSERT_SAFE(outcome != e_block_move_result::VALID || imember_from == int(pl_macros[imacro_from].members.size())); } else { - ClusterBlockId b_to = place_ctx.grid_blocks.block_at_location(to); + ClusterBlockId b_to = grid_blocks.block_at_location(to); int imacro_to = -1; get_imacro_from_iblk(&imacro_to, b_to, pl_macros); @@ -111,7 +117,7 @@ e_block_move_result find_affected_blocks(t_pl_blocks_to_be_moved& blocks_affecte outcome = e_block_move_result::INVERT; } else { // This is not a macro - I could use the from and to info from before - outcome = record_single_block_swap(blocks_affected, b_from, to); + outcome = record_single_block_swap(blocks_affected, b_from, to, blk_loc_registry); } } // Finish handling cases for blocks in macro and otherwise @@ -119,48 +125,49 @@ e_block_move_result find_affected_blocks(t_pl_blocks_to_be_moved& blocks_affecte return outcome; } -e_block_move_result record_single_block_swap(t_pl_blocks_to_be_moved& blocks_affected, ClusterBlockId b_from, t_pl_loc to) { +e_block_move_result record_single_block_swap(t_pl_blocks_to_be_moved& blocks_affected, + ClusterBlockId b_from, + t_pl_loc to, + const BlkLocRegistry& blk_loc_registry) { /* Find all the blocks affected when b_from is swapped with b_to. * Returns abort_swap. */ - VTR_ASSERT_SAFE(b_from); - auto& place_ctx = g_vpr_ctx.mutable_placement(); + const auto& block_locs = blk_loc_registry.block_locs(); + const GridBlock& grid_blocks = blk_loc_registry.grid_blocks(); - if (place_ctx.block_locs[b_from].is_fixed) { + if (block_locs[b_from].is_fixed) { return e_block_move_result::ABORT; } - VTR_ASSERT_SAFE(to.sub_tile < int(place_ctx.grid_blocks.num_blocks_at_location({to.x, to.y, to.layer}))); + VTR_ASSERT_SAFE(to.sub_tile < int(grid_blocks.num_blocks_at_location({to.x, to.y, to.layer}))); - ClusterBlockId b_to = place_ctx.grid_blocks.block_at_location(to); + ClusterBlockId b_to = grid_blocks.block_at_location(to); - t_pl_loc curr_from = place_ctx.block_locs[b_from].loc; + t_pl_loc curr_from = block_locs[b_from].loc; e_block_move_result outcome = e_block_move_result::VALID; // Check whether the to_location is empty - if (b_to == EMPTY_BLOCK_ID) { + if (b_to == ClusterBlockId::INVALID()) { // Sets up the blocks moved - outcome = blocks_affected.record_block_move(b_from, to); - - } else if (b_to != INVALID_BLOCK_ID) { + outcome = blocks_affected.record_block_move(b_from, to, blk_loc_registry); + } else { // Check whether block to is compatible with from location - if (b_to != EMPTY_BLOCK_ID && b_to != INVALID_BLOCK_ID) { - if (!(is_legal_swap_to_location(b_to, curr_from)) || place_ctx.block_locs[b_to].is_fixed) { - return e_block_move_result::ABORT; - } + if (!(is_legal_swap_to_location(b_to, curr_from, blk_loc_registry)) || block_locs[b_to].is_fixed) { + return e_block_move_result::ABORT; } + // Sets up the blocks moved - outcome = blocks_affected.record_block_move(b_from, to); + outcome = blocks_affected.record_block_move(b_from, to, blk_loc_registry); if (outcome != e_block_move_result::VALID) { return outcome; } - - t_pl_loc from = place_ctx.block_locs[b_from].loc; - outcome = blocks_affected.record_block_move(b_to, from); + + t_pl_loc from = block_locs[b_from].loc; + outcome = blocks_affected.record_block_move(b_to, from, blk_loc_registry); } // Finish swapping the blocks and setting up blocks_affected @@ -170,9 +177,14 @@ e_block_move_result record_single_block_swap(t_pl_blocks_to_be_moved& blocks_aff //Records all the block movements required to move the macro imacro_from starting at member imember_from //to a new position offset from its current position by swap_offset. The new location may be a //single (non-macro) block, or another macro. -e_block_move_result record_macro_swaps(t_pl_blocks_to_be_moved& blocks_affected, const int imacro_from, int& imember_from, t_pl_offset swap_offset) { - auto& place_ctx = g_vpr_ctx.placement(); - auto& pl_macros = place_ctx.pl_macros; +e_block_move_result record_macro_swaps(t_pl_blocks_to_be_moved& blocks_affected, + const int imacro_from, + int& imember_from, + t_pl_offset swap_offset, + const BlkLocRegistry& blk_loc_registry) { + const auto& pl_macros = g_vpr_ctx.placement().pl_macros; + const auto& block_locs = blk_loc_registry.block_locs(); + const GridBlock& grid_blocks = blk_loc_registry.grid_blocks(); e_block_move_result outcome = e_block_move_result::VALID; @@ -181,7 +193,7 @@ e_block_move_result record_macro_swaps(t_pl_blocks_to_be_moved& blocks_affected, // cannot use the old from and to info ClusterBlockId curr_b_from = pl_macros[imacro_from].members[imember_from].blk_index; - t_pl_loc curr_from = place_ctx.block_locs[curr_b_from].loc; + t_pl_loc curr_from = block_locs[curr_b_from].loc; t_pl_loc curr_to = curr_from + swap_offset; @@ -191,12 +203,12 @@ e_block_move_result record_macro_swaps(t_pl_blocks_to_be_moved& blocks_affected, // * match the correct block type // //Note that we need to explicitly check that the types match, since the device floorplan is not - //(neccessarily) translationally invariant for an arbitrary macro - if (!is_legal_swap_to_location(curr_b_from, curr_to)) { + //(necessarily) translationally invariant for an arbitrary macro + if (!is_legal_swap_to_location(curr_b_from, curr_to, blk_loc_registry)) { log_move_abort("macro_from swap to location illegal"); outcome = e_block_move_result::ABORT; } else { - ClusterBlockId b_to = place_ctx.grid_blocks.block_at_location(curr_to); + ClusterBlockId b_to = grid_blocks.block_at_location(curr_to); int imacro_to = -1; get_imacro_from_iblk(&imacro_to, b_to, pl_macros); @@ -204,11 +216,11 @@ e_block_move_result record_macro_swaps(t_pl_blocks_to_be_moved& blocks_affected, //To block is a macro if (imacro_from == imacro_to) { - outcome = record_macro_self_swaps(blocks_affected, imacro_from, swap_offset); + outcome = record_macro_self_swaps(blocks_affected, imacro_from, swap_offset, blk_loc_registry); imember_from = pl_macros[imacro_from].members.size(); break; //record_macro_self_swaps() handles this case completely, so we don't need to continue the loop } else { - outcome = record_macro_macro_swaps(blocks_affected, imacro_from, imember_from, imacro_to, b_to, swap_offset); + outcome = record_macro_macro_swaps(blocks_affected, imacro_from, imember_from, imacro_to, b_to, swap_offset, blk_loc_registry); if (outcome == e_block_move_result::INVERT_VALID) { break; //The move was inverted and successfully proposed, don't need to continue the loop } @@ -216,7 +228,7 @@ e_block_move_result record_macro_swaps(t_pl_blocks_to_be_moved& blocks_affected, } } else { //To block is not a macro - outcome = record_single_block_swap(blocks_affected, curr_b_from, curr_to); + outcome = record_single_block_swap(blocks_affected, curr_b_from, curr_to, blk_loc_registry); } } } // Finish going through all the blocks in the macro @@ -226,7 +238,13 @@ e_block_move_result record_macro_swaps(t_pl_blocks_to_be_moved& blocks_affected, //Records all the block movements required to move the macro imacro_from starting at member imember_from //to a new position offset from its current position by swap_offset. The new location must be where //blk_to is located and blk_to must be part of imacro_to. -e_block_move_result record_macro_macro_swaps(t_pl_blocks_to_be_moved& blocks_affected, const int imacro_from, int& imember_from, const int imacro_to, ClusterBlockId blk_to, t_pl_offset swap_offset) { +e_block_move_result record_macro_macro_swaps(t_pl_blocks_to_be_moved& blocks_affected, + const int imacro_from, + int& imember_from, + const int imacro_to, + ClusterBlockId blk_to, + t_pl_offset swap_offset, + const BlkLocRegistry& blk_loc_registry) { //Adds the macro imacro_to to the set of affected block caused by swapping 'blk_to' to its //new position. // @@ -234,16 +252,17 @@ e_block_move_result record_macro_macro_swaps(t_pl_blocks_to_be_moved& blocks_aff //The position in the from macro ('imacro_from') is specified by 'imember_from', and the relevant //macro fro the to block is 'imacro_to'. - auto& place_ctx = g_vpr_ctx.placement(); + const auto& pl_macros = g_vpr_ctx.placement().pl_macros; + const auto& block_locs = blk_loc_registry.block_locs(); //At the moment, we only support blk_to being the first element of the 'to' macro. // //For instance, this means that we can swap two carry chains so long as one starts //below the other (not a big limitation since swapping in the opposite direction //allows these blocks to swap) - if (place_ctx.pl_macros[imacro_to].members[0].blk_index != blk_to) { + if (pl_macros[imacro_to].members[0].blk_index != blk_to) { int imember_to = 0; - auto outcome = record_macro_swaps(blocks_affected, imacro_to, imember_to, -swap_offset); + auto outcome = record_macro_swaps(blocks_affected, imacro_to, imember_to, -swap_offset, blk_loc_registry); if (outcome == e_block_move_result::INVERT) { log_move_abort("invert recursion2"); outcome = e_block_move_result::ABORT; @@ -254,8 +273,8 @@ e_block_move_result record_macro_macro_swaps(t_pl_blocks_to_be_moved& blocks_aff } //From/To blocks should be exactly the swap offset appart - ClusterBlockId blk_from = place_ctx.pl_macros[imacro_from].members[imember_from].blk_index; - VTR_ASSERT_SAFE(place_ctx.block_locs[blk_from].loc + swap_offset == place_ctx.block_locs[blk_to].loc); + ClusterBlockId blk_from = pl_macros[imacro_from].members[imember_from].blk_index; + VTR_ASSERT_SAFE(block_locs[blk_from].loc + swap_offset == block_locs[blk_to].loc); //Continue walking along the overlapping parts of the from and to macros, recording //each block swap. @@ -272,47 +291,47 @@ e_block_move_result record_macro_macro_swaps(t_pl_blocks_to_be_moved& blocks_aff // //NOTE: We mutate imember_from so the outer from macro walking loop moves in lock-step int imember_to = 0; - t_pl_offset from_to_macro_offset = place_ctx.pl_macros[imacro_from].members[imember_from].offset; - for (; imember_from < int(place_ctx.pl_macros[imacro_from].members.size()) && imember_to < int(place_ctx.pl_macros[imacro_to].members.size()); + t_pl_offset from_to_macro_offset = pl_macros[imacro_from].members[imember_from].offset; + for (; imember_from < int(pl_macros[imacro_from].members.size()) && imember_to < int(pl_macros[imacro_to].members.size()); ++imember_from, ++imember_to) { //Check that both macros have the same shape while they overlap - if (place_ctx.pl_macros[imacro_from].members[imember_from].offset != place_ctx.pl_macros[imacro_to].members[imember_to].offset + from_to_macro_offset) { + if (pl_macros[imacro_from].members[imember_from].offset != pl_macros[imacro_to].members[imember_to].offset + from_to_macro_offset) { log_move_abort("macro shapes disagree"); return e_block_move_result::ABORT; } - ClusterBlockId b_from = place_ctx.pl_macros[imacro_from].members[imember_from].blk_index; + ClusterBlockId b_from = pl_macros[imacro_from].members[imember_from].blk_index; - t_pl_loc curr_to = place_ctx.block_locs[b_from].loc + swap_offset; - t_pl_loc curr_from = place_ctx.block_locs[b_from].loc; + t_pl_loc curr_to = block_locs[b_from].loc + swap_offset; + t_pl_loc curr_from = block_locs[b_from].loc; - ClusterBlockId b_to = place_ctx.pl_macros[imacro_to].members[imember_to].blk_index; - VTR_ASSERT_SAFE(curr_to == place_ctx.block_locs[b_to].loc); + ClusterBlockId b_to = pl_macros[imacro_to].members[imember_to].blk_index; + VTR_ASSERT_SAFE(curr_to == block_locs[b_to].loc); // Check whether block to is compatible with from location - if (b_to != EMPTY_BLOCK_ID && b_to != INVALID_BLOCK_ID) { - if (!(is_legal_swap_to_location(b_to, curr_from))) { + if (b_to != ClusterBlockId::INVALID()) { + if (!(is_legal_swap_to_location(b_to, curr_from, blk_loc_registry))) { return e_block_move_result::ABORT; } } - if (!is_legal_swap_to_location(b_from, curr_to)) { + if (!is_legal_swap_to_location(b_from, curr_to, blk_loc_registry)) { log_move_abort("macro_from swap to location illegal"); return e_block_move_result::ABORT; } - auto outcome = record_single_block_swap(blocks_affected, b_from, curr_to); + auto outcome = record_single_block_swap(blocks_affected, b_from, curr_to, blk_loc_registry); if (outcome != e_block_move_result::VALID) { return outcome; } } - if (imember_to < int(place_ctx.pl_macros[imacro_to].members.size())) { + if (imember_to < int(pl_macros[imacro_to].members.size())) { //The to macro extends beyond the from macro. // //Swap the remainder of the 'to' macro to locations after the 'from' macro. //Note that we are swapping in the opposite direction so the swap offsets are inverted. - return record_macro_swaps(blocks_affected, imacro_to, imember_to, -swap_offset); + return record_macro_swaps(blocks_affected, imacro_to, imember_to, -swap_offset, blk_loc_registry); } return e_block_move_result::VALID; @@ -327,25 +346,28 @@ e_block_move_result record_macro_macro_swaps(t_pl_blocks_to_be_moved& blocks_aff e_block_move_result record_macro_move(t_pl_blocks_to_be_moved& blocks_affected, std::vector& displaced_blocks, const int imacro, - t_pl_offset swap_offset) { - auto& place_ctx = g_vpr_ctx.placement(); + t_pl_offset swap_offset, + const BlkLocRegistry& blk_loc_registry) { + const auto& pl_macros = g_vpr_ctx.placement().pl_macros; + const auto& block_locs = blk_loc_registry.block_locs(); + const GridBlock& grid_blocks = blk_loc_registry.grid_blocks(); - for (const t_pl_macro_member& member : place_ctx.pl_macros[imacro].members) { - t_pl_loc from = place_ctx.block_locs[member.blk_index].loc; + for (const t_pl_macro_member& member : pl_macros[imacro].members) { + t_pl_loc from = block_locs[member.blk_index].loc; t_pl_loc to = from + swap_offset; - if (!is_legal_swap_to_location(member.blk_index, to)) { + if (!is_legal_swap_to_location(member.blk_index, to, blk_loc_registry)) { log_move_abort("macro move to location illegal"); return e_block_move_result::ABORT; } - ClusterBlockId blk_to = place_ctx.grid_blocks.block_at_location(to); + ClusterBlockId blk_to = grid_blocks.block_at_location(to); - blocks_affected.record_block_move(member.blk_index, to); + blocks_affected.record_block_move(member.blk_index, to, blk_loc_registry); int imacro_to = -1; - get_imacro_from_iblk(&imacro_to, blk_to, place_ctx.pl_macros); + get_imacro_from_iblk(&imacro_to, blk_to, pl_macros); if (blk_to && imacro_to != imacro) { //Block displaced only if exists and not part of current macro displaced_blocks.push_back(blk_to); } @@ -356,31 +378,37 @@ e_block_move_result record_macro_move(t_pl_blocks_to_be_moved& blocks_affected, //Returns the set of macros affected by moving imacro by the specified offset // //The resulting 'macros' may contain duplicates -e_block_move_result identify_macro_self_swap_affected_macros(std::vector& macros, const int imacro, t_pl_offset swap_offset) { +e_block_move_result identify_macro_self_swap_affected_macros(std::vector& macros, + const int imacro, + t_pl_offset swap_offset, + const BlkLocRegistry& blk_loc_registry) { + const auto& pl_macros = g_vpr_ctx.placement().pl_macros; + const auto& block_locs = blk_loc_registry.block_locs(); + const GridBlock& grid_blocks = blk_loc_registry.grid_blocks(); + e_block_move_result outcome = e_block_move_result::VALID; - auto& place_ctx = g_vpr_ctx.placement(); - for (size_t imember = 0; imember < place_ctx.pl_macros[imacro].members.size() && outcome == e_block_move_result::VALID; ++imember) { - ClusterBlockId blk = place_ctx.pl_macros[imacro].members[imember].blk_index; + for (size_t imember = 0; imember < pl_macros[imacro].members.size() && outcome == e_block_move_result::VALID; ++imember) { + ClusterBlockId blk = pl_macros[imacro].members[imember].blk_index; - t_pl_loc from = place_ctx.block_locs[blk].loc; + t_pl_loc from = block_locs[blk].loc; t_pl_loc to = from + swap_offset; - if (!is_legal_swap_to_location(blk, to)) { + if (!is_legal_swap_to_location(blk, to, blk_loc_registry)) { log_move_abort("macro move to location illegal"); return e_block_move_result::ABORT; } - ClusterBlockId blk_to = place_ctx.grid_blocks.block_at_location(to); + ClusterBlockId blk_to = grid_blocks.block_at_location(to); int imacro_to = -1; - get_imacro_from_iblk(&imacro_to, blk_to, place_ctx.pl_macros); + get_imacro_from_iblk(&imacro_to, blk_to, pl_macros); if (imacro_to != -1) { auto itr = std::find(macros.begin(), macros.end(), imacro_to); if (itr == macros.end()) { macros.push_back(imacro_to); - outcome = identify_macro_self_swap_affected_macros(macros, imacro_to, swap_offset); + outcome = identify_macro_self_swap_affected_macros(macros, imacro_to, swap_offset, blk_loc_registry); } } } @@ -389,16 +417,16 @@ e_block_move_result identify_macro_self_swap_affected_macros(std::vector& m e_block_move_result record_macro_self_swaps(t_pl_blocks_to_be_moved& blocks_affected, const int imacro, - t_pl_offset swap_offset) { - auto& place_ctx = g_vpr_ctx.placement(); + t_pl_offset swap_offset, + const BlkLocRegistry& blk_loc_registry) { + const auto& pl_macros = g_vpr_ctx.placement().pl_macros; //Reset any partial move blocks_affected.clear_move_blocks(); //Collect the macros affected std::vector affected_macros; - auto outcome = identify_macro_self_swap_affected_macros(affected_macros, imacro, - swap_offset); + auto outcome = identify_macro_self_swap_affected_macros(affected_macros, imacro, swap_offset, blk_loc_registry); if (outcome != e_block_move_result::VALID) { return outcome; @@ -411,7 +439,7 @@ e_block_move_result record_macro_self_swaps(t_pl_blocks_to_be_moved& blocks_affe //Move all the affected macros by the offset for (int imacro_affected : affected_macros) { - outcome = record_macro_move(blocks_affected, displaced_blocks, imacro_affected, swap_offset); + outcome = record_macro_move(blocks_affected, displaced_blocks, imacro_affected, swap_offset, blk_loc_registry); if (outcome != e_block_move_result::VALID) { return outcome; @@ -420,7 +448,7 @@ e_block_move_result record_macro_self_swaps(t_pl_blocks_to_be_moved& blocks_affe auto is_non_macro_block = [&](ClusterBlockId blk) { int imacro_blk = -1; - get_imacro_from_iblk(&imacro_blk, blk, place_ctx.pl_macros); + get_imacro_from_iblk(&imacro_blk, blk, pl_macros); if (std::find(affected_macros.begin(), affected_macros.end(), imacro_blk) != affected_macros.end()) { return false; @@ -438,26 +466,29 @@ e_block_move_result record_macro_self_swaps(t_pl_blocks_to_be_moved& blocks_affe //Fit the displaced blocks into the empty locations auto loc_itr = empty_locs.begin(); - for (auto blk : non_macro_displaced_blocks) { - outcome = blocks_affected.record_block_move(blk, *loc_itr); + for (ClusterBlockId blk : non_macro_displaced_blocks) { + outcome = blocks_affected.record_block_move(blk, *loc_itr, blk_loc_registry); ++loc_itr; } return outcome; } -bool is_legal_swap_to_location(ClusterBlockId blk, t_pl_loc to) { +bool is_legal_swap_to_location(ClusterBlockId blk, + t_pl_loc to, + const BlkLocRegistry& blk_loc_registry) { //Make sure that the swap_to location is valid //It must be: // * on chip, and // * match the correct block type // //Note that we need to explicitly check that the types match, since the device floorplan is not - //(neccessarily) translationally invariant for an arbitrary macro + //(necessarily) translationally invariant for an arbitrary macro + const auto& device_ctx = g_vpr_ctx.device(); + const auto& cluster_ctx = g_vpr_ctx.clustering(); + const auto& block_locs = blk_loc_registry.block_locs(); + const GridBlock& grid_blocks = blk_loc_registry.grid_blocks(); - auto& device_ctx = g_vpr_ctx.device(); - auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.placement(); if (to.x < 0 || to.x >= int(device_ctx.grid.width()) || to.y < 0 || to.y >= int(device_ctx.grid.height()) @@ -474,9 +505,9 @@ bool is_legal_swap_to_location(ClusterBlockId blk, t_pl_loc to) { return false; } // If the destination block is user constrained, abort this swap - auto b_to = place_ctx.grid_blocks.block_at_location(to); - if (b_to != INVALID_BLOCK_ID && b_to != EMPTY_BLOCK_ID) { - if (place_ctx.block_locs[b_to].is_fixed) { + ClusterBlockId b_to = grid_blocks.block_at_location(to); + if (b_to) { + if (block_locs[b_to].is_fixed) { return false; } } @@ -534,25 +565,18 @@ void enable_placer_debug(const t_placer_opts& placer_opts, } #endif -#ifdef VTR_ENABLE_DEBUG_LOGGING ClusterBlockId propose_block_to_move(const t_placer_opts& placer_opts, int& logical_blk_type_index, bool highly_crit_block, ClusterNetId* net_from, - int* pin_from) { -#else -ClusterBlockId propose_block_to_move(const t_placer_opts& /* placer_opts */, - int& logical_blk_type_index, - bool highly_crit_block, - ClusterNetId* net_from, - int* pin_from) { -#endif + int* pin_from, + const PlacerState& placer_state) { ClusterBlockId b_from = ClusterBlockId::INVALID(); auto& cluster_ctx = g_vpr_ctx.clustering(); if (logical_blk_type_index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block if (highly_crit_block) { - b_from = pick_from_highly_critical_block(*net_from, *pin_from); + b_from = pick_from_highly_critical_block(*net_from, *pin_from, placer_state); } else { b_from = pick_from_block(); } @@ -563,13 +587,15 @@ ClusterBlockId propose_block_to_move(const t_placer_opts& /* placer_opts */, } } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block if (highly_crit_block) { - b_from = pick_from_highly_critical_block(*net_from, *pin_from, logical_blk_type_index); + b_from = pick_from_highly_critical_block(*net_from, *pin_from, logical_blk_type_index, placer_state); } else { b_from = pick_from_block(logical_blk_type_index); } } #ifdef VTR_ENABLE_DEBUG_LOGGING enable_placer_debug(placer_opts, b_from); +#else + (void)placer_opts; #endif return b_from; @@ -620,10 +646,12 @@ ClusterBlockId pick_from_block(const int logical_blk_type_index) { //Pick a random highly critical block to be swapped with another random block. //If none is found return ClusterBlockId::INVALID() -ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_from) { - auto& place_move_ctx = g_placer_ctx.move(); - auto& place_ctx = g_vpr_ctx.placement(); +ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, + int& pin_from, + const PlacerState& placer_state) { auto& cluster_ctx = g_vpr_ctx.clustering(); + auto& place_move_ctx = placer_state.move(); + auto& block_locs = placer_state.block_locs(); //Initialize critical net and pin to be invalid net_from = ClusterNetId::INVALID(); @@ -638,7 +666,7 @@ ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_ std::pair crit_pin = place_move_ctx.highly_crit_pins[vtr::irand(place_move_ctx.highly_crit_pins.size() - 1)]; ClusterBlockId b_from = cluster_ctx.clb_nlist.net_driver_block(crit_pin.first); - if (place_ctx.block_locs[b_from].is_fixed) { + if (block_locs[b_from].is_fixed) { return ClusterBlockId::INVALID(); //Block is fixed, cannot move } @@ -652,10 +680,13 @@ ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_ //Pick a random highly critical block with a specified block type to be swapped with another random block. //If none is found return ClusterBlockId::INVALID() -ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_from, const int logical_blk_type_index) { - auto& place_move_ctx = g_placer_ctx.move(); - auto& place_ctx = g_vpr_ctx.placement(); +ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, + int& pin_from, + const int logical_blk_type_index, + const PlacerState& placer_state) { auto& cluster_ctx = g_vpr_ctx.clustering(); + auto& place_move_ctx = placer_state.move(); + auto& block_locs = placer_state.block_locs(); //Initialize critical net and pin to be invalid net_from = ClusterNetId::INVALID(); @@ -674,7 +705,7 @@ ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_ //blk_type from propose move doesn't account for the EMPTY type auto b_from_type = cluster_ctx.clb_nlist.block_type(b_from); if (b_from_type->index == logical_blk_type_index) { - if (place_ctx.block_locs[b_from].is_fixed) { + if (block_locs[b_from].is_fixed) { return ClusterBlockId::INVALID(); //Block is fixed, cannot move } @@ -690,9 +721,10 @@ ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_ bool find_to_loc_uniform(t_logical_block_type_ptr type, float rlim, - const t_pl_loc from, + const t_pl_loc& from, t_pl_loc& to, - ClusterBlockId b_from) { + ClusterBlockId b_from, + const BlkLocRegistry& blk_loc_registry) { //Finds a legal swap to location for the given type, starting from 'from.x' and 'from.y' // //Note that the range limit (rlim) is applied in a logical sense (i.e. 'compressed' grid space consisting @@ -738,9 +770,10 @@ bool find_to_loc_uniform(t_logical_block_type_ptr type, compressed_locs[to_layer_num], search_range, to_compressed_loc, - false, + /*is_median=*/false, to_layer_num, - false); + /*search_for_empty=*/false, + blk_loc_registry); if (!legal) { //No valid position found @@ -779,7 +812,8 @@ bool find_to_loc_median(t_logical_block_type_ptr blk_type, const t_pl_loc& from_loc, const t_bb* limit_coords, t_pl_loc& to_loc, - ClusterBlockId b_from) { + ClusterBlockId b_from, + const BlkLocRegistry& blk_loc_registry) { int num_layers = g_vpr_ctx.device().grid.get_num_layers(); const int to_layer_num = to_loc.layer; VTR_ASSERT(to_layer_num != OPEN); @@ -835,9 +869,10 @@ bool find_to_loc_median(t_logical_block_type_ptr blk_type, from_compressed_locs[to_layer_num], search_range, to_compressed_loc, - true, + /*is_median=*/true, to_layer_num, - false); + /*search_for_empty=*/false, + blk_loc_registry); if (!legal) { //No valid position found @@ -868,7 +903,8 @@ bool find_to_loc_centroid(t_logical_block_type_ptr blk_type, const t_pl_loc& centroid, const t_range_limiters& range_limiters, t_pl_loc& to_loc, - ClusterBlockId b_from) { + ClusterBlockId b_from, + const BlkLocRegistry& blk_loc_registry) { //Retrieve the compressed block grid for this block type const auto& compressed_block_grid = g_vpr_ctx.placement().compressed_block_grids[blk_type->index]; const int to_layer_num = centroid.layer; @@ -921,9 +957,10 @@ bool find_to_loc_centroid(t_logical_block_type_ptr blk_type, from_compressed_loc[to_layer_num], search_range, to_compressed_loc, - false, + /*is_median=*/false, to_layer_num, - false); + /*search_for_empty=*/false, + blk_loc_registry); if (!legal) { //No valid position found @@ -984,9 +1021,9 @@ void compressed_grid_to_loc(t_logical_block_type_ptr blk_type, } int find_empty_compatible_subtile(t_logical_block_type_ptr type, - const t_physical_tile_loc& to_loc) { + const t_physical_tile_loc& to_loc, + const GridBlock& grid_blocks) { auto& device_ctx = g_vpr_ctx.device(); - auto& place_ctx = g_vpr_ctx.placement(); const auto& compressed_block_grid = g_vpr_ctx.placement().compressed_block_grids[type->index]; int return_sub_tile = -1; @@ -994,10 +1031,11 @@ int find_empty_compatible_subtile(t_logical_block_type_ptr type, t_pl_loc to_uncompressed_loc; compressed_grid_to_loc(type, to_loc, to_uncompressed_loc); const t_physical_tile_loc to_phy_uncompressed_loc{to_uncompressed_loc.x, to_uncompressed_loc.y, to_uncompressed_loc.layer}; - const auto& phy_type = device_ctx.grid.get_physical_type(to_phy_uncompressed_loc); + const t_physical_tile_type_ptr phy_type = device_ctx.grid.get_physical_type(to_phy_uncompressed_loc); const auto& compatible_sub_tiles = compressed_block_grid.compatible_sub_tiles_for_tile.at(phy_type->index); - for (const auto& sub_tile : compatible_sub_tiles) { - if (place_ctx.grid_blocks.is_sub_tile_empty(to_phy_uncompressed_loc, sub_tile)) { + + for (const int sub_tile : compatible_sub_tiles) { + if (grid_blocks.is_sub_tile_empty(to_phy_uncompressed_loc, sub_tile)) { return_sub_tile = sub_tile; break; } @@ -1013,7 +1051,8 @@ bool find_compatible_compressed_loc_in_range(t_logical_block_type_ptr type, t_physical_tile_loc& to_loc, bool is_median, int to_layer_num, - bool search_for_empty) { + bool search_for_empty, + const BlkLocRegistry& blk_loc_registry) { //TODO For the time being, the blocks only moved in the same layer. This assertion should be removed after VPR is updated to move blocks between layers VTR_ASSERT(to_layer_num == from_loc.layer_num); const auto& compressed_block_grid = g_vpr_ctx.placement().compressed_block_grids[type->index]; @@ -1096,7 +1135,7 @@ bool find_compatible_compressed_loc_in_range(t_logical_block_type_ptr type, if (from_loc.x == to_loc.x && from_loc.y == to_loc.y && from_loc.layer_num == to_layer_num) { continue; //Same from/to location -- try again for new y-position } else if (search_for_empty) { // Check if the location has at least one empty sub-tile - legal = find_empty_compatible_subtile(type, to_loc) >= 0; + legal = find_empty_compatible_subtile(type, to_loc, blk_loc_registry.grid_blocks()) >= 0; } else { legal = true; } @@ -1253,20 +1292,23 @@ std::string e_move_result_to_string(e_move_result move_outcome) { return move_result_to_string[move_outcome]; } -int find_free_layer(t_logical_block_type_ptr logical_block, const t_pl_loc& loc) { +int find_free_layer(t_logical_block_type_ptr logical_block, + const t_pl_loc& loc, + const BlkLocRegistry& blk_loc_registry) { const auto& device_ctx = g_vpr_ctx.device(); - const auto& place_ctx = g_vpr_ctx.placement(); + const auto& compressed_grids = g_vpr_ctx.placement().compressed_block_grids; + const GridBlock& grid_blocks = blk_loc_registry.grid_blocks(); // TODO: Compatible layer vector should be shuffled first, and then iterated through int free_layer = loc.layer; VTR_ASSERT(loc.layer != OPEN); if (device_ctx.grid.get_num_layers() > 1) { - const auto& compatible_layers = place_ctx.compressed_block_grids[logical_block->index].get_layer_nums(); + const auto& compatible_layers = compressed_grids[logical_block->index].get_layer_nums(); if (compatible_layers.size() > 1) { - if (place_ctx.grid_blocks.block_at_location(loc) != EMPTY_BLOCK_ID) { + if (grid_blocks.block_at_location(loc)) { for (const auto& layer : compatible_layers) { if (layer != free_layer) { - if (place_ctx.grid_blocks.block_at_location(loc) == EMPTY_BLOCK_ID) { + if (grid_blocks.block_at_location(loc) == ClusterBlockId::INVALID()) { free_layer = layer; break; } diff --git a/vpr/src/place/move_utils.h b/vpr/src/place/move_utils.h index 3bb70438eae..80359dd07a2 100644 --- a/vpr/src/place/move_utils.h +++ b/vpr/src/place/move_utils.h @@ -1,9 +1,13 @@ #ifndef VPR_MOVE_UTILS_H #define VPR_MOVE_UTILS_H + #include "vpr_types.h" #include "move_transactions.h" #include "compressed_grid.h" +class PlacerState; +class BlkLocRegistry; + /* Cut off for incremental bounding box updates. * * 4 is fastest -- I checked. */ /* To turn off incremental bounding box updates, set this to a huge value */ @@ -87,13 +91,28 @@ struct t_range_limiters { float dm_rlim; }; +/** + * These variables keep track of the number of swaps + * rejected, accepted or aborted. The total number of swap attempts + * is the sum of the three number. + */ +struct t_swap_stats { + int num_swap_rejected = 0; + int num_swap_accepted = 0; + int num_swap_aborted = 0; + int num_ts_called = 0; +}; + //Records a reasons for an aborted move void log_move_abort(std::string_view reason); //Prints a breif report about aborted move reasons and counts void report_aborted_moves(); -e_create_move create_move(t_pl_blocks_to_be_moved& blocks_affected, ClusterBlockId b_from, t_pl_loc to); +e_create_move create_move(t_pl_blocks_to_be_moved& blocks_affected, + ClusterBlockId b_from, + t_pl_loc to, + const BlkLocRegistry& blk_loc_registry); /** * @brief Find the blocks that will be affected by a move of b_from to to_loc @@ -103,19 +122,45 @@ e_create_move create_move(t_pl_blocks_to_be_moved& blocks_affected, ClusterBlock * @return e_block_move_result ABORT if either of the the moving blocks are already stored, or either of the blocks are fixed, to location is not * compatible, etc. INVERT if the "from" block is a single block and the "to" block is a macro. VALID otherwise. */ -e_block_move_result find_affected_blocks(t_pl_blocks_to_be_moved& blocks_affected, ClusterBlockId b_from, t_pl_loc to); - -e_block_move_result record_single_block_swap(t_pl_blocks_to_be_moved& blocks_affected, ClusterBlockId b_from, t_pl_loc to); - -e_block_move_result record_macro_swaps(t_pl_blocks_to_be_moved& blocks_affected, const int imacro_from, int& imember_from, t_pl_offset swap_offset); -e_block_move_result record_macro_macro_swaps(t_pl_blocks_to_be_moved& blocks_affected, const int imacro_from, int& imember_from, const int imacro_to, ClusterBlockId blk_to, t_pl_offset swap_offset); +e_block_move_result find_affected_blocks(t_pl_blocks_to_be_moved& blocks_affected, + ClusterBlockId b_from, + t_pl_loc to, + const BlkLocRegistry& blk_loc_registry); + +e_block_move_result record_single_block_swap(t_pl_blocks_to_be_moved& blocks_affected, + ClusterBlockId b_from, + t_pl_loc to, + const BlkLocRegistry& blk_loc_registry); + +e_block_move_result record_macro_swaps(t_pl_blocks_to_be_moved& blocks_affected, + const int imacro_from, + int& imember_from, + t_pl_offset swap_offset, + const BlkLocRegistry& blk_loc_registry); + +e_block_move_result record_macro_macro_swaps(t_pl_blocks_to_be_moved& blocks_affected, + const int imacro_from, + int& imember_from, + const int imacro_to, + ClusterBlockId blk_to, + t_pl_offset swap_offset, + const BlkLocRegistry& blk_loc_registry); e_block_move_result record_macro_move(t_pl_blocks_to_be_moved& blocks_affected, std::vector& displaced_blocks, const int imacro, - t_pl_offset swap_offset); -e_block_move_result identify_macro_self_swap_affected_macros(std::vector& macros, const int imacro, t_pl_offset swap_offset); -e_block_move_result record_macro_self_swaps(t_pl_blocks_to_be_moved& blocks_affected, const int imacro, t_pl_offset swap_offset); + t_pl_offset swap_offset, + const BlkLocRegistry& blk_loc_registry); + +e_block_move_result identify_macro_self_swap_affected_macros(std::vector& macros, + const int imacro, + t_pl_offset swap_offset, + const BlkLocRegistry& blk_loc_registry); + +e_block_move_result record_macro_self_swaps(t_pl_blocks_to_be_moved& blocks_affected, + const int imacro, + t_pl_offset swap_offset, + const BlkLocRegistry& blk_loc_registry); /** * @brief Check whether the "to" location is legal for the given "blk" @@ -123,7 +168,9 @@ e_block_move_result record_macro_self_swaps(t_pl_blocks_to_be_moved& blocks_affe * @param to * @return True if this would be a legal move, false otherwise */ -bool is_legal_swap_to_location(ClusterBlockId blk, t_pl_loc to); +bool is_legal_swap_to_location(ClusterBlockId blk, + t_pl_loc to, + const BlkLocRegistry& blk_loc_registry); /** * @brief Propose block for the RL agent based on required block type. @@ -139,7 +186,8 @@ ClusterBlockId propose_block_to_move(const t_placer_opts& placer_opts, int& logical_blk_type_index, bool highly_crit_block, ClusterNetId* net_from, - int* pin_from); + int* pin_from, + const PlacerState& placer_state); /** * Returns all movable clustered blocks with a specified logical block type. @@ -169,7 +217,9 @@ ClusterBlockId pick_from_block(int logical_blk_type_index); * * @return BlockId of the selected block, ClusterBlockId::INVALID() if no block with specified block type found */ -ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_from); +ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, + int& pin_from, + const PlacerState& placer_state); /** * @brief Find a block with a specific block type to be swapped with another block @@ -178,13 +228,17 @@ ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_ * * @return BlockId of the selected block, ClusterBlockId::INVALID() if no block with specified block type found */ -ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_from, int logical_blk_type_index); +ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, + int& pin_from, + int logical_blk_type_index, + const PlacerState& placer_state); bool find_to_loc_uniform(t_logical_block_type_ptr type, float rlim, - const t_pl_loc from, + const t_pl_loc& from, t_pl_loc& to, - ClusterBlockId b_from); + ClusterBlockId b_from, + const BlkLocRegistry& blk_loc_registry); // Accessor f_placer_breakpoint_reached // return true when a placer breakpoint is reached @@ -202,12 +256,19 @@ void set_placer_breakpoint_reached(bool); * if it was able to find a compatible location and false otherwise. * It is similar to find_to_loc_uniform but searching in a defined range instead of searching in a range around the current block location. * - * @param blk_type: the type of the moving block - * @param from_loc: the original location of the moving block - * @param limit_coords: the region where I can move the block to - * @param to_loc: the new location that the function picked for the block + * @param blk_type the type of the moving block + * @param from_loc the original location of the moving block + * @param limit_coords the region where I can move the block to + * @param to_loc the new location that the function picked for the block + * @param b_from The unique ID of the clustered block whose median location is to be computed. + * @param blk_loc_registry Information about clustered block locations. */ -bool find_to_loc_median(t_logical_block_type_ptr blk_type, const t_pl_loc& from_loc, const t_bb* limit_coords, t_pl_loc& to_loc, ClusterBlockId b_from); +bool find_to_loc_median(t_logical_block_type_ptr blk_type, + const t_pl_loc& from_loc, + const t_bb* limit_coords, + t_pl_loc& to_loc, + ClusterBlockId b_from, + const BlkLocRegistry& blk_loc_registry); /** * @brief Find a legal swap to location for the given type in a range around a specific location. @@ -228,7 +289,8 @@ bool find_to_loc_centroid(t_logical_block_type_ptr blk_type, const t_pl_loc& centeroid, const t_range_limiters& range_limiters, t_pl_loc& to_loc, - ClusterBlockId b_from); + ClusterBlockId b_from, + const BlkLocRegistry& blk_loc_registry); const std::string& move_type_to_string(e_move_type); @@ -253,12 +315,14 @@ void compressed_grid_to_loc(t_logical_block_type_ptr blk_type, * * @param type logical block type * @param to_loc The location to be checked + * @param grid_blocks A mapping from grid locations to clustered blocks placed there. * * @return int The subtile number if there is an empty compatible subtile, otherwise -1 * is returned to indicate that there are no empty subtiles compatible with the given type.. */ int find_empty_compatible_subtile(t_logical_block_type_ptr type, - const t_physical_tile_loc& to_loc); + const t_physical_tile_loc& to_loc, + const GridBlock& grid_blocks); /** * @brief find compressed location in a compressed range for a specific type in the given layer (to_layer_num) @@ -278,7 +342,8 @@ bool find_compatible_compressed_loc_in_range(t_logical_block_type_ptr type, t_physical_tile_loc& to_loc, bool is_median, int to_layer_num, - bool search_for_empty); + bool search_for_empty, + const BlkLocRegistry& blk_loc_registry); /** * @brief Get the the compressed loc from the uncompressed loc (grid_loc) @@ -366,12 +431,10 @@ std::string e_move_result_to_string(e_move_result move_outcome); * @brif Iterate over all layers that have a physical tile at the x-y location specified by "loc" that can accommodate "logical_block". * If the location in the layer specified by "layer_num" is empty, return that layer. Otherwise, * return a layer that is not occupied at that location. If there isn't any, again, return the layer of loc. - * - * @param logical_block - * @param loc - * @return */ -int find_free_layer(t_logical_block_type_ptr logical_block, const t_pl_loc& loc); +int find_free_layer(t_logical_block_type_ptr logical_block, + const t_pl_loc& loc, + const BlkLocRegistry& blk_loc_registry); int get_random_layer(t_logical_block_type_ptr logical_block); diff --git a/vpr/src/place/net_cost_handler.cpp b/vpr/src/place/net_cost_handler.cpp index 53aed32dea1..97384c5f1e8 100644 --- a/vpr/src/place/net_cost_handler.cpp +++ b/vpr/src/place/net_cost_handler.cpp @@ -24,15 +24,19 @@ * @date July 12, 2024 */ #include "net_cost_handler.h" + #include "clustered_netlist_fwd.h" #include "globals.h" #include "physical_types.h" -#include "placer_globals.h" +#include "placer_state.h" #include "move_utils.h" #include "place_timing_update.h" #include "noc_place_utils.h" #include "vtr_math.h" +#include +#include + using std::max; using std::min; @@ -46,13 +50,7 @@ enum class NetUpdateState { GOT_FROM_SCRATCH }; -/** - * @brief The error tolerance due to round off for the total cost computation. - * When we check it from scratch vs. incrementally. 0.01 means that there is a 1% error tolerance. - */ -#define ERROR_TOL .01 - -const int MAX_FANOUT_CROSSING_COUNT = 50; +static constexpr int MAX_FANOUT_CROSSING_COUNT = 50; /** * @brief Crossing counts for nets with different #'s of pins. From @@ -155,6 +153,12 @@ static struct TSInfo ts_info; static BBUpdater bb_updater; +static std::optional> placer_state_ref; + +void set_net_handlers_placer_state(PlacerState& placer_state) { + placer_state_ref = std::ref(placer_state); +} + /** * @param net * @param moved_blocks @@ -171,9 +175,9 @@ static bool driven_by_moved_block(const ClusterNetId net, * @param blk_pin * @param pl_moved_block */ -static void update_net_bb(const ClusterNetId& net, - const ClusterBlockId& blk, - const ClusterPinId& blk_pin, +static void update_net_bb(const ClusterNetId net, + const ClusterBlockId blk, + const ClusterPinId blk_pin, const t_pl_moved_block& pl_moved_block); /** @@ -208,9 +212,9 @@ static void record_affected_net(const ClusterNetId net); * @param place_algorithm Placement algorithm * @param delay_model Timing delay model used by placer * @param criticalities Connections timing criticalities - * @param blk_id Block ID of that the moving pin blongs to. + * @param blk_id Block ID of that the moving pin belongs to. * @param pin_id Pin ID of the moving pin - * @param moving_blk_inf Data structure that holds information, e.g., old location and new locatoin, about all moving blocks + * @param moving_blk_inf Data structure that holds information, e.g., old location and new location, about all moving blocks * @param affected_pins Netlist pins which are affected, in terms placement cost, by the proposed move. * @param timing_delta_c Timing cost change based on the proposed move * @param is_src_moving Is the moving pin the source of a net. @@ -545,7 +549,7 @@ double BBUpdater::get_net_cost(const ClusterNetId net_id) { } void BBUpdater::set_ts_bb_coord(const ClusterNetId net_id) { - auto& place_move_ctx = g_placer_ctx.mutable_move(); + auto& place_move_ctx = placer_state_ref->get().mutable_move(); if (m_cube_bb) { place_move_ctx.bb_coords[net_id] = ts_info.ts_bb_coord_new[net_id]; } else { @@ -554,7 +558,7 @@ void BBUpdater::set_ts_bb_coord(const ClusterNetId net_id) { } void BBUpdater::set_ts_edge(const ClusterNetId net_id) { - auto& place_move_ctx = g_placer_ctx.mutable_move(); + auto& place_move_ctx = placer_state_ref->get().mutable_move(); if (m_cube_bb) { place_move_ctx.bb_num_on_edges[net_id] = ts_info.ts_bb_edge_new[net_id]; } else { @@ -568,8 +572,7 @@ static bool driven_by_moved_block(const ClusterNetId net, const std::vector& moved_blocks) { auto& clb_nlist = g_vpr_ctx.clustering().clb_nlist; bool is_driven_by_move_blk = false; - ClusterBlockId net_driver_block = clb_nlist.net_driver_block( - net); + ClusterBlockId net_driver_block = clb_nlist.net_driver_block(net); for (const auto& block : moved_blocks) { if (net_driver_block == block.block_num) { @@ -581,11 +584,13 @@ static bool driven_by_moved_block(const ClusterNetId net, return is_driven_by_move_blk; } -static void update_net_bb(const ClusterNetId& net, - const ClusterBlockId& blk, - const ClusterPinId& blk_pin, +static void update_net_bb(const ClusterNetId net, + const ClusterBlockId blk, + const ClusterPinId blk_pin, const t_pl_moved_block& pl_moved_block) { - auto& cluster_ctx = g_vpr_ctx.clustering(); + const auto& cluster_ctx = g_vpr_ctx.clustering(); + const auto& placer_state = placer_state_ref->get(); + const auto& block_locs = placer_state.block_locs(); if (cluster_ctx.clb_nlist.net_sinks(net).size() < SMALL_NET) { //For small nets brute-force bounding box update is faster @@ -595,9 +600,10 @@ static void update_net_bb(const ClusterNetId& net, } } else { //For large nets, update bounding box incrementally - int iblk_pin = tile_pin_index(blk_pin); + int iblk_pin = placer_state.blk_loc_registry().tile_pin_index(blk_pin); - t_physical_tile_type_ptr blk_type = physical_tile_type(blk); + t_pl_loc block_loc = block_locs[blk].loc; + t_physical_tile_type_ptr blk_type = physical_tile_type(block_loc); int pin_width_offset = blk_type->pin_width_offset[iblk_pin]; int pin_height_offset = blk_type->pin_height_offset[iblk_pin]; bool is_driver = cluster_ctx.clb_nlist.pin_type(blk_pin) == PinType::DRIVER; @@ -647,19 +653,20 @@ static void update_td_delta_costs(const PlaceDelayModel* delay_model, * for incremental static timing analysis (incremental STA). */ auto& cluster_ctx = g_vpr_ctx.clustering(); + auto& placer_state = placer_state_ref->get(); + auto& block_locs = placer_state.block_locs(); - const auto& connection_delay = g_placer_ctx.timing().connection_delay; - auto& connection_timing_cost = g_placer_ctx.mutable_timing().connection_timing_cost; - auto& proposed_connection_delay = g_placer_ctx.mutable_timing().proposed_connection_delay; - auto& proposed_connection_timing_cost = g_placer_ctx.mutable_timing().proposed_connection_timing_cost; + const auto& connection_delay = placer_state.timing().connection_delay; + auto& connection_timing_cost = placer_state.mutable_timing().connection_timing_cost; + auto& proposed_connection_delay = placer_state.mutable_timing().proposed_connection_delay; + auto& proposed_connection_timing_cost = placer_state.mutable_timing().proposed_connection_timing_cost; if (cluster_ctx.clb_nlist.pin_type(pin) == PinType::DRIVER) { /* This pin is a net driver on a moved block. */ /* Recompute all point to point connection delays for the net sinks. */ for (size_t ipin = 1; ipin < cluster_ctx.clb_nlist.net_pins(net).size(); ipin++) { - float temp_delay = comp_td_single_connection_delay(delay_model, net, - ipin); + float temp_delay = comp_td_single_connection_delay(delay_model, block_locs, net, ipin); /* If the delay hasn't changed, do not mark this pin as affected */ if (temp_delay == connection_delay[net][ipin]) { continue; @@ -685,8 +692,7 @@ static void update_td_delta_costs(const PlaceDelayModel* delay_model, /* Get the sink pin index in the net */ int ipin = cluster_ctx.clb_nlist.pin_net_index(pin); - float temp_delay = comp_td_single_connection_delay(delay_model, net, - ipin); + float temp_delay = comp_td_single_connection_delay(delay_model, block_locs, net, ipin); /* If the delay hasn't changed, do not mark this pin as affected */ if (temp_delay == connection_delay[net][ipin]) { return; @@ -696,8 +702,7 @@ static void update_td_delta_costs(const PlaceDelayModel* delay_model, proposed_connection_delay[net][ipin] = temp_delay; proposed_connection_timing_cost[net][ipin] = criticalities.criticality(net, ipin) * temp_delay; - delta_timing_cost += proposed_connection_timing_cost[net][ipin] - - connection_timing_cost[net][ipin]; + delta_timing_cost += proposed_connection_timing_cost[net][ipin] - connection_timing_cost[net][ipin]; /* Record this connection in blocks_affected.affected_pins */ affected_pins.push_back(pin); @@ -760,42 +765,37 @@ static void get_non_updatable_bb(ClusterNetId net_id, t_bb& bb_coord_new, vtr::NdMatrixProxy num_sink_pin_layer) { //TODO: account for multiple physical pin instances per logical pin - - int xmax, ymax, layer_max, xmin, ymin, layer_min, x, y, layer; - int pnum; - auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.placement(); auto& device_ctx = g_vpr_ctx.device(); + auto& placer_state = placer_state_ref->get(); + auto& block_locs = placer_state.block_locs(); ClusterBlockId bnum = cluster_ctx.clb_nlist.net_driver_block(net_id); - pnum = net_pin_to_tile_pin_index(net_id, 0); + int pnum = placer_state.blk_loc_registry().net_pin_to_tile_pin_index(net_id, 0); - x = place_ctx.block_locs[bnum].loc.x - + physical_tile_type(bnum)->pin_width_offset[pnum]; - y = place_ctx.block_locs[bnum].loc.y - + physical_tile_type(bnum)->pin_height_offset[pnum]; - layer = place_ctx.block_locs[bnum].loc.layer; + t_pl_loc block_loc = block_locs[bnum].loc; + int x = block_loc.x + physical_tile_type(block_loc)->pin_width_offset[pnum]; + int y = block_loc.y + physical_tile_type(block_loc)->pin_height_offset[pnum]; + int layer = block_loc.layer; - xmin = x; - ymin = y; - layer_min = layer; - xmax = x; - ymax = y; - layer_max = layer; + int xmin = x; + int ymin = y; + int layer_min = layer; + int xmax = x; + int ymax = y; + int layer_max = layer; for (int layer_num = 0; layer_num < device_ctx.grid.get_num_layers(); layer_num++) { num_sink_pin_layer[layer_num] = 0; } - for (auto pin_id : cluster_ctx.clb_nlist.net_sinks(net_id)) { + for (ClusterPinId pin_id : cluster_ctx.clb_nlist.net_sinks(net_id)) { bnum = cluster_ctx.clb_nlist.pin_block(pin_id); - pnum = tile_pin_index(pin_id); - x = place_ctx.block_locs[bnum].loc.x - + physical_tile_type(bnum)->pin_width_offset[pnum]; - y = place_ctx.block_locs[bnum].loc.y - + physical_tile_type(bnum)->pin_height_offset[pnum]; - layer = place_ctx.block_locs[bnum].loc.layer; + block_loc = block_locs[bnum].loc; + pnum = placer_state.blk_loc_registry().tile_pin_index(pin_id); + x = block_loc.x + physical_tile_type(block_loc)->pin_width_offset[pnum]; + y = block_loc.y + physical_tile_type(block_loc)->pin_height_offset[pnum]; + layer = block_loc.layer; if (x < xmin) { xmin = x; @@ -838,40 +838,36 @@ static void get_non_updatable_layer_bb(ClusterNetId net_id, std::vector& bb_coord_new, vtr::NdMatrixProxy num_sink_layer) { //TODO: account for multiple physical pin instances per logical pin - auto& device_ctx = g_vpr_ctx.device(); + auto& cluster_ctx = g_vpr_ctx.clustering(); + auto& placer_state = placer_state_ref->get(); + auto& block_locs = placer_state.block_locs(); + int num_layers = device_ctx.grid.get_num_layers(); for (int layer_num = 0; layer_num < device_ctx.grid.get_num_layers(); layer_num++) { num_sink_layer[layer_num] = 0; } - int pnum; - - auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.placement(); - ClusterBlockId bnum = cluster_ctx.clb_nlist.net_driver_block(net_id); - pnum = net_pin_to_tile_pin_index(net_id, 0); + t_pl_loc block_loc = block_locs[bnum].loc; + int pnum = placer_state.blk_loc_registry().net_pin_to_tile_pin_index(net_id, 0); - int src_x = place_ctx.block_locs[bnum].loc.x - + physical_tile_type(bnum)->pin_width_offset[pnum]; - int src_y = place_ctx.block_locs[bnum].loc.y - + physical_tile_type(bnum)->pin_height_offset[pnum]; + int src_x = block_locs[bnum].loc.x + physical_tile_type(block_loc)->pin_width_offset[pnum]; + int src_y = block_locs[bnum].loc.y + physical_tile_type(block_loc)->pin_height_offset[pnum]; std::vector xmin(num_layers, src_x); std::vector ymin(num_layers, src_y); std::vector xmax(num_layers, src_x); std::vector ymax(num_layers, src_y); - for (auto pin_id : cluster_ctx.clb_nlist.net_sinks(net_id)) { + for (ClusterPinId pin_id : cluster_ctx.clb_nlist.net_sinks(net_id)) { bnum = cluster_ctx.clb_nlist.pin_block(pin_id); - pnum = tile_pin_index(pin_id); - int x = place_ctx.block_locs[bnum].loc.x - + physical_tile_type(bnum)->pin_width_offset[pnum]; - int y = place_ctx.block_locs[bnum].loc.y - + physical_tile_type(bnum)->pin_height_offset[pnum]; + block_loc = block_locs[bnum].loc; + pnum = placer_state.blk_loc_registry().tile_pin_index(pin_id); + int x = block_locs[bnum].loc.x + physical_tile_type(block_loc)->pin_width_offset[pnum]; + int y = block_locs[bnum].loc.y + physical_tile_type(block_loc)->pin_height_offset[pnum]; - int layer_num = place_ctx.block_locs[bnum].loc.layer; + int layer_num = block_locs[bnum].loc.layer; num_sink_layer[layer_num]++; if (x < xmin[layer_num]) { xmin[layer_num] = x; @@ -913,7 +909,8 @@ static void update_bb(ClusterNetId net_id, const t_bb *curr_bb_edge, *curr_bb_coord; auto& device_ctx = g_vpr_ctx.device(); - auto& place_move_ctx = g_placer_ctx.move(); + auto& placer_state = placer_state_ref->get(); + auto& place_move_ctx = placer_state.move(); const int num_layers = device_ctx.grid.get_num_layers(); @@ -1182,7 +1179,8 @@ static void update_layer_bb(ClusterNetId net_id, t_physical_tile_loc pin_new_loc, bool is_output_pin) { auto& device_ctx = g_vpr_ctx.device(); - auto& place_move_ctx = g_placer_ctx.move(); + auto& placer_state = placer_state_ref->get(); + auto& place_move_ctx = placer_state.move(); pin_new_loc.x = max(min(pin_new_loc.x, device_ctx.grid.width() - 2), 1); //-2 for no perim channels pin_new_loc.y = max(min(pin_new_loc.y, device_ctx.grid.height() - 2), 1); //-2 for no perim channels @@ -1524,53 +1522,49 @@ static void get_bb_from_scratch(ClusterNetId net_id, t_bb& coords, t_bb& num_on_edges, vtr::NdMatrixProxy num_sink_pin_layer) { - int pnum, x, y, pin_layer, xmin, xmax, ymin, ymax, layer_min, layer_max; - int xmin_edge, xmax_edge, ymin_edge, ymax_edge, layer_min_edge, layer_max_edge; - auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.placement(); auto& device_ctx = g_vpr_ctx.device(); auto& grid = device_ctx.grid; + const auto& placer_state = placer_state_ref->get(); + auto& block_locs = placer_state.block_locs(); ClusterBlockId bnum = cluster_ctx.clb_nlist.net_driver_block(net_id); - pnum = net_pin_to_tile_pin_index(net_id, 0); + t_pl_loc block_loc = block_locs[bnum].loc; + int pnum = placer_state.blk_loc_registry().net_pin_to_tile_pin_index(net_id, 0); VTR_ASSERT_SAFE(pnum >= 0); - x = place_ctx.block_locs[bnum].loc.x - + physical_tile_type(bnum)->pin_width_offset[pnum]; - y = place_ctx.block_locs[bnum].loc.y - + physical_tile_type(bnum)->pin_height_offset[pnum]; - pin_layer = place_ctx.block_locs[bnum].loc.layer; + int x = block_loc.x + physical_tile_type(block_loc)->pin_width_offset[pnum]; + int y = block_loc.y + physical_tile_type(block_loc)->pin_height_offset[pnum]; + int pin_layer = block_loc.layer; x = max(min(x, grid.width() - 2), 1); y = max(min(y, grid.height() - 2), 1); pin_layer = max(min(pin_layer, grid.get_num_layers() - 1), 0); - xmin = x; - ymin = y; - layer_min = pin_layer; - xmax = x; - ymax = y; - layer_max = pin_layer; + int xmin = x; + int ymin = y; + int layer_min = pin_layer; + int xmax = x; + int ymax = y; + int layer_max = pin_layer; - xmin_edge = 1; - ymin_edge = 1; - layer_min_edge = 1; - xmax_edge = 1; - ymax_edge = 1; - layer_max_edge = 1; + int xmin_edge = 1; + int ymin_edge = 1; + int layer_min_edge = 1; + int xmax_edge = 1; + int ymax_edge = 1; + int layer_max_edge = 1; for (int layer_num = 0; layer_num < grid.get_num_layers(); layer_num++) { num_sink_pin_layer[layer_num] = 0; } - for (auto pin_id : cluster_ctx.clb_nlist.net_sinks(net_id)) { + for (ClusterPinId pin_id : cluster_ctx.clb_nlist.net_sinks(net_id)) { bnum = cluster_ctx.clb_nlist.pin_block(pin_id); - pnum = tile_pin_index(pin_id); - x = place_ctx.block_locs[bnum].loc.x - + physical_tile_type(bnum)->pin_width_offset[pnum]; - y = place_ctx.block_locs[bnum].loc.y - + physical_tile_type(bnum)->pin_height_offset[pnum]; - pin_layer = place_ctx.block_locs[bnum].loc.layer; + block_loc = block_locs[bnum].loc; + pnum = placer_state.blk_loc_registry().tile_pin_index(pin_id); + x = block_locs[bnum].loc.x + physical_tile_type(block_loc)->pin_width_offset[pnum]; + y = block_locs[bnum].loc.y + physical_tile_type(block_loc)->pin_height_offset[pnum]; + pin_layer = block_locs[bnum].loc.layer; /* Code below counts IO blocks as being within the 1..grid.width()-2, 1..grid.height()-2 clb array. * * This is because channels do not go out of the 0..grid.width()-2, 0..grid.height()-2 range, and * @@ -1649,6 +1643,11 @@ static void get_layer_bb_from_scratch(ClusterNetId net_id, std::vector& coords, vtr::NdMatrixProxy layer_pin_sink_count) { auto& device_ctx = g_vpr_ctx.device(); + auto& cluster_ctx = g_vpr_ctx.clustering(); + auto& grid = device_ctx.grid; + auto& placer_state = placer_state_ref->get(); + auto& block_locs = placer_state.block_locs(); + const int num_layers = device_ctx.grid.get_num_layers(); std::vector xmin(num_layers, OPEN); std::vector xmax(num_layers, OPEN); @@ -1661,17 +1660,13 @@ static void get_layer_bb_from_scratch(ClusterNetId net_id, std::vector num_sink_pin_layer(num_layers, 0); - auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.placement(); - auto& grid = device_ctx.grid; ClusterBlockId bnum = cluster_ctx.clb_nlist.net_driver_block(net_id); - int pnum_src = net_pin_to_tile_pin_index(net_id, 0); + t_pl_loc block_loc = block_locs[bnum].loc; + int pnum_src = placer_state.blk_loc_registry().net_pin_to_tile_pin_index(net_id, 0); VTR_ASSERT_SAFE(pnum_src >= 0); - int x_src = place_ctx.block_locs[bnum].loc.x - + physical_tile_type(bnum)->pin_width_offset[pnum_src]; - int y_src = place_ctx.block_locs[bnum].loc.y - + physical_tile_type(bnum)->pin_height_offset[pnum_src]; + int x_src = block_loc.x + physical_tile_type(block_loc)->pin_width_offset[pnum_src]; + int y_src = block_loc.y + physical_tile_type(block_loc)->pin_height_offset[pnum_src]; x_src = max(min(x_src, grid.width() - 2), 1); y_src = max(min(y_src, grid.height() - 2), 1); @@ -1690,16 +1685,15 @@ static void get_layer_bb_from_scratch(ClusterNetId net_id, ymax_edge[layer_num] = 1; } - for (auto pin_id : cluster_ctx.clb_nlist.net_sinks(net_id)) { + for (ClusterPinId pin_id : cluster_ctx.clb_nlist.net_sinks(net_id)) { bnum = cluster_ctx.clb_nlist.pin_block(pin_id); - int pnum = tile_pin_index(pin_id); - int layer = place_ctx.block_locs[bnum].loc.layer; + block_loc = block_locs[bnum].loc; + int pnum = placer_state.blk_loc_registry().tile_pin_index(pin_id); + int layer = block_locs[bnum].loc.layer; VTR_ASSERT_SAFE(layer >= 0 && layer < num_layers); num_sink_pin_layer[layer]++; - int x = place_ctx.block_locs[bnum].loc.x - + physical_tile_type(bnum)->pin_width_offset[pnum]; - int y = place_ctx.block_locs[bnum].loc.y - + physical_tile_type(bnum)->pin_height_offset[pnum]; + int x = block_loc.x + physical_tile_type(block_loc)->pin_width_offset[pnum]; + int y = block_loc.y + physical_tile_type(block_loc)->pin_height_offset[pnum]; /* Code below counts IO blocks as being within the 1..grid.width()-2, 1..grid.height()-2 clb array. * * This is because channels do not go out of the 0..grid.width()-2, 0..grid.height()-2 range, and * @@ -1759,12 +1753,9 @@ static void get_layer_bb_from_scratch(ClusterNetId net_id, static double get_net_cost(ClusterNetId net_id, const t_bb& bb) { /* Finds the cost due to one net by looking at its coordinate bounding * * box. */ - - double ncost, crossing; auto& cluster_ctx = g_vpr_ctx.clustering(); - crossing = wirelength_crossing_count( - cluster_ctx.clb_nlist.net_pins(net_id).size()); + double crossing = wirelength_crossing_count( cluster_ctx.clb_nlist.net_pins(net_id).size()); /* Could insert a check for xmin == xmax. In that case, assume * * connection will be made with no bends and hence no x-cost. * @@ -1773,11 +1764,9 @@ static double get_net_cost(ClusterNetId net_id, const t_bb& bb) { /* Cost = wire length along channel * cross_count / average * * channel capacity. Do this for x, then y direction and add. */ - ncost = (bb.xmax - bb.xmin + 1) * crossing - * chanx_place_cost_fac[bb.ymax][bb.ymin - 1]; - - ncost += (bb.ymax - bb.ymin + 1) * crossing - * chany_place_cost_fac[bb.xmax][bb.xmin - 1]; + double ncost; + ncost = (bb.xmax - bb.xmin + 1) * crossing * chanx_place_cost_fac[bb.ymax][bb.ymin - 1]; + ncost += (bb.ymax - bb.ymin + 1) * crossing * chany_place_cost_fac[bb.xmax][bb.xmin - 1]; return (ncost); } @@ -1822,11 +1811,9 @@ static double get_net_layer_bb_wire_cost(ClusterNetId /* net_id */, } static double get_net_wirelength_estimate(ClusterNetId net_id, const t_bb& bb) { - double ncost, crossing; auto& cluster_ctx = g_vpr_ctx.clustering(); - crossing = wirelength_crossing_count( - cluster_ctx.clb_nlist.net_pins(net_id).size()); + double crossing = wirelength_crossing_count(cluster_ctx.clb_nlist.net_pins(net_id).size()); /* Could insert a check for xmin == xmax. In that case, assume * * connection will be made with no bends and hence no x-cost. * @@ -1835,11 +1822,12 @@ static double get_net_wirelength_estimate(ClusterNetId net_id, const t_bb& bb) { /* Cost = wire length along channel * cross_count / average * * channel capacity. Do this for x, then y direction and add. */ + double ncost; ncost = (bb.xmax - bb.xmin + 1) * crossing; ncost += (bb.ymax - bb.ymin + 1) * crossing; - return (ncost); + return ncost; } static double get_net_wirelength_from_layer_bb(ClusterNetId /* net_id */, @@ -1958,14 +1946,14 @@ double comp_bb_cost(e_cost_methods method) { double cost = 0; double expected_wirelength = 0.0; auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_move_ctx = g_placer_ctx.mutable_move(); + auto& placer_state = placer_state_ref->get(); + auto& place_move_ctx = placer_state.mutable_move(); for (auto net_id : cluster_ctx.clb_nlist.nets()) { /* for each net ... */ if (!cluster_ctx.clb_nlist.net_is_ignored(net_id)) { /* Do only if not ignored. */ /* Small nets don't use incremental updating on their bounding boxes, * * so they can use a fast bounding box calculator. */ - if (cluster_ctx.clb_nlist.net_sinks(net_id).size() >= SMALL_NET - && method == NORMAL) { + if (cluster_ctx.clb_nlist.net_sinks(net_id).size() >= SMALL_NET && method == e_cost_methods::NORMAL) { get_bb_from_scratch(net_id, place_move_ctx.bb_coords[net_id], place_move_ctx.bb_num_on_edges[net_id], @@ -1978,12 +1966,12 @@ double comp_bb_cost(e_cost_methods method) { pl_net_cost.net_cost[net_id] = get_net_cost(net_id, place_move_ctx.bb_coords[net_id]); cost += pl_net_cost.net_cost[net_id]; - if (method == CHECK) + if (method == e_cost_methods::CHECK) expected_wirelength += get_net_wirelength_estimate(net_id, place_move_ctx.bb_coords[net_id]); } } - if (method == CHECK) { + if (method == e_cost_methods::CHECK) { VTR_LOG("\n"); VTR_LOG("BB estimate of min-dist (placement) wire length: %.0f\n", expected_wirelength); @@ -1995,14 +1983,14 @@ double comp_layer_bb_cost(e_cost_methods method) { double cost = 0; double expected_wirelength = 0.0; auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_move_ctx = g_placer_ctx.mutable_move(); + auto& placer_state = placer_state_ref->get(); + auto& place_move_ctx = placer_state.mutable_move(); for (auto net_id : cluster_ctx.clb_nlist.nets()) { /* for each net ... */ if (!cluster_ctx.clb_nlist.net_is_ignored(net_id)) { /* Do only if not ignored. */ /* Small nets don't use incremental updating on their bounding boxes, * * so they can use a fast bounding box calculator. */ - if (cluster_ctx.clb_nlist.net_sinks(net_id).size() >= SMALL_NET - && method == NORMAL) { + if (cluster_ctx.clb_nlist.net_sinks(net_id).size() >= SMALL_NET && method == e_cost_methods::NORMAL) { get_layer_bb_from_scratch(net_id, place_move_ctx.layer_bb_num_on_edges[net_id], place_move_ctx.layer_bb_coords[net_id], @@ -2017,14 +2005,14 @@ double comp_layer_bb_cost(e_cost_methods method) { place_move_ctx.layer_bb_coords[net_id], place_move_ctx.num_sink_pin_layer[size_t(net_id)]); cost += pl_net_cost.net_cost[net_id]; - if (method == CHECK) + if (method == e_cost_methods::CHECK) expected_wirelength += get_net_wirelength_from_layer_bb(net_id, place_move_ctx.layer_bb_coords[net_id], place_move_ctx.num_sink_pin_layer[size_t(net_id)]); } } - if (method == CHECK) { + if (method == e_cost_methods::CHECK) { VTR_LOG("\n"); VTR_LOG("BB estimate of min-dist (placement) wire length: %.0f\n", expected_wirelength); @@ -2035,7 +2023,8 @@ double comp_layer_bb_cost(e_cost_methods method) { void update_move_nets() { /* update net cost functions and reset flags. */ auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_move_ctx = g_placer_ctx.mutable_move(); + auto& placer_state = placer_state_ref->get(); + auto& place_move_ctx = placer_state.mutable_move(); for (const ClusterNetId ts_net : ts_info.ts_nets_to_update) { ClusterNetId net_id = ts_net; @@ -2072,9 +2061,11 @@ void recompute_costs_from_scratch(const t_placer_opts& placer_opts, const PlaceDelayModel* delay_model, const PlacerCriticalities* criticalities, t_placer_costs* costs) { + auto& placer_state = placer_state_ref->get(); + auto check_and_print_cost = [](double new_cost, double old_cost, - const std::string& cost_name) { + const std::string& cost_name) -> void { if (!vtr::isclose(new_cost, old_cost, ERROR_TOL, 0.)) { std::string msg = vtr::string_fmt( "in recompute_costs_from_scratch: new_%s = %g, old %s = %g, ERROR_TOL = %g\n", @@ -2089,7 +2080,7 @@ void recompute_costs_from_scratch(const t_placer_opts& placer_opts, if (placer_opts.place_algorithm.is_timing_driven()) { double new_timing_cost = 0.; - comp_td_costs(delay_model, *criticalities, &new_timing_cost); + comp_td_costs(delay_model, *criticalities, placer_state, &new_timing_cost); check_and_print_cost(new_timing_cost, costs->timing_cost, "timing_cost"); costs->timing_cost = new_timing_cost; } else { @@ -2163,8 +2154,7 @@ void alloc_and_load_chan_w_factors_for_place_cost(float place_cost_exp) { for (size_t high = 1; high < device_ctx.grid.height(); high++) { chanx_place_cost_fac[high][high] = device_ctx.chan_width.x_list[high]; for (size_t low = 0; low < high; low++) { - chanx_place_cost_fac[high][low] = chanx_place_cost_fac[high - 1][low] - + device_ctx.chan_width.x_list[high]; + chanx_place_cost_fac[high][low] = chanx_place_cost_fac[high - 1][low] + device_ctx.chan_width.x_list[high]; } } @@ -2203,8 +2193,7 @@ void alloc_and_load_chan_w_factors_for_place_cost(float place_cost_exp) { for (size_t high = 1; high < device_ctx.grid.width(); high++) { chany_place_cost_fac[high][high] = device_ctx.chan_width.y_list[high]; for (size_t low = 0; low < high; low++) { - chany_place_cost_fac[high][low] = chany_place_cost_fac[high - 1][low] - + device_ctx.chan_width.y_list[high]; + chany_place_cost_fac[high][low] = chany_place_cost_fac[high - 1][low] + device_ctx.chan_width.y_list[high]; } } diff --git a/vpr/src/place/net_cost_handler.h b/vpr/src/place/net_cost_handler.h index 0e72611b323..8ab0af8e554 100644 --- a/vpr/src/place/net_cost_handler.h +++ b/vpr/src/place/net_cost_handler.h @@ -4,15 +4,23 @@ #include "move_transactions.h" #include "place_util.h" +class PlacerState; + /** - * @brief The method used to calculate palcement cost - * @details For comp_cost. NORMAL means use the method that generates updateable bounding boxes for speed. + * @brief The error tolerance due to round off for the total cost computation. + * When we check it from scratch vs. incrementally. 0.01 means that there is a 1% error tolerance. + */ +constexpr double ERROR_TOL = .01; + +/** + * @brief The method used to calculate placement cost + * @details For comp_cost. NORMAL means use the method that generates updatable bounding boxes for speed. * CHECK means compute all bounding boxes from scratch using a very simple routine to allow checks * of the other costs. * NORMAL: Compute cost efficiently using incremental techniques. * CHECK: Brute-force cost computation; useful to validate the more complex incremental cost update code. */ -enum e_cost_methods { +enum class e_cost_methods { NORMAL, CHECK }; @@ -147,3 +155,5 @@ void init_try_swap_net_cost_structs(size_t num_nets, bool cube_bb); * @brief Free (layer_)ts_bb_edge_new, (layer_)ts_bb_coord_new, ts_layer_sink_pin_count, and ts_nets_to_update data structures. */ void free_try_swap_net_cost_structs(); + +void set_net_handlers_placer_state(PlacerState& placer_state); diff --git a/vpr/src/place/noc_place_checkpoint.cpp b/vpr/src/place/noc_place_checkpoint.cpp index 3e11d9c8eb6..b23cc4cf4ed 100644 --- a/vpr/src/place/noc_place_checkpoint.cpp +++ b/vpr/src/place/noc_place_checkpoint.cpp @@ -13,38 +13,39 @@ NoCPlacementCheckpoint::NoCPlacementCheckpoint() router_locations_.clear(); // Initializes checkpoint locations to invalid - for (const auto& router_bid : router_bids) { + for (const ClusterBlockId router_bid : router_bids) { router_locations_[router_bid] = t_pl_loc(OPEN, OPEN, OPEN, OPEN); } } -void NoCPlacementCheckpoint::save_checkpoint(double cost) { +void NoCPlacementCheckpoint::save_checkpoint(double cost, const vtr::vector_map& block_locs) { const auto& noc_ctx = g_vpr_ctx.noc(); - const auto& place_ctx = g_vpr_ctx.placement(); const std::vector& router_bids = noc_ctx.noc_traffic_flows_storage.get_router_clusters_in_netlist(); - for (const auto& router_bid : router_bids) { - t_pl_loc loc = place_ctx.block_locs[router_bid].loc; + for (const ClusterBlockId router_bid : router_bids) { + t_pl_loc loc = block_locs[router_bid].loc; router_locations_[router_bid] = loc; } valid_ = true; cost_ = cost; } -void NoCPlacementCheckpoint::restore_checkpoint(t_placer_costs& costs) { +void NoCPlacementCheckpoint::restore_checkpoint(t_placer_costs& costs, + BlkLocRegistry& blk_loc_registry) { const auto& noc_ctx = g_vpr_ctx.noc(); const auto& device_ctx = g_vpr_ctx.device(); - auto& place_ctx = g_vpr_ctx.mutable_placement(); + GridBlock& grid_blocks = blk_loc_registry.mutable_grid_blocks(); + const auto& block_locs = blk_loc_registry.block_locs(); // Get all physical routers const auto& noc_phy_routers = noc_ctx.noc_model.get_noc_routers(); // Clear all physical routers in placement - for (const auto& phy_router : noc_phy_routers) { - auto phy_loc = phy_router.get_router_physical_location(); + for (const NocRouter& phy_router : noc_phy_routers) { + t_physical_tile_loc phy_loc = phy_router.get_router_physical_location(); - place_ctx.grid_blocks.set_usage(phy_loc, 0); + grid_blocks.set_usage(phy_loc, 0); auto tile = device_ctx.grid.get_physical_type(phy_loc); for (const auto& sub_tile : tile->sub_tiles) { @@ -52,23 +53,18 @@ void NoCPlacementCheckpoint::restore_checkpoint(t_placer_costs& costs) { for (int k = 0; k < capacity.total(); k++) { const t_pl_loc loc(phy_loc, k + capacity.low); - if (place_ctx.grid_blocks.block_at_location(loc) != INVALID_BLOCK_ID) { - place_ctx.grid_blocks.set_block_at_location(loc, EMPTY_BLOCK_ID); - } + grid_blocks.set_block_at_location(loc, ClusterBlockId::INVALID()); } } } // Place routers based on router_locations_ - for (const auto& router_loc : router_locations_) { - ClusterBlockId router_blk_id = router_loc.first; - t_pl_loc location = router_loc.second; - - set_block_location(router_blk_id, location); + for (const auto& [router_blk_id, location] : router_locations_) { + blk_loc_registry.set_block_location(router_blk_id, location); } // Re-initialize routes and static variables that keep track of NoC-related costs - reinitialize_noc_routing(costs, {}); + reinitialize_noc_routing(costs, {}, block_locs); } bool NoCPlacementCheckpoint::is_valid() const { diff --git a/vpr/src/place/noc_place_checkpoint.h b/vpr/src/place/noc_place_checkpoint.h index 11df0a50732..3eb631c273e 100644 --- a/vpr/src/place/noc_place_checkpoint.h +++ b/vpr/src/place/noc_place_checkpoint.h @@ -36,16 +36,19 @@ class NoCPlacementCheckpoint { /** * @brief Saves the current NoC router placement as a checkpoint * - * @param cost: The placement cost associated with the current placement + * @param cost The placement cost associated with the current placement + * @param block_locs Stores where each clustered block (including NoC routers) is placed at. */ - void save_checkpoint(double cost); + void save_checkpoint(double cost, const vtr::vector_map& block_locs); /** * @brief Loads the save checkpoint into global placement data structues. * - * @param costs: Used to load NoC related costs for the checkpoint + * @param costs Used to load NoC related costs for the checkpoint + * @param blk_loc_registry To be updated with the save checkpoint for NoC router locations. */ - void restore_checkpoint(t_placer_costs& costs); + void restore_checkpoint(t_placer_costs& costs, + BlkLocRegistry& blk_loc_registry); /** * @brief Indicates whether the object is empty or it has already stored a diff --git a/vpr/src/place/noc_place_utils.cpp b/vpr/src/place/noc_place_utils.cpp index c5151b9c8a5..0b4a10fee1c 100644 --- a/vpr/src/place/noc_place_utils.cpp +++ b/vpr/src/place/noc_place_utils.cpp @@ -44,7 +44,8 @@ static std::unordered_set affected_noc_links; */ static bool select_random_router_cluster(ClusterBlockId& b_from, t_pl_loc& from, - t_logical_block_type_ptr& cluster_from_type); + t_logical_block_type_ptr& cluster_from_type, + const vtr::vector_map& block_locs); /** * @brief Given two traffic flow routes, finds links that appear @@ -58,7 +59,8 @@ static bool select_random_router_cluster(ClusterBlockId& b_from, static std::vector find_affected_links_by_flow_reroute(std::vector& prev_links, std::vector& curr_links); -void initial_noc_routing(const vtr::vector>& new_traffic_flow_routes) { +void initial_noc_routing(const vtr::vector>& new_traffic_flow_routes, + const vtr::vector_map& block_locs) { // need to update the link usages within after routing all the traffic flows // also need to route all the traffic flows and store them auto& noc_ctx = g_vpr_ctx.mutable_noc(); @@ -74,14 +76,14 @@ void initial_noc_routing(const vtr::vector& curr_traffic_flow_route = new_traffic_flow_routes.empty() - ? route_traffic_flow(traffic_flow_id, noc_ctx.noc_model, noc_traffic_flows_storage, *noc_ctx.noc_flows_router) + ? route_traffic_flow(traffic_flow_id, noc_ctx.noc_model, noc_traffic_flows_storage, *noc_ctx.noc_flows_router, block_locs) : new_traffic_flow_routes[traffic_flow_id]; if (!new_traffic_flow_routes.empty()) { @@ -94,7 +96,8 @@ void initial_noc_routing(const vtr::vector>& new_traffic_flow_routes) { + const vtr::vector>& new_traffic_flow_routes, + const vtr::vector_map& block_locs) { // used to access NoC links and modify them auto& noc_ctx = g_vpr_ctx.mutable_noc(); @@ -107,7 +110,7 @@ void reinitialize_noc_routing(t_placer_costs& costs, } // Route traffic flows and update link bandwidth usage - initial_noc_routing(new_traffic_flow_routes); + initial_noc_routing(new_traffic_flow_routes, block_locs); // Initialize traffic_flow_costs costs.noc_cost_terms.aggregate_bandwidth = comp_noc_aggregate_bandwidth_cost(); @@ -116,7 +119,8 @@ void reinitialize_noc_routing(t_placer_costs& costs, } void find_affected_noc_routers_and_update_noc_costs(const t_pl_blocks_to_be_moved& blocks_affected, - NocCostTerms& delta_c) { + NocCostTerms& delta_c, + const vtr::vector_map& block_locs) { /* For speed, delta_c is passed by reference instead of being returned. * We expect delta cost terms to be zero to ensure correctness. */ @@ -142,7 +146,7 @@ void find_affected_noc_routers_and_update_noc_costs(const t_pl_blocks_to_be_move // check if the current moved block is a noc router if (noc_traffic_flows_storage.check_if_cluster_block_has_traffic_flows(blk)) { // current block is a router, so re-route all the traffic flows it is a part of - re_route_associated_traffic_flows(blk, noc_traffic_flows_storage, noc_ctx.noc_model, *noc_ctx.noc_flows_router, updated_traffic_flows); + re_route_associated_traffic_flows(blk, noc_traffic_flows_storage, noc_ctx.noc_model, *noc_ctx.noc_flows_router, updated_traffic_flows, block_locs); } } @@ -157,8 +161,7 @@ void find_affected_noc_routers_and_update_noc_costs(const t_pl_blocks_to_be_move // calculate the new aggregate bandwidth and latency costs for the affected traffic flow proposed_traffic_flow_costs[traffic_flow_id].aggregate_bandwidth = calculate_traffic_flow_aggregate_bandwidth_cost(traffic_flow_route, curr_traffic_flow); std::tie(proposed_traffic_flow_costs[traffic_flow_id].latency, - proposed_traffic_flow_costs[traffic_flow_id].latency_overrun) - = calculate_traffic_flow_latency_cost(traffic_flow_route, noc_ctx.noc_model, curr_traffic_flow); + proposed_traffic_flow_costs[traffic_flow_id].latency_overrun) = calculate_traffic_flow_latency_cost(traffic_flow_route, noc_ctx.noc_model, curr_traffic_flow); // compute how much the aggregate bandwidth and latency costs change with this swap delta_c.aggregate_bandwidth += proposed_traffic_flow_costs[traffic_flow_id].aggregate_bandwidth - traffic_flow_costs[traffic_flow_id].aggregate_bandwidth; @@ -204,10 +207,8 @@ void commit_noc_costs() { std::vector& route_traffic_flow(NocTrafficFlowId traffic_flow_id, const NocStorage& noc_model, NocTrafficFlows& noc_traffic_flows_storage, - NocRouting& noc_flows_router) { - // provides the positions where the affected blocks have moved to - auto& place_ctx = g_vpr_ctx.placement(); - + NocRouting& noc_flows_router, + const vtr::vector_map& block_locs) { // get the traffic flow with the current id const t_noc_traffic_flow& curr_traffic_flow = noc_traffic_flows_storage.get_single_noc_traffic_flow(traffic_flow_id); @@ -216,8 +217,8 @@ std::vector& route_traffic_flow(NocTrafficFlowId traffic_flow_id, ClusterBlockId logical_sink_router_block_id = curr_traffic_flow.sink_router_cluster_id; // get the ids of the hard router blocks where the logical router cluster blocks have been placed - NocRouterId source_router_block_id = noc_model.get_router_at_grid_location(place_ctx.block_locs[logical_source_router_block_id].loc); - NocRouterId sink_router_block_id = noc_model.get_router_at_grid_location(place_ctx.block_locs[logical_sink_router_block_id].loc); + NocRouterId source_router_block_id = noc_model.get_router_at_grid_location(block_locs[logical_source_router_block_id].loc); + NocRouterId sink_router_block_id = noc_model.get_router_at_grid_location(block_locs[logical_sink_router_block_id].loc); // route the current traffic flow std::vector& curr_traffic_flow_route = noc_traffic_flows_storage.get_mutable_traffic_flow_route(traffic_flow_id); @@ -247,7 +248,8 @@ void re_route_associated_traffic_flows(ClusterBlockId moved_block_router_id, NocTrafficFlows& noc_traffic_flows_storage, NocStorage& noc_model, NocRouting& noc_flows_router, - std::unordered_set& updated_traffic_flows) { + std::unordered_set& updated_traffic_flows, + const vtr::vector_map& block_locs) { // get all the associated traffic flows for the logical router cluster block const auto& assoc_traffic_flows = noc_traffic_flows_storage.get_traffic_flows_associated_to_router_block(moved_block_router_id); @@ -260,7 +262,7 @@ void re_route_associated_traffic_flows(ClusterBlockId moved_block_router_id, std::vector prev_traffic_flow_links = noc_traffic_flows_storage.get_traffic_flow_route(traffic_flow_id); // now update the current traffic flow by re-routing it based on the new locations of its src and destination routers - re_route_traffic_flow(traffic_flow_id, noc_traffic_flows_storage, noc_model, noc_flows_router); + re_route_traffic_flow(traffic_flow_id, noc_traffic_flows_storage, noc_model, noc_flows_router, block_locs); // now make sure we don't update this traffic flow a second time by adding it to the group of updated traffic flows updated_traffic_flows.insert(traffic_flow_id); @@ -281,7 +283,8 @@ void re_route_associated_traffic_flows(ClusterBlockId moved_block_router_id, } } -void revert_noc_traffic_flow_routes(const t_pl_blocks_to_be_moved& blocks_affected) { +void revert_noc_traffic_flow_routes(const t_pl_blocks_to_be_moved& blocks_affected, + const vtr::vector_map& block_locs) { auto& noc_ctx = g_vpr_ctx.mutable_noc(); NocTrafficFlows& noc_traffic_flows_storage = noc_ctx.noc_traffic_flows_storage; @@ -306,7 +309,7 @@ void revert_noc_traffic_flow_routes(const t_pl_blocks_to_be_moved& blocks_affect // first check to see whether we have already reverted the current traffic flow and only revert it if we haven't already. if (reverted_traffic_flows.find(traffic_flow_id) == reverted_traffic_flows.end()) { // Revert the traffic flow route by re-routing it - re_route_traffic_flow(traffic_flow_id, noc_traffic_flows_storage, noc_ctx.noc_model, *noc_ctx.noc_flows_router); + re_route_traffic_flow(traffic_flow_id, noc_traffic_flows_storage, noc_ctx.noc_model, *noc_ctx.noc_flows_router, block_locs); // make sure we do not revert this traffic flow again reverted_traffic_flows.insert(traffic_flow_id); @@ -319,7 +322,8 @@ void revert_noc_traffic_flow_routes(const t_pl_blocks_to_be_moved& blocks_affect void re_route_traffic_flow(NocTrafficFlowId traffic_flow_id, NocTrafficFlows& noc_traffic_flows_storage, NocStorage& noc_model, - NocRouting& noc_flows_router) { + NocRouting& noc_flows_router, + const vtr::vector_map& block_locs) { // get the current traffic flow info const t_noc_traffic_flow& curr_traffic_flow = noc_traffic_flows_storage.get_single_noc_traffic_flow(traffic_flow_id); @@ -332,7 +336,7 @@ void re_route_traffic_flow(NocTrafficFlowId traffic_flow_id, update_traffic_flow_link_usage(curr_traffic_flow_route, noc_model, -1, curr_traffic_flow.traffic_flow_bandwidth); // now get the re-routed traffic flow route and increment all the link usages with this reverted route - std::vector& re_routed_traffic_flow_route = route_traffic_flow(traffic_flow_id, noc_model, noc_traffic_flows_storage, noc_flows_router); + std::vector& re_routed_traffic_flow_route = route_traffic_flow(traffic_flow_id, noc_model, noc_traffic_flows_storage, noc_flows_router, block_locs); update_traffic_flow_link_usage(re_routed_traffic_flow_route, noc_model, 1, curr_traffic_flow.traffic_flow_bandwidth); } @@ -451,13 +455,12 @@ double comp_noc_congestion_cost() { return congestion_cost; } -int check_noc_placement_costs(const t_placer_costs& costs, double error_tolerance, const t_noc_opts& noc_opts) { +int check_noc_placement_costs(const t_placer_costs& costs, + double error_tolerance, + const t_noc_opts& noc_opts, + const vtr::vector_map& block_locs) { int error = 0; - NocCostTerms cost_check{0.0, 0.0, 0.0, 0.0}; - - // get current router block locations - auto& place_ctx = g_vpr_ctx.placement(); - const vtr::vector_map& placed_cluster_block_locations = place_ctx.block_locs; + NocCostTerms cost_check{0.0, 0.0, 0.0, 0.0};; auto& noc_ctx = g_vpr_ctx.noc(); const NocStorage& noc_model = noc_ctx.noc_model; @@ -486,8 +489,8 @@ int check_noc_placement_costs(const t_placer_costs& costs, double error_toleranc ClusterBlockId logical_sink_router_block_id = curr_traffic_flow.sink_router_cluster_id; // get the ids of the hard router blocks where the logical router cluster blocks have been placed - NocRouterId source_router_block_id = noc_model.get_router_at_grid_location(placed_cluster_block_locations[logical_source_router_block_id].loc); - NocRouterId sink_router_block_id = noc_model.get_router_at_grid_location(placed_cluster_block_locations[logical_sink_router_block_id].loc); + NocRouterId source_router_block_id = noc_model.get_router_at_grid_location(block_locs[logical_source_router_block_id].loc); + NocRouterId sink_router_block_id = noc_model.get_router_at_grid_location(block_locs[logical_sink_router_block_id].loc); // route the current traffic flow temp_noc_routing_algorithm->route_flow(source_router_block_id, sink_router_block_id, traffic_flow_id, temp_found_noc_route, noc_model); @@ -501,7 +504,7 @@ int check_noc_placement_costs(const t_placer_costs& costs, double error_toleranc cost_check.latency_overrun += curr_traffic_flow_latency_overrun_cost; // increase bandwidth utilization for the links that constitute the current flow's route - for (auto& link_id : temp_found_noc_route) { + for (NocLinkId link_id : temp_found_noc_route) { auto& link = temp_noc_link_storage[link_id]; double curr_link_bw_util = link.get_bandwidth_usage(); link.set_bandwidth_usage(curr_link_bw_util + curr_traffic_flow.traffic_flow_bandwidth); @@ -658,6 +661,7 @@ double calculate_noc_cost(const NocCostTerms& cost_terms, * is computed. Weighting factors determine the contribution of each * normalized term to the sum. */ + // clang-format off cost = noc_opts.noc_placement_weighting * ( @@ -666,6 +670,7 @@ double calculate_noc_cost(const NocCostTerms& cost_terms, cost_terms.latency_overrun * norm_factors.latency_overrun * noc_opts.noc_latency_constraints_weighting + cost_terms.congestion * norm_factors.congestion * noc_opts.noc_congestion_weighting ); + // clang-format on return cost; } @@ -788,12 +793,12 @@ bool check_for_router_swap(int user_supplied_noc_router_swap_percentage) { return (vtr::irand(99) < user_supplied_noc_router_swap_percentage); } -static bool select_random_router_cluster(ClusterBlockId& b_from, t_pl_loc& from, t_logical_block_type_ptr& cluster_from_type) { +static bool select_random_router_cluster(ClusterBlockId& b_from, + t_pl_loc& from, + t_logical_block_type_ptr& cluster_from_type, + const vtr::vector_map& block_locs) { // need to access all the router cluster blocks in the design auto& noc_ctx = g_vpr_ctx.noc(); - // - auto& place_ctx = g_vpr_ctx.placement(); - // auto& cluster_ctx = g_vpr_ctx.clustering(); // get a reference to the collection of router cluster blocks in the design @@ -811,11 +816,11 @@ static bool select_random_router_cluster(ClusterBlockId& b_from, t_pl_loc& from, b_from = router_clusters[random_cluster_block_index]; //check if the block is movable - if (place_ctx.block_locs[b_from].is_fixed) { + if (block_locs[b_from].is_fixed) { return false; } - from = place_ctx.block_locs[b_from].loc; + from = block_locs[b_from].loc; cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); auto grid_from_type = g_vpr_ctx.device().grid.get_physical_type({from.x, from.y, from.layer}); VTR_ASSERT(is_tile_compatible(grid_from_type, cluster_from_type)); @@ -823,17 +828,18 @@ static bool select_random_router_cluster(ClusterBlockId& b_from, t_pl_loc& from, return true; } -e_create_move propose_router_swap(t_pl_blocks_to_be_moved& blocks_affected, float rlim) { +e_create_move propose_router_swap(t_pl_blocks_to_be_moved& blocks_affected, + float rlim, + const BlkLocRegistry& blk_loc_registry) { // block ID for the randomly selected router cluster ClusterBlockId b_from; // current location of the randomly selected router cluster t_pl_loc from; // logical block type of the randomly selected router cluster t_logical_block_type_ptr cluster_from_type; - bool random_select_success = false; // Randomly select a router cluster - random_select_success = select_random_router_cluster(b_from, from, cluster_from_type); + bool random_select_success = select_random_router_cluster(b_from, from, cluster_from_type, blk_loc_registry.block_locs()); // If a random router cluster could not be selected, no move can be proposed if (!random_select_success) { @@ -843,11 +849,11 @@ e_create_move propose_router_swap(t_pl_blocks_to_be_moved& blocks_affected, floa // now choose a compatible block to swap with t_pl_loc to; to.layer = from.layer; - if (!find_to_loc_uniform(cluster_from_type, rlim, from, to, b_from)) { + if (!find_to_loc_uniform(cluster_from_type, rlim, from, to, b_from, blk_loc_registry)) { return e_create_move::ABORT; } - e_create_move create_move = ::create_move(blocks_affected, b_from, to); + e_create_move create_move = ::create_move(blocks_affected, b_from, to, blk_loc_registry); //Check that all the blocks affected by the move would still be in a legal floorplan region after the swap if (!floorplan_legal(blocks_affected)) { @@ -857,11 +863,10 @@ e_create_move propose_router_swap(t_pl_blocks_to_be_moved& blocks_affected, floa return create_move; } -void write_noc_placement_file(const std::string& file_name) { +void write_noc_placement_file(const std::string& file_name, + const vtr::vector_map& block_locs) { // we need the clustered netlist to get the names of all the NoC router cluster blocks auto& cluster_ctx = g_vpr_ctx.clustering(); - // we need to the placement context to determine the final placed locations of the NoC router cluster blocks - auto& placement_ctx = g_vpr_ctx.placement(); // we need the NoC context to identify the physical router ids based on their locations on the device auto& noc_ctx = g_vpr_ctx.noc(); @@ -892,7 +897,7 @@ void write_noc_placement_file(const std::string& file_name) { const std::string& cluster_name = cluster_ctx.clb_nlist.block_name(single_cluster_id); //get the placement location of the current router cluster block - const t_block_loc& cluster_location = placement_ctx.block_locs[single_cluster_id]; + const t_block_loc& cluster_location = block_locs[single_cluster_id]; // now get the corresponding physical router block id the cluster is located on NocRouterId physical_router_cluster_is_placed_on = noc_model.get_router_at_grid_location(cluster_location.loc); @@ -905,25 +910,25 @@ void write_noc_placement_file(const std::string& file_name) { noc_placement_file.close(); } -bool noc_routing_has_cycle() { +bool noc_routing_has_cycle(const vtr::vector_map& block_locs) { // used to access traffic flow routes const auto& noc_ctx = g_vpr_ctx.noc(); // get all traffic flow routes const auto& traffic_flow_routes = noc_ctx.noc_traffic_flows_storage.get_all_traffic_flow_routes(); - bool has_cycle = noc_routing_has_cycle(traffic_flow_routes); + bool has_cycle = noc_routing_has_cycle(traffic_flow_routes, block_locs); return has_cycle; } -bool noc_routing_has_cycle(const vtr::vector>& routes) { +bool noc_routing_has_cycle(const vtr::vector>& routes, + const vtr::vector_map& block_locs) { const auto& noc_ctx = g_vpr_ctx.noc(); - const auto& place_ctx = g_vpr_ctx.placement(); ChannelDependencyGraph channel_dependency_graph(noc_ctx.noc_model, noc_ctx.noc_traffic_flows_storage, routes, - place_ctx.block_locs); + block_locs); bool has_cycles = channel_dependency_graph.has_cycles(); diff --git a/vpr/src/place/noc_place_utils.h b/vpr/src/place/noc_place_utils.h index a0e675ea7d7..99199d7b021 100644 --- a/vpr/src/place/noc_place_utils.h +++ b/vpr/src/place/noc_place_utils.h @@ -53,8 +53,10 @@ struct TrafficFlowPlaceCost { * * @param new_traffic_flow_routes Traffic flow routes used to initialize link bandwidth utilization. * If an empty vector is passed, this function uses a routing algorithm to route traffic flows. + * @param block_locs Contains the location where each clustered block is placed at. */ -void initial_noc_routing(const vtr::vector>& new_traffic_flow_routes); +void initial_noc_routing(const vtr::vector>& new_traffic_flow_routes, + const vtr::vector_map& block_locs); /** * @brief Re-initializes all link bandwidth usages by either re-routing @@ -73,10 +75,12 @@ void initial_noc_routing(const vtr::vector>& new_traffic_flow_routes); + const vtr::vector>& new_traffic_flow_routes, + const vtr::vector_map& block_locs); /** * @brief Goes through all the cluster blocks that were moved @@ -105,14 +109,14 @@ void reinitialize_noc_routing(t_placer_costs& costs, * the moved blocks, their previous locations and their new locations * after being moved. * @param noc_aggregate_bandwidth_delta_c The change in the overall - * NoC aggregate bandwidth cost caused by a placer move is stored - * here. + * NoC aggregate bandwidth cost caused by a placer move is stored here. * @param noc_latency_delta_c The change in the overall - * NoC latency cost caused by a placer move is stored - * here. + * NoC latency cost caused by a placer move is stored here. + * @param block_locs Contains the location where each clustered block is placed at. */ void find_affected_noc_routers_and_update_noc_costs(const t_pl_blocks_to_be_moved& blocks_affected, - NocCostTerms& delta_c); + NocCostTerms& delta_c, + const vtr::vector_map& block_locs); /** * @brief Updates static datastructures found in 'noc_place_utils.cpp' @@ -157,12 +161,14 @@ void commit_noc_costs(); * within the NoC. Used to get the current traffic flow information. * @param noc_flows_router The packet routing algorithm used to route traffic * flows within the NoC. + * @param block_locs Contains the location where each clustered block is placed at. * @return std::vector& The found route for the traffic flow. */ std::vector& route_traffic_flow(NocTrafficFlowId traffic_flow_id, const NocStorage& noc_model, NocTrafficFlows& noc_traffic_flows_storage, - NocRouting& noc_flows_router); + NocRouting& noc_flows_router, + const vtr::vector_map& block_locs); /** * @brief Updates the bandwidth usages of links found in a routed traffic flow. @@ -212,12 +218,14 @@ void update_traffic_flow_link_usage(const std::vector& traffic_flow_r * flows within the NoC. * @param updated_traffic_flows Keeps track of traffic flows that have been * re-routed. Used to prevent re-routing the same traffic flow multiple times. + * @param block_locs Contains the location where each clustered block is placed at. */ void re_route_associated_traffic_flows(ClusterBlockId moved_router_block_id, NocTrafficFlows& noc_traffic_flows_storage, NocStorage& noc_model, NocRouting& noc_flows_router, - std::unordered_set& updated_traffic_flows); + std::unordered_set& updated_traffic_flows, + const vtr::vector_map& block_locs); /** * @brief Used to re-route all the traffic flows associated to logical @@ -231,8 +239,10 @@ void re_route_associated_traffic_flows(ClusterBlockId moved_router_block_id, * the current placement iteration. This includes the cluster ids of * the moved blocks, their previous locations and their new locations * after being moved. + * @param block_locs Contains the location where each clustered block is placed at. */ -void revert_noc_traffic_flow_routes(const t_pl_blocks_to_be_moved& blocks_affected); +void revert_noc_traffic_flow_routes(const t_pl_blocks_to_be_moved& blocks_affected, + const vtr::vector_map& block_locs); /** * @brief Removes the route of a traffic flow and updates the links to indicate @@ -247,11 +257,13 @@ void revert_noc_traffic_flow_routes(const t_pl_blocks_to_be_moved& blocks_affect * to route traffic flows within the NoC. * @param noc_flows_router The packet routing algorithm used to route traffic * flows within the NoC. + * @param block_locs Contains the location where each clustered block is placed at. */ void re_route_traffic_flow(NocTrafficFlowId traffic_flow_id, NocTrafficFlows& noc_traffic_flows_storage, NocStorage& noc_model, - NocRouting& noc_flows_router); + NocRouting& noc_flows_router, + const vtr::vector_map& block_locs); /** * @brief Recompute the NoC costs (aggregate bandwidth and latency) by @@ -355,8 +367,12 @@ double comp_noc_congestion_cost(); * indicates that the current NoC costs are within the error tolerance and * a non-zero values indicates the current NoC costs are above the error * tolerance. + * @param block_locs Contains the location where each clustered block is placed at. */ -int check_noc_placement_costs(const t_placer_costs& costs, double error_tolerance, const t_noc_opts& noc_opts); +int check_noc_placement_costs(const t_placer_costs& costs, + double error_tolerance, + const t_noc_opts& noc_opts, + const vtr::vector_map& block_locs); /** * @brief Determines the aggregate bandwidth cost of a routed traffic flow. @@ -526,7 +542,9 @@ bool check_for_router_swap(int user_supplied_noc_router_swap_percentage); * cluster block can travel (this is within the compressed block space) * @return e_create_move Result of proposing the move */ -e_create_move propose_router_swap(t_pl_blocks_to_be_moved& blocks_affected, float rlim); +e_create_move propose_router_swap(t_pl_blocks_to_be_moved& blocks_affected, + float rlim, + const BlkLocRegistry& blk_loc_registry); /** * @brief Writes out the locations of the router cluster blocks in the @@ -542,9 +560,10 @@ e_create_move propose_router_swap(t_pl_blocks_to_be_moved& blocks_affected, floa * * @param file_name The name of the output file that contain the NoC placement * information. - * + * @param block_locs Contains the location where each clustered block is placed at. */ -void write_noc_placement_file(const std::string& file_name); +void write_noc_placement_file(const std::string& file_name, + const vtr::vector_map& block_locs); /** * @brief This function checks whether the routing configuration for NoC traffic flows @@ -557,17 +576,21 @@ void write_noc_placement_file(const std::string& file_name); * the graph has any back edges, i.e. whether a node points to one of its ancestors * during depth-first search traversal. * + * @param block_locs Contains the location where each clustered block is placed at. + * * @return bool Indicates whether NoC traffic flow routes form a cycle. */ -bool noc_routing_has_cycle(); +bool noc_routing_has_cycle(const vtr::vector_map& block_locs); /** * @brief Check if the channel dependency graph created from the given traffic flow routes * has any cycles. * @param routes The user provided traffic flow routes. + * @param block_locs Contains the location where each clustered block is placed at. * @return True if there is any cycles in the channel dependency graph. */ -bool noc_routing_has_cycle(const vtr::vector>& routes); +bool noc_routing_has_cycle(const vtr::vector>& routes, + const vtr::vector_map& block_locs); /** * @brief Invokes NoC SAT router and print new NoC cost terms after SAT router diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index b0134fd31f5..2cd55402d47 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -24,7 +24,6 @@ #include "globals.h" #include "place.h" -#include "placer_globals.h" #include "read_place.h" #include "draw.h" #include "place_and_route.h" @@ -70,6 +69,7 @@ #include "noc_place_utils.h" #include "net_cost_handler.h" +#include "placer_state.h" /* define the RL agent's reward function factor constant. This factor controls the weight of bb cost * * compared to the timing cost in the agent's reward function. The reward is calculated as * @@ -88,11 +88,6 @@ using std::max; using std::min; /************** Types and defines local to place.c ***************************/ - -/* This defines the error tolerance for floating points variables used in * - * cost computation. 0.01 means that there is a 1% error tolerance. */ -static constexpr double ERROR_TOL = .01; - /* This defines the maximum number of swap attempts before invoking the * * once-in-a-while placement legality check as well as floating point * * variables round-offs check. */ @@ -103,13 +98,6 @@ constexpr float INVALID_COST = std::numeric_limits::quiet_NaN(); /********************** Variables local to place.c ***************************/ -/* These file-scoped variables keep track of the number of swaps * - * rejected, accepted or aborted. The total number of swap attempts * - * is the sum of the three number. */ -static int num_swap_rejected = 0; -static int num_swap_accepted = 0; -static int num_swap_aborted = 0; -static int num_ts_called = 0; std::unique_ptr f_move_stats_file(nullptr, vtr::fclose); @@ -204,12 +192,13 @@ static void alloc_and_load_placement_structs(float place_cost_exp, const t_placer_opts& placer_opts, const t_noc_opts& noc_opts, t_direct_inf* directs, - int num_directs); + int num_directs, + PlacerState& placer_state); static void alloc_and_load_try_swap_structs(const bool cube_bb); static void free_try_swap_structs(); -static void free_placement_structs(const t_placer_opts& placer_opts, const t_noc_opts& noc_opts); +static void free_placement_structs(const t_noc_opts& noc_opts); static e_move_result try_swap(const t_annealing_state* state, t_placer_costs* costs, @@ -226,22 +215,26 @@ static e_move_result try_swap(const t_annealing_state* state, MoveTypeStat& move_type_stat, const t_place_algorithm& place_algorithm, float timing_bb_factor, - bool manual_move_enabled); + bool manual_move_enabled, + t_swap_stats& swap_stats, + PlacerState& placer_state); static void check_place(const t_placer_costs& costs, const PlaceDelayModel* delay_model, const PlacerCriticalities* criticalities, const t_place_algorithm& place_algorithm, - const t_noc_opts& noc_opts); + const t_noc_opts& noc_opts, + PlacerState& placer_state); static int check_placement_costs(const t_placer_costs& costs, const PlaceDelayModel* delay_model, const PlacerCriticalities* criticalities, - const t_place_algorithm& place_algorithm); + const t_place_algorithm& place_algorithm, + PlacerState& placer_state); -static int check_placement_consistency(); -static int check_block_placement_consistency(); -static int check_macro_placement_consistency(); +static int check_placement_consistency(const BlkLocRegistry& blk_loc_registry); +static int check_block_placement_consistency(const BlkLocRegistry& blk_loc_registry); +static int check_macro_placement_consistency(const BlkLocRegistry& blk_loc_registry); static float starting_t(const t_annealing_state* state, t_placer_costs* costs, @@ -256,20 +249,25 @@ static float starting_t(const t_annealing_state* state, t_pl_blocks_to_be_moved& blocks_affected, const t_placer_opts& placer_opts, const t_noc_opts& noc_opts, - MoveTypeStat& move_type_stat); + MoveTypeStat& move_type_stat, + t_swap_stats& swap_stats, + PlacerState& placer_state); static int count_connections(); -static void commit_td_cost(const t_pl_blocks_to_be_moved& blocks_affected); +static void commit_td_cost(const t_pl_blocks_to_be_moved& blocks_affected, + PlacerState& placer_state); -static void revert_td_cost(const t_pl_blocks_to_be_moved& blocks_affected); +static void revert_td_cost(const t_pl_blocks_to_be_moved& blocks_affected, + PlacerTimingContext& p_timing_ctx); static void invalidate_affected_connections( const t_pl_blocks_to_be_moved& blocks_affected, NetPinTimingInvalidator* pin_tedges_invalidator, TimingInfo* timing_info); -static float analyze_setup_slack_cost(const PlacerSetupSlacks* setup_slacks); +static float analyze_setup_slack_cost(const PlacerSetupSlacks* setup_slacks, + const PlacerState& placer_state); static e_move_result assess_swap(double delta_c, double t); @@ -289,7 +287,8 @@ static void outer_loop_update_timing_info(const t_placer_opts& placer_opts, PlacerCriticalities* criticalities, PlacerSetupSlacks* setup_slacks, NetPinTimingInvalidator* pin_timing_invalidator, - SetupTimingInfo* timing_info); + SetupTimingInfo* timing_info, + PlacerState& placer_state); static void placement_inner_loop(const t_annealing_state* state, const t_placer_opts& placer_opts, @@ -308,21 +307,23 @@ static void placement_inner_loop(const t_annealing_state* state, SetupTimingInfo* timing_info, const t_place_algorithm& place_algorithm, MoveTypeStat& move_type_stat, - float timing_bb_factor); + float timing_bb_factor, + t_swap_stats& swap_stats, + PlacerState& placer_state); static void generate_post_place_timing_reports(const t_placer_opts& placer_opts, const t_analysis_opts& analysis_opts, const SetupTimingInfo& timing_info, const PlacementDelayCalculator& delay_calc, - bool is_flat); + bool is_flat, + const BlkLocRegistry& blk_loc_registry); //calculate the agent's reward and the total process outcome -static void calculate_reward_and_process_outcome( - const t_placer_opts& placer_opts, - const MoveOutcomeStats& move_outcome_stats, - const double& delta_c, - float timing_bb_factor, - MoveGenerator& move_generator); +static void calculate_reward_and_process_outcome(const t_placer_opts& placer_opts, + const MoveOutcomeStats& move_outcome_stats, + double delta_c, + float timing_bb_factor, + MoveGenerator& move_generator); static void print_place_status_header(bool noc_enabled); @@ -336,12 +337,18 @@ static void print_place_status(const t_annealing_state& state, bool noc_enabled, const NocCostTerms& noc_cost_terms); -static void print_resources_utilization(); +static void print_resources_utilization(const BlkLocRegistry& blk_loc_registry); -static void print_placement_swaps_stats(const t_annealing_state& state); +static void print_placement_swaps_stats(const t_annealing_state& state, const t_swap_stats& swap_stats); static void print_placement_move_types_stats(const MoveTypeStat& move_type_stat); +/** + * @brief Copies the placement location variables into the global placement context. + * @param blk_loc_registry The placement location variables to be copied. + */ +static void copy_locs_to_global_state(const BlkLocRegistry& blk_loc_registry); + /*****************************************************************************/ void try_place(const Netlist<>& net_list, const t_placer_opts& placer_opts, @@ -369,17 +376,12 @@ void try_place(const Netlist<>& net_list, auto& device_ctx = g_vpr_ctx.device(); auto& atom_ctx = g_vpr_ctx.atom(); auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_move_ctx = g_placer_ctx.mutable_move(); - - const auto& p_timing_ctx = g_placer_ctx.timing(); - const auto& p_runtime_ctx = g_placer_ctx.runtime(); auto& timing_ctx = g_vpr_ctx.timing(); auto pre_place_timing_stats = timing_ctx.stats; - int tot_iter, moves_since_cost_recompute, num_connections, - outer_crit_iter_count, inner_recompute_limit; - float first_crit_exponent, first_rlim, first_t; - int first_move_lim; + int tot_iter, moves_since_cost_recompute, num_connections, outer_crit_iter_count; + float first_crit_exponent; + t_placer_costs costs(placer_opts.place_algorithm); @@ -395,24 +397,14 @@ void try_place(const Netlist<>& net_list, std::shared_ptr timing_info; std::shared_ptr placement_delay_calc; std::unique_ptr place_delay_model; - std::unique_ptr move_generator; - std::unique_ptr move_generator2; - std::unique_ptr manual_move_generator; std::unique_ptr placer_setup_slacks; - std::unique_ptr placer_criticalities; std::unique_ptr pin_timing_invalidator; - manual_move_generator = std::make_unique(); - - t_pl_blocks_to_be_moved blocks_affected( - net_list.blocks().size()); + t_pl_blocks_to_be_moved blocks_affected(net_list.blocks().size()); - /* init file scope variables */ - num_swap_rejected = 0; - num_swap_accepted = 0; - num_swap_aborted = 0; - num_ts_called = 0; + // Swap statistics keep record of the number accepted/rejected/aborted swaps. + t_swap_stats swap_stats; if (placer_opts.place_algorithm.is_timing_driven()) { /*do this before the initial placement to avoid messing up the initial placement */ @@ -432,19 +424,26 @@ void try_place(const Netlist<>& net_list, } } - g_vpr_ctx.mutable_placement().cube_bb = is_cube_bb(placer_opts.place_bounding_box_mode, - device_ctx.rr_graph); - const auto& cube_bb = g_vpr_ctx.placement().cube_bb; + g_vpr_ctx.mutable_placement().cube_bb = is_cube_bb(placer_opts.place_bounding_box_mode, device_ctx.rr_graph); + const bool cube_bb = g_vpr_ctx.placement().cube_bb; VTR_LOG("\n"); VTR_LOG("Bounding box mode is %s\n", (cube_bb ? "Cube" : "Per-layer")); VTR_LOG("\n"); - int move_lim = 1; - move_lim = (int)(annealing_sched.inner_num - * pow(net_list.blocks().size(), 1.3333)); + int move_lim = (int)(annealing_sched.inner_num * pow(net_list.blocks().size(), 1.3333)); + + PlacerState placer_state; + auto& place_move_ctx = placer_state.mutable_move(); + auto& blk_loc_registry = placer_state.mutable_blk_loc_registry(); + const auto& p_timing_ctx = placer_state.timing(); + const auto& p_runtime_ctx = placer_state.runtime(); + + + alloc_and_load_placement_structs(placer_opts.place_cost_exp, placer_opts, noc_opts, directs, num_directs, placer_state); + set_net_handlers_placer_state(placer_state); - alloc_and_load_placement_structs(placer_opts.place_cost_exp, placer_opts, noc_opts, directs, num_directs); + std::unique_ptr manual_move_generator = std::make_unique(placer_state); vtr::ScopedStartFinishTimer timer("Placement"); @@ -452,17 +451,13 @@ void try_place(const Netlist<>& net_list, normalize_noc_cost_weighting_factor(const_cast(noc_opts)); } - initial_placement(placer_opts, - placer_opts.constraints_file.c_str(), - noc_opts); + initial_placement(placer_opts, placer_opts.constraints_file.c_str(), noc_opts, blk_loc_registry); //create the move generator based on the chosen strategy - create_move_generators(move_generator, move_generator2, placer_opts, move_lim, noc_opts.noc_centroid_weight); + auto [move_generator, move_generator2] = create_move_generators(placer_state, placer_opts, move_lim, noc_opts.noc_centroid_weight); if (!placer_opts.write_initial_place_file.empty()) { - print_place(nullptr, - nullptr, - placer_opts.write_initial_place_file.c_str()); + print_place(nullptr, nullptr, placer_opts.write_initial_place_file.c_str(), placer_state.block_locs()); } #ifdef ENABLE_ANALYTIC_PLACE @@ -473,33 +468,32 @@ void try_place(const Netlist<>& net_list, * Most of anneal is disabled later by setting initial temperature to 0 and only further optimizes in quench */ if (placer_opts.enable_analytic_placer) { - AnalyticPlacer{}.ap_place(); + AnalyticPlacer{blk_loc_registry}.ap_place(); } #endif /* ENABLE_ANALYTIC_PLACE */ // Update physical pin values - for (auto block_id : cluster_ctx.clb_nlist.blocks()) { - place_sync_external_block_connections(block_id); + for (const ClusterBlockId block_id : cluster_ctx.clb_nlist.blocks()) { + blk_loc_registry.place_sync_external_block_connections(block_id); } const int width_fac = placer_opts.place_chan_width; - init_draw_coords((float)width_fac); + init_draw_coords((float)width_fac, blk_loc_registry); /* Allocated here because it goes into timing critical code where each memory allocation is expensive */ IntraLbPbPinLookup pb_gpin_lookup(device_ctx.logical_block_types); //Enables fast look-up of atom pins connect to CLB pins - ClusteredPinAtomPinsLookup netlist_pin_lookup(cluster_ctx.clb_nlist, - atom_ctx.nlist, pb_gpin_lookup); + ClusteredPinAtomPinsLookup netlist_pin_lookup(cluster_ctx.clb_nlist, atom_ctx.nlist, pb_gpin_lookup); /* Gets initial cost and loads bounding boxes. */ if (placer_opts.place_algorithm.is_timing_driven()) { if (cube_bb) { - costs.bb_cost = comp_bb_cost(NORMAL); + costs.bb_cost = comp_bb_cost(e_cost_methods::NORMAL); } else { VTR_ASSERT_SAFE(!cube_bb); - costs.bb_cost = comp_layer_bb_cost(NORMAL); + costs.bb_cost = comp_layer_bb_cost(e_cost_methods::NORMAL); } first_crit_exponent = placer_opts.td_place_exp_first; /*this will be modified when rlim starts to change */ @@ -511,7 +505,7 @@ void try_place(const Netlist<>& net_list, VTR_LOG("\n"); //Update the point-to-point delays from the initial placement - comp_td_connection_delays(place_delay_model.get()); + comp_td_connection_delays(place_delay_model.get(), placer_state); /* * Initialize timing analysis @@ -521,19 +515,15 @@ void try_place(const Netlist<>& net_list, atom_ctx.lookup, p_timing_ctx.connection_delay, is_flat); - placement_delay_calc->set_tsu_margin_relative( - placer_opts.tsu_rel_margin); - placement_delay_calc->set_tsu_margin_absolute( - placer_opts.tsu_abs_margin); + placement_delay_calc->set_tsu_margin_relative(placer_opts.tsu_rel_margin); + placement_delay_calc->set_tsu_margin_absolute(placer_opts.tsu_abs_margin); timing_info = make_setup_timing_info(placement_delay_calc, placer_opts.timing_update_type); - placer_setup_slacks = std::make_unique( - cluster_ctx.clb_nlist, netlist_pin_lookup); + placer_setup_slacks = std::make_unique(cluster_ctx.clb_nlist, netlist_pin_lookup); - placer_criticalities = std::make_unique( - cluster_ctx.clb_nlist, netlist_pin_lookup); + placer_criticalities = std::make_unique(cluster_ctx.clb_nlist, netlist_pin_lookup); pin_timing_invalidator = make_net_pin_timing_invalidator( placer_opts.timing_update_type, @@ -549,9 +539,9 @@ void try_place(const Netlist<>& net_list, crit_params.crit_exponent = first_crit_exponent; crit_params.crit_limit = placer_opts.place_crit_limit; - initialize_timing_info(crit_params, place_delay_model.get(), - placer_criticalities.get(), placer_setup_slacks.get(), - pin_timing_invalidator.get(), timing_info.get(), &costs); + initialize_timing_info(crit_params, place_delay_model.get(), placer_criticalities.get(), + placer_setup_slacks.get(), pin_timing_invalidator.get(), + timing_info.get(), &costs, placer_state); critical_path = timing_info->least_slack_critical_path(); @@ -562,8 +552,8 @@ void try_place(const Netlist<>& net_list, *timing_ctx.graph, *timing_ctx.constraints, *placement_delay_calc, timing_info->analyzer()); - tatum::NodeId debug_tnode = id_or_pin_name_to_tnode( - analysis_opts.echo_dot_timing_graph_node); + tatum::NodeId debug_tnode = id_or_pin_name_to_tnode(analysis_opts.echo_dot_timing_graph_node); + write_setup_timing_graph_dot( getEchoFileName(E_ECHO_INITIAL_PLACEMENT_TIMING_GRAPH) + std::string(".dot"), @@ -581,10 +571,10 @@ void try_place(const Netlist<>& net_list, /* Total cost is the same as wirelength cost normalized*/ if (cube_bb) { - costs.bb_cost = comp_bb_cost(NORMAL); + costs.bb_cost = comp_bb_cost(e_cost_methods::NORMAL); } else { VTR_ASSERT_SAFE(!cube_bb); - costs.bb_cost = comp_layer_bb_cost(NORMAL); + costs.bb_cost = comp_layer_bb_cost(e_cost_methods::NORMAL); } costs.bb_cost_norm = 1 / costs.bb_cost; @@ -616,7 +606,8 @@ void try_place(const Netlist<>& net_list, place_delay_model.get(), placer_criticalities.get(), placer_opts.place_algorithm, - noc_opts); + noc_opts, + placer_state); //Initial placement statistics VTR_LOG("Initial placement cost: %g bb_cost: %g td_cost: %g\n", costs.cost, @@ -637,8 +628,7 @@ void try_place(const Netlist<>& net_list, VTR_LOG("\n"); VTR_LOG("Initial placement estimated setup slack histogram:\n"); - print_histogram( - create_setup_slack_histogram(*timing_info->setup_analyzer())); + print_histogram(create_setup_slack_histogram(*timing_info->setup_analyzer())); } size_t num_macro_members = 0; @@ -662,15 +652,14 @@ void try_place(const Netlist<>& net_list, std::string filename = vtr::string_fmt("placement_%03d_%03d.place", 0, 0); VTR_LOG("Saving initial placement to file: %s\n", filename.c_str()); - print_place(nullptr, nullptr, filename.c_str()); + print_place(nullptr, nullptr, filename.c_str(), blk_loc_registry.block_locs()); } - first_move_lim = get_initial_move_lim(placer_opts, annealing_sched); + int first_move_lim = get_initial_move_lim(placer_opts, annealing_sched); + int inner_recompute_limit; if (placer_opts.inner_loop_recompute_divider != 0) { - inner_recompute_limit = (int)(0.5 - + (float)first_move_lim - / (float)placer_opts.inner_loop_recompute_divider); + inner_recompute_limit = static_cast(0.5 + (float)first_move_lim / (float)placer_opts.inner_loop_recompute_divider); } else { /*don't do an inner recompute */ inner_recompute_limit = first_move_lim + 1; @@ -680,9 +669,7 @@ void try_place(const Netlist<>& net_list, * the commandline option quench_recompute_divider */ int quench_recompute_limit; if (placer_opts.quench_recompute_divider != 0) { - quench_recompute_limit = (int)(0.5 - + (float)move_lim - / (float)placer_opts.quench_recompute_divider); + quench_recompute_limit = static_cast(0.5 + (float)move_lim / (float)placer_opts.quench_recompute_divider); } else { /*don't do an quench recompute */ quench_recompute_limit = first_move_lim + 1; @@ -700,15 +687,11 @@ void try_place(const Netlist<>& net_list, move_type_stat.rejected_moves.resize({device_ctx.logical_block_types.size(), (int)e_move_type::NUMBER_OF_AUTO_MOVES}, 0); /* Get the first range limiter */ - first_rlim = (float)max(device_ctx.grid.width() - 1, - device_ctx.grid.height() - 1); + float first_rlim = (float)max(device_ctx.grid.width() - 1, device_ctx.grid.height() - 1); place_move_ctx.first_rlim = first_rlim; - /* Set the temperature low to ensure that initial placement quality will be preserved */ - first_t = EPSILON; - t_annealing_state state(annealing_sched, - first_t, + EPSILON, // Set the temperature low to ensure that initial placement quality will be preserved first_rlim, first_move_lim, first_crit_exponent, @@ -719,7 +702,8 @@ void try_place(const Netlist<>& net_list, place_delay_model.get(), placer_criticalities.get(), placer_setup_slacks.get(), timing_info.get(), *move_generator, *manual_move_generator, pin_timing_invalidator.get(), - blocks_affected, placer_opts, noc_opts, move_type_stat); + blocks_affected, placer_opts, noc_opts, move_type_stat, + swap_stats, placer_state); if (!placer_opts.move_stats_file.empty()) { f_move_stats_file = std::unique_ptr( @@ -736,8 +720,9 @@ void try_place(const Netlist<>& net_list, #ifdef ENABLE_ANALYTIC_PLACE // Analytic placer: When enabled, skip most of the annealing and go straight to quench // TODO: refactor goto label. - if (placer_opts.enable_analytic_placer) + if (placer_opts.enable_analytic_placer) { skip_anneal = true; + } #endif /* ENABLE_ANALYTIC_PLACE */ //RL agent state definition @@ -748,7 +733,7 @@ void try_place(const Netlist<>& net_list, //Define the timing bb weight factor for the agent's reward function float timing_bb_factor = REWARD_BB_TIMING_RELATIVE_WEIGHT; - if (skip_anneal == false) { + if (!skip_anneal) { //Table header VTR_LOG("\n"); print_place_status_header(noc_opts.noc); @@ -761,7 +746,7 @@ void try_place(const Netlist<>& net_list, state.crit_exponent, &outer_crit_iter_count, place_delay_model.get(), placer_criticalities.get(), placer_setup_slacks.get(), pin_timing_invalidator.get(), - timing_info.get()); + timing_info.get(), placer_state); if (placer_opts.place_algorithm.is_timing_driven()) { critical_path = timing_info->least_slack_critical_path(); @@ -772,7 +757,8 @@ void try_place(const Netlist<>& net_list, if (placer_opts.place_checkpointing && agent_state == e_agent_state::LATE_IN_THE_ANNEAL) { - save_placement_checkpoint_if_needed(placement_checkpoint, + save_placement_checkpoint_if_needed(blk_loc_registry.block_locs(), + placement_checkpoint, timing_info, costs, critical_path.delay()); } } @@ -790,7 +776,8 @@ void try_place(const Netlist<>& net_list, *current_move_generator, *manual_move_generator, blocks_affected, timing_info.get(), placer_opts.place_algorithm, move_type_stat, - timing_bb_factor); + timing_bb_factor, + swap_stats, placer_state); //move the update used move_generator to its original variable update_move_generator(move_generator, move_generator2, agent_state, @@ -840,7 +827,7 @@ void try_place(const Netlist<>& net_list, state.crit_exponent, &outer_crit_iter_count, place_delay_model.get(), placer_criticalities.get(), placer_setup_slacks.get(), pin_timing_invalidator.get(), - timing_info.get()); + timing_info.get(), placer_state); //move the appropriate move_generator to be the current used move generator assign_current_move_generator(move_generator, move_generator2, @@ -856,7 +843,8 @@ void try_place(const Netlist<>& net_list, *current_move_generator, *manual_move_generator, blocks_affected, timing_info.get(), placer_opts.place_quench_algorithm, move_type_stat, - timing_bb_factor); + timing_bb_factor, + swap_stats, placer_state); //move the update used move_generator to its original variable update_move_generator(move_generator, move_generator2, agent_state, @@ -883,16 +871,17 @@ void try_place(const Netlist<>& net_list, crit_params.crit_limit = placer_opts.place_crit_limit; if (placer_opts.place_algorithm.is_timing_driven()) { - perform_full_timing_update(crit_params, place_delay_model.get(), - placer_criticalities.get(), placer_setup_slacks.get(), - pin_timing_invalidator.get(), timing_info.get(), &costs); + perform_full_timing_update(crit_params, place_delay_model.get(), placer_criticalities.get(), + placer_setup_slacks.get(), pin_timing_invalidator.get(), + timing_info.get(), &costs, placer_state); VTR_LOG("post-quench CPD = %g (ns) \n", 1e9 * timing_info->least_slack_critical_path().delay()); } //See if our latest checkpoint is better than the current placement solution if (placer_opts.place_checkpointing) - restore_best_placement(placement_checkpoint, timing_info, costs, + restore_best_placement(placer_state, + placement_checkpoint, timing_info, costs, placer_criticalities, placer_setup_slacks, place_delay_model, pin_timing_invalidator, crit_params, noc_opts); @@ -900,7 +889,7 @@ void try_place(const Netlist<>& net_list, std::string filename = vtr::string_fmt("placement_%03d_%03d.place", state.num_temps + 1, 0); VTR_LOG("Saving final placement to file: %s\n", filename.c_str()); - print_place(nullptr, nullptr, filename.c_str()); + print_place(nullptr, nullptr, filename.c_str(), blk_loc_registry.block_locs()); } // TODO: @@ -913,19 +902,20 @@ void try_place(const Netlist<>& net_list, //#endif // Update physical pin values - for (auto block_id : cluster_ctx.clb_nlist.blocks()) { - place_sync_external_block_connections(block_id); + for (const ClusterBlockId block_id : cluster_ctx.clb_nlist.blocks()) { + blk_loc_registry.place_sync_external_block_connections(block_id); } check_place(costs, place_delay_model.get(), placer_criticalities.get(), placer_opts.place_algorithm, - noc_opts); + noc_opts, + placer_state); //Some stats VTR_LOG("\n"); - VTR_LOG("Swaps called: %d\n", num_ts_called); + VTR_LOG("Swaps called: %d\n", swap_stats.num_ts_called); report_aborted_moves(); if (placer_opts.place_algorithm.is_timing_driven()) { @@ -948,8 +938,8 @@ void try_place(const Netlist<>& net_list, *timing_info, debug_tnode); } - generate_post_place_timing_reports(placer_opts, analysis_opts, - *timing_info, *placement_delay_calc, is_flat); + generate_post_place_timing_reports(placer_opts, analysis_opts, *timing_info, + *placement_delay_calc, is_flat, blk_loc_registry); /* Print critical path delay metrics */ VTR_LOG("\n"); @@ -976,17 +966,17 @@ void try_place(const Netlist<>& net_list, update_screen(ScreenUpdatePriority::MAJOR, msg, PLACEMENT, timing_info); // Print out swap statistics - print_resources_utilization(); + print_resources_utilization(blk_loc_registry); - print_placement_swaps_stats(state); + print_placement_swaps_stats(state, swap_stats); print_placement_move_types_stats(move_type_stat); if (noc_opts.noc) { - write_noc_placement_file(noc_opts.noc_placement_file_name); + write_noc_placement_file(noc_opts.noc_placement_file_name, blk_loc_registry.block_locs()); } - free_placement_structs(placer_opts, noc_opts); + free_placement_structs(noc_opts); free_try_swap_arrays(); print_timing_stats("Placement Quench", post_quench_timing_stats, @@ -999,6 +989,8 @@ void try_place(const Netlist<>& net_list, p_runtime_ctx.f_update_td_costs_nets_elapsed_sec, p_runtime_ctx.f_update_td_costs_sum_nets_elapsed_sec, p_runtime_ctx.f_update_td_costs_total_elapsed_sec); + + copy_locs_to_global_state(blk_loc_registry); } /* Function to update the setup slacks and criticalities before the inner loop of the annealing/quench */ @@ -1012,7 +1004,8 @@ static void outer_loop_update_timing_info(const t_placer_opts& placer_opts, PlacerCriticalities* criticalities, PlacerSetupSlacks* setup_slacks, NetPinTimingInvalidator* pin_timing_invalidator, - SetupTimingInfo* timing_info) { + SetupTimingInfo* timing_info, + PlacerState& placer_state) { if (placer_opts.place_algorithm.is_timing_driven()) { /*at each temperature change we update these values to be used */ /*for normalizing the tradeoff between timing and wirelength (bb) */ @@ -1029,8 +1022,8 @@ static void outer_loop_update_timing_info(const t_placer_opts& placer_opts, crit_params.crit_limit = placer_opts.place_crit_limit; //Update all timing related classes - perform_full_timing_update(crit_params, delay_model, criticalities, - setup_slacks, pin_timing_invalidator, timing_info, costs); + perform_full_timing_update(crit_params, delay_model, criticalities, setup_slacks, + pin_timing_invalidator, timing_info, costs, placer_state); *outer_crit_iter_count = 0; } @@ -1059,33 +1052,32 @@ static void placement_inner_loop(const t_annealing_state* state, SetupTimingInfo* timing_info, const t_place_algorithm& place_algorithm, MoveTypeStat& move_type_stat, - float timing_bb_factor) { - int inner_crit_iter_count, inner_iter; - - int inner_placement_save_count = 0; //How many times have we dumped placement to a file this temperature? + float timing_bb_factor, + t_swap_stats& swap_stats, + PlacerState& placer_state) { + //How many times have we dumped placement to a file this temperature? + int inner_placement_save_count = 0; stats->reset(); - inner_crit_iter_count = 1; - bool manual_move_enabled = false; /* Inner loop begins */ - for (inner_iter = 0; inner_iter < state->move_lim; inner_iter++) { + for (int inner_iter = 0, inner_crit_iter_count = 1; inner_iter < state->move_lim; inner_iter++) { e_move_result swap_result = try_swap(state, costs, move_generator, manual_move_generator, timing_info, pin_timing_invalidator, blocks_affected, delay_model, criticalities, setup_slacks, placer_opts, noc_opts, move_type_stat, place_algorithm, - timing_bb_factor, manual_move_enabled); + timing_bb_factor, manual_move_enabled, swap_stats, placer_state); if (swap_result == ACCEPTED) { /* Move was accepted. Update statistics that are useful for the annealing schedule. */ stats->single_swap_update(*costs); - num_swap_accepted++; + swap_stats.num_swap_accepted++; } else if (swap_result == ABORTED) { - num_swap_aborted++; + swap_stats.num_swap_aborted++; } else { // swap_result == REJECTED - num_swap_rejected++; + swap_stats.num_swap_rejected++; } if (place_algorithm.is_timing_driven()) { @@ -1105,9 +1097,9 @@ static void placement_inner_loop(const t_annealing_state* state, crit_params.crit_limit = placer_opts.place_crit_limit; //Update all timing related classes - perform_full_timing_update(crit_params, delay_model, - criticalities, setup_slacks, pin_timing_invalidator, - timing_info, costs); + perform_full_timing_update(crit_params, delay_model, criticalities, + setup_slacks, pin_timing_invalidator, + timing_info, costs, placer_state); } inner_crit_iter_count++; } @@ -1127,16 +1119,12 @@ static void placement_inner_loop(const t_annealing_state* state, } if (placer_opts.placement_saves_per_temperature >= 1 && inner_iter > 0 - && (inner_iter + 1) - % (state->move_lim - / placer_opts.placement_saves_per_temperature) - == 0) { + && (inner_iter + 1) % (state->move_lim / placer_opts.placement_saves_per_temperature) == 0) { std::string filename = vtr::string_fmt("placement_%03d_%03d.place", state->num_temps + 1, inner_placement_save_count); - VTR_LOG( - "Saving placement to file at temperature move %d / %d: %s\n", - inner_iter, state->move_lim, filename.c_str()); - print_place(nullptr, nullptr, filename.c_str()); + VTR_LOG("Saving placement to file at temperature move %d / %d: %s\n", + inner_iter, state->move_lim, filename.c_str()); + print_place(nullptr, nullptr, filename.c_str(), placer_state.block_locs()); ++inner_placement_save_count; } } @@ -1147,12 +1135,14 @@ static void placement_inner_loop(const t_annealing_state* state, /*only count non-global connections */ static int count_connections() { + auto& cluster_ctx = g_vpr_ctx.clustering(); + int count = 0; - auto& cluster_ctx = g_vpr_ctx.clustering(); - for (auto net_id : cluster_ctx.clb_nlist.nets()) { - if (cluster_ctx.clb_nlist.net_is_ignored(net_id)) + for (ClusterNetId net_id : cluster_ctx.clb_nlist.nets()) { + if (cluster_ctx.clb_nlist.net_is_ignored(net_id)) { continue; + } count += cluster_ctx.clb_nlist.net_sinks(net_id).size(); } @@ -1174,7 +1164,9 @@ static float starting_t(const t_annealing_state* state, t_pl_blocks_to_be_moved& blocks_affected, const t_placer_opts& placer_opts, const t_noc_opts& noc_opts, - MoveTypeStat& move_type_stat) { + MoveTypeStat& move_type_stat, + t_swap_stats& swap_stats, + PlacerState& placer_state) { if (annealing_sched.type == USER_SCHED) { return (annealing_sched.init_t); } @@ -1207,17 +1199,17 @@ static float starting_t(const t_annealing_state* state, manual_move_generator, timing_info, pin_timing_invalidator, blocks_affected, delay_model, criticalities, setup_slacks, placer_opts, noc_opts, move_type_stat, placer_opts.place_algorithm, - REWARD_BB_TIMING_RELATIVE_WEIGHT, manual_move_enabled); + REWARD_BB_TIMING_RELATIVE_WEIGHT, manual_move_enabled, swap_stats, placer_state); if (swap_result == ACCEPTED) { num_accepted++; av += costs->cost; sum_of_squares += costs->cost * costs->cost; - num_swap_accepted++; + swap_stats.num_swap_accepted++; } else if (swap_result == ABORTED) { - num_swap_aborted++; + swap_stats.num_swap_aborted++; } else { - num_swap_rejected++; + swap_stats.num_swap_rejected++; } } @@ -1276,13 +1268,17 @@ static e_move_result try_swap(const t_annealing_state* state, MoveTypeStat& move_type_stat, const t_place_algorithm& place_algorithm, float timing_bb_factor, - bool manual_move_enabled) { + bool manual_move_enabled, + t_swap_stats& swap_stats, + PlacerState& placer_state) { /* Picks some block and moves it to another spot. If this spot is * * occupied, switch the blocks. Assess the change in cost function. * * rlim is the range limiter. * * Returns whether the swap is accepted, rejected or aborted. * * Passes back the new value of the cost functions. */ + const auto& block_locs = placer_state.block_locs(); + float rlim_escape_fraction = placer_opts.rlim_escape_fraction; float timing_tradeoff = placer_opts.timing_tradeoff; @@ -1293,7 +1289,7 @@ static e_move_result try_swap(const t_annealing_state* state, // move type and block type chosen by the agent t_propose_action proposed_action{e_move_type::UNIFORM, -1}; - num_ts_called++; + swap_stats.num_ts_called++; MoveOutcomeStats move_outcome_stats; @@ -1324,14 +1320,16 @@ static e_move_result try_swap(const t_annealing_state* state, //When manual move toggle button is active, the manual move window asks the user for input. if (manual_move_enabled) { #ifndef NO_GRAPHICS - create_move_outcome = manual_move_display_and_propose(manual_move_generator, blocks_affected, proposed_action.move_type, rlim, placer_opts, criticalities); + create_move_outcome = manual_move_display_and_propose(manual_move_generator, blocks_affected, + proposed_action.move_type, rlim, placer_opts, + criticalities); #else //NO_GRAPHICS //Cast to void to explicitly avoid warning. (void)manual_move_generator; #endif //NO_GRAPHICS } else if (router_block_move) { // generate a move where two random router blocks are swapped - create_move_outcome = propose_router_swap(blocks_affected, rlim); + create_move_outcome = propose_router_swap(blocks_affected, rlim, placer_state.blk_loc_registry()); proposed_action.move_type = e_move_type::UNIFORM; } else { //Generate a new move (perturbation) used to explore the space of possible placements @@ -1343,7 +1341,9 @@ static e_move_result try_swap(const t_annealing_state* state, } LOG_MOVE_STATS_PROPOSED(t, blocks_affected); - VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, "\t\tBefore move Place cost %e, bb_cost %e, timing cost %e\n", costs->cost, costs->bb_cost, costs->timing_cost); + VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, + "\t\tBefore move Place cost %e, bb_cost %e, timing cost %e\n", + costs->cost, costs->bb_cost, costs->timing_cost); e_move_result move_outcome = e_move_result::ABORTED; @@ -1371,7 +1371,7 @@ static e_move_result try_swap(const t_annealing_state* state, */ /* Update the block positions */ - apply_move_blocks(blocks_affected); + apply_move_blocks(blocks_affected, placer_state.mutable_blk_loc_registry()); //Find all the nets affected by this swap and update the wiring costs. //This cost value doesn't depend on the timing info. @@ -1392,7 +1392,7 @@ static e_move_result try_swap(const t_annealing_state* state, /* Update the connection_timing_cost and connection_delay * * values from the temporary values. */ - commit_td_cost(blocks_affected); + commit_td_cost(blocks_affected, placer_state); /* Update timing information. Since we are analyzing setup slacks, * * we only update those values and keep the criticalities stale * @@ -1405,11 +1405,11 @@ static e_move_result try_swap(const t_annealing_state* state, criticalities->disable_update(); setup_slacks->enable_update(); update_timing_classes(crit_params, timing_info, criticalities, - setup_slacks, pin_timing_invalidator); + setup_slacks, pin_timing_invalidator, placer_state); /* Get the setup slack analysis cost */ //TODO: calculate a weighted average of the slack cost and wiring cost - delta_c = analyze_setup_slack_cost(setup_slacks) * costs->timing_cost_norm; + delta_c = analyze_setup_slack_cost(setup_slacks, placer_state) * costs->timing_cost_norm; } else if (place_algorithm == CRITICALITY_TIMING_PLACE) { /* Take delta_c as a combination of timing and wiring cost. In * addition to `timing_tradeoff`, we normalize the cost values */ @@ -1422,8 +1422,7 @@ static e_move_result try_swap(const t_annealing_state* state, timing_delta_c, costs->timing_cost_norm); delta_c = (1 - timing_tradeoff) * bb_delta_c * costs->bb_cost_norm - + timing_tradeoff * timing_delta_c - * costs->timing_cost_norm; + + timing_tradeoff * timing_delta_c * costs->timing_cost_norm; } else { VTR_ASSERT_SAFE(place_algorithm == BOUNDING_BOX_PLACE); VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, @@ -1436,7 +1435,7 @@ static e_move_result try_swap(const t_annealing_state* state, NocCostTerms noc_delta_c; // change in NoC cost /* Update the NoC datastructure and costs*/ if (noc_opts.noc) { - find_affected_noc_routers_and_update_noc_costs(blocks_affected, noc_delta_c); + find_affected_noc_routers_and_update_noc_costs(blocks_affected, noc_delta_c, block_locs); // Include the NoC delta costs in the total cost change for this swap delta_c += calculate_noc_cost(noc_delta_c, costs->noc_cost_norm_factors, noc_opts); @@ -1462,7 +1461,7 @@ static e_move_result try_swap(const t_annealing_state* state, //Commit the setup slack information //The timing delay and cost values should be committed already - commit_setup_slacks(setup_slacks); + commit_setup_slacks(setup_slacks, placer_state); } if (place_algorithm == CRITICALITY_TIMING_PLACE) { @@ -1476,14 +1475,14 @@ static e_move_result try_swap(const t_annealing_state* state, /* Update the connection_timing_cost and connection_delay * * values from the temporary values. */ - commit_td_cost(blocks_affected); + commit_td_cost(blocks_affected, placer_state); } /* Update net cost functions and reset flags. */ update_move_nets(); /* Update clb data structures since we kept the move. */ - commit_move_blocks(blocks_affected); + commit_move_blocks(blocks_affected, placer_state.mutable_grid_blocks()); if (proposed_action.logical_blk_type_index != -1) { //if the agent proposed the block type, then collect the block type stat ++move_type_stat.accepted_moves[proposed_action.logical_blk_type_index][(int)proposed_action.move_type]; @@ -1507,14 +1506,14 @@ static e_move_result try_swap(const t_annealing_state* state, reset_move_nets(); /* Restore the place_ctx.block_locs data structures to their state before the move. */ - revert_move_blocks(blocks_affected); + revert_move_blocks(blocks_affected, placer_state.mutable_blk_loc_registry()); if (place_algorithm == SLACK_TIMING_PLACE) { /* Revert the timing delays and costs to pre-update values. */ /* These routines must be called after reverting the block moves. */ //TODO: make this process incremental - comp_td_connection_delays(delay_model); - comp_td_costs(delay_model, *criticalities, &costs->timing_cost); + comp_td_connection_delays(delay_model, placer_state); + comp_td_costs(delay_model, *criticalities, placer_state, &costs->timing_cost); /* Re-invalidate the affected sink pins since the proposed * * move is rejected, and the same blocks are reverted to * @@ -1524,16 +1523,16 @@ static e_move_result try_swap(const t_annealing_state* state, /* Revert the timing update */ update_timing_classes(crit_params, timing_info, criticalities, - setup_slacks, pin_timing_invalidator); + setup_slacks, pin_timing_invalidator, placer_state); VTR_ASSERT_SAFE_MSG( - verify_connection_setup_slacks(setup_slacks), + verify_connection_setup_slacks(setup_slacks, placer_state), "The current setup slacks should be identical to the values before the try swap timing info update."); } if (place_algorithm == CRITICALITY_TIMING_PLACE) { /* Unstage the values stored in proposed_* data structures */ - revert_td_cost(blocks_affected); + revert_td_cost(blocks_affected, placer_state.mutable_timing()); } if (proposed_action.logical_blk_type_index != -1) { //if the agent proposed the block type, then collect the block type stat @@ -1541,26 +1540,23 @@ static e_move_result try_swap(const t_annealing_state* state, } /* Revert the traffic flow routes within the NoC*/ if (noc_opts.noc) { - revert_noc_traffic_flow_routes(blocks_affected); + revert_noc_traffic_flow_routes(blocks_affected, block_locs); } } move_outcome_stats.delta_cost_norm = delta_c; - move_outcome_stats.delta_bb_cost_norm = bb_delta_c - * costs->bb_cost_norm; - move_outcome_stats.delta_timing_cost_norm = timing_delta_c - * costs->timing_cost_norm; + move_outcome_stats.delta_bb_cost_norm = bb_delta_c * costs->bb_cost_norm; + move_outcome_stats.delta_timing_cost_norm = timing_delta_c * costs->timing_cost_norm; move_outcome_stats.delta_bb_cost_abs = bb_delta_c; move_outcome_stats.delta_timing_cost_abs = timing_delta_c; - LOG_MOVE_STATS_OUTCOME(delta_c, bb_delta_c, timing_delta_c, - (move_outcome ? "ACCEPTED" : "REJECTED"), ""); + LOG_MOVE_STATS_OUTCOME(delta_c, bb_delta_c, timing_delta_c, (move_outcome ? "ACCEPTED" : "REJECTED"), ""); } move_outcome_stats.outcome = move_outcome; // If we force a router block move then it was not proposed by the - // move generator so we should not calculate the reward and update + // move generator, so we should not calculate the reward and update // the move generators status since this outcome is not a direct // consequence of the move generator if (!router_block_move) { @@ -1577,13 +1573,14 @@ static e_move_result try_swap(const t_annealing_state* state, /* Clear the data structure containing block move info */ blocks_affected.clear_move_blocks(); - //VTR_ASSERT(check_macro_placement_consistency() == 0); #if 0 // Check that each accepted swap yields a valid placement. This will // greatly slow the placer, but can debug some issues. check_place(*costs, delay_model, criticalities, place_algorithm, noc_opts); #endif - VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, "\t\tAfter move Place cost %e, bb_cost %e, timing cost %e\n", costs->cost, costs->bb_cost, costs->timing_cost); + VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, + "\t\tAfter move Place cost %e, bb_cost %e, timing cost %e\n", + costs->cost, costs->bb_cost, costs->timing_cost); return move_outcome; } @@ -1592,7 +1589,7 @@ static bool is_cube_bb(const e_place_bounding_box_mode place_bb_mode, bool cube_bb; const int number_layers = g_vpr_ctx.device().grid.get_num_layers(); - // If the FPGA has only layer, then we can only use cube bounding box + // If the FPGA has only one layer, then we can only use cube bounding box if (number_layers == 1) { cube_bb = true; } else { @@ -1634,15 +1631,13 @@ static void update_placement_cost_normalization_factors(t_placer_costs* costs, c /* Update the cost normalization factors */ costs->update_norm_factors(); - // update the noc normalization factors if the palcement includes the NoC + // update the noc normalization factors if the placement includes the NoC if (noc_opts.noc) { update_noc_normalization_factors(*costs); } // update the current total placement cost costs->cost = get_total_cost(costs, placer_opts, noc_opts); - - return; } /** @@ -1692,11 +1687,12 @@ static double get_total_cost(t_placer_costs* costs, const t_placer_opts& placer_ * value suddenly got very good due to the block move, while a good slack value * got very bad, perhaps even worse than the original worse slack value. */ -static float analyze_setup_slack_cost(const PlacerSetupSlacks* setup_slacks) { +static float analyze_setup_slack_cost(const PlacerSetupSlacks* setup_slacks, + const PlacerState& placer_state) { const auto& cluster_ctx = g_vpr_ctx.clustering(); const auto& clb_nlist = cluster_ctx.clb_nlist; - const auto& p_timing_ctx = g_placer_ctx.timing(); + const auto& p_timing_ctx = placer_state.timing(); const auto& connection_setup_slack = p_timing_ctx.connection_setup_slack; //Find the original/proposed setup slacks of pins with modified values @@ -1762,11 +1758,12 @@ static e_move_result assess_swap(double delta_c, double t) { * All the connections have already been gathered by blocks_affected.affected_pins * after running the routine find_affected_nets_and_update_costs() in try_swap(). */ -static void commit_td_cost(const t_pl_blocks_to_be_moved& blocks_affected) { +static void commit_td_cost(const t_pl_blocks_to_be_moved& blocks_affected, + PlacerState& placer_state) { auto& cluster_ctx = g_vpr_ctx.clustering(); auto& clb_nlist = cluster_ctx.clb_nlist; - auto& p_timing_ctx = g_placer_ctx.mutable_timing(); + auto& p_timing_ctx = placer_state.mutable_timing(); auto& connection_delay = p_timing_ctx.connection_delay; auto& proposed_connection_delay = p_timing_ctx.proposed_connection_delay; auto& connection_timing_cost = p_timing_ctx.connection_timing_cost; @@ -1787,16 +1784,17 @@ static void commit_td_cost(const t_pl_blocks_to_be_moved& blocks_affected) { //Reverts modifications to proposed_connection_delay and proposed_connection_timing_cost based on //the move proposed in blocks_affected -static void revert_td_cost(const t_pl_blocks_to_be_moved& blocks_affected) { +static void revert_td_cost(const t_pl_blocks_to_be_moved& blocks_affected, + PlacerTimingContext& p_timing_ctx) { #ifndef VTR_ASSERT_SAFE_ENABLED - static_cast(blocks_affected); + (void)blocks_affected; + (void)p_timing_ctx; #else //Invalidate temp delay & timing cost values to match sanity checks in //comp_td_connection_cost() auto& cluster_ctx = g_vpr_ctx.clustering(); auto& clb_nlist = cluster_ctx.clb_nlist; - auto& p_timing_ctx = g_placer_ctx.mutable_timing(); auto& proposed_connection_delay = p_timing_ctx.proposed_connection_delay; auto& proposed_connection_timing_cost = p_timing_ctx.proposed_connection_timing_cost; @@ -1818,10 +1816,9 @@ static void revert_td_cost(const t_pl_blocks_to_be_moved& blocks_affected) { * Invalidate all the timing graph edges associated with these connections via * the NetPinTimingInvalidator class. */ -static void invalidate_affected_connections( - const t_pl_blocks_to_be_moved& blocks_affected, - NetPinTimingInvalidator* pin_tedges_invalidator, - TimingInfo* timing_info) { +static void invalidate_affected_connections(const t_pl_blocks_to_be_moved& blocks_affected, + NetPinTimingInvalidator* pin_tedges_invalidator, + TimingInfo* timing_info) { VTR_ASSERT_SAFE(timing_info); VTR_ASSERT_SAFE(pin_tedges_invalidator); @@ -1837,27 +1834,24 @@ static void alloc_and_load_placement_structs(float place_cost_exp, const t_placer_opts& placer_opts, const t_noc_opts& noc_opts, t_direct_inf* directs, - int num_directs) { - int max_pins_per_clb; - unsigned int ipin; - + int num_directs, + PlacerState& placer_state) { const auto& device_ctx = g_vpr_ctx.device(); const auto& cluster_ctx = g_vpr_ctx.clustering(); auto& place_ctx = g_vpr_ctx.mutable_placement(); - const auto& cube_bb = place_ctx.cube_bb; - - auto& p_timing_ctx = g_placer_ctx.mutable_timing(); - auto& place_move_ctx = g_placer_ctx.mutable_move(); + place_ctx.lock_loc_vars(); size_t num_nets = cluster_ctx.clb_nlist.nets().size(); const int num_layers = device_ctx.grid.get_num_layers(); - init_placement_context(); + auto& block_locs = placer_state.mutable_block_locs(); + auto& grid_blocks = placer_state.mutable_grid_blocks(); + init_placement_context(block_locs, grid_blocks); - max_pins_per_clb = 0; - for (const auto& type : device_ctx.physical_tile_types) { + int max_pins_per_clb = 0; + for (const t_physical_tile_type& type : device_ctx.physical_tile_types) { max_pins_per_clb = max(max_pins_per_clb, type.num_pins); } @@ -1865,23 +1859,19 @@ static void alloc_and_load_placement_structs(float place_cost_exp, /* Allocate structures associated with timing driven placement */ /* [0..cluster_ctx.clb_nlist.nets().size()-1][1..num_pins-1] */ - p_timing_ctx.connection_delay = make_net_pins_matrix( - (const Netlist<>&)cluster_ctx.clb_nlist, 0.f); - p_timing_ctx.proposed_connection_delay = make_net_pins_matrix( - cluster_ctx.clb_nlist, 0.f); + auto& p_timing_ctx = placer_state.mutable_timing(); + + p_timing_ctx.connection_delay = make_net_pins_matrix((const Netlist<>&)cluster_ctx.clb_nlist, 0.f); + p_timing_ctx.proposed_connection_delay = make_net_pins_matrix(cluster_ctx.clb_nlist, 0.f); - p_timing_ctx.connection_setup_slack = make_net_pins_matrix( - cluster_ctx.clb_nlist, std::numeric_limits::infinity()); + p_timing_ctx.connection_setup_slack = make_net_pins_matrix(cluster_ctx.clb_nlist, std::numeric_limits::infinity()); - p_timing_ctx.connection_timing_cost = PlacerTimingCosts( - cluster_ctx.clb_nlist); - p_timing_ctx.proposed_connection_timing_cost = make_net_pins_matrix< - double>(cluster_ctx.clb_nlist, 0.); + p_timing_ctx.connection_timing_cost = PlacerTimingCosts(cluster_ctx.clb_nlist); + p_timing_ctx.proposed_connection_timing_cost = make_net_pins_matrix(cluster_ctx.clb_nlist, 0.); p_timing_ctx.net_timing_cost.resize(num_nets, 0.); - for (auto net_id : cluster_ctx.clb_nlist.nets()) { - for (ipin = 1; ipin < cluster_ctx.clb_nlist.net_pins(net_id).size(); - ipin++) { + for (ClusterNetId net_id : cluster_ctx.clb_nlist.nets()) { + for (size_t ipin = 1; ipin < cluster_ctx.clb_nlist.net_pins(net_id).size(); ipin++) { p_timing_ctx.connection_delay[net_id][ipin] = 0; p_timing_ctx.proposed_connection_delay[net_id][ipin] = INVALID_DELAY; @@ -1897,11 +1887,12 @@ static void alloc_and_load_placement_structs(float place_cost_exp, init_place_move_structs(num_nets); - if (cube_bb) { + auto& place_move_ctx = placer_state.mutable_move(); + if (place_ctx.cube_bb) { place_move_ctx.bb_coords.resize(num_nets, t_bb()); place_move_ctx.bb_num_on_edges.resize(num_nets, t_bb()); } else { - VTR_ASSERT_SAFE(!cube_bb); + VTR_ASSERT_SAFE(!place_ctx.cube_bb); place_move_ctx.layer_bb_num_on_edges.resize(num_nets, std::vector(num_layers, t_2D_bb())); place_move_ctx.layer_bb_coords.resize(num_nets, std::vector(num_layers, t_2D_bb())); } @@ -1914,7 +1905,7 @@ static void alloc_and_load_placement_structs(float place_cost_exp, alloc_and_load_chan_w_factors_for_place_cost(place_cost_exp); - alloc_and_load_try_swap_structs(cube_bb); + alloc_and_load_try_swap_structs(place_ctx.cube_bb); place_ctx.pl_macros = alloc_and_load_placement_macros(directs, num_directs); @@ -1925,33 +1916,11 @@ static void alloc_and_load_placement_structs(float place_cost_exp, /* Frees the major structures needed by the placer (and not needed * * elsewhere). */ -static void free_placement_structs(const t_placer_opts& placer_opts, const t_noc_opts& noc_opts) { - auto& place_move_ctx = g_placer_ctx.mutable_move(); - - if (placer_opts.place_algorithm.is_timing_driven()) { - auto& p_timing_ctx = g_placer_ctx.mutable_timing(); - - vtr::release_memory(p_timing_ctx.connection_timing_cost); - vtr::release_memory(p_timing_ctx.connection_delay); - vtr::release_memory(p_timing_ctx.connection_setup_slack); - vtr::release_memory(p_timing_ctx.proposed_connection_timing_cost); - vtr::release_memory(p_timing_ctx.proposed_connection_delay); - vtr::release_memory(p_timing_ctx.net_timing_cost); - } - +static void free_placement_structs(const t_noc_opts& noc_opts) { free_placement_macros_structs(); free_place_move_structs(); - vtr::release_memory(place_move_ctx.bb_coords); - vtr::release_memory(place_move_ctx.bb_num_on_edges); - vtr::release_memory(place_move_ctx.bb_coords); - - vtr::release_memory(place_move_ctx.layer_bb_num_on_edges); - vtr::release_memory(place_move_ctx.layer_bb_coords); - - place_move_ctx.num_sink_pin_layer.clear(); - free_chan_w_factors_for_place_cost(); free_try_swap_structs(); @@ -1985,7 +1954,8 @@ static void check_place(const t_placer_costs& costs, const PlaceDelayModel* delay_model, const PlacerCriticalities* criticalities, const t_place_algorithm& place_algorithm, - const t_noc_opts& noc_opts) { + const t_noc_opts& noc_opts, + PlacerState& placer_state) { /* Checks that the placement has not confused our data structures. * * i.e. the clb and block structures agree about the locations of * * every block, blocks are in legal spots, etc. Also recomputes * @@ -1994,16 +1964,15 @@ static void check_place(const t_placer_costs& costs, int error = 0; - error += check_placement_consistency(); - error += check_placement_costs(costs, delay_model, criticalities, - place_algorithm); - error += check_placement_floorplanning(); + error += check_placement_consistency(placer_state.blk_loc_registry()); + error += check_placement_costs(costs, delay_model, criticalities, place_algorithm, placer_state); + error += check_placement_floorplanning(placer_state.block_locs()); if (noc_opts.noc) { // check the NoC costs during placement if the user is using the NoC supported flow - error += check_noc_placement_costs(costs, ERROR_TOL, noc_opts); + error += check_noc_placement_costs(costs, ERROR_TOL, noc_opts, placer_state.block_locs()); // make sure NoC routing configuration does not create any cycles in CDG - error += (int)noc_routing_has_cycle(); + error += (int)noc_routing_has_cycle(placer_state.block_locs()); } if (error == 0) { @@ -2021,18 +1990,19 @@ static void check_place(const t_placer_costs& costs, static int check_placement_costs(const t_placer_costs& costs, const PlaceDelayModel* delay_model, const PlacerCriticalities* criticalities, - const t_place_algorithm& place_algorithm) { + const t_place_algorithm& place_algorithm, + PlacerState& placer_state) { int error = 0; double bb_cost_check; double timing_cost_check; - const auto& cube_bb = g_vpr_ctx.placement().cube_bb; + const bool cube_bb = g_vpr_ctx.placement().cube_bb; if (cube_bb) { - bb_cost_check = comp_bb_cost(CHECK); + bb_cost_check = comp_bb_cost(e_cost_methods::CHECK); } else { VTR_ASSERT_SAFE(!cube_bb); - bb_cost_check = comp_layer_bb_cost(CHECK); + bb_cost_check = comp_layer_bb_cost(e_cost_methods::CHECK); } if (fabs(bb_cost_check - costs.bb_cost) > costs.bb_cost * ERROR_TOL) { @@ -2043,12 +2013,9 @@ static int check_placement_costs(const t_placer_costs& costs, } if (place_algorithm.is_timing_driven()) { - comp_td_costs(delay_model, *criticalities, &timing_cost_check); + comp_td_costs(delay_model, *criticalities, placer_state, &timing_cost_check); //VTR_LOG("timing_cost recomputed from scratch: %g\n", timing_cost_check); - if (fabs( - timing_cost_check - - costs.timing_cost) - > costs.timing_cost * ERROR_TOL) { + if (fabs(timing_cost_check - costs.timing_cost) > costs.timing_cost * ERROR_TOL) { VTR_LOG_ERROR( "timing_cost_check: %g and timing_cost: %g differ in check_place.\n", timing_cost_check, costs.timing_cost); @@ -2058,20 +2025,19 @@ static int check_placement_costs(const t_placer_costs& costs, return error; } -static int check_placement_consistency() { - return check_block_placement_consistency() - + check_macro_placement_consistency(); +static int check_placement_consistency(const BlkLocRegistry& blk_loc_registry) { + return check_block_placement_consistency(blk_loc_registry) + check_macro_placement_consistency(blk_loc_registry); } -static int check_block_placement_consistency() { - int error = 0; - +static int check_block_placement_consistency(const BlkLocRegistry& blk_loc_registry) { auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.placement(); auto& device_ctx = g_vpr_ctx.device(); + const auto& block_locs = blk_loc_registry.block_locs(); + const auto& grid_blocks = blk_loc_registry.grid_blocks(); + + int error = 0; - vtr::vector bdone( - cluster_ctx.clb_nlist.blocks().size(), 0); + vtr::vector bdone(cluster_ctx.clb_nlist.blocks().size(), 0); /* Step through device grid and placement. Check it against blocks */ for (int layer_num = 0; layer_num < (int)device_ctx.grid.get_num_layers(); layer_num++) { @@ -2079,30 +2045,31 @@ static int check_block_placement_consistency() { for (int j = 0; j < (int)device_ctx.grid.height(); j++) { const t_physical_tile_loc tile_loc(i, j, layer_num); const auto& type = device_ctx.grid.get_physical_type(tile_loc); - if (place_ctx.grid_blocks.get_usage(tile_loc) > type->capacity) { + if (grid_blocks.get_usage(tile_loc) > type->capacity) { VTR_LOG_ERROR( "%d blocks were placed at grid location (%d,%d,%d), but location capacity is %d.\n", - place_ctx.grid_blocks.get_usage(tile_loc), i, j, layer_num, - type->capacity); + grid_blocks.get_usage(tile_loc), i, j, layer_num, type->capacity); error++; } int usage_check = 0; for (int k = 0; k < type->capacity; k++) { - auto bnum = place_ctx.grid_blocks.block_at_location({i, j, k, layer_num}); - if (EMPTY_BLOCK_ID == bnum || INVALID_BLOCK_ID == bnum) + ClusterBlockId bnum = grid_blocks.block_at_location({i, j, k, layer_num}); + if (bnum == ClusterBlockId::INVALID()) { continue; + } auto logical_block = cluster_ctx.clb_nlist.block_type(bnum); auto physical_tile = type; + t_pl_loc block_loc = block_locs[bnum].loc; - if (physical_tile_type(bnum) != physical_tile) { + if (physical_tile_type(block_loc) != physical_tile) { VTR_LOG_ERROR( "Block %zu type (%s) does not match grid location (%zu,%zu, %d) type (%s).\n", size_t(bnum), logical_block->name, i, j, layer_num, physical_tile->name); error++; } - auto& loc = place_ctx.block_locs[bnum].loc; + auto& loc = block_locs[bnum].loc; if (loc.x != i || loc.y != j || loc.layer != layer_num || !is_sub_tile_compatible(physical_tile, logical_block, loc.sub_tile)) { @@ -2121,10 +2088,10 @@ static int check_block_placement_consistency() { ++usage_check; bdone[bnum]++; } - if (usage_check != place_ctx.grid_blocks.get_usage(tile_loc)) { + if (usage_check != grid_blocks.get_usage(tile_loc)) { VTR_LOG_ERROR( "%d block(s) were placed at location (%d,%d,%d), but location contains %d block(s).\n", - place_ctx.grid_blocks.get_usage(tile_loc), + grid_blocks.get_usage(tile_loc), tile_loc.x, tile_loc.y, tile_loc.layer_num, @@ -2136,7 +2103,7 @@ static int check_block_placement_consistency() { } /* Check that every block exists in the device_ctx.grid and cluster_ctx.blocks arrays somewhere. */ - for (auto blk_id : cluster_ctx.clb_nlist.blocks()) + for (ClusterBlockId blk_id : cluster_ctx.clb_nlist.blocks()) if (bdone[blk_id] != 1) { VTR_LOG_ERROR("Block %zu listed %d times in device context grid.\n", size_t(blk_id), bdone[blk_id]); @@ -2146,26 +2113,25 @@ static int check_block_placement_consistency() { return error; } -int check_macro_placement_consistency() { - int error = 0; - auto& place_ctx = g_vpr_ctx.placement(); +int check_macro_placement_consistency(const BlkLocRegistry& blk_loc_registry) { + const auto& pl_macros = g_vpr_ctx.placement().pl_macros; + const auto& block_locs = blk_loc_registry.block_locs(); + const auto& grid_blocks = blk_loc_registry.grid_blocks(); - auto& pl_macros = place_ctx.pl_macros; + int error = 0; /* Check the pl_macro placement are legal - blocks are in the proper relative position. */ - for (size_t imacro = 0; imacro < place_ctx.pl_macros.size(); imacro++) { + for (size_t imacro = 0; imacro < pl_macros.size(); imacro++) { auto head_iblk = pl_macros[imacro].members[0].blk_index; - for (size_t imember = 0; imember < pl_macros[imacro].members.size(); - imember++) { + for (size_t imember = 0; imember < pl_macros[imacro].members.size(); imember++) { auto member_iblk = pl_macros[imacro].members[imember].blk_index; - // Compute the suppossed member's x,y,z location - t_pl_loc member_pos = place_ctx.block_locs[head_iblk].loc - + pl_macros[imacro].members[imember].offset; + // Compute the supposed member's x,y,z location + t_pl_loc member_pos = block_locs[head_iblk].loc + pl_macros[imacro].members[imember].offset; // Check the place_ctx.block_locs data structure first - if (place_ctx.block_locs[member_iblk].loc != member_pos) { + if (block_locs[member_iblk].loc != member_pos) { VTR_LOG_ERROR( "Block %zu in pl_macro #%zu is not placed in the proper orientation.\n", size_t(member_iblk), imacro); @@ -2173,8 +2139,7 @@ int check_macro_placement_consistency() { } // Then check the place_ctx.grid data structure - if (place_ctx.grid_blocks.block_at_location(member_pos) - != member_iblk) { + if (grid_blocks.block_at_location(member_pos) != member_iblk) { VTR_LOG_ERROR( "Block %zu in pl_macro #%zu is not placed in the proper orientation.\n", size_t(member_iblk), imacro); @@ -2182,6 +2147,7 @@ int check_macro_placement_consistency() { } } // Finish going through all the members } // Finish going through all the macros + return error; } @@ -2212,12 +2178,13 @@ static void generate_post_place_timing_reports(const t_placer_opts& placer_opts, const t_analysis_opts& analysis_opts, const SetupTimingInfo& timing_info, const PlacementDelayCalculator& delay_calc, - bool is_flat) { + bool is_flat, + const BlkLocRegistry& blk_loc_registry) { auto& timing_ctx = g_vpr_ctx.timing(); auto& atom_ctx = g_vpr_ctx.atom(); - VprTimingGraphResolver resolver(atom_ctx.nlist, atom_ctx.lookup, - *timing_ctx.graph, delay_calc, is_flat); + VprTimingGraphResolver resolver(atom_ctx.nlist, atom_ctx.lookup, *timing_ctx.graph, + delay_calc, is_flat, blk_loc_registry); resolver.set_detail_level(analysis_opts.timing_report_detail); tatum::TimingReporter timing_reporter(resolver, *timing_ctx.graph, @@ -2296,22 +2263,20 @@ static void print_place_status(const t_annealing_state& state, fflush(stdout); } -static void print_resources_utilization() { - auto& place_ctx = g_vpr_ctx.placement(); - auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& device_ctx = g_vpr_ctx.device(); +static void print_resources_utilization(const BlkLocRegistry& blk_loc_registry) { + const auto& cluster_ctx = g_vpr_ctx.clustering(); + const auto& device_ctx = g_vpr_ctx.device(); + const auto& block_locs = blk_loc_registry.block_locs(); int max_block_name = 0; int max_tile_name = 0; //Record the resource requirement std::map num_type_instances; - std::map> - num_placed_instances; - for (auto blk_id : cluster_ctx.clb_nlist.blocks()) { - auto block_loc = place_ctx.block_locs[blk_id]; - auto loc = block_loc.loc; + std::map> num_placed_instances; + + for (ClusterBlockId blk_id : cluster_ctx.clb_nlist.blocks()) { + const t_pl_loc& loc = block_locs[blk_id].loc; auto physical_tile = device_ctx.grid.get_physical_type({loc.x, loc.y, loc.layer}); auto logical_block = cluster_ctx.clb_nlist.block_type(blk_id); @@ -2319,42 +2284,39 @@ static void print_resources_utilization() { num_type_instances[logical_block]++; num_placed_instances[logical_block][physical_tile]++; - max_block_name = std::max(max_block_name, - strlen(logical_block->name)); - max_tile_name = std::max(max_tile_name, - strlen(physical_tile->name)); + max_block_name = std::max(max_block_name, strlen(logical_block->name)); + max_tile_name = std::max(max_tile_name, strlen(physical_tile->name)); } VTR_LOG("\n"); VTR_LOG("Placement resource usage:\n"); - for (auto logical_block : num_type_instances) { - for (auto physical_tile : num_placed_instances[logical_block.first]) { + for (const auto [logical_block_type_ptr, _] : num_type_instances) { + for (const auto [physical_tile_type_ptr, num_instances] : num_placed_instances[logical_block_type_ptr]) { VTR_LOG(" %-*s implemented as %-*s: %d\n", max_block_name, - logical_block.first->name, max_tile_name, - physical_tile.first->name, physical_tile.second); + logical_block_type_ptr->name, max_tile_name, + physical_tile_type_ptr->name, num_instances); } } VTR_LOG("\n"); } -static void print_placement_swaps_stats(const t_annealing_state& state) { - size_t total_swap_attempts = num_swap_rejected + num_swap_accepted - + num_swap_aborted; +static void print_placement_swaps_stats(const t_annealing_state& state, const t_swap_stats& swap_stats) { + size_t total_swap_attempts = swap_stats.num_swap_rejected + swap_stats.num_swap_accepted + swap_stats.num_swap_aborted; VTR_ASSERT(total_swap_attempts > 0); size_t num_swap_print_digits = ceil(log10(total_swap_attempts)); - float reject_rate = (float)num_swap_rejected / total_swap_attempts; - float accept_rate = (float)num_swap_accepted / total_swap_attempts; - float abort_rate = (float)num_swap_aborted / total_swap_attempts; + float reject_rate = (float)swap_stats.num_swap_rejected / total_swap_attempts; + float accept_rate = (float)swap_stats.num_swap_accepted / total_swap_attempts; + float abort_rate = (float)swap_stats.num_swap_aborted / total_swap_attempts; VTR_LOG("Placement number of temperatures: %d\n", state.num_temps); VTR_LOG("Placement total # of swap attempts: %*d\n", num_swap_print_digits, total_swap_attempts); VTR_LOG("\tSwaps accepted: %*d (%4.1f %%)\n", num_swap_print_digits, - num_swap_accepted, 100 * accept_rate); + swap_stats.num_swap_accepted, 100 * accept_rate); VTR_LOG("\tSwaps rejected: %*d (%4.1f %%)\n", num_swap_print_digits, - num_swap_rejected, 100 * reject_rate); + swap_stats.num_swap_rejected, 100 * reject_rate); VTR_LOG("\tSwaps aborted: %*d (%4.1f %%)\n", num_swap_print_digits, - num_swap_aborted, 100 * abort_rate); + swap_stats.num_swap_aborted, 100 * abort_rate); } static void print_placement_move_types_stats(const MoveTypeStat& move_type_stat) { @@ -2409,28 +2371,25 @@ static void print_placement_move_types_stats(const MoveTypeStat& move_type_stat) VTR_LOG("\n"); } -static void calculate_reward_and_process_outcome( - const t_placer_opts& placer_opts, - const MoveOutcomeStats& move_outcome_stats, - const double& delta_c, - float timing_bb_factor, - MoveGenerator& move_generator) { - std::string reward_fun_string = placer_opts.place_reward_fun; +static void calculate_reward_and_process_outcome(const t_placer_opts& placer_opts, + const MoveOutcomeStats& move_outcome_stats, + double delta_c, + float timing_bb_factor, + MoveGenerator& move_generator) { static std::optional reward_fun; if (!reward_fun.has_value()) { - reward_fun = string_to_reward(reward_fun_string); + reward_fun = string_to_reward(placer_opts.place_reward_fun); } - if (reward_fun == BASIC) { + if (reward_fun == e_reward_function::BASIC) { move_generator.process_outcome(-1 * delta_c, reward_fun.value()); - } else if (reward_fun == NON_PENALIZING_BASIC - || reward_fun == RUNTIME_AWARE) { + } else if (reward_fun == e_reward_function::NON_PENALIZING_BASIC || reward_fun == e_reward_function::RUNTIME_AWARE) { if (delta_c < 0) { move_generator.process_outcome(-1 * delta_c, reward_fun.value()); } else { move_generator.process_outcome(0, reward_fun.value()); } - } else if (reward_fun == WL_BIASED_RUNTIME_AWARE) { + } else if (reward_fun == e_reward_function::WL_BIASED_RUNTIME_AWARE) { if (delta_c < 0) { float reward = -1 * (move_outcome_stats.delta_cost_norm @@ -2445,6 +2404,18 @@ static void calculate_reward_and_process_outcome( } } -bool placer_needs_lookahead(const t_vpr_setup& vpr_setup) { - return (vpr_setup.PlacerOpts.place_algorithm.is_timing_driven()); +static void copy_locs_to_global_state(const BlkLocRegistry& blk_loc_registry) { + auto& place_ctx = g_vpr_ctx.mutable_placement(); + + // the placement location variables should be unlocked before being accessed + place_ctx.unlock_loc_vars(); + + // copy the local location variables into the global state + auto& global_blk_loc_registry = place_ctx.mutable_blk_loc_registry(); + global_blk_loc_registry = blk_loc_registry; + +#ifndef NO_GRAPHICS + // update the graphics' reference to placement location variables + set_graphics_blk_loc_registry_ref(global_blk_loc_registry); +#endif } diff --git a/vpr/src/place/place.h b/vpr/src/place/place.h index 55ff24b7ad6..dba2f79ab23 100644 --- a/vpr/src/place/place.h +++ b/vpr/src/place/place.h @@ -16,6 +16,4 @@ void try_place(const Netlist<>& net_list, int num_directs, bool is_flat); -bool placer_needs_lookahead(const t_vpr_setup& vpr_setup); - #endif diff --git a/vpr/src/place/place_checkpoint.cpp b/vpr/src/place/place_checkpoint.cpp index 86af65142c3..ed13382a95f 100644 --- a/vpr/src/place/place_checkpoint.cpp +++ b/vpr/src/place/place_checkpoint.cpp @@ -1,33 +1,43 @@ #include "place_checkpoint.h" #include "noc_place_utils.h" +#include "placer_state.h" +#include "grid_block.h" -float t_placement_checkpoint::get_cp_cpd() { return cpd; } -double t_placement_checkpoint::get_cp_bb_cost() { return costs.bb_cost; } -bool t_placement_checkpoint::cp_is_valid() { return valid; } +float t_placement_checkpoint::get_cp_cpd() const { return cpd_; } -void t_placement_checkpoint::save_placement(const t_placer_costs& placement_costs, const float& critical_path_delay) { - auto& place_ctx = g_vpr_ctx.placement(); - block_locs = place_ctx.block_locs; - valid = true; - cpd = critical_path_delay; - costs = placement_costs; +double t_placement_checkpoint::get_cp_bb_cost() const { return costs_.bb_cost; } + +bool t_placement_checkpoint::cp_is_valid() const { return valid_; } + +void t_placement_checkpoint::save_placement(const vtr::vector_map& block_locs, + const t_placer_costs& placement_costs, + const float critical_path_delay) { + block_locs_ = block_locs; + valid_ = true; + cpd_ = critical_path_delay; + costs_ = placement_costs; } -t_placer_costs t_placement_checkpoint::restore_placement() { - auto& mutable_place_ctx = g_vpr_ctx.mutable_placement(); - mutable_place_ctx.block_locs = block_locs; - load_grid_blocks_from_block_locs(); - return costs; +t_placer_costs t_placement_checkpoint::restore_placement(vtr::vector_map& block_locs, + GridBlock& grid_blocks) { + block_locs = block_locs_; + grid_blocks.load_from_block_locs(block_locs); + return costs_; } -void save_placement_checkpoint_if_needed(t_placement_checkpoint& placement_checkpoint, std::shared_ptr timing_info, t_placer_costs& costs, float cpd) { - if (placement_checkpoint.cp_is_valid() == false || (timing_info->least_slack_critical_path().delay() < placement_checkpoint.get_cp_cpd() && costs.bb_cost <= placement_checkpoint.get_cp_bb_cost())) { - placement_checkpoint.save_placement(costs, cpd); +void save_placement_checkpoint_if_needed(const vtr::vector_map& block_locs, + t_placement_checkpoint& placement_checkpoint, + const std::shared_ptr& timing_info, + t_placer_costs& costs, + float cpd) { + if (!placement_checkpoint.cp_is_valid() || (timing_info->least_slack_critical_path().delay() < placement_checkpoint.get_cp_cpd() && costs.bb_cost <= placement_checkpoint.get_cp_bb_cost())) { + placement_checkpoint.save_placement(block_locs, costs, cpd); VTR_LOG("Checkpoint saved: bb_costs=%g, TD costs=%g, CPD=%7.3f (ns) \n", costs.bb_cost, costs.timing_cost, 1e9 * cpd); } } -void restore_best_placement(t_placement_checkpoint& placement_checkpoint, +void restore_best_placement(PlacerState& placer_state, + t_placement_checkpoint& placement_checkpoint, std::shared_ptr& timing_info, t_placer_costs& costs, std::unique_ptr& placer_criticalities, @@ -43,19 +53,21 @@ void restore_best_placement(t_placement_checkpoint& placement_checkpoint, */ if (placement_checkpoint.cp_is_valid() && timing_info->least_slack_critical_path().delay() > placement_checkpoint.get_cp_cpd() && costs.bb_cost * 1.05 > placement_checkpoint.get_cp_bb_cost()) { //restore the latest placement checkpoint - costs = placement_checkpoint.restore_placement(); + + costs = placement_checkpoint.restore_placement(placer_state.mutable_block_locs(), placer_state.mutable_grid_blocks()); //recompute timing from scratch placer_criticalities.get()->set_recompute_required(); placer_setup_slacks.get()->set_recompute_required(); - comp_td_connection_delays(place_delay_model.get()); + comp_td_connection_delays(place_delay_model.get(), placer_state); perform_full_timing_update(crit_params, place_delay_model.get(), placer_criticalities.get(), placer_setup_slacks.get(), pin_timing_invalidator.get(), timing_info.get(), - &costs); + &costs, + placer_state); /* If NoC is enabled, re-compute NoC costs and re-initialize NoC internal data structures. * If some routers have different locations than the last placement, NoC-related costs and @@ -63,7 +75,7 @@ void restore_best_placement(t_placement_checkpoint& placement_checkpoint, * and need to be re-computed from scratch. */ if (noc_opts.noc) { - reinitialize_noc_routing(costs, {}); + reinitialize_noc_routing(costs, {}, placer_state.block_locs()); } VTR_LOG("\nCheckpoint restored\n"); diff --git a/vpr/src/place/place_checkpoint.h b/vpr/src/place/place_checkpoint.h index d3315aca2f2..cd197beb5bb 100644 --- a/vpr/src/place/place_checkpoint.h +++ b/vpr/src/place/place_checkpoint.h @@ -10,45 +10,69 @@ #include "place_delay_model.h" #include "place_timing_update.h" -//Placement checkpoint + /** * @brief Data structure that stores the placement state and saves it as a checkpoint. * * The placement checkpoints are very useful to solve the problem of critical - * delay oscillations, expecially very late in the annealer. - * - * @param cost The weighted average of the wiring cost and the timing cost. - * @param block_locs saves the location of each block - * @param cpd Saves the critical path delay of the current checkpoint - * @param valid a flag to show whether the current checkpoint is initialized or not + * delay oscillations, especially very late in the annealer. + * @param block_locs_ saves the location of each block + * @param cpd_ Saves the critical path delay of the current checkpoint + * @param valid_ a flag to show whether the current checkpoint is initialized or not + * @param costs_ The weighted average of the wiring cost and the timing cost. */ class t_placement_checkpoint { private: - vtr::vector_map block_locs; - float cpd; - bool valid = false; - t_placer_costs costs; + vtr::vector_map block_locs_; + float cpd_; + bool valid_ = false; + t_placer_costs costs_; public: - //save the block locations from placement context with the current placement cost and cpd - void save_placement(const t_placer_costs& placement_costs, const float& critical_path_delay); + /** + * @brief Saves the given block locations and their corresponding placement cost and CPD + * @param block_locs The block locations to be saved. + * @param placement_costs Different cost terms associated with the given placement. + * @param critical_path_delay The critical path delay associated with the given placement. + */ + void save_placement(const vtr::vector_map& block_locs, + const t_placer_costs& placement_costs, + const float critical_path_delay); - //restore the placement solution saved in the checkpoint and update the placement context accordingly - t_placer_costs restore_placement(); + /** + * @brief Restores the placement solution saved in the checkpoint and update the placement context accordingly + * @param block_locs To be filled with the saved placement. + * @param grid_blocks To be filled with grid location to clustered block mapping of the saved placement. + * @return Different cost terms associated with the saved placement. + */ + t_placer_costs restore_placement(vtr::vector_map& block_locs, + GridBlock& grid_blocks); //return the critical path delay of the saved checkpoint - float get_cp_cpd(); + float get_cp_cpd() const; //return the WL cost of the saved checkpoint - double get_cp_bb_cost(); + double get_cp_bb_cost() const; //return true if the checkpoint is valid - bool cp_is_valid(); + bool cp_is_valid() const; }; -//save placement checkpoint if checkpointing is enabled and checkpoint conditions occured -void save_placement_checkpoint_if_needed(t_placement_checkpoint& placement_checkpoint, std::shared_ptr timing_info, t_placer_costs& costs, float cpd); +//save placement checkpoint if checkpointing is enabled and checkpoint conditions occurred +void save_placement_checkpoint_if_needed(const vtr::vector_map& block_locs, + t_placement_checkpoint& placement_checkpoint, + const std::shared_ptr& timing_info, + t_placer_costs& costs, + float cpd); //restore the checkpoint if it's better than the latest placement solution -void restore_best_placement(t_placement_checkpoint& placement_checkpoint, std::shared_ptr& timing_info, t_placer_costs& costs, std::unique_ptr& placer_criticalities, std::unique_ptr& placer_setup_slacks, std::unique_ptr& place_delay_model, std::unique_ptr& pin_timing_invalidator, PlaceCritParams crit_params, const t_noc_opts& noc_opts); +void restore_best_placement(PlacerState& placer_state, + t_placement_checkpoint& placement_checkpoint, + std::shared_ptr& timing_info, + t_placer_costs& costs, + std::unique_ptr& placer_criticalities, + std::unique_ptr& placer_setup_slacks, + std::unique_ptr& place_delay_model, + std::unique_ptr& pin_timing_invalidator, + PlaceCritParams crit_params, const t_noc_opts& noc_opts); #endif diff --git a/vpr/src/place/place_constraints.cpp b/vpr/src/place/place_constraints.cpp index 51da069db38..22b15f5a04f 100644 --- a/vpr/src/place/place_constraints.cpp +++ b/vpr/src/place/place_constraints.cpp @@ -13,13 +13,12 @@ #include "place_util.h" #include "re_cluster_util.h" -int check_placement_floorplanning() { +int check_placement_floorplanning(const vtr::vector_map& block_locs) { int error = 0; auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.placement(); - for (auto blk_id : cluster_ctx.clb_nlist.blocks()) { - auto loc = place_ctx.block_locs[blk_id].loc; + for (ClusterBlockId blk_id : cluster_ctx.clb_nlist.blocks()) { + t_pl_loc loc = block_locs[blk_id].loc; if (!cluster_floorplanning_legal(blk_id, loc)) { error++; VTR_LOG_ERROR("Block %zu is not in correct floorplanning region.\n", size_t(blk_id)); @@ -162,10 +161,9 @@ void propagate_place_constraints() { auto& place_ctx = g_vpr_ctx.placement(); auto& floorplanning_ctx = g_vpr_ctx.mutable_floorplanning(); - for (auto pl_macro : place_ctx.pl_macros) { + for (const t_pl_macro& pl_macro : place_ctx.pl_macros) { if (is_macro_constrained(pl_macro)) { - /* - * Get the PartitionRegion for the head of the macro + /* Get the PartitionRegion for the head of the macro * based on the constraints of all blocks contained in the macro */ PartitionRegion macro_head_pr = update_macro_head_pr(pl_macro); @@ -254,12 +252,11 @@ void load_cluster_constraints() { } } -void mark_fixed_blocks() { +void mark_fixed_blocks(BlkLocRegistry& blk_loc_registry) { auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.mutable_placement(); auto& floorplanning_ctx = g_vpr_ctx.floorplanning(); - for (auto blk_id : cluster_ctx.clb_nlist.blocks()) { + for (ClusterBlockId blk_id : cluster_ctx.clb_nlist.blocks()) { if (!is_cluster_constrained(blk_id)) { continue; } @@ -273,9 +270,8 @@ void mark_fixed_blocks() { * and mark it as fixed. */ if (is_pr_size_one(pr, block_type, loc)) { - set_block_location(blk_id, loc); - - place_ctx.block_locs[blk_id].is_fixed = true; + blk_loc_registry.set_block_location(blk_id, loc); + blk_loc_registry.mutable_block_locs()[blk_id].is_fixed = true; } } } @@ -475,7 +471,7 @@ int get_part_reg_size(const PartitionRegion& pr, const std::vector& regions = pr.get_regions(); int num_tiles = 0; - for (const auto& region : regions) { + for (const Region& region : regions) { num_tiles += grid_tiles.region_tile_count(region, block_type); } diff --git a/vpr/src/place/place_constraints.h b/vpr/src/place/place_constraints.h index 493f378b99d..02157e907a1 100644 --- a/vpr/src/place/place_constraints.h +++ b/vpr/src/place/place_constraints.h @@ -19,10 +19,10 @@ * @brief Check that placement of each block is within the floorplan constraint region * of that block (if the block has any constraints). * + * @param block_locs Contains the location where each clustered block is placed. * @return int The number of errors (inconsistencies in adherence to floorplanning constraints). */ -int check_placement_floorplanning(); - +int check_placement_floorplanning(const vtr::vector_map& block_locs); /** * @brief Check if the block has floorplanning constraints. @@ -134,10 +134,14 @@ void load_cluster_constraints(); * @brief Marks blocks as fixed if they have a constraint region that * specifies exactly one x, y, subtile location as legal. * - * Marking them as fixed indicates that they cannot be moved + * @param blk_loc_registry Placement block location information. Used to set + * the location of clustered block constrained to a single location and mark them + * as fixed. + * + * @note Marking such constrained blocks as fixed indicates that they cannot be moved * during initial placement and simulated annealing. */ -void mark_fixed_blocks(); +void mark_fixed_blocks(BlkLocRegistry& blk_loc_registry); /** * @brief Converts the floorplanning constraints from grid location to diff --git a/vpr/src/place/place_delay_model.cpp b/vpr/src/place/place_delay_model.cpp index 8f9e440d621..ea21d581273 100644 --- a/vpr/src/place/place_delay_model.cpp +++ b/vpr/src/place/place_delay_model.cpp @@ -11,13 +11,12 @@ #include "rr_graph2.h" #include "timing_place_lookup.h" +#include "placer_state.h" #include "vtr_log.h" #include "vtr_math.h" #include "vpr_error.h" -#include "placer_globals.h" - #ifdef VTR_ENABLE_CAPNPROTO # include "capnp/serialize.h" # include "place_delay_model.capnp.h" @@ -352,9 +351,11 @@ std::unique_ptr alloc_lookups_and_delay_model(const Netlist<>& * Only estimate delay for signals routed through the inter-block routing network. * TODO: Do how should we compute the delay for globals. "Global signals are assumed to have zero delay." */ -float comp_td_single_connection_delay(const PlaceDelayModel* delay_model, ClusterNetId net_id, int ipin) { +float comp_td_single_connection_delay(const PlaceDelayModel* delay_model, + const vtr::vector_map& block_locs, + ClusterNetId net_id, + int ipin) { auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.placement(); float delay_source_to_sink = 0.; @@ -368,12 +369,8 @@ float comp_td_single_connection_delay(const PlaceDelayModel* delay_model, Cluste int source_block_ipin = cluster_ctx.clb_nlist.pin_logical_index(source_pin); int sink_block_ipin = cluster_ctx.clb_nlist.pin_logical_index(sink_pin); - int source_x = place_ctx.block_locs[source_block].loc.x; - int source_y = place_ctx.block_locs[source_block].loc.y; - int source_layer = place_ctx.block_locs[source_block].loc.layer; - int sink_x = place_ctx.block_locs[sink_block].loc.x; - int sink_y = place_ctx.block_locs[sink_block].loc.y; - int sink_layer = place_ctx.block_locs[sink_block].loc.layer; + t_pl_loc source_block_loc = block_locs[source_block].loc; + t_pl_loc sink_block_loc = block_locs[sink_block].loc; /** * This heuristic only considers delta_x and delta_y, a much better @@ -382,18 +379,16 @@ float comp_td_single_connection_delay(const PlaceDelayModel* delay_model, Cluste * In particular this approach does not accurately capture the effect * of fast carry-chain connections. */ - delay_source_to_sink = delay_model->delay({source_x, source_y, source_layer}, - source_block_ipin, - {sink_x, sink_y, sink_layer}, - sink_block_ipin); + delay_source_to_sink = delay_model->delay({source_block_loc.x, source_block_loc.y, source_block_loc.layer}, source_block_ipin, + {sink_block_loc.x, sink_block_loc.y, sink_block_loc.layer}, sink_block_ipin); if (delay_source_to_sink < 0) { VPR_ERROR(VPR_ERROR_PLACE, - "in comp_td_single_connection_delay: Bad delay_source_to_sink value %g from %s (at %d,%d) to %s (at %d,%d)\n" + "in comp_td_single_connection_delay: Bad delay_source_to_sink value %g from %s (at %d,%d,%d) to %s (at %d,%d,%d)\n" "in comp_td_single_connection_delay: Delay is less than 0\n", - block_type_pin_index_to_name(physical_tile_type(source_block), source_block_ipin, false).c_str(), - source_x, source_y, - block_type_pin_index_to_name(physical_tile_type(sink_block), sink_block_ipin, false).c_str(), - sink_x, sink_y, + block_type_pin_index_to_name(physical_tile_type(source_block_loc), source_block_ipin, false).c_str(), + source_block_loc.x, source_block_loc.y, source_block_loc.layer, + block_type_pin_index_to_name(physical_tile_type(sink_block_loc), sink_block_ipin, false).c_str(), + sink_block_loc.x, sink_block_loc.y, sink_block_loc.layer, delay_source_to_sink); } } @@ -402,14 +397,16 @@ float comp_td_single_connection_delay(const PlaceDelayModel* delay_model, Cluste } ///@brief Recompute all point to point delays, updating `connection_delay` matrix. -void comp_td_connection_delays(const PlaceDelayModel* delay_model) { +void comp_td_connection_delays(const PlaceDelayModel* delay_model, + PlacerState& placer_state) { const auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& p_timing_ctx = g_placer_ctx.mutable_timing(); + auto& p_timing_ctx = placer_state.mutable_timing(); + auto& block_locs = placer_state.block_locs(); auto& connection_delay = p_timing_ctx.connection_delay; - for (auto net_id : cluster_ctx.clb_nlist.nets()) { + for (ClusterNetId net_id : cluster_ctx.clb_nlist.nets()) { for (size_t ipin = 1; ipin < cluster_ctx.clb_nlist.net_pins(net_id).size(); ++ipin) { - connection_delay[net_id][ipin] = comp_td_single_connection_delay(delay_model, net_id, ipin); + connection_delay[net_id][ipin] = comp_td_single_connection_delay(delay_model, block_locs, net_id, ipin); } } } diff --git a/vpr/src/place/place_delay_model.h b/vpr/src/place/place_delay_model.h index 681cc136d87..5f61b856405 100644 --- a/vpr/src/place/place_delay_model.h +++ b/vpr/src/place/place_delay_model.h @@ -26,6 +26,7 @@ ///@brief Forward declarations. class PlaceDelayModel; +class PlacerState; ///@brief Initialize the placer delay model. std::unique_ptr alloc_lookups_and_delay_model(const Netlist<>& net_list, @@ -39,10 +40,14 @@ std::unique_ptr alloc_lookups_and_delay_model(const Netlist<>& bool is_flat); ///@brief Returns the delay of one point to point connection. -float comp_td_single_connection_delay(const PlaceDelayModel* delay_model, ClusterNetId net_id, int ipin); +float comp_td_single_connection_delay(const PlaceDelayModel* delay_model, + const vtr::vector_map& block_locs, + ClusterNetId net_id, + int ipin); ///@brief Recompute all point to point delays, updating `connection_delay` matrix. -void comp_td_connection_delays(const PlaceDelayModel* delay_model); +void comp_td_connection_delays(const PlaceDelayModel* delay_model, + PlacerState& placer_state); ///@brief Abstract interface to a placement delay model. class PlaceDelayModel { diff --git a/vpr/src/place/place_timing_update.cpp b/vpr/src/place/place_timing_update.cpp index 619ea0ad068..6c7e0997c1e 100644 --- a/vpr/src/place/place_timing_update.cpp +++ b/vpr/src/place/place_timing_update.cpp @@ -5,16 +5,20 @@ #include "vtr_time.h" -#include "placer_globals.h" #include "place_timing_update.h" +#include "placer_state.h" /* Routines local to place_timing_update.cpp */ static double comp_td_connection_cost(const PlaceDelayModel* delay_model, const PlacerCriticalities& place_crit, + PlacerState& placer_state, ClusterNetId net, int ipin); -static double sum_td_net_cost(ClusterNetId net); -static double sum_td_costs(); + +static double sum_td_net_cost(ClusterNetId net, + PlacerState& placer_state); + +static double sum_td_costs(const PlacerState& placer_state); ///@brief Use an incremental approach to updating timing costs after re-computing criticalities static constexpr bool INCR_COMP_TD_COSTS = true; @@ -31,7 +35,8 @@ void initialize_timing_info(const PlaceCritParams& crit_params, PlacerSetupSlacks* setup_slacks, NetPinTimingInvalidator* pin_timing_invalidator, SetupTimingInfo* timing_info, - t_placer_costs* costs) { + t_placer_costs* costs, + PlacerState& placer_state) { const auto& cluster_ctx = g_vpr_ctx.clustering(); const auto& clb_nlist = cluster_ctx.clb_nlist; @@ -51,13 +56,14 @@ void initialize_timing_info(const PlaceCritParams& crit_params, setup_slacks, pin_timing_invalidator, timing_info, - costs); + costs, + placer_state); //Don't warn again about unconstrained nodes again during placement timing_info->set_warn_unconstrained(false); //Clear all update_td_costs() runtime stat variables - auto& p_runtime_ctx = g_placer_ctx.mutable_runtime(); + auto& p_runtime_ctx = placer_state.mutable_runtime(); p_runtime_ctx.f_update_td_costs_connections_elapsed_sec = 0.f; p_runtime_ctx.f_update_td_costs_nets_elapsed_sec = 0.f; p_runtime_ctx.f_update_td_costs_sum_nets_elapsed_sec = 0.f; @@ -79,7 +85,8 @@ void perform_full_timing_update(const PlaceCritParams& crit_params, PlacerSetupSlacks* setup_slacks, NetPinTimingInvalidator* pin_timing_invalidator, SetupTimingInfo* timing_info, - t_placer_costs* costs) { + t_placer_costs* costs, + PlacerState& placer_state) { /* Update all timing related classes. */ criticalities->enable_update(); setup_slacks->enable_update(); @@ -87,15 +94,17 @@ void perform_full_timing_update(const PlaceCritParams& crit_params, timing_info, criticalities, setup_slacks, - pin_timing_invalidator); + pin_timing_invalidator, + placer_state); /* Update the timing cost with new connection criticalities. */ update_timing_cost(delay_model, criticalities, + placer_state, &costs->timing_cost); /* Commit the setup slacks since they are updated. */ - commit_setup_slacks(setup_slacks); + commit_setup_slacks(setup_slacks, placer_state); } /** @@ -127,12 +136,13 @@ void update_timing_classes(const PlaceCritParams& crit_params, SetupTimingInfo* timing_info, PlacerCriticalities* criticalities, PlacerSetupSlacks* setup_slacks, - NetPinTimingInvalidator* pin_timing_invalidator) { + NetPinTimingInvalidator* pin_timing_invalidator, + PlacerState& placer_state) { /* Run STA to update slacks and adjusted/relaxed criticalities. */ timing_info->update(); /* Update the placer's criticalities (e.g. sharpen with crit_exponent). */ - criticalities->update_criticalities(timing_info, crit_params); + criticalities->update_criticalities(timing_info, crit_params, placer_state); /* Update the placer's raw setup slacks. */ setup_slacks->update_setup_slacks(timing_info); @@ -155,11 +165,12 @@ void update_timing_classes(const PlaceCritParams& crit_params, */ void update_timing_cost(const PlaceDelayModel* delay_model, const PlacerCriticalities* criticalities, + PlacerState& placer_state, double* timing_cost) { #ifdef INCR_COMP_TD_COSTS - update_td_costs(delay_model, *criticalities, timing_cost); + update_td_costs(delay_model, *criticalities, block_locs, timing_cost); #else - comp_td_costs(delay_model, *criticalities, timing_cost); + comp_td_costs(delay_model, *criticalities, placer_state, timing_cost); #endif } @@ -180,9 +191,10 @@ void update_timing_cost(const PlaceDelayModel* delay_model, * rejected, so for efficiency reasons, this routine is not called if the slacks are * rejected in the end. For more detailed info, see the try_swap() routine. */ -void commit_setup_slacks(const PlacerSetupSlacks* setup_slacks) { +void commit_setup_slacks(const PlacerSetupSlacks* setup_slacks, + PlacerState& placer_state) { const auto& clb_nlist = g_vpr_ctx.clustering().clb_nlist; - auto& connection_setup_slack = g_placer_ctx.mutable_timing().connection_setup_slack; + auto& connection_setup_slack = placer_state.mutable_timing().connection_setup_slack; /* Incremental: only go through sink pins with modified setup slack */ auto clb_pins_modified = setup_slacks->pins_with_modified_setup_slack(); @@ -205,9 +217,10 @@ void commit_setup_slacks(const PlacerSetupSlacks* setup_slacks) { * the same as the values in `connection_setup_slack` without running commit_setup_slacks(). * For more detailed info, see the try_swap() routine. */ -bool verify_connection_setup_slacks(const PlacerSetupSlacks* setup_slacks) { +bool verify_connection_setup_slacks(const PlacerSetupSlacks* setup_slacks, + const PlacerState& placer_state) { const auto& clb_nlist = g_vpr_ctx.clustering().clb_nlist; - const auto& connection_setup_slack = g_placer_ctx.timing().connection_setup_slack; + const auto& connection_setup_slack = placer_state.timing().connection_setup_slack; /* Go through every single sink pin to check that the slack values are the same */ for (ClusterNetId net_id : clb_nlist.nets()) { @@ -240,13 +253,16 @@ bool verify_connection_setup_slacks(const PlacerSetupSlacks* setup_slacks) { * * See PlacerTimingCosts object used to represent connection_timing_costs for details. */ -void update_td_costs(const PlaceDelayModel* delay_model, const PlacerCriticalities& place_crit, double* timing_cost) { +void update_td_costs(const PlaceDelayModel* delay_model, + const PlacerCriticalities& place_crit, + PlacerState& placer_state, + double* timing_cost) { vtr::Timer t; auto& cluster_ctx = g_vpr_ctx.clustering(); auto& clb_nlist = cluster_ctx.clb_nlist; - auto& p_timing_ctx = g_placer_ctx.mutable_timing(); - auto& p_runtime_ctx = g_placer_ctx.mutable_runtime(); + auto& p_timing_ctx = placer_state.mutable_timing(); + auto& p_runtime_ctx = placer_state.mutable_runtime(); auto& connection_timing_cost = p_timing_ctx.connection_timing_cost; //Update the modified pin timing costs @@ -264,7 +280,7 @@ void update_td_costs(const PlaceDelayModel* delay_model, const PlacerCriticaliti int ipin = clb_nlist.pin_net_index(clb_pin); VTR_ASSERT_SAFE(ipin >= 1 && ipin < int(clb_nlist.net_pins(clb_net).size())); - double new_timing_cost = comp_td_connection_cost(delay_model, place_crit, clb_net, ipin); + double new_timing_cost = comp_td_connection_cost(delay_model, place_crit, placer_state, clb_net, ipin); //Record new value connection_timing_cost[clb_net][ipin] = new_timing_cost; @@ -282,7 +298,7 @@ void update_td_costs(const PlaceDelayModel* delay_model, const PlacerCriticaliti #ifdef VTR_ASSERT_DEBUG_ENABLED double check_timing_cost = 0.; - comp_td_costs(delay_model, place_crit, &check_timing_cost); + comp_td_costs(delay_model, place_crit, placer_state, &check_timing_cost); VTR_ASSERT_DEBUG_MSG(check_timing_cost == *timing_cost, "Total timing cost calculated incrementally in update_td_costs() is " "not consistent with value calculated from scratch in comp_td_costs()"); @@ -301,27 +317,30 @@ void update_td_costs(const PlaceDelayModel* delay_model, const PlacerCriticaliti * * For a more efficient incremental update, see update_td_costs(). */ -void comp_td_costs(const PlaceDelayModel* delay_model, const PlacerCriticalities& place_crit, double* timing_cost) { +void comp_td_costs(const PlaceDelayModel* delay_model, + const PlacerCriticalities& place_crit, + PlacerState& placer_state, + double* timing_cost) { auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& p_timing_ctx = g_placer_ctx.mutable_timing(); + auto& p_timing_ctx = placer_state.mutable_timing(); auto& connection_timing_cost = p_timing_ctx.connection_timing_cost; auto& net_timing_cost = p_timing_ctx.net_timing_cost; - for (auto net_id : cluster_ctx.clb_nlist.nets()) { + for (ClusterNetId net_id : cluster_ctx.clb_nlist.nets()) { if (cluster_ctx.clb_nlist.net_is_ignored(net_id)) continue; for (size_t ipin = 1; ipin < cluster_ctx.clb_nlist.net_pins(net_id).size(); ipin++) { - float conn_timing_cost = comp_td_connection_cost(delay_model, place_crit, net_id, ipin); + float conn_timing_cost = comp_td_connection_cost(delay_model, place_crit, placer_state, net_id, ipin); /* Record new value */ connection_timing_cost[net_id][ipin] = conn_timing_cost; } /* Store net timing cost for more efficient incremental updating */ - net_timing_cost[net_id] = sum_td_net_cost(net_id); + net_timing_cost[net_id] = sum_td_net_cost(net_id, placer_state); } /* Make sure timing cost does not go above MIN_TIMING_COST. */ - *timing_cost = sum_td_costs(); + *timing_cost = sum_td_costs(placer_state); } /** @@ -332,19 +351,21 @@ void comp_td_costs(const PlaceDelayModel* delay_model, const PlacerCriticalities */ static double comp_td_connection_cost(const PlaceDelayModel* delay_model, const PlacerCriticalities& place_crit, + PlacerState& placer_state, ClusterNetId net, int ipin) { - const auto& p_timing_ctx = g_placer_ctx.timing(); + const auto& p_timing_ctx = placer_state.timing(); + const auto& block_locs = placer_state.block_locs(); VTR_ASSERT_SAFE_MSG(ipin > 0, "Shouldn't be calculating connection timing cost for driver pins"); - VTR_ASSERT_SAFE_MSG(p_timing_ctx.connection_delay[net][ipin] == comp_td_single_connection_delay(delay_model, net, ipin), + VTR_ASSERT_SAFE_MSG(p_timing_ctx.connection_delay[net][ipin] == comp_td_single_connection_delay(delay_model, block_locs, net, ipin), "Connection delays should already be updated"); double conn_timing_cost = place_crit.criticality(net, ipin) * p_timing_ctx.connection_delay[net][ipin]; VTR_ASSERT_SAFE_MSG(std::isnan(p_timing_ctx.proposed_connection_delay[net][ipin]), - "Propsoed connection delay should already be invalidated"); + "Proposed connection delay should already be invalidated"); VTR_ASSERT_SAFE_MSG(std::isnan(p_timing_ctx.proposed_connection_timing_cost[net][ipin]), "Proposed connection timing cost should already be invalidated"); @@ -353,9 +374,10 @@ static double comp_td_connection_cost(const PlaceDelayModel* delay_model, } ///@brief Returns the timing cost of the specified 'net' based on the values in connection_timing_cost. -static double sum_td_net_cost(ClusterNetId net) { +static double sum_td_net_cost(ClusterNetId net, + PlacerState& placer_state) { const auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& p_timing_ctx = g_placer_ctx.mutable_timing(); + auto& p_timing_ctx = placer_state.timing(); auto& connection_timing_cost = p_timing_ctx.connection_timing_cost; double net_td_cost = 0; @@ -366,14 +388,14 @@ static double sum_td_net_cost(ClusterNetId net) { return net_td_cost; } -///@brief Returns the total timing cost accross all nets based on the values in net_timing_cost. -static double sum_td_costs() { +///@brief Returns the total timing cost across all nets based on the values in net_timing_cost. +static double sum_td_costs(const PlacerState& placer_state) { const auto& cluster_ctx = g_vpr_ctx.clustering(); - const auto& p_timing_ctx = g_placer_ctx.timing(); + const auto& p_timing_ctx = placer_state.timing(); const auto& net_timing_cost = p_timing_ctx.net_timing_cost; double td_cost = 0; - for (auto net_id : cluster_ctx.clb_nlist.nets()) { + for (ClusterNetId net_id : cluster_ctx.clb_nlist.nets()) { if (cluster_ctx.clb_nlist.net_is_ignored(net_id)) { continue; } diff --git a/vpr/src/place/place_timing_update.h b/vpr/src/place/place_timing_update.h index 67fca81b3ee..7944c4a7552 100644 --- a/vpr/src/place/place_timing_update.h +++ b/vpr/src/place/place_timing_update.h @@ -16,7 +16,8 @@ void initialize_timing_info(const PlaceCritParams& crit_params, PlacerSetupSlacks* setup_slacks, NetPinTimingInvalidator* pin_timing_invalidator, SetupTimingInfo* timing_info, - t_placer_costs* costs); + t_placer_costs* costs, + PlacerState& placer_state); ///@brief Updates every timing related classes, variables and structures. void perform_full_timing_update(const PlaceCritParams& crit_params, @@ -25,31 +26,42 @@ void perform_full_timing_update(const PlaceCritParams& crit_params, PlacerSetupSlacks* setup_slacks, NetPinTimingInvalidator* pin_timing_invalidator, SetupTimingInfo* timing_info, - t_placer_costs* costs); + t_placer_costs* costs, + PlacerState& placer_state); ///@brief Update timing information based on the current block positions. void update_timing_classes(const PlaceCritParams& crit_params, SetupTimingInfo* timing_info, PlacerCriticalities* criticalities, PlacerSetupSlacks* setup_slacks, - NetPinTimingInvalidator* pin_timing_invalidator); + NetPinTimingInvalidator* pin_timing_invalidator, + PlacerState& placer_state); ///@brief Updates the timing driven (td) costs. void update_timing_cost(const PlaceDelayModel* delay_model, const PlacerCriticalities* criticalities, + PlacerState& placer_state, double* timing_cost); ///@brief Incrementally updates timing cost based on the current delays and criticality estimates. -void update_td_costs(const PlaceDelayModel* delay_model, const PlacerCriticalities& place_crit, double* timing_cost); +void update_td_costs(const PlaceDelayModel* delay_model, + const PlacerCriticalities& place_crit, + PlacerState& placer_state, + double* timing_cost); ///@brief Recomputes timing cost from scratch based on the current delays and criticality estimates. -void comp_td_costs(const PlaceDelayModel* delay_model, const PlacerCriticalities& place_crit, double* timing_cost); +void comp_td_costs(const PlaceDelayModel* delay_model, + const PlacerCriticalities& place_crit, + PlacerState& placer_state, + double* timing_cost); /** * @brief Commit all the setup slack values from the PlacerSetupSlacks * class to `connection_setup_slack`. */ -void commit_setup_slacks(const PlacerSetupSlacks* setup_slacks); +void commit_setup_slacks(const PlacerSetupSlacks* setup_slacks, + PlacerState& placer_state); ///@brief Verify that the values in `connection_setup_slack` matches PlacerSetupSlacks. -bool verify_connection_setup_slacks(const PlacerSetupSlacks* setup_slacks); +bool verify_connection_setup_slacks(const PlacerSetupSlacks* setup_slacks, + const PlacerState& placer_state); diff --git a/vpr/src/place/place_util.cpp b/vpr/src/place/place_util.cpp index 52b9fdeb3d1..3541ef01bf1 100644 --- a/vpr/src/place/place_util.cpp +++ b/vpr/src/place/place_util.cpp @@ -13,20 +13,20 @@ * @brief Initialize `grid_blocks`, the inverse structure of `block_locs`. * * The container at each grid block location should have a length equal to the - * subtile capacity of that block. Unused subtile would be marked EMPTY_BLOCK_ID. + * subtile capacity of that block. Unused subtile would be marked ClusterBlockId::INVALID(). */ static GridBlock init_grid_blocks(); -void init_placement_context() { - auto& place_ctx = g_vpr_ctx.mutable_placement(); +void init_placement_context(vtr::vector_map& block_locs, + GridBlock& grid_blocks) { auto& cluster_ctx = g_vpr_ctx.clustering(); - /* Intialize the lookup of CLB block positions */ - place_ctx.block_locs.clear(); - place_ctx.block_locs.resize(cluster_ctx.clb_nlist.blocks().size()); + /* Initialize the lookup of CLB block positions */ + block_locs.clear(); + block_locs.resize(cluster_ctx.clb_nlist.blocks().size()); /* Initialize the reverse lookup of CLB block positions */ - place_ctx.grid_blocks = init_grid_blocks(); + grid_blocks = init_grid_blocks(); } static GridBlock init_grid_blocks() { @@ -44,6 +44,7 @@ static GridBlock init_grid_blocks() { } } } + return grid_blocks; } @@ -272,56 +273,9 @@ double get_std_dev(int n, double sum_x_squared, double av_x) { return (std_dev > 0.) ? sqrt(std_dev) : 0.; } -void load_grid_blocks_from_block_locs() { - auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.mutable_placement(); - auto& device_ctx = g_vpr_ctx.device(); - - zero_initialize_grid_blocks(); - - auto blocks = cluster_ctx.clb_nlist.blocks(); - for (auto blk_id : blocks) { - t_pl_loc location; - location = place_ctx.block_locs[blk_id].loc; - - VTR_ASSERT(location.x < (int)device_ctx.grid.width()); - VTR_ASSERT(location.y < (int)device_ctx.grid.height()); - - place_ctx.grid_blocks.set_block_at_location(location, blk_id); - place_ctx.grid_blocks.set_usage({location.x, location.y, location.layer}, - place_ctx.grid_blocks.get_usage({location.x, location.y, location.layer}) + 1); - } -} - -void zero_initialize_grid_blocks() { - auto& device_ctx = g_vpr_ctx.device(); - auto& place_ctx = g_vpr_ctx.mutable_placement(); - - /* Initialize all occupancy to zero. */ - - for (int layer_num = 0; layer_num < (int)device_ctx.grid.get_num_layers(); layer_num++) { - for (int i = 0; i < (int)device_ctx.grid.width(); i++) { - for (int j = 0; j < (int)device_ctx.grid.height(); j++) { - place_ctx.grid_blocks.set_usage({i, j, layer_num}, 0); - auto tile = device_ctx.grid.get_physical_type({i, j, layer_num}); - - for (const auto& sub_tile : tile->sub_tiles) { - auto capacity = sub_tile.capacity; - - for (int k = 0; k < capacity.total(); k++) { - if (place_ctx.grid_blocks.block_at_location({i, j, k + capacity.low, layer_num}) != INVALID_BLOCK_ID) { - place_ctx.grid_blocks.set_block_at_location({i, j, k + capacity.low, layer_num}, EMPTY_BLOCK_ID); - } - } - } - } - } - } -} void alloc_and_load_legal_placement_locations(std::vector>>& legal_pos) { auto& device_ctx = g_vpr_ctx.device(); - auto& place_ctx = g_vpr_ctx.placement(); //alloc the legal placement positions int num_tile_types = device_ctx.physical_tile_types.size(); @@ -341,9 +295,6 @@ void alloc_and_load_legal_placement_locations(std::vector int(device_ctx.grid.width() - 1) - || location.y < 0 || location.y > int(device_ctx.grid.height() - 1)) { - VPR_THROW(VPR_ERROR_PLACE, "Block %s with ID %d is out of range at location (%d, %d). \n", block_name.c_str(), blk_id, location.x, location.y); - } - - //Set the location of the block - place_ctx.block_locs[blk_id].loc = location; - - //Check if block is at an illegal location - auto physical_tile = device_ctx.grid.get_physical_type({location.x, location.y, location.layer}); - auto logical_block = cluster_ctx.clb_nlist.block_type(blk_id); - - if (location.sub_tile >= physical_tile->capacity || location.sub_tile < 0) { - VPR_THROW(VPR_ERROR_PLACE, "Block %s subtile number (%d) is out of range. \n", block_name.c_str(), location.sub_tile); - } - - if (!is_sub_tile_compatible(physical_tile, logical_block, place_ctx.block_locs[blk_id].loc.sub_tile)) { - VPR_THROW(VPR_ERROR_PLACE, "Attempt to place block %s with ID %d at illegal location (%d,%d,%d). \n", - block_name.c_str(), - blk_id, - location.x, - location.y, - location.layer); - } - - //Mark the grid location and usage of the block - place_ctx.grid_blocks.set_block_at_location(location, blk_id); - place_ctx.grid_blocks.set_usage({location.x, location.y, location.layer}, - place_ctx.grid_blocks.get_usage({location.x, location.y, location.layer}) + 1); - place_sync_external_block_connections(blk_id); -} - -bool macro_can_be_placed(t_pl_macro pl_macro, t_pl_loc head_pos, bool check_all_legality) { - auto& device_ctx = g_vpr_ctx.device(); - auto& place_ctx = g_vpr_ctx.placement(); - auto& cluster_ctx = g_vpr_ctx.clustering(); +bool macro_can_be_placed(const t_pl_macro& pl_macro, + const t_pl_loc& head_pos, + bool check_all_legality, + const BlkLocRegistry& blk_loc_registry) { + const auto& device_ctx = g_vpr_ctx.device(); + const auto& cluster_ctx = g_vpr_ctx.clustering(); + const auto& grid_blocks = blk_loc_registry.grid_blocks(); //Get block type of head member ClusterBlockId blk_id = pl_macro.members[0].blk_index; @@ -460,7 +374,7 @@ bool macro_can_be_placed(t_pl_macro pl_macro, t_pl_loc head_pos, bool check_all_ // Also check whether the member position is valid, and the member_z is allowed at that location on the grid if (member_pos.x < int(device_ctx.grid.width()) && member_pos.y < int(device_ctx.grid.height()) && is_tile_compatible(device_ctx.grid.get_physical_type({member_pos.x, member_pos.y, member_pos.layer}), block_type) - && place_ctx.grid_blocks.block_at_location(member_pos) == EMPTY_BLOCK_ID) { + && grid_blocks.block_at_location(member_pos) == ClusterBlockId::INVALID()) { // Can still accommodate blocks here, check the next position continue; } else { diff --git a/vpr/src/place/place_util.h b/vpr/src/place/place_util.h index 36c544ef344..934d2072251 100644 --- a/vpr/src/place/place_util.h +++ b/vpr/src/place/place_util.h @@ -6,15 +6,20 @@ #ifndef PLACE_UTIL_H #define PLACE_UTIL_H + #include + #include "vpr_types.h" #include "vtr_util.h" #include "vtr_vector_map.h" #include "globals.h" + + // forward declaration of t_placer_costs so that it can be used an argument // in NocCostTerms constructor class t_placer_costs; +class BlkLocRegistry; /** * @brief Data structure that stores different cost terms for NoC placement. @@ -303,7 +308,8 @@ class t_placer_statistics { * * Initialize both of them to empty states. */ -void init_placement_context(); +void init_placement_context(vtr::vector_map& block_locs, + GridBlock& grid_blocks); /** * @brief Get the initial limit for inner loop block move attempt limit. @@ -330,26 +336,15 @@ int get_initial_move_lim(const t_placer_opts& placer_opts, const t_annealing_sch */ double get_std_dev(int n, double sum_x_squared, double av_x); -///@brief Initialize usage to 0 and blockID to EMPTY_BLOCK_ID for all place_ctx.grid_block locations -void zero_initialize_grid_blocks(); - -///@brief a utility to calculate grid_blocks given the updated block_locs (used in restore_checkpoint) -void load_grid_blocks_from_block_locs(); - /** * @brief Builds (alloc and load) legal_pos that holds all the legal locations for placement * - * @param legal_pos - * a lookup of all subtiles by sub_tile type - * legal_pos[0..device_ctx.num_block_types-1][0..num_sub_tiles - 1] = std::vector of all the legal locations - * of the proper tile type and sub_tile type - * + * @param legal_pos a lookup of all subtiles by sub_tile type + * legal_pos[0..device_ctx.num_block_types-1][0..num_sub_tiles - 1] = std::vector of all the legal locations + * of the proper tile type and sub_tile type */ void alloc_and_load_legal_placement_locations(std::vector>>& legal_pos); -///@brief Performs error checking to see if location is legal for block type, and sets the location and grid usage of the block if it is legal. -void set_block_location(ClusterBlockId blk_id, const t_pl_loc& location); - /// @brief check if a specified location is within the device grid inline bool is_loc_on_chip(t_physical_tile_loc loc) { const auto& grid = g_vpr_ctx.device().grid; @@ -381,6 +376,11 @@ inline bool is_loc_on_chip(t_physical_tile_loc loc) { * Analytic placer does not require to check block's capacity or * floorplanning constraints. However, initial placement or SA-based approach * require to check for all legality constraints. + * @param blk_loc_registry Placement block location information. + * */ -bool macro_can_be_placed(t_pl_macro pl_macro, t_pl_loc head_pos, bool check_all_legality); +bool macro_can_be_placed(const t_pl_macro& pl_macro, + const t_pl_loc& head_pos, + bool check_all_legality, + const BlkLocRegistry& blk_loc_registry); #endif diff --git a/vpr/src/place/placer_globals.cpp b/vpr/src/place/placer_globals.cpp deleted file mode 100644 index 56d2efa523c..00000000000 --- a/vpr/src/place/placer_globals.cpp +++ /dev/null @@ -1,8 +0,0 @@ -/** - * @file placer_globals.cpp - * @brief Defines the global variable `g_placer_ctx` in placer_globals.h - */ - -#include "placer_globals.h" - -PlacerContext g_placer_ctx; diff --git a/vpr/src/place/placer_globals.h b/vpr/src/place/placer_globals.h deleted file mode 100644 index 5e927d3b59c..00000000000 --- a/vpr/src/place/placer_globals.h +++ /dev/null @@ -1,10 +0,0 @@ -/** - * @file placer_globals.h - * @brief Declares the accessor variable for key global - * structs that are used everywhere in VPR placer. - */ - -#pragma once -#include "placer_context.h" - -extern PlacerContext g_placer_ctx; diff --git a/vpr/src/place/placer_context.h b/vpr/src/place/placer_state.h similarity index 67% rename from vpr/src/place/placer_context.h rename to vpr/src/place/placer_state.h index 5a7e4c6860f..97941f639b1 100644 --- a/vpr/src/place/placer_context.h +++ b/vpr/src/place/placer_state.h @@ -1,15 +1,17 @@ /** - * @file placer_context.h - * @brief Contains placer context/data structures referenced by various - * source files in vpr/src/place. - * - * All the variables and data structures in this file can be accessed via - * a single global variable: g_placer_ctx. (see placer_globals.h/.cpp). + * @file placer_state.h + * @brief Contains placer state/data structures referenced by various source files in vpr/src/place. + * A PlacerState object contains the placement state which is subject to change during the placement stage. + * During the placement stage, one or multiple local PlacerState objects are created. At the end of the placement stage, + * one of these object is copied to global placement context (PlacementContext). The PlacementContext, + * which is declared in vpr_context.h, contains the placement solution. The PlacementContext should not be used before + * the end of the placement stage. */ #pragma once #include "vpr_context.h" #include "vpr_net_pins_matrix.h" +#include "vpr_types.h" #include "timing_place.h" /** @@ -51,8 +53,6 @@ struct PlacerTimingContext : public Context { /** * @brief Net connection timing costs (i.e. criticality * delay) * of committed block positions. See PlacerTimingCosts. - * - * */ PlacerTimingCosts connection_timing_cost; @@ -106,7 +106,7 @@ struct PlacerMoveContext : public Context { // [0..cluster_ctx.clb_nlist.nets().size()-1]. Store the number of blocks on each layer () vtr::Matrix num_sink_pin_layer; - // The first range limit calculated by the anneal + // The first range limit calculated by the annealer float first_rlim; // Scratch vectors that are used by different directed moves for temporary calculations (allocated here to save runtime) @@ -117,7 +117,7 @@ struct PlacerMoveContext : public Context { std::vector Y_coord; std::vector layer_coord; - // Container to save the highly critical pins (higher than a timing criticality limit setted by commandline option) + // Container to save the highly critical pins (higher than a timing criticality limit set by commandline option) std::vector> highly_crit_pins; }; @@ -134,19 +134,38 @@ struct PlacerMoveContext : public Context { * See the class VprContext in `vpr_context.h` for descriptions on * how to use this class due to similar implementation style. */ -class PlacerContext : public Context { +class PlacerState : public Context { public: - const PlacerTimingContext& timing() const { return timing_; } - PlacerTimingContext& mutable_timing() { return timing_; } + inline const PlacerTimingContext& timing() const { return timing_; } + inline PlacerTimingContext& mutable_timing() { return timing_; } + + inline const PlacerRuntimeContext& runtime() const { return runtime_; } + inline PlacerRuntimeContext& mutable_runtime() { return runtime_; } + + inline const PlacerMoveContext& move() const { return move_; } + inline PlacerMoveContext& mutable_move() { return move_; } - const PlacerRuntimeContext& runtime() const { return runtime_; } - PlacerRuntimeContext& mutable_runtime() { return runtime_; } + inline const vtr::vector_map& block_locs() const { return blk_loc_registry_.block_locs(); } + inline vtr::vector_map& mutable_block_locs() { return blk_loc_registry_.mutable_block_locs(); } - const PlacerMoveContext& move() const { return move_; } - PlacerMoveContext& mutable_move() { return move_; } + inline const GridBlock& grid_blocks() const { return blk_loc_registry_.grid_blocks(); } + inline GridBlock& mutable_grid_blocks() { return blk_loc_registry_.mutable_grid_blocks(); } + + inline const vtr::vector_map& physical_pins() const { return blk_loc_registry_.physical_pins(); } + inline vtr::vector_map& mutable_physical_pins() { return blk_loc_registry_.mutable_physical_pins(); } + + inline const BlkLocRegistry& blk_loc_registry() const { return blk_loc_registry_; } + inline BlkLocRegistry& mutable_blk_loc_registry() { return blk_loc_registry_; } private: PlacerTimingContext timing_; PlacerRuntimeContext runtime_; PlacerMoveContext move_; + + /** + * @brief Contains: 1) The location where each clustered block is placed at. + * 2) Which clustered blocks are located at a given location + * 3) The mapping between the clustered block pins and physical tile pins. + */ + BlkLocRegistry blk_loc_registry_; }; diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 45e43e05762..3c1539d244c 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -112,7 +112,7 @@ std::vector KArmedBanditAgent::get_available_logical_blk_types_() { void KArmedBanditAgent::process_outcome(double reward, e_reward_function reward_fun) { ++num_action_chosen_[last_action_]; - if (reward_fun == RUNTIME_AWARE || reward_fun == WL_BIASED_RUNTIME_AWARE) { + if (reward_fun == e_reward_function::RUNTIME_AWARE || reward_fun == e_reward_function::WL_BIASED_RUNTIME_AWARE) { e_move_type move_type = action_to_move_type_(last_action_); reward /= time_elapsed_[move_type]; } diff --git a/vpr/src/place/simpleRL_move_generator.h b/vpr/src/place/simpleRL_move_generator.h index 2951cb34e26..8ae5707ccf6 100644 --- a/vpr/src/place/simpleRL_move_generator.h +++ b/vpr/src/place/simpleRL_move_generator.h @@ -216,7 +216,10 @@ class SimpleRLMoveGenerator : public MoveGenerator { */ template::value || std::is_same::value>::type> - explicit SimpleRLMoveGenerator(std::unique_ptr& agent, float noc_attraction_weight, size_t high_fanout_thresh); + explicit SimpleRLMoveGenerator(PlacerState& placer_state, + std::unique_ptr& agent, + float noc_attraction_weight, + size_t high_fanout_thresh); // Updates affected_blocks with the proposed move, while respecting the current rlim e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, @@ -230,22 +233,26 @@ class SimpleRLMoveGenerator : public MoveGenerator { }; template -SimpleRLMoveGenerator::SimpleRLMoveGenerator(std::unique_ptr& agent, float noc_attraction_weight, size_t high_fanout_thresh) { +SimpleRLMoveGenerator::SimpleRLMoveGenerator(PlacerState& placer_state, + std::unique_ptr& agent, + float noc_attraction_weight, + size_t high_fanout_thresh) + : MoveGenerator(placer_state) { if (noc_attraction_weight > 0.0f) { all_moves.resize((int)e_move_type::NUMBER_OF_AUTO_MOVES); } else { all_moves.resize((int)e_move_type::NUMBER_OF_AUTO_MOVES - 1); } - all_moves[e_move_type::UNIFORM] = std::make_unique(); - all_moves[e_move_type::MEDIAN] = std::make_unique(); - all_moves[e_move_type::CENTROID] = std::make_unique(); - all_moves[e_move_type::W_CENTROID] = std::make_unique(); - all_moves[e_move_type::W_MEDIAN] = std::make_unique(); - all_moves[e_move_type::CRIT_UNIFORM] = std::make_unique(); - all_moves[e_move_type::FEASIBLE_REGION] = std::make_unique(); + all_moves[e_move_type::UNIFORM] = std::make_unique(placer_state); + all_moves[e_move_type::MEDIAN] = std::make_unique(placer_state); + all_moves[e_move_type::CENTROID] = std::make_unique(placer_state); + all_moves[e_move_type::W_CENTROID] = std::make_unique(placer_state); + all_moves[e_move_type::W_MEDIAN] = std::make_unique(placer_state); + all_moves[e_move_type::CRIT_UNIFORM] = std::make_unique(placer_state); + all_moves[e_move_type::FEASIBLE_REGION] = std::make_unique(placer_state); if (noc_attraction_weight > 0.0f) { - all_moves[e_move_type::NOC_ATTRACTION_CENTROID] = std::make_unique(noc_attraction_weight, high_fanout_thresh); + all_moves[e_move_type::NOC_ATTRACTION_CENTROID] = std::make_unique(placer_state, noc_attraction_weight, high_fanout_thresh); } karmed_bandit_agent = std::move(agent); diff --git a/vpr/src/place/static_move_generator.cpp b/vpr/src/place/static_move_generator.cpp index b5920f1ffeb..ed54455621d 100644 --- a/vpr/src/place/static_move_generator.cpp +++ b/vpr/src/place/static_move_generator.cpp @@ -12,16 +12,18 @@ #include "vtr_random.h" #include "vtr_assert.h" -StaticMoveGenerator::StaticMoveGenerator(const vtr::vector& move_probs) { +StaticMoveGenerator::StaticMoveGenerator(PlacerState& placer_state, + const vtr::vector& move_probs) + : MoveGenerator(placer_state) { all_moves.resize((int)e_move_type::NUMBER_OF_AUTO_MOVES); - all_moves[e_move_type::UNIFORM] = std::make_unique(); - all_moves[e_move_type::MEDIAN] = std::make_unique(); - all_moves[e_move_type::CENTROID] = std::make_unique(); - all_moves[e_move_type::W_CENTROID] = std::make_unique(); - all_moves[e_move_type::W_MEDIAN] = std::make_unique(); - all_moves[e_move_type::CRIT_UNIFORM] = std::make_unique(); - all_moves[e_move_type::FEASIBLE_REGION] = std::make_unique(); + all_moves[e_move_type::UNIFORM] = std::make_unique(placer_state); + all_moves[e_move_type::MEDIAN] = std::make_unique(placer_state); + all_moves[e_move_type::CENTROID] = std::make_unique(placer_state); + all_moves[e_move_type::W_CENTROID] = std::make_unique(placer_state); + all_moves[e_move_type::W_MEDIAN] = std::make_unique(placer_state); + all_moves[e_move_type::CRIT_UNIFORM] = std::make_unique(placer_state); + all_moves[e_move_type::FEASIBLE_REGION] = std::make_unique(placer_state); initialize_move_prob(move_probs); } diff --git a/vpr/src/place/static_move_generator.h b/vpr/src/place/static_move_generator.h index 56b42eea671..1d63e7486a1 100644 --- a/vpr/src/place/static_move_generator.h +++ b/vpr/src/place/static_move_generator.h @@ -17,7 +17,9 @@ class StaticMoveGenerator : public MoveGenerator { void initialize_move_prob(const vtr::vector& move_probs); public: - StaticMoveGenerator(const vtr::vector& move_probs); + StaticMoveGenerator() = delete; + StaticMoveGenerator(PlacerState& placer_state, + const vtr::vector& move_probs); e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, t_propose_action& proposed_action, diff --git a/vpr/src/place/timing_place.cpp b/vpr/src/place/timing_place.cpp index 33b991f7dcd..0ab198cb8cc 100644 --- a/vpr/src/place/timing_place.cpp +++ b/vpr/src/place/timing_place.cpp @@ -13,10 +13,10 @@ #include "vpr_types.h" #include "vpr_utils.h" #include "globals.h" -#include "placer_globals.h" #include "net_delay.h" #include "timing_place_lookup.h" #include "timing_place.h" +#include "placer_state.h" #include "timing_info.h" @@ -37,7 +37,9 @@ PlacerCriticalities::PlacerCriticalities(const ClusteredNetlist& clb_nlist, cons * * If the criticality exponent has changed, we also need to update from scratch. */ -void PlacerCriticalities::update_criticalities(const SetupTimingInfo* timing_info, const PlaceCritParams& crit_params) { +void PlacerCriticalities::update_criticalities(const SetupTimingInfo* timing_info, + const PlaceCritParams& crit_params, + PlacerState& placer_state) { /* If update is not enabled, exit the routine. */ if (!update_enabled) { /* re-computation is required on the next iteration */ @@ -55,7 +57,7 @@ void PlacerCriticalities::update_criticalities(const SetupTimingInfo* timing_inf last_crit_exponent_ = crit_params.crit_exponent; } - auto& place_move_ctx = g_placer_ctx.mutable_move(); + auto& place_move_ctx = placer_state.mutable_move(); /* Performs a 1-to-1 mapping from criticality to timing_place_crit_. * For every pin on every net (or, equivalently, for every tedge ending diff --git a/vpr/src/place/timing_place.h b/vpr/src/place/timing_place.h index bd74e52e2db..7ccf73c12f4 100644 --- a/vpr/src/place/timing_place.h +++ b/vpr/src/place/timing_place.h @@ -125,7 +125,9 @@ class PlacerCriticalities { * If out of sync, then the criticalities cannot be incrementally updated on * during the next timing analysis iteration. */ - void update_criticalities(const SetupTimingInfo* timing_info, const PlaceCritParams& crit_params); + void update_criticalities(const SetupTimingInfo* timing_info, + const PlaceCritParams& crit_params, + PlacerState& placer_state); ///@bried Enable the recompute_required flag to enforce from scratch update. void set_recompute_required(); @@ -362,7 +364,7 @@ class PlacerTimingCosts { //Walk through the netlist to determine how many connections there are. size_t iconn = 0; for (ClusterNetId net : nets) { - //The placer always skips 'ignored' nets so they don't effect timing + //The placer always skips 'ignored' nets, so they don't affect timing //costs, so we also skip them here if (nlist.net_is_ignored(net)) { net_start_indicies_[net] = OPEN; @@ -442,7 +444,7 @@ class PlacerTimingCosts { * * Useful for client code operating on the cost values (e.g. difference between costs). */ - operator double() { + operator double() const { return connection_cost_; } @@ -467,6 +469,10 @@ class PlacerTimingCosts { return ConnectionProxy(timing_costs_, net_sink_costs_[ipin]); } + const ConnectionProxy operator[](size_t ipin) const { + return ConnectionProxy(timing_costs_, net_sink_costs_[ipin]); + } + private: PlacerTimingCosts* timing_costs_; double* net_sink_costs_; @@ -480,6 +486,13 @@ class PlacerTimingCosts { return NetProxy(this, net_connection_costs); } + NetProxy operator[](ClusterNetId net_id) const { + VTR_ASSERT_SAFE(net_start_indicies_[net_id] >= 0); + + const double* net_connection_costs = &connection_costs_[net_start_indicies_[net_id]]; + return NetProxy(const_cast(this), const_cast(net_connection_costs)); + } + void clear() { connection_costs_.clear(); net_start_indicies_.clear(); diff --git a/vpr/src/place/timing_place_lookup.cpp b/vpr/src/place/timing_place_lookup.cpp index 638964e66d7..c16a0d6dbad 100644 --- a/vpr/src/place/timing_place_lookup.cpp +++ b/vpr/src/place/timing_place_lookup.cpp @@ -182,8 +182,6 @@ std::unique_ptr compute_place_delay_model(const t_placer_opts& bool is_flat) { vtr::ScopedStartFinishTimer timer("Computing placement delta delay look-up"); - init_placement_context(); - t_chan_width chan_width = setup_chan_width(router_opts, chan_width_dist); alloc_routing_structs(chan_width, router_opts, det_routing_arch, segment_inf, @@ -327,14 +325,15 @@ std::vector get_best_classes(enum e_pin_type pintype, t_physical_tile_type_ } static int get_longest_segment_length(std::vector& segment_inf) { - int length; + int length = 0; - length = 0; - for (size_t i = 0; i < segment_inf.size(); i++) { - if (segment_inf[i].length > length) - length = segment_inf[i].length; + for (const t_segment_inf &seg_info : segment_inf) { + if (seg_info.length > length) { + length = seg_info.length; + } } - return (length); + + return length; } static t_chan_width setup_chan_width(const t_router_opts& router_opts, diff --git a/vpr/src/place/uniform_move_generator.cpp b/vpr/src/place/uniform_move_generator.cpp index 6560c32af24..fc4e74dc56c 100644 --- a/vpr/src/place/uniform_move_generator.cpp +++ b/vpr/src/place/uniform_move_generator.cpp @@ -1,15 +1,31 @@ #include "uniform_move_generator.h" + #include "globals.h" #include "place_constraints.h" +#include "placer_state.h" #include "move_utils.h" -e_create_move UniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, t_propose_action& proposed_action, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/) { +UniformMoveGenerator::UniformMoveGenerator(PlacerState& placer_state) + : MoveGenerator(placer_state) {} + +e_create_move UniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, + t_propose_action& proposed_action, + float rlim, + const t_placer_opts& placer_opts, + const PlacerCriticalities* /*criticalities*/) { + const auto& cluster_ctx = g_vpr_ctx.clustering(); + const auto& placer_state = placer_state_.get(); + const auto& block_locs = placer_state.block_locs(); + const auto& blk_loc_registry = placer_state.blk_loc_registry(); + //Find a movable block based on blk_type ClusterBlockId b_from = propose_block_to_move(placer_opts, proposed_action.logical_blk_type_index, - false, - nullptr, - nullptr); + /*highly_crit_block=*/false, + /*net_from=*/nullptr, + /*pin_from=*/nullptr, + placer_state); + VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, "Uniform Move Choose Block %d - rlim %f\n", size_t(b_from), rlim); if (!b_from) { //No movable block found @@ -17,16 +33,13 @@ e_create_move UniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks return e_create_move::ABORT; } - auto& place_ctx = g_vpr_ctx.placement(); - auto& cluster_ctx = g_vpr_ctx.clustering(); - - t_pl_loc from = place_ctx.block_locs[b_from].loc; + t_pl_loc from = block_locs[b_from].loc; auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); auto grid_from_type = g_vpr_ctx.device().grid.get_physical_type({from.x, from.y, from.layer}); VTR_ASSERT(is_tile_compatible(grid_from_type, cluster_from_type)); t_pl_loc to; - if (!find_to_loc_uniform(cluster_from_type, rlim, from, to, b_from)) { + if (!find_to_loc_uniform(cluster_from_type, rlim, from, to, b_from, blk_loc_registry)) { return e_create_move::ABORT; } @@ -44,7 +57,7 @@ e_create_move UniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks VTR_LOG("\n"); #endif - e_create_move create_move = ::create_move(blocks_affected, b_from, to); + e_create_move create_move = ::create_move(blocks_affected, b_from, to, blk_loc_registry); //Check that all the blocks affected by the move would still be in a legal floorplan region after the swap if (!floorplan_legal(blocks_affected)) { diff --git a/vpr/src/place/uniform_move_generator.h b/vpr/src/place/uniform_move_generator.h index 0ea4a8a9d8d..190a9fb7d31 100644 --- a/vpr/src/place/uniform_move_generator.h +++ b/vpr/src/place/uniform_move_generator.h @@ -9,7 +9,16 @@ * a range limit centered on from_block in the compressed block grid space */ class UniformMoveGenerator : public MoveGenerator { - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, t_propose_action& proposed_action, float rlim, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/) override; + public: + UniformMoveGenerator() = delete; + explicit UniformMoveGenerator(PlacerState& placer_state); + + private: + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, + t_propose_action& proposed_action, + float rlim, + const t_placer_opts& /*placer_opts*/, + const PlacerCriticalities* /*criticalities*/) override; }; #endif diff --git a/vpr/src/place/weighted_centroid_move_generator.cpp b/vpr/src/place/weighted_centroid_move_generator.cpp index 93dd5c796f8..3350c486508 100644 --- a/vpr/src/place/weighted_centroid_move_generator.cpp +++ b/vpr/src/place/weighted_centroid_move_generator.cpp @@ -1,16 +1,34 @@ #include "weighted_centroid_move_generator.h" + #include "globals.h" #include "directed_moves_util.h" #include "place_constraints.h" +#include "placer_state.h" #include "move_utils.h" -e_create_move WeightedCentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, t_propose_action& proposed_action, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { +WeightedCentroidMoveGenerator::WeightedCentroidMoveGenerator(PlacerState& placer_state) + : MoveGenerator(placer_state) {} + +e_create_move WeightedCentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, + t_propose_action& proposed_action, + float rlim, + const t_placer_opts& placer_opts, + const PlacerCriticalities* criticalities) { + const auto& cluster_ctx = g_vpr_ctx.clustering(); + const auto& device_ctx = g_vpr_ctx.device(); + auto& placer_state = placer_state_.get(); + const auto& block_locs = placer_state.block_locs(); + auto& place_move_ctx = placer_state.mutable_move(); + const auto& blk_loc_registry = placer_state.blk_loc_registry(); + //Find a movable block based on blk_type ClusterBlockId b_from = propose_block_to_move(placer_opts, proposed_action.logical_blk_type_index, - false, - nullptr, - nullptr); + /*highly_crit_block=*/false, + /*net_from=*/nullptr, + /*pin_from=*/nullptr, + placer_state); + VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, "Weighted Centroid Move Choose Block %d - rlim %f\n", size_t(b_from), rlim); if (!b_from) { //No movable block found @@ -18,13 +36,7 @@ e_create_move WeightedCentroidMoveGenerator::propose_move(t_pl_blocks_to_be_move return e_create_move::ABORT; } - auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.placement(); - auto& device_ctx = g_vpr_ctx.device(); - - auto& place_move_ctx = g_placer_ctx.mutable_move(); - - t_pl_loc from = place_ctx.block_locs[b_from].loc; + t_pl_loc from = block_locs[b_from].loc; auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); auto grid_from_type = device_ctx.grid.get_physical_type({from.x, from.y, from.layer}); VTR_ASSERT(is_tile_compatible(grid_from_type, cluster_from_type)); @@ -36,16 +48,16 @@ e_create_move WeightedCentroidMoveGenerator::propose_move(t_pl_blocks_to_be_move t_pl_loc to, centroid; /* Calculate the weighted centroid */ - calculate_centroid_loc(b_from, true, centroid, criticalities); + calculate_centroid_loc(b_from, true, centroid, criticalities, blk_loc_registry); // Centroid location is not necessarily a valid location, and the downstream location expect a valid // layer for "to" location. So if the layer is not valid, we set it to the same layer as from loc. centroid.layer = (centroid.layer < 0) ? from.layer : centroid.layer; - if (!find_to_loc_centroid(cluster_from_type, from, centroid, range_limiters, to, b_from)) { + if (!find_to_loc_centroid(cluster_from_type, from, centroid, range_limiters, to, b_from, blk_loc_registry)) { return e_create_move::ABORT; } - e_create_move create_move = ::create_move(blocks_affected, b_from, to); + e_create_move create_move = ::create_move(blocks_affected, b_from, to, blk_loc_registry); //Check that all the blocks affected by the move would still be in a legal floorplan region after the swap if (!floorplan_legal(blocks_affected)) { diff --git a/vpr/src/place/weighted_centroid_move_generator.h b/vpr/src/place/weighted_centroid_move_generator.h index 7aea1b6941c..30725bcd3ac 100644 --- a/vpr/src/place/weighted_centroid_move_generator.h +++ b/vpr/src/place/weighted_centroid_move_generator.h @@ -13,7 +13,16 @@ * "Learn to Place: FPGA Placement using Reinforcement Learning and Directed Moves", ICFPT2020 */ class WeightedCentroidMoveGenerator : public MoveGenerator { - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, t_propose_action& proposed_action, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) override; + public: + WeightedCentroidMoveGenerator() = delete; + explicit WeightedCentroidMoveGenerator(PlacerState& placer_state); + + private: + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, + t_propose_action& proposed_action, + float rlim, + const t_placer_opts& placer_opts, + const PlacerCriticalities* criticalities) override; }; #endif diff --git a/vpr/src/place/weighted_median_move_generator.cpp b/vpr/src/place/weighted_median_move_generator.cpp index a9e2aaac526..e1581a24123 100644 --- a/vpr/src/place/weighted_median_move_generator.cpp +++ b/vpr/src/place/weighted_median_move_generator.cpp @@ -1,21 +1,37 @@ #include "weighted_median_move_generator.h" + #include "globals.h" -#include -#include "math.h" #include "place_constraints.h" +#include "placer_state.h" #include "move_utils.h" +#include +#include + #define CRIT_MULT_FOR_W_MEDIAN 10 -static void get_bb_cost_for_net_excluding_block(ClusterNetId net_id, ClusterBlockId block_id, ClusterPinId moving_pin_id, const PlacerCriticalities* criticalities, t_bb_cost* coords, bool& skip_net); +WeightedMedianMoveGenerator::WeightedMedianMoveGenerator(PlacerState& placer_state) + : MoveGenerator(placer_state) {} + +e_create_move WeightedMedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, + t_propose_action& proposed_action, + float rlim, + const t_placer_opts& placer_opts, + const PlacerCriticalities* criticalities) { + const auto& cluster_ctx = g_vpr_ctx.clustering(); + auto& placer_state = placer_state_.get(); + const auto& block_locs = placer_state.block_locs(); + auto& place_move_ctx = placer_state.mutable_move(); + const auto& blk_loc_registry = placer_state.blk_loc_registry(); -e_create_move WeightedMedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, t_propose_action& proposed_action, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { //Find a movable block based on blk_type ClusterBlockId b_from = propose_block_to_move(placer_opts, proposed_action.logical_blk_type_index, - false, - nullptr, - nullptr); + /*highly_crit_block=*/false, + /*net_from=*/nullptr, + /*pin_from=*/nullptr, + placer_state); + VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, "Weighted Median Move Choose Block %d - rlim %f\n", size_t(b_from), rlim); if (!b_from) { //No movable block found @@ -23,14 +39,12 @@ e_create_move WeightedMedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& return e_create_move::ABORT; } - auto& place_ctx = g_vpr_ctx.placement(); - auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_move_ctx = g_placer_ctx.mutable_move(); + int num_layers = g_vpr_ctx.device().grid.get_num_layers(); - t_pl_loc from = place_ctx.block_locs[b_from].loc; + t_pl_loc from = block_locs[b_from].loc; auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); auto grid_from_type = g_vpr_ctx.device().grid.get_physical_type({from.x, from.y, from.layer}); VTR_ASSERT(is_tile_compatible(grid_from_type, cluster_from_type)); @@ -48,9 +62,6 @@ e_create_move WeightedMedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& place_move_ctx.layer_coord.clear(); std::vector layer_blk_cnt(num_layers, 0); - //true if the net is a feedback from the block to itself (all the net terminals are connected to the same block) - bool skip_net; - //iterate over block pins for (ClusterPinId pin_id : cluster_ctx.clb_nlist.block_pins(b_from)) { ClusterNetId net_id = cluster_ctx.clb_nlist.pin_net(pin_id); @@ -63,12 +74,15 @@ e_create_move WeightedMedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& * * Note: skip_net returns true if this net should be skipped. Currently, the only case to skip a net is the feedback nets * (a net that all its terminals connected to the same block). Logically, this net should be neglected as it is only connected - * to the moving block. Experimentally, we found that including these nets into calculations badly affect the averall placement + * to the moving block. Experimentally, we found that including these nets into calculations badly affect the overall placement * solution especillay for some large designs. + * + * Note: skip_net true if the net is a feedback from the block to itself (all the net terminals are connected to the same block) */ - get_bb_cost_for_net_excluding_block(net_id, b_from, pin_id, criticalities, &coords, skip_net); - if (skip_net) + bool skip_net = get_bb_cost_for_net_excluding_block(net_id, pin_id, criticalities, &coords); + if (skip_net) { continue; + } // We need to insert the calculated edges in the X,Y vectors multiple times based on the criticality of the pin that caused each of them. // As all the criticalities are [0,1], we map it to [0,CRIT_MULT_FOR_W_MEDIAN] inserts in the vectors for each edge @@ -124,11 +138,11 @@ e_create_move WeightedMedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& w_median_point.y = (limit_coords.ymin + limit_coords.ymax) / 2; w_median_point.layer = ((limit_coords.layer_min + limit_coords.layer_max) / 2); - if (!find_to_loc_centroid(cluster_from_type, from, w_median_point, range_limiters, to, b_from)) { + if (!find_to_loc_centroid(cluster_from_type, from, w_median_point, range_limiters, to, b_from, blk_loc_registry)) { return e_create_move::ABORT; } - e_create_move create_move = ::create_move(blocks_affected, b_from, to); + e_create_move create_move = ::create_move(blocks_affected, b_from, to, blk_loc_registry); //Check that all the blocks affected by the move would still be in a legal floorplan region after the swap if (!floorplan_legal(blocks_affected)) { @@ -138,73 +152,59 @@ e_create_move WeightedMedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& return create_move; } -/** - * This routine finds the bounding box and the cost of each side of the bounding box, - * which is defined as the criticality of the connection that led to the bounding box extending - * that far. If more than one terminal leads to a bounding box edge, w pick the cost using the criticality of the first one. - * This is helpful in computing weighted median moves. - * - * Outputs: - * - coords: the bounding box and the edge costs - * - skip_net: returns whether this net should be skipped in calculation or not - * - * Inputs: - * - net_id: The net we are considering - * - moving_pin_id: pin (which should be on this net) on a block that is being moved. - * - criticalities: the timing criticalities of all connections - */ -static void get_bb_cost_for_net_excluding_block(ClusterNetId net_id, ClusterBlockId, ClusterPinId moving_pin_id, const PlacerCriticalities* criticalities, t_bb_cost* coords, bool& skip_net) { - int pnum, x, y, layer, xmin, xmax, ymin, ymax, layer_min, layer_max; - float xmin_cost, xmax_cost, ymin_cost, ymax_cost, layer_min_cost, layer_max_cost, cost; - - skip_net = true; - - xmin = 0; - xmax = 0; - ymin = 0; - ymax = 0; - layer_min = 0; - layer_max = 0; - - cost = 0.0; - xmin_cost = 0.0; - xmax_cost = 0.0; - ymin_cost = 0.0; - ymax_cost = 0.0; - layer_min_cost = 0.; - layer_max_cost = 0.; +bool WeightedMedianMoveGenerator::get_bb_cost_for_net_excluding_block(ClusterNetId net_id, + ClusterPinId moving_pin_id, + const PlacerCriticalities* criticalities, + t_bb_cost* coords) { + const auto& blk_loc_registry = placer_state_.get().blk_loc_registry(); + const auto& block_locs = blk_loc_registry.block_locs(); + + bool skip_net = true; + + int xmin = 0; + int xmax = 0; + int ymin = 0; + int ymax = 0; + int layer_min = 0; + int layer_max = 0; + + float xmin_cost = 0.f; + float xmax_cost = 0.f; + float ymin_cost = 0.f; + float ymax_cost = 0.f; + float layer_min_cost = 0.f; + float layer_max_cost = 0.f; auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.placement(); auto& device_ctx = g_vpr_ctx.device(); auto& grid = device_ctx.grid; - ClusterBlockId bnum; bool is_first_block = true; - int ipin; - for (auto pin_id : cluster_ctx.clb_nlist.net_pins(net_id)) { - bnum = cluster_ctx.clb_nlist.pin_block(pin_id); - layer = place_ctx.block_locs[bnum].loc.layer; + for (ClusterPinId pin_id : cluster_ctx.clb_nlist.net_pins(net_id)) { + ClusterBlockId bnum = cluster_ctx.clb_nlist.pin_block(pin_id); if (pin_id != moving_pin_id) { skip_net = false; - pnum = tile_pin_index(pin_id); + int pnum = blk_loc_registry.tile_pin_index(pin_id); /** * Calculates the pin index of the correct pin to calculate the required connection * * if the current pin is the driver, we only care about one sink (the moving pin) * else if the current pin is a sink, calculate the criticality of itself */ + int ipin; if (cluster_ctx.clb_nlist.pin_type(pin_id) == PinType::DRIVER) { ipin = cluster_ctx.clb_nlist.pin_net_index(moving_pin_id); } else { ipin = cluster_ctx.clb_nlist.pin_net_index(pin_id); } - cost = criticalities->criticality(net_id, ipin); + float cost = criticalities->criticality(net_id, ipin); VTR_ASSERT(pnum >= 0); - x = place_ctx.block_locs[bnum].loc.x + physical_tile_type(bnum)->pin_width_offset[pnum]; - y = place_ctx.block_locs[bnum].loc.y + physical_tile_type(bnum)->pin_height_offset[pnum]; + const t_pl_loc block_loc = block_locs[bnum].loc; + int x = block_loc.x + physical_tile_type(block_loc)->pin_width_offset[pnum]; + int y = block_loc.y + physical_tile_type(block_loc)->pin_height_offset[pnum]; + int layer = block_loc.layer; x = std::max(std::min(x, (int)grid.width() - 2), 1); //-2 for no perim channels y = std::max(std::min(y, (int)grid.height() - 2), 1); //-2 for no perim channels @@ -264,4 +264,7 @@ static void get_bb_cost_for_net_excluding_block(ClusterNetId net_id, ClusterBloc coords->ymax = {ymax, ymax_cost}; coords->layer_min = {layer_min, layer_min_cost}; coords->layer_max = {layer_max, layer_max_cost}; + + return skip_net; } + diff --git a/vpr/src/place/weighted_median_move_generator.h b/vpr/src/place/weighted_median_move_generator.h index c0be89b7c5f..e6a3b11be89 100644 --- a/vpr/src/place/weighted_median_move_generator.h +++ b/vpr/src/place/weighted_median_move_generator.h @@ -13,7 +13,32 @@ * "Learn to Place: FPGA Placement using Reinforcement Learning and Directed Moves", ICFPT2020 */ class WeightedMedianMoveGenerator : public MoveGenerator { - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, t_propose_action& proposed_action, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) override; + public: + WeightedMedianMoveGenerator() = delete; + explicit WeightedMedianMoveGenerator(PlacerState& placer_state); + + private: + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, + t_propose_action& proposed_action, + float rlim, + const t_placer_opts& placer_opts, + const PlacerCriticalities* criticalities) override; + + /** + * @brief Finds the bounding box and the cost of each side of the bounding box, + * which is defined as the criticality of the connection that led to the bounding box extending + * that far. If more than one terminal leads to a bounding box edge, w pick the cost using the criticality of the first one. + * + * @param net_id The net we are considering + * @param moving_pin_id pin (which should be on this net) on a block that is being moved. + * @param criticalities the timing criticalities of all connections + * @param coords the bounding box and the edge costs to be filled by this method + * @return bool Whether this net should be skipped in calculation or not + */ + bool get_bb_cost_for_net_excluding_block(ClusterNetId net_id, + ClusterPinId moving_pin_id, + const PlacerCriticalities* criticalities, + t_bb_cost* coords); }; #endif diff --git a/vpr/src/power/power.cpp b/vpr/src/power/power.cpp index 94d55479580..f2df57f8e88 100644 --- a/vpr/src/power/power.cpp +++ b/vpr/src/power/power.cpp @@ -138,7 +138,7 @@ static void power_usage_primitive(t_power_usage* power_usage, t_pb* pb, t_pb_gra if (strcmp(pb_graph_node->pb_type->blif_model, MODEL_NAMES) == 0) { /* LUT */ - char* SRAM_values; + std::string SRAM_values; float* input_probabilities; float* input_densities; int LUT_size; @@ -174,7 +174,6 @@ static void power_usage_primitive(t_power_usage* power_usage, t_pb* pb, t_pb_gra power_ctx.arch->LUT_transistor_size, SRAM_values, input_probabilities, input_densities, power_ctx.solution_inf.T_crit); power_add_usage(power_usage, &sub_power_usage); - delete[] SRAM_values; delete[] input_probabilities; delete[] input_densities; } else if (strcmp(pb_graph_node->pb_type->blif_model, MODEL_LATCH) == 0) { @@ -626,9 +625,9 @@ static void power_usage_blocks(t_power_usage* power_usage) { t_pb* pb = nullptr; t_power_usage pb_power; - ClusterBlockId iblk = place_ctx.grid_blocks.block_at_location({x, y, z, layer_num}); + ClusterBlockId iblk = place_ctx.grid_blocks().block_at_location({x, y, z, layer_num}); - if (iblk != EMPTY_BLOCK_ID && iblk != INVALID_BLOCK_ID) { + if (iblk) { pb = cluster_ctx.clb_nlist.block_pb(iblk); logical_block = cluster_ctx.clb_nlist.block_type(iblk); } else { @@ -642,7 +641,6 @@ static void power_usage_blocks(t_power_usage* power_usage) { } } } - return; } /** diff --git a/vpr/src/power/power_components.cpp b/vpr/src/power/power_components.cpp index 10793b83e15..0a6b22e0786 100644 --- a/vpr/src/power/power_components.cpp +++ b/vpr/src/power/power_components.cpp @@ -23,6 +23,7 @@ /************************* INCLUDES *********************************/ #include #include +#include #include "vtr_math.h" #include "vtr_assert.h" @@ -203,7 +204,7 @@ void power_usage_ff(t_power_usage* power_usage, float size, float D_prob, float * 7 _Z_| * */ -void power_usage_lut(t_power_usage* power_usage, int lut_size, float transistor_size, char* SRAM_values, float* input_prob, float* input_dens, float period) { +void power_usage_lut(t_power_usage* power_usage, int lut_size, float transistor_size, std::string SRAM_values, float* input_prob, float* input_dens, float period) { float** internal_prob; float** internal_dens; float** internal_v; diff --git a/vpr/src/power/power_components.h b/vpr/src/power/power_components.h index 110e5c15434..dd235450603 100644 --- a/vpr/src/power/power_components.h +++ b/vpr/src/power/power_components.h @@ -24,6 +24,7 @@ #define __POWER_COMPONENTS_H__ /************************* INCLUDES *********************************/ +#include #include "power.h" #include "clustered_netlist.h" @@ -82,7 +83,7 @@ void power_component_add_usage(t_power_usage* power_usage, float power_component_get_usage_sum(e_power_component_type component_idx); void power_usage_ff(t_power_usage* power_usage, float size, float D_prob, float D_dens, float Q_prob, float Q_dens, float clk_prob, float clk_dens, float period); -void power_usage_lut(t_power_usage* power_usage, int LUT_size, float transistor_size, char* SRAM_values, float* input_densities, float* input_probabilities, float period); +void power_usage_lut(t_power_usage* power_usage, int LUT_size, float transistor_size, std::string SRAM_values, float* input_densities, float* input_probabilities, float period); void power_usage_local_interc_mux(t_power_usage* power_usage, t_pb* pb, t_interconnect_pins* interc_pins, ClusterBlockId iblk); void power_usage_mux_multilevel(t_power_usage* power_usage, t_mux_arch* mux_arch, diff --git a/vpr/src/power/power_util.cpp b/vpr/src/power/power_util.cpp index e32948a60cb..52556dac0aa 100644 --- a/vpr/src/power/power_util.cpp +++ b/vpr/src/power/power_util.cpp @@ -23,6 +23,7 @@ #include #include #include +#include #include "vtr_assert.h" #include "vtr_memory.h" @@ -211,19 +212,16 @@ float calc_buffer_stage_effort(int N, float final_stage_size) { * - LUT_size: The number of LUT inputs * - truth_table: The logic terms saved from the BLIF file */ -char* alloc_SRAM_values_from_truth_table(int LUT_size, - const AtomNetlist::TruthTable& truth_table) { - int num_SRAM_bits = 1 << LUT_size; +std::string alloc_SRAM_values_from_truth_table(int LUT_size, + const AtomNetlist::TruthTable& truth_table) { + size_t num_SRAM_bits = 1 << LUT_size; //SRAM value stored as a string of '0' and '1' characters // Initialize to all zeros - char* SRAM_values = new char[num_SRAM_bits + 1]; - for (int i = 0; i < num_SRAM_bits + 1; i++) - SRAM_values[i] = '0'; - SRAM_values[num_SRAM_bits] = '\0'; + std::string SRAM_values(num_SRAM_bits, '0'); if (truth_table.empty()) { - for (int i = 0; i < num_SRAM_bits; i++) { + for (size_t i = 0; i < num_SRAM_bits; i++) { SRAM_values[i] = '1'; } return SRAM_values; @@ -237,7 +235,7 @@ char* alloc_SRAM_values_from_truth_table(int LUT_size, if (truth_table[0].size() == 1) { if (truth_table[0][0] == vtr::LogicValue::TRUE) { //Mark all the SRAM values as ON - for (int i = 0; i < num_SRAM_bits; i++) { + for (size_t i = 0; i < num_SRAM_bits; i++) { SRAM_values[i] = '1'; } return SRAM_values; @@ -250,7 +248,7 @@ char* alloc_SRAM_values_from_truth_table(int LUT_size, auto expanded_truth_table = expand_truth_table(truth_table, LUT_size); std::vector lut_mask = truth_table_to_lut_mask(expanded_truth_table, LUT_size); - VTR_ASSERT(lut_mask.size() == (size_t)num_SRAM_bits); + VTR_ASSERT(lut_mask.size() == num_SRAM_bits); //Convert to string for (size_t i = 0; i < lut_mask.size(); ++i) { diff --git a/vpr/src/power/power_util.h b/vpr/src/power/power_util.h index 35ed22cc67f..7589af621ad 100644 --- a/vpr/src/power/power_util.h +++ b/vpr/src/power/power_util.h @@ -23,6 +23,7 @@ #define __POWER_UTIL_H__ /************************* INCLUDES *********************************/ +#include #include "power.h" #include "power_components.h" #include "atom_netlist.h" @@ -63,8 +64,8 @@ bool power_method_is_transistor_level(e_power_estimation_method estimation_metho bool power_method_is_recursive(e_power_estimation_method method); const char* transistor_type_name(e_tx_type type); -char* alloc_SRAM_values_from_truth_table(int LUT_size, - const AtomNetlist::TruthTable& truth_table); +std::string alloc_SRAM_values_from_truth_table(int LUT_size, + const AtomNetlist::TruthTable& truth_table); float clb_net_density(ClusterNetId net_idx); const char* interconnect_type_name(enum e_interconnect type); float clb_net_prob(ClusterNetId net_idx); diff --git a/vpr/src/route/check_route.cpp b/vpr/src/route/check_route.cpp index a068210d416..fd239d39b52 100644 --- a/vpr/src/route/check_route.cpp +++ b/vpr/src/route/check_route.cpp @@ -488,6 +488,7 @@ void recompute_occupancy_from_scratch(const Netlist<>& net_list, bool is_flat) { */ auto& route_ctx = g_vpr_ctx.mutable_routing(); auto& device_ctx = g_vpr_ctx.device(); + auto& block_locs = g_vpr_ctx.placement().block_locs(); /* First set the occupancy of everything to zero. */ for (RRNodeId inode : device_ctx.rr_graph.nodes()) @@ -514,8 +515,9 @@ void recompute_occupancy_from_scratch(const Netlist<>& net_list, bool is_flat) { * (CLB outputs used up by being directly wired to subblocks used only * * locally). */ for (auto blk_id : net_list.blocks()) { - auto cluster_blk_id = convert_to_cluster_block_id(blk_id); - for (int iclass = 0; iclass < (int)physical_tile_type(cluster_blk_id)->class_inf.size(); iclass++) { + ClusterBlockId cluster_blk_id = convert_to_cluster_block_id(blk_id); + t_pl_loc block_loc = block_locs[cluster_blk_id].loc; + for (int iclass = 0; iclass < (int)physical_tile_type(block_loc)->class_inf.size(); iclass++) { int num_local_opins = route_ctx.clb_opins_used_locally[cluster_blk_id][iclass].size(); /* Will always be 0 for pads or SINK classes. */ for (int ipin = 0; ipin < num_local_opins; ipin++) { @@ -533,20 +535,20 @@ static void check_locally_used_clb_opins(const t_clb_opins_used& clb_opins_used_ bool is_flat) { /* Checks that enough OPINs on CLBs have been set aside (used up) to make a * * legal routing if subblocks connect to OPINs directly. */ - - int iclass, num_local_opins, ipin; t_rr_type rr_type; auto& cluster_ctx = g_vpr_ctx.clustering(); auto& device_ctx = g_vpr_ctx.device(); const auto& rr_graph = device_ctx.rr_graph; + auto& block_locs = g_vpr_ctx.placement().block_locs(); - for (auto blk_id : cluster_ctx.clb_nlist.blocks()) { - for (iclass = 0; iclass < (int)physical_tile_type(blk_id)->class_inf.size(); iclass++) { - num_local_opins = clb_opins_used_locally[blk_id][iclass].size(); + for (ClusterBlockId blk_id : cluster_ctx.clb_nlist.blocks()) { + t_pl_loc block_loc = block_locs[blk_id].loc; + for (int iclass = 0; iclass < (int)physical_tile_type(block_loc)->class_inf.size(); iclass++) { + int num_local_opins = clb_opins_used_locally[blk_id][iclass].size(); /* Always 0 for pads and for SINK classes */ - for (ipin = 0; ipin < num_local_opins; ipin++) { + for (int ipin = 0; ipin < num_local_opins; ipin++) { RRNodeId inode = clb_opins_used_locally[blk_id][iclass][ipin]; check_node_and_range(RRNodeId(inode), route_type, is_flat); /* Node makes sense? */ @@ -561,11 +563,11 @@ static void check_locally_used_clb_opins(const t_clb_opins_used& clb_opins_used_ } ipin = rr_graph.node_pin_num(RRNodeId(inode)); - if (get_class_num_from_pin_physical_num(physical_tile_type(blk_id), ipin) != iclass) { + if (get_class_num_from_pin_physical_num(physical_tile_type(block_loc), ipin) != iclass) { VPR_FATAL_ERROR(VPR_ERROR_ROUTE, "in check_locally_used_opins: block #%lu (%s):\n" "\tExpected class %d local OPIN has class %d -- rr_node #: %d.\n", - size_t(blk_id), cluster_ctx.clb_nlist.block_name(blk_id).c_str(), iclass, get_class_num_from_pin_physical_num(physical_tile_type(blk_id), ipin), inode); + size_t(blk_id), cluster_ctx.clb_nlist.block_name(blk_id).c_str(), iclass, get_class_num_from_pin_physical_num(physical_tile_type(block_loc), ipin), inode); } } } diff --git a/vpr/src/route/overuse_report.cpp b/vpr/src/route/overuse_report.cpp index 2e07f446314..688388b8689 100644 --- a/vpr/src/route/overuse_report.cpp +++ b/vpr/src/route/overuse_report.cpp @@ -242,7 +242,7 @@ static void report_overused_ipin_opin(std::ostream& os, //Add block type for IPINs/OPINs in overused rr-node report const auto& clb_nlist = g_vpr_ctx.clustering().clb_nlist; - const auto& grid_info = place_ctx.grid_blocks; + const auto& grid_info = place_ctx.grid_blocks(); os << "Grid location: X = " << grid_x << ", Y = " << grid_y << '\n'; os << "Number of blocks currently occupying this grid location = " << grid_info.get_usage({grid_x, grid_y, grid_layer}) << '\n'; @@ -336,7 +336,7 @@ static void report_congested_nets(const Netlist<>& net_list, } else { cluster_block_id = convert_to_cluster_block_id(net_list.pin_block(sink_id)); } - auto cluster_loc = g_vpr_ctx.placement().block_locs[cluster_block_id]; + auto cluster_loc = g_vpr_ctx.placement().block_locs()[cluster_block_id]; auto physical_type = g_vpr_ctx.device().grid.get_physical_type({x, y, layer_num}); int cluster_layer_num = cluster_loc.loc.layer; int cluster_x = cluster_loc.loc.x - g_vpr_ctx.device().grid.get_physical_type({cluster_loc.loc.x, cluster_loc.loc.y, cluster_layer_num})->width; @@ -353,7 +353,7 @@ static void report_congested_nets(const Netlist<>& net_list, os << " " << "Hierarchical Type Name : " << pb_pin->parent_node->hierarchical_type_name() << "\n"; } else { - os << " " << g_vpr_ctx.placement().physical_pins[convert_to_cluster_pin_id(sink_id)] << "\n"; + os << " " << g_vpr_ctx.placement().physical_pins()[convert_to_cluster_pin_id(sink_id)] << "\n"; } } } diff --git a/vpr/src/route/route.cpp b/vpr/src/route/route.cpp index d7488910834..1816f610f9f 100644 --- a/vpr/src/route/route.cpp +++ b/vpr/src/route/route.cpp @@ -64,7 +64,7 @@ bool route(const Netlist<>& net_list, is_flat); //Initialize drawing, now that we have an RR graph - init_draw_coords(width_fac); + init_draw_coords(width_fac, g_vpr_ctx.placement().blk_loc_registry()); /* Allocate and load additional rr_graph information needed only by the router. */ alloc_and_load_rr_node_route_structs(); diff --git a/vpr/src/route/route_common.cpp b/vpr/src/route/route_common.cpp index 74a84472388..b72b78cdaf1 100644 --- a/vpr/src/route/route_common.cpp +++ b/vpr/src/route/route_common.cpp @@ -337,11 +337,13 @@ static t_clb_opins_used alloc_and_load_clb_opins_used_locally() { int clb_pin, iclass; auto& cluster_ctx = g_vpr_ctx.clustering(); + auto& block_locs = g_vpr_ctx.placement().block_locs(); clb_opins_used_locally.resize(cluster_ctx.clb_nlist.blocks().size()); - for (auto blk_id : cluster_ctx.clb_nlist.blocks()) { - auto type = physical_tile_type(blk_id); + for (ClusterBlockId blk_id : cluster_ctx.clb_nlist.blocks()) { + t_pl_loc block_loc = block_locs[blk_id].loc; + auto type = physical_tile_type(block_loc); auto sub_tile = type->sub_tiles[get_sub_tile_index(blk_id)]; auto class_range = get_class_range_for_block(blk_id); @@ -350,12 +352,10 @@ static t_clb_opins_used alloc_and_load_clb_opins_used_locally() { if (is_io_type(type)) continue; - int pin_low = 0; - int pin_high = 0; - get_pin_range_for_block(blk_id, &pin_low, &pin_high); + const auto [pin_low, pin_high] = get_pin_range_for_block(blk_id); for (clb_pin = pin_low; clb_pin <= pin_high; clb_pin++) { - auto net = cluster_ctx.clb_nlist.block_net(blk_id, clb_pin); + ClusterNetId net = cluster_ctx.clb_nlist.block_net(blk_id, clb_pin); if (!net || (net && cluster_ctx.clb_nlist.net_sinks(net).size() == 0)) { //There is no external net connected to this pin @@ -787,10 +787,12 @@ void reserve_locally_used_opins(HeapInterface* heap, float pres_fac, float acc_f auto& route_ctx = g_vpr_ctx.mutable_routing(); auto& device_ctx = g_vpr_ctx.device(); const auto& rr_graph = device_ctx.rr_graph; + auto& block_locs = g_vpr_ctx.placement().block_locs(); if (rip_up_local_opins) { - for (auto blk_id : cluster_ctx.clb_nlist.blocks()) { - type = physical_tile_type(blk_id); + for (ClusterBlockId blk_id : cluster_ctx.clb_nlist.blocks()) { + t_pl_loc block_loc = block_locs[blk_id].loc; + type = physical_tile_type(block_loc); for (iclass = 0; iclass < (int)type->class_inf.size(); iclass++) { num_local_opin = route_ctx.clb_opins_used_locally[blk_id][iclass].size(); @@ -811,8 +813,9 @@ void reserve_locally_used_opins(HeapInterface* heap, float pres_fac, float acc_f // Make sure heap is empty before we add nodes to the heap. heap->empty_heap(); - for (auto blk_id : cluster_ctx.clb_nlist.blocks()) { - type = physical_tile_type(blk_id); + for (ClusterBlockId blk_id : cluster_ctx.clb_nlist.blocks()) { + t_pl_loc block_loc = block_locs[blk_id].loc; + type = physical_tile_type(block_loc); for (iclass = 0; iclass < (int)type->class_inf.size(); iclass++) { num_local_opin = route_ctx.clb_opins_used_locally[blk_id][iclass].size(); diff --git a/vpr/src/route/route_path_manager.h b/vpr/src/route/route_path_manager.h index 73f0ddae9ef..c3f69980b67 100644 --- a/vpr/src/route/route_path_manager.h +++ b/vpr/src/route/route_path_manager.h @@ -28,7 +28,7 @@ struct t_heap_path { }; // Forward declaration of RoutingContext needed for traceback insertion -class RoutingContext; +struct RoutingContext; /* A class to manage the extra data required for RCV * It manages a set containing all the nodes that currently exist in the route tree @@ -117,4 +117,4 @@ class PathManager { std::set route_tree_nodes_; }; -#endif \ No newline at end of file +#endif diff --git a/vpr/src/route/route_utils.cpp b/vpr/src/route/route_utils.cpp index 21e0b52bbef..bb89d89fdee 100644 --- a/vpr/src/route/route_utils.cpp +++ b/vpr/src/route/route_utils.cpp @@ -18,13 +18,12 @@ bool check_net_delays(const Netlist<>& net_list, NetPinsMatrix& net_delay) { constexpr float ERROR_TOL = 0.0001; - unsigned int ipin; auto net_delay_check = make_net_pins_matrix(net_list); load_net_delay_from_routing(net_list, net_delay_check); for (auto net_id : net_list.nets()) { - for (ipin = 1; ipin < net_list.net_pins(net_id).size(); ipin++) { + for (size_t ipin = 1; ipin < net_list.net_pins(net_id).size(); ipin++) { if (net_delay_check[net_id][ipin] == 0.) { /* Should be only GLOBAL nets */ if (fabs(net_delay[net_id][ipin]) > ERROR_TOL) { VPR_ERROR(VPR_ERROR_ROUTE, @@ -220,8 +219,9 @@ void generate_route_timing_reports(const t_router_opts& router_opts, bool is_flat) { auto& timing_ctx = g_vpr_ctx.timing(); auto& atom_ctx = g_vpr_ctx.atom(); + const auto& blk_loc_registry = g_vpr_ctx.placement().blk_loc_registry(); - VprTimingGraphResolver resolver(atom_ctx.nlist, atom_ctx.lookup, *timing_ctx.graph, delay_calc, is_flat); + VprTimingGraphResolver resolver(atom_ctx.nlist, atom_ctx.lookup, *timing_ctx.graph, delay_calc, is_flat, blk_loc_registry); resolver.set_detail_level(analysis_opts.timing_report_detail); tatum::TimingReporter timing_reporter(resolver, *timing_ctx.graph, *timing_ctx.constraints); diff --git a/vpr/src/route/rr_graph.cpp b/vpr/src/route/rr_graph.cpp index 87c3155c752..a5129dc5cf5 100644 --- a/vpr/src/route/rr_graph.cpp +++ b/vpr/src/route/rr_graph.cpp @@ -832,11 +832,11 @@ static void add_intra_cluster_edges_rr_graph(RRGraphBuilder& rr_graph_builder, VTR_ASSERT(is_flat); /* This function should be called if placement is done! */ - auto& place_ctx = g_vpr_ctx.placement(); + auto& block_locs = g_vpr_ctx.placement().block_locs(); auto& cluster_net_list = g_vpr_ctx.clustering().clb_nlist; int num_collapsed_nodes = 0; - for (auto cluster_blk_id : cluster_net_list.blocks()) { - auto block_loc = place_ctx.block_locs[cluster_blk_id].loc; + for (ClusterBlockId cluster_blk_id : cluster_net_list.blocks()) { + t_pl_loc block_loc = block_locs[cluster_blk_id].loc; int i = block_loc.x; int j = block_loc.y; int layer = block_loc.layer; @@ -2234,17 +2234,12 @@ static void set_clusters_pin_chains(const ClusteredNetlist& clb_nlist, bool is_flat) { VTR_ASSERT(is_flat); - const auto& place_ctx = g_vpr_ctx.placement(); + const auto& block_locs = g_vpr_ctx.placement().block_locs(); - t_physical_tile_type_ptr physical_type; - t_logical_block_type_ptr logical_block; - const t_sub_tile* sub_tile; - int rel_cap; - - for (auto cluster_blk_id : clb_nlist.blocks()) { - auto block_loc = place_ctx.block_locs[cluster_blk_id].loc; + for (ClusterBlockId cluster_blk_id : clb_nlist.blocks()) { + t_pl_loc block_loc = block_locs[cluster_blk_id].loc; int abs_cap = block_loc.sub_tile; - std::tie(physical_type, sub_tile, rel_cap, logical_block) = get_cluster_blk_physical_spec(cluster_blk_id); + const auto [physical_type, sub_tile, rel_cap, logical_block] = get_cluster_blk_physical_spec(cluster_blk_id); auto cluster_pins = get_cluster_block_pins(physical_type, cluster_blk_id, diff --git a/vpr/src/route/rr_graph2.cpp b/vpr/src/route/rr_graph2.cpp index 4906b89faeb..e2d922baaad 100644 --- a/vpr/src/route/rr_graph2.cpp +++ b/vpr/src/route/rr_graph2.cpp @@ -300,7 +300,8 @@ t_seg_details* alloc_and_load_seg_details(int* max_chan_width, * as they will not be staggered by different segment start points. */ int cur_track, ntracks, itrack, length, j, index; - int arch_wire_switch, arch_opin_switch, fac, num_sets, tmp; + int fac, num_sets, tmp; + int arch_wire_switch, arch_opin_switch, arch_wire_switch_dec, arch_opin_switch_dec; int arch_opin_between_dice_switch; int group_start, first_track; std::unique_ptr sets_per_seg_type; @@ -352,8 +353,10 @@ t_seg_details* alloc_and_load_seg_details(int* max_chan_width, arch_wire_switch = segment_inf[i].arch_wire_switch; arch_opin_switch = segment_inf[i].arch_opin_switch; + arch_wire_switch_dec = segment_inf[i].arch_wire_switch_dec; + arch_opin_switch_dec = segment_inf[i].arch_opin_switch_dec; arch_opin_between_dice_switch = segment_inf[i].arch_opin_between_dice_switch; - VTR_ASSERT((arch_wire_switch == arch_opin_switch) || (directionality != UNI_DIRECTIONAL)); + VTR_ASSERT((arch_wire_switch == arch_opin_switch && arch_wire_switch_dec == arch_opin_switch_dec) || (directionality != UNI_DIRECTIONAL)); /* Set up the tracks of same type */ group_start = 0; @@ -416,8 +419,6 @@ t_seg_details* alloc_and_load_seg_details(int* max_chan_width, seg_details[cur_track].Cmetal = segment_inf[i].Cmetal; //seg_details[cur_track].Cmetal_per_m = segment_inf[i].Cmetal_per_m; - seg_details[cur_track].arch_wire_switch = arch_wire_switch; - seg_details[cur_track].arch_opin_switch = arch_opin_switch; seg_details[cur_track].arch_opin_between_dice_switch = arch_opin_between_dice_switch; if (BI_DIRECTIONAL == directionality) { @@ -427,6 +428,18 @@ t_seg_details* alloc_and_load_seg_details(int* max_chan_width, seg_details[cur_track].direction = (itrack % 2) ? Direction::DEC : Direction::INC; } + //check for directionality to set the wire_switch and opin_switch + //if not specified in the architecture file, we will use a same mux for both directions + if (seg_details[cur_track].direction == Direction::INC || seg_details[cur_track].direction == Direction::BIDIR || arch_wire_switch_dec == -1){ + seg_details[cur_track].arch_opin_switch = arch_opin_switch; + seg_details[cur_track].arch_wire_switch = arch_wire_switch; + } + else { + VTR_ASSERT(seg_details[cur_track].direction == Direction::DEC); + seg_details[cur_track].arch_opin_switch = arch_opin_switch_dec; + seg_details[cur_track].arch_wire_switch = arch_wire_switch_dec; + } + seg_details[cur_track].index = i; seg_details[cur_track].abs_index = segment_inf[i].seg_index; diff --git a/vpr/src/server/pathhelper.cpp b/vpr/src/server/pathhelper.cpp index 4776d7216e5..9e9d8a7b576 100644 --- a/vpr/src/server/pathhelper.cpp +++ b/vpr/src/server/pathhelper.cpp @@ -39,13 +39,13 @@ CritPathsResultPtr calc_critical_path(const std::string& report_type, int crit_p auto& timing_ctx = g_vpr_ctx.timing(); auto& atom_ctx = g_vpr_ctx.atom(); - // + const auto& blk_loc_registry = g_vpr_ctx.placement().blk_loc_registry(); t_analysis_opts analysis_opts; analysis_opts.timing_report_detail = details_level; analysis_opts.timing_report_npaths = crit_path_num; - VprTimingGraphResolver resolver(atom_ctx.nlist, atom_ctx.lookup, *timing_ctx.graph, *routing_delay_calc, is_flat_routing); + VprTimingGraphResolver resolver(atom_ctx.nlist, atom_ctx.lookup, *timing_ctx.graph, *routing_delay_calc, is_flat_routing, blk_loc_registry); resolver.set_detail_level(analysis_opts.timing_report_detail); tatum::TimingReporter timing_reporter(resolver, *timing_ctx.graph, *timing_ctx.constraints); diff --git a/vpr/src/timing/PreClusterDelayCalculator.h b/vpr/src/timing/PreClusterDelayCalculator.h index 54e97e66a1a..a4177fd6126 100644 --- a/vpr/src/timing/PreClusterDelayCalculator.h +++ b/vpr/src/timing/PreClusterDelayCalculator.h @@ -4,6 +4,7 @@ #include "tatum/Time.hpp" #include "tatum/delay_calc/DelayCalculator.hpp" +#include "tatum/TimingGraph.hpp" #include "vpr_error.h" #include "vpr_utils.h" @@ -11,17 +12,18 @@ #include "atom_netlist.h" #include "atom_lookup.h" #include "physical_types.h" +#include "prepack.h" class PreClusterDelayCalculator : public tatum::DelayCalculator { public: PreClusterDelayCalculator(const AtomNetlist& netlist, const AtomLookup& netlist_lookup, float intercluster_net_delay, - std::unordered_map expected_lowest_cost_pb_gnode) + const Prepacker& prepacker) : netlist_(netlist) , netlist_lookup_(netlist_lookup) , inter_cluster_net_delay_(intercluster_net_delay) - , block_to_pb_gnode_(expected_lowest_cost_pb_gnode) { + , prepacker_(prepacker) { //nop } @@ -132,11 +134,7 @@ class PreClusterDelayCalculator : public tatum::DelayCalculator { const t_pb_graph_pin* find_pb_graph_pin(const AtomPinId pin) const { AtomBlockId blk = netlist_.pin_block(pin); - auto iter = block_to_pb_gnode_.find(blk); - VTR_ASSERT(iter != block_to_pb_gnode_.end()); - - const t_pb_graph_node* pb_gnode = iter->second; - VTR_ASSERT(pb_gnode); + const t_pb_graph_node* pb_gnode = prepacker_.get_expected_lowest_cost_pb_gnode(blk); AtomPortId port = netlist_.pin_port(pin); const t_model_ports* model_port = netlist_.port_model(port); @@ -165,7 +163,7 @@ class PreClusterDelayCalculator : public tatum::DelayCalculator { const AtomNetlist& netlist_; const AtomLookup& netlist_lookup_; const float inter_cluster_net_delay_; - const std::unordered_map block_to_pb_gnode_; + const Prepacker& prepacker_; }; #endif diff --git a/vpr/src/timing/PreClusterTimingGraphResolver.cpp b/vpr/src/timing/PreClusterTimingGraphResolver.cpp index c6de97ae868..c94d961c84f 100644 --- a/vpr/src/timing/PreClusterTimingGraphResolver.cpp +++ b/vpr/src/timing/PreClusterTimingGraphResolver.cpp @@ -27,12 +27,13 @@ std::string PreClusterTimingGraphResolver::node_type_name(tatum::NodeId node) co if (detail_level() == e_timing_report_detail::AGGREGATED) { //Annotate primitive grid location, if known auto& atom_ctx = g_vpr_ctx.atom(); - auto& place_ctx = g_vpr_ctx.placement(); + auto& block_locs = g_vpr_ctx.placement().block_locs(); ClusterBlockId cb = atom_ctx.lookup.atom_clb(blk); - if (cb && place_ctx.block_locs.count(cb)) { - int x = place_ctx.block_locs[cb].loc.x; - int y = place_ctx.block_locs[cb].loc.y; - name += " at (" + std::to_string(x) + "," + std::to_string(y) + ")"; + if (cb && block_locs.count(cb)) { + int x = block_locs[cb].loc.x; + int y = block_locs[cb].loc.y; + int layer = block_locs[cb].loc.layer; + name += " at (" + std::to_string(x) + ", " + std::to_string(y) + ", " + std::to_string(layer) + ")"; } } diff --git a/vpr/src/timing/VprTimingGraphResolver.cpp b/vpr/src/timing/VprTimingGraphResolver.cpp index cdc1124ef6e..fa5dc1ae960 100644 --- a/vpr/src/timing/VprTimingGraphResolver.cpp +++ b/vpr/src/timing/VprTimingGraphResolver.cpp @@ -6,12 +6,14 @@ VprTimingGraphResolver::VprTimingGraphResolver(const AtomNetlist& netlist, const AtomLookup& netlist_lookup, const tatum::TimingGraph& timing_graph, const AnalysisDelayCalculator& delay_calc, - bool is_flat) + bool is_flat, + const BlkLocRegistry& blk_loc_registry) : netlist_(netlist) , netlist_lookup_(netlist_lookup) , timing_graph_(timing_graph) , delay_calc_(delay_calc) - , is_flat_(is_flat) {} + , is_flat_(is_flat) + , blk_loc_registry_(blk_loc_registry) {} std::string VprTimingGraphResolver::node_name(tatum::NodeId node) const { AtomPinId pin = netlist_lookup_.tnode_atom_pin(node); @@ -31,12 +33,13 @@ std::string VprTimingGraphResolver::node_type_name(tatum::NodeId node) const { //Detailed report consist of the aggregated reported with a breakdown of inter-block routing //Annotate primitive grid location, if known auto& atom_ctx = g_vpr_ctx.atom(); - auto& place_ctx = g_vpr_ctx.placement(); + auto& block_locs = blk_loc_registry_.block_locs(); ClusterBlockId cb = atom_ctx.lookup.atom_clb(blk); - if (cb && place_ctx.block_locs.count(cb)) { - int x = place_ctx.block_locs[cb].loc.x; - int y = place_ctx.block_locs[cb].loc.y; - name += " at (" + std::to_string(x) + "," + std::to_string(y) + ")"; + if (cb && block_locs.count(cb)) { + int x = block_locs[cb].loc.x; + int y = block_locs[cb].loc.y; + int layer = block_locs[cb].loc.layer; + name += " at (" + std::to_string(x) + ", " + std::to_string(y) + ", " + std::to_string(layer) + ")"; } if (detail_level() == e_timing_report_detail::DEBUG) { name += " tnode(" + std::to_string(size_t(node)) + ")"; diff --git a/vpr/src/timing/VprTimingGraphResolver.h b/vpr/src/timing/VprTimingGraphResolver.h index 8faea482d10..7bb9eb3ba6a 100644 --- a/vpr/src/timing/VprTimingGraphResolver.h +++ b/vpr/src/timing/VprTimingGraphResolver.h @@ -6,13 +6,16 @@ #include "atom_lookup.h" #include "AnalysisDelayCalculator.h" +class BlkLocRegistry; + class VprTimingGraphResolver : public tatum::TimingGraphNameResolver { public: VprTimingGraphResolver(const AtomNetlist& netlist, const AtomLookup& netlist_lookup, const tatum::TimingGraph& timing_graph, const AnalysisDelayCalculator& delay_calc, - bool is_flat); + bool is_flat, + const BlkLocRegistry& blk_loc_registry); std::string node_name(tatum::NodeId node) const override; std::string node_type_name(tatum::NodeId node) const override; @@ -34,6 +37,8 @@ class VprTimingGraphResolver : public tatum::TimingGraphNameResolver { const AnalysisDelayCalculator& delay_calc_; e_timing_report_detail detail_level_ = e_timing_report_detail::NETLIST; bool is_flat_; + ///@brief contains information about the placement of clustered blocks. + const BlkLocRegistry& blk_loc_registry_; }; #endif diff --git a/vpr/src/util/vpr_utils.cpp b/vpr/src/util/vpr_utils.cpp index 6f47cf100cb..0285a42a5da 100644 --- a/vpr/src/util/vpr_utils.cpp +++ b/vpr/src/util/vpr_utils.cpp @@ -18,6 +18,8 @@ #include "device_grid.h" #include "user_route_constraints.h" #include "re_cluster_util.h" +#include "placer_state.h" +#include "grid_block.h" /* This module contains subroutines that are used in several unrelated parts * * of VPR. They are VPR-specific utility routines. */ @@ -102,7 +104,7 @@ const t_model_ports* find_model_port(const t_model* model, const std::string& na } if (required) { - VPR_FATAL_ERROR(VPR_ERROR_ARCH, "Failed to find port '%s; on architecture modedl '%s'\n", name.c_str(), model->name); + VPR_FATAL_ERROR(VPR_ERROR_ARCH, "Failed to find port '%s; on architecture model '%s'\n", name.c_str(), model->name); } return nullptr; @@ -124,18 +126,19 @@ void sync_grid_to_blocks() { auto& device_ctx = g_vpr_ctx.device(); auto& device_grid = device_ctx.grid; - int num_layers = device_ctx.grid.get_num_layers(); + const int num_layers = device_ctx.grid.get_num_layers(); + + auto& grid_blocks = place_ctx.mutable_grid_blocks(); + auto& block_locs = place_ctx.block_locs(); /* Reset usage and allocate blocks list if needed */ - place_ctx.grid_blocks = GridBlock(device_grid.width(), - device_grid.height(), - device_ctx.grid.get_num_layers()); - auto& grid_blocks = place_ctx.grid_blocks; + grid_blocks = GridBlock(device_grid.width(), device_grid.height(), device_ctx.grid.get_num_layers()); + for (int layer_num = 0; layer_num < num_layers; layer_num++) { for (int x = 0; x < (int)device_grid.width(); ++x) { for (int y = 0; y < (int)device_grid.height(); ++y) { - const auto& type = device_ctx.grid.get_physical_type({x, y, layer_num}); + const t_physical_tile_type_ptr type = device_ctx.grid.get_physical_type({x, y, layer_num}); grid_blocks.initialized_grid_block_at_location({x, y, layer_num}, type->capacity); } } @@ -143,14 +146,14 @@ void sync_grid_to_blocks() { /* Go through each block */ auto& cluster_ctx = g_vpr_ctx.clustering(); - for (auto blk_id : cluster_ctx.clb_nlist.blocks()) { - const auto& blk_loc = place_ctx.block_locs[blk_id].loc; - int blk_x = place_ctx.block_locs[blk_id].loc.x; - int blk_y = place_ctx.block_locs[blk_id].loc.y; - int blk_z = place_ctx.block_locs[blk_id].loc.sub_tile; - int blk_layer = place_ctx.block_locs[blk_id].loc.layer; + for (ClusterBlockId blk_id : cluster_ctx.clb_nlist.blocks()) { + const auto& blk_loc = block_locs[blk_id].loc; + int blk_x = block_locs[blk_id].loc.x; + int blk_y = block_locs[blk_id].loc.y; + int blk_z = block_locs[blk_id].loc.sub_tile; + int blk_layer = block_locs[blk_id].loc.layer; - auto type = physical_tile_type(blk_id); + auto type = physical_tile_type(blk_loc); /* Check range of block coords */ if (blk_x < 0 || blk_y < 0 @@ -170,8 +173,7 @@ void sync_grid_to_blocks() { } /* Check already in use */ - if ((EMPTY_BLOCK_ID != place_ctx.grid_blocks.block_at_location(blk_loc)) - && (INVALID_BLOCK_ID != place_ctx.grid_blocks.block_at_location(blk_loc))) { + if (grid_blocks.block_at_location(blk_loc)) { VPR_FATAL_ERROR(VPR_ERROR_PLACE, "Location (%d, %d, %d, %d) is used more than once.\n", blk_x, blk_y, blk_z, blk_layer); } @@ -184,18 +186,9 @@ void sync_grid_to_blocks() { /* Set the block */ for (int width = 0; width < type->width; ++width) { for (int height = 0; height < type->height; ++height) { - place_ctx.grid_blocks.set_block_at_location({blk_x + width, - blk_y + height, - blk_z, - blk_layer}, - blk_id); - place_ctx.grid_blocks.set_usage({blk_x + width, - blk_y + height, - blk_layer}, - place_ctx.grid_blocks.get_usage({blk_x + width, - blk_y + height, - blk_layer}) - + 1); + grid_blocks.set_block_at_location({blk_x + width, blk_y + height, blk_z, blk_layer}, blk_id); + grid_blocks.increment_usage({blk_x + width, blk_y + height, blk_layer}); + VTR_ASSERT(device_ctx.grid.get_width_offset({blk_x + width, blk_y + height, blk_layer}) == width); VTR_ASSERT(device_ctx.grid.get_height_offset({blk_x + width, blk_y + height, blk_layer}) == height); } @@ -523,39 +516,41 @@ bool is_empty_type(t_logical_block_type_ptr type) { return type == device_ctx.EMPTY_LOGICAL_BLOCK_TYPE; } -t_physical_tile_type_ptr physical_tile_type(ClusterBlockId blk) { - auto& place_ctx = g_vpr_ctx.placement(); +t_physical_tile_type_ptr physical_tile_type(t_pl_loc loc) { auto& device_ctx = g_vpr_ctx.device(); - auto block_loc = place_ctx.block_locs[blk].loc; - - return device_ctx.grid.get_physical_type({block_loc.x, block_loc.y, block_loc.layer}); + return device_ctx.grid.get_physical_type({loc.x, loc.y, loc.layer}); } t_physical_tile_type_ptr physical_tile_type(AtomBlockId atom_blk) { auto& atom_look_up = g_vpr_ctx.atom().lookup; + auto& block_locs = g_vpr_ctx.placement().block_locs(); - auto cluster_blk = atom_look_up.atom_clb(atom_blk); + ClusterBlockId cluster_blk = atom_look_up.atom_clb(atom_blk); VTR_ASSERT(cluster_blk != ClusterBlockId::INVALID()); - return physical_tile_type(cluster_blk); + return physical_tile_type(block_locs[cluster_blk].loc); } t_physical_tile_type_ptr physical_tile_type(ParentBlockId blk_id, bool is_flat) { + auto& block_locs = g_vpr_ctx.placement().block_locs(); + if (is_flat) { return physical_tile_type(convert_to_atom_block_id(blk_id)); } else { - return physical_tile_type(convert_to_cluster_block_id(blk_id)); + ClusterBlockId cluster_blk_id = convert_to_cluster_block_id(blk_id); + t_pl_loc block_loc = block_locs[cluster_blk_id].loc; + return physical_tile_type(block_loc); } } -int get_sub_tile_index(ClusterBlockId blk) { - auto& place_ctx = g_vpr_ctx.placement(); +int get_sub_tile_index(ClusterBlockId blk, + const vtr::vector_map& block_locs) { auto& device_ctx = g_vpr_ctx.device(); auto& cluster_ctx = g_vpr_ctx.clustering(); auto logical_block = cluster_ctx.clb_nlist.block_type(blk); - auto block_loc = place_ctx.block_locs[blk]; + auto block_loc = block_locs[blk]; auto loc = block_loc.loc; int sub_tile_coordinate = loc.sub_tile; @@ -575,6 +570,11 @@ int get_sub_tile_index(ClusterBlockId blk) { VPR_THROW(VPR_ERROR_PLACE, "The Block Id %d has been placed in an impossible sub tile location.\n", blk); } +int get_sub_tile_index(ClusterBlockId blk) { + auto& block_locs = g_vpr_ctx.placement().block_locs(); + return get_sub_tile_index(blk, block_locs); +} + /* Each node in the pb_graph for a top-level pb_type can be uniquely identified * by its pins. Since the pins in a cluster of a certain type are densely indexed, * this function will find the pin index (int pin_count_in_cluster) of the first @@ -606,16 +606,17 @@ int get_unique_pb_graph_node_id(const t_pb_graph_node* pb_graph_node) { t_class_range get_class_range_for_block(const ClusterBlockId blk_id) { /* Assumes that the placement has been done so each block has a set of pins allocated to it */ - auto& place_ctx = g_vpr_ctx.placement(); + auto& block_locs = g_vpr_ctx.placement().block_locs(); - auto type = physical_tile_type(blk_id); + t_pl_loc block_loc = block_locs[blk_id].loc; + auto type = physical_tile_type(block_loc); auto sub_tile = type->sub_tiles[get_sub_tile_index(blk_id)]; int sub_tile_capacity = sub_tile.capacity.total(); auto class_range = sub_tile.class_range; int class_range_total = class_range.high - class_range.low + 1; VTR_ASSERT((class_range_total) % sub_tile_capacity == 0); - int rel_capacity = place_ctx.block_locs[blk_id].loc.sub_tile - sub_tile.capacity.low; + int rel_capacity = block_locs[blk_id].loc.sub_tile - sub_tile.capacity.low; t_class_range abs_class_range; abs_class_range.low = rel_capacity * (class_range_total / sub_tile_capacity) + class_range.low; @@ -627,13 +628,9 @@ t_class_range get_class_range_for_block(const ClusterBlockId blk_id) { t_class_range get_class_range_for_block(const AtomBlockId atom_blk) { auto& atom_look_up = g_vpr_ctx.atom().lookup; - auto cluster_blk = atom_look_up.atom_clb(atom_blk); + ClusterBlockId cluster_blk = atom_look_up.atom_clb(atom_blk); - t_physical_tile_type_ptr physical_tile; - const t_sub_tile* sub_tile; - int sub_tile_cap; - t_logical_block_type_ptr logical_block; - std::tie(physical_tile, sub_tile, sub_tile_cap, logical_block) = get_cluster_blk_physical_spec(cluster_blk); + auto [physical_tile, sub_tile, sub_tile_cap, logical_block] = get_cluster_blk_physical_spec(cluster_blk); const t_pb_graph_node* pb_graph_node = atom_look_up.atom_pb_graph_node(atom_blk); VTR_ASSERT(pb_graph_node != nullptr); return get_pb_graph_node_class_physical_range(physical_tile, @@ -651,23 +648,24 @@ t_class_range get_class_range_for_block(const ParentBlockId blk_id, bool is_flat } } -void get_pin_range_for_block(const ClusterBlockId blk_id, - int* pin_low, - int* pin_high) { +std::pair get_pin_range_for_block(const ClusterBlockId blk_id) { /* Assumes that the placement has been done so each block has a set of pins allocated to it */ - auto& place_ctx = g_vpr_ctx.placement(); + auto& block_locs = g_vpr_ctx.placement().block_locs(); - auto type = physical_tile_type(blk_id); + t_pl_loc block_loc = block_locs[blk_id].loc; + auto type = physical_tile_type(block_loc); auto sub_tile = type->sub_tiles[get_sub_tile_index(blk_id)]; int sub_tile_capacity = sub_tile.capacity.total(); VTR_ASSERT(sub_tile.num_phy_pins % sub_tile_capacity == 0); - int rel_capacity = place_ctx.block_locs[blk_id].loc.sub_tile - sub_tile.capacity.low; + int rel_capacity = block_loc.sub_tile - sub_tile.capacity.low; int rel_pin_low = rel_capacity * (sub_tile.num_phy_pins / sub_tile_capacity); int rel_pin_high = (rel_capacity + 1) * (sub_tile.num_phy_pins / sub_tile_capacity) - 1; - *pin_low = sub_tile.sub_tile_to_tile_pin_indices[rel_pin_low]; - *pin_high = sub_tile.sub_tile_to_tile_pin_indices[rel_pin_high]; + int pin_low = sub_tile.sub_tile_to_tile_pin_indices[rel_pin_low]; + int pin_high = sub_tile.sub_tile_to_tile_pin_indices[rel_pin_high]; + + return {pin_low, pin_high}; } t_physical_tile_type_ptr find_tile_type_by_name(const std::string& name, const std::vector& types) { @@ -692,7 +690,7 @@ t_block_loc get_block_loc(const ParentBlockId& block_id, bool is_flat) { } VTR_ASSERT(cluster_block_id != ClusterBlockId::INVALID()); - auto blk_loc = place_ctx.block_locs[cluster_block_id]; + auto blk_loc = place_ctx.block_locs()[cluster_block_id]; return blk_loc; } @@ -702,7 +700,10 @@ int get_block_num_class(const ParentBlockId& block_id, bool is_flat) { return get_tile_class_max_ptc(type, is_flat); } -int get_block_pin_class_num(const ParentBlockId& block_id, const ParentPinId& pin_id, bool is_flat) { +int get_block_pin_class_num(const ParentBlockId block_id, const ParentPinId pin_id, bool is_flat) { + const auto& blk_loc_registry = g_vpr_ctx.placement().blk_loc_registry(); + auto& block_locs = blk_loc_registry.block_locs(); + int class_num; if (is_flat) { @@ -710,9 +711,10 @@ int get_block_pin_class_num(const ParentBlockId& block_id, const ParentPinId& pi class_num = get_atom_pin_class_num(atom_pin_id); } else { ClusterBlockId cluster_block_id = convert_to_cluster_block_id(block_id); + t_pl_loc block_loc = block_locs[cluster_block_id].loc; ClusterPinId cluster_pin_id = convert_to_cluster_pin_id(pin_id); - auto type = physical_tile_type(cluster_block_id); - int phys_pin = tile_pin_index(cluster_pin_id); + auto type = physical_tile_type(block_loc); + int phys_pin = blk_loc_registry.tile_pin_index(cluster_pin_id); class_num = get_class_num_from_pin_physical_num(type, phys_pin); } @@ -1335,7 +1337,7 @@ static void load_pin_id_to_pb_mapping_rec(t_pb* cur_pb, t_pb** pin_id_to_pb_mapp */ void free_pin_id_to_pb_mapping(vtr::vector& pin_id_to_pb_mapping) { auto& cluster_ctx = g_vpr_ctx.clustering(); - for (auto blk_id : cluster_ctx.clb_nlist.blocks()) { + for (ClusterBlockId blk_id : cluster_ctx.clb_nlist.blocks()) { delete[] pin_id_to_pb_mapping[blk_id]; } pin_id_to_pb_mapping.clear(); @@ -1343,8 +1345,8 @@ void free_pin_id_to_pb_mapping(vtr::vector& pin_id_to_pb std::tuple get_cluster_blk_physical_spec(ClusterBlockId cluster_blk_id) { auto& grid = g_vpr_ctx.device().grid; - auto& place_ctx = g_vpr_ctx.placement(); - auto& loc = place_ctx.block_locs[cluster_blk_id].loc; + auto& block_locs = g_vpr_ctx.placement().block_locs(); + auto& loc = block_locs[cluster_blk_id].loc; int cap = loc.sub_tile; const auto& physical_type = grid.get_physical_type({loc.x, loc.y, loc.layer}); VTR_ASSERT(grid.get_width_offset({loc.x, loc.y, loc.layer}) == 0 && grid.get_height_offset(t_physical_tile_loc(loc.x, loc.y, loc.layer)) == 0); @@ -1363,12 +1365,7 @@ std::vector get_cluster_internal_class_pairs(const AtomLookup& atom_lookup, ClusterBlockId cluster_block_id) { std::vector class_num_vec; - t_physical_tile_type_ptr physical_tile; - const t_sub_tile* sub_tile; - int rel_cap; - t_logical_block_type_ptr logical_block; - - std::tie(physical_tile, sub_tile, rel_cap, logical_block) = get_cluster_blk_physical_spec(cluster_block_id); + auto [physical_tile, sub_tile, rel_cap, logical_block] = get_cluster_blk_physical_spec(cluster_block_id); class_num_vec.reserve(physical_tile->primitive_class_inf.size()); const auto& cluster_atoms = cluster_to_atoms(cluster_block_id); @@ -1392,12 +1389,7 @@ std::vector get_cluster_internal_pins(ClusterBlockId cluster_blk_id) { auto& cluster_net_list = g_vpr_ctx.clustering().clb_nlist; - t_physical_tile_type_ptr physical_tile; - const t_sub_tile* sub_tile; - int rel_cap; - t_logical_block_type_ptr logical_block; - - std::tie(physical_tile, sub_tile, rel_cap, logical_block) = get_cluster_blk_physical_spec(cluster_blk_id); + auto [physical_tile, sub_tile, rel_cap, logical_block] = get_cluster_blk_physical_spec(cluster_blk_id); internal_pins.reserve(logical_block->pin_logical_num_to_pb_pin_mapping.size()); std::list internal_pbs; @@ -1564,30 +1556,27 @@ void revalid_molecules(const t_pb* pb) { atom_ctx.lookup.set_atom_clb(blk_id, ClusterBlockId::INVALID()); atom_ctx.lookup.set_atom_pb(blk_id, nullptr); - auto rng = atom_ctx.atom_molecules.equal_range(blk_id); - for (const auto& kv : vtr::make_range(rng.first, rng.second)) { - t_pack_molecule* cur_molecule = kv.second; - if (cur_molecule->valid == false) { - int i; - for (i = 0; i < get_array_size_of_molecule(cur_molecule); i++) { - if (cur_molecule->atom_block_ids[i]) { - if (atom_ctx.lookup.atom_clb(cur_molecule->atom_block_ids[i]) != ClusterBlockId::INVALID()) { - break; - } + t_pack_molecule* cur_molecule = atom_ctx.prepacker.get_atom_molecule(blk_id); + if (cur_molecule->valid == false) { + int i; + for (i = 0; i < get_array_size_of_molecule(cur_molecule); i++) { + if (cur_molecule->atom_block_ids[i]) { + if (atom_ctx.lookup.atom_clb(cur_molecule->atom_block_ids[i]) != ClusterBlockId::INVALID()) { + break; } } - /* All atom blocks are open for this molecule, place back in queue */ - if (i == get_array_size_of_molecule(cur_molecule)) { - cur_molecule->valid = true; - // when invalidating a molecule check if it's a chain molecule - // that is part of a long chain. If so, check if this molecule - // have modified the chain_id value based on the stale packing - // then reset the chain id and the first packed molecule pointer - // this is packing is being reset - if (cur_molecule->is_chain() && cur_molecule->chain_info->is_long_chain && cur_molecule->chain_info->first_packed_molecule == cur_molecule) { - cur_molecule->chain_info->first_packed_molecule = nullptr; - cur_molecule->chain_info->chain_id = -1; - } + } + /* All atom blocks are open for this molecule, place back in queue */ + if (i == get_array_size_of_molecule(cur_molecule)) { + cur_molecule->valid = true; + // when invalidating a molecule check if it's a chain molecule + // that is part of a long chain. If so, check if this molecule + // have modified the chain_id value based on the stale packing + // then reset the chain id and the first packed molecule pointer + // this is packing is being reset + if (cur_molecule->is_chain() && cur_molecule->chain_info->is_long_chain && cur_molecule->chain_info->first_packed_molecule == cur_molecule) { + cur_molecule->chain_info->first_packed_molecule = nullptr; + cur_molecule->chain_info->chain_id = -1; } } } @@ -2061,82 +2050,7 @@ void print_switch_usage() { delete[] inward_switch_inf; } -/* - * Motivation: - * to see what portion of long wires are utilized - * potentially a good measure for router look ahead quality - */ -/* - * void print_usage_by_wire_length() { - * map used_wire_count; - * map total_wire_count; - * auto& device_ctx = g_vpr_ctx.device(); - * for (const RRNodeId& rr_id : device_ctx.rr_graph.nodes()){ - * if (rr_graph.node_type(rr_id) == CHANX || rr_graph.node_type(rr_id) == CHANY) { - * //int length = abs(rr_graph.node_xhigh(rr_id) + rr_graph.node_yhigh(rr_id) - * // - rr_graph.node_xlow(rr_id) - rr_graph.node_ylow(rr_id)); - * int length = device_ctx.rr_nodes[(size_t)rr_id].get_length(); - * if (rr_node_route_inf[(size_t)rr_id].occ() > 0) { - * if (used_wire_count.count(length) == 0) - * used_wire_count[length] = 0; - * used_wire_count[length] ++; - * } - * if (total_wire_count.count(length) == 0) - * total_wire_count[length] = 0; - * total_wire_count[length] ++; - * } - * } - * int total_wires = 0; - * map::iterator itr; - * for (itr = total_wire_count.begin(); itr != total_wire_count.end(); itr++) { - * total_wires += itr->second; - * } - * VTR_LOG("\n\t-=-=-=-=-=-=-=-=-=-=- wire usage stats -=-=-=-=-=-=-=-=-=-=-\n"); - * for (itr = total_wire_count.begin(); itr != total_wire_count.end(); itr++) - * VTR_LOG("\ttotal number: wire of length %d, ratio to all length of wires: %g\n", itr->first, ((float)itr->second) / total_wires); - * for (itr = used_wire_count.begin(); itr != used_wire_count.end(); itr++) { - * float ratio_to_same_type_total = ((float)itr->second) / total_wire_count[itr->first]; - * float ratio_to_all_type_total = ((float)itr->second) / total_wires; - * VTR_LOG("\t\tratio to same type of wire: %g\tratio to all types of wire: %g\n", ratio_to_same_type_total, ratio_to_all_type_total); - * } - * VTR_LOG("\n\t-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n"); - * used_wire_count.clear(); - * total_wire_count.clear(); - * } - */ -void place_sync_external_block_connections(ClusterBlockId iblk) { - auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& clb_nlist = cluster_ctx.clb_nlist; - auto& place_ctx = g_vpr_ctx.mutable_placement(); - - auto physical_tile = physical_tile_type(iblk); - auto logical_block = clb_nlist.block_type(iblk); - - int sub_tile_index = get_sub_tile_index(iblk); - auto sub_tile = physical_tile->sub_tiles[sub_tile_index]; - - VTR_ASSERT(sub_tile.num_phy_pins % sub_tile.capacity.total() == 0); - - int max_num_block_pins = sub_tile.num_phy_pins / sub_tile.capacity.total(); - /* Logical location and physical location is offset by z * max_num_block_pins */ - - int rel_capacity = place_ctx.block_locs[iblk].loc.sub_tile - sub_tile.capacity.low; - - for (auto pin : clb_nlist.block_pins(iblk)) { - int logical_pin_index = clb_nlist.pin_logical_index(pin); - int sub_tile_pin_index = get_sub_tile_physical_pin(sub_tile_index, physical_tile, logical_block, logical_pin_index); - - int new_physical_pin_index = sub_tile.sub_tile_to_tile_pin_indices[sub_tile_pin_index + rel_capacity * max_num_block_pins]; - - auto result = place_ctx.physical_pins.find(pin); - if (result != place_ctx.physical_pins.end()) { - place_ctx.physical_pins[pin] = new_physical_pin_index; - } else { - place_ctx.physical_pins.insert(pin, new_physical_pin_index); - } - } -} int max_pins_per_grid_tile() { auto& device_ctx = g_vpr_ctx.device(); @@ -2149,21 +2063,6 @@ int max_pins_per_grid_tile() { return max_pins; } -int net_pin_to_tile_pin_index(const ClusterNetId net_id, int net_pin_index) { - auto& cluster_ctx = g_vpr_ctx.clustering(); - - // Get the logical pin index of pin within it's logical block type - auto pin_id = cluster_ctx.clb_nlist.net_pin(net_id, net_pin_index); - - return tile_pin_index(pin_id); -} - -int tile_pin_index(const ClusterPinId pin) { - auto& place_ctx = g_vpr_ctx.placement(); - - return place_ctx.physical_pins[pin]; -} - int get_atom_pin_class_num(const AtomPinId atom_pin_id) { auto& atom_look_up = g_vpr_ctx.atom().lookup; auto& atom_net_list = g_vpr_ctx.atom().nlist; @@ -2171,11 +2070,7 @@ int get_atom_pin_class_num(const AtomPinId atom_pin_id) { auto atom_blk_id = atom_net_list.pin_block(atom_pin_id); auto cluster_block_id = atom_look_up.atom_clb(atom_blk_id); - t_physical_tile_type_ptr physical_type; - const t_sub_tile* sub_tile; - int sub_tile_rel_cap; - t_logical_block_type_ptr logical_block; - std::tie(physical_type, sub_tile, sub_tile_rel_cap, logical_block) = get_cluster_blk_physical_spec(cluster_block_id); + auto [physical_type, sub_tile, sub_tile_rel_cap, logical_block] = get_cluster_blk_physical_spec(cluster_block_id); auto pb_graph_pin = atom_look_up.atom_pin_pb_graph_pin(atom_pin_id); int pin_physical_num = -1; pin_physical_num = get_pb_pin_physical_num(physical_type, sub_tile, logical_block, sub_tile_rel_cap, pb_graph_pin); @@ -2197,7 +2092,7 @@ t_physical_tile_port find_tile_port_by_name(t_physical_tile_type_ptr type, const } void pretty_print_uint(const char* prefix, size_t value, int num_digits, int scientific_precision) { - //Print as integer if it will fit in the width, other wise scientific + //Print as integer if it will fit in the width, otherwise scientific if (value <= std::pow(10, num_digits) - 1) { //Direct VTR_LOG("%s%*zu", prefix, num_digits, value); @@ -2376,7 +2271,7 @@ std::vector get_cluster_netlist_intra_tile_classes_at_loc(int layer, const auto& place_ctx = g_vpr_ctx.placement(); const auto& atom_lookup = g_vpr_ctx.atom().lookup; - const auto& grid_block = place_ctx.grid_blocks; + const auto& grid_block = place_ctx.grid_blocks(); class_num_vec.reserve(physical_type->primitive_class_inf.size()); @@ -2386,7 +2281,7 @@ std::vector get_cluster_netlist_intra_tile_classes_at_loc(int layer, continue; } auto cluster_blk_id = grid_block.block_at_location({i, j, abs_cap, layer}); - VTR_ASSERT(cluster_blk_id != ClusterBlockId::INVALID() || cluster_blk_id != EMPTY_BLOCK_ID); + VTR_ASSERT(cluster_blk_id != ClusterBlockId::INVALID()); auto primitive_classes = get_cluster_internal_class_pairs(atom_lookup, cluster_blk_id); @@ -2406,8 +2301,8 @@ std::vector get_cluster_netlist_intra_tile_pins_at_loc(const int layer, const vtr::vector& pin_chains, const vtr::vector>& pin_chains_num, t_physical_tile_type_ptr physical_type) { - auto& place_ctx = g_vpr_ctx.placement(); - auto grid_block = place_ctx.grid_blocks; + const auto& place_ctx = g_vpr_ctx.placement(); + const auto& grid_block = place_ctx.grid_blocks(); std::vector pin_num_vec; pin_num_vec.reserve(get_tile_num_internal_pin(physical_type)); @@ -2419,7 +2314,7 @@ std::vector get_cluster_netlist_intra_tile_pins_at_loc(const int layer, continue; } auto cluster_blk_id = grid_block.block_at_location({i, j, abs_cap, layer}); - VTR_ASSERT(cluster_blk_id != ClusterBlockId::INVALID() && cluster_blk_id != EMPTY_BLOCK_ID); + VTR_ASSERT(cluster_blk_id != ClusterBlockId::INVALID()); cluster_internal_pins = get_cluster_internal_pins(cluster_blk_id); const auto& cluster_pin_chains = pin_chains_num[cluster_blk_id]; diff --git a/vpr/src/util/vpr_utils.h b/vpr/src/util/vpr_utils.h index 9382660142c..24da4489b6b 100644 --- a/vpr/src/util/vpr_utils.h +++ b/vpr/src/util/vpr_utils.h @@ -5,17 +5,18 @@ #include #include "vpr_types.h" +#include "vtr_vector.h" + #include "atom_netlist.h" #include "clustered_netlist.h" #include "netlist.h" -#include "vtr_vector.h" - #include "arch_util.h" #include "physical_types_util.h" #include "rr_graph_utils.h" #include "vpr_constraints.h" class DeviceGrid; +class PlacerState; const t_model* find_model(const t_model* models, const std::string& name, bool required = true); const t_model_ports* find_model_port(const t_model* model, const std::string& name, bool required = true); @@ -27,14 +28,21 @@ bool is_clb_external_pin(ClusterBlockId blk_id, int pb_pin_id); bool is_empty_type(t_physical_tile_type_ptr type); bool is_empty_type(t_logical_block_type_ptr type); -//Returns the corresponding physical type given the logical type as parameter -t_physical_tile_type_ptr physical_tile_type(ClusterBlockId blk); +/** + * @brief Returns the corresponding physical type given the location in the grid. + * @param loc The block location in the grid. + * @return The physical tile type of the given location. + */ +t_physical_tile_type_ptr physical_tile_type(t_pl_loc loc); t_physical_tile_type_ptr physical_tile_type(AtomBlockId atom_blk); t_physical_tile_type_ptr physical_tile_type(ParentBlockId blk_id, bool is_flat); //Returns the sub tile corresponding to the logical block location within a physical type +int get_sub_tile_index(ClusterBlockId blk, + const vtr::vector_map& block_locs); + int get_sub_tile_index(ClusterBlockId blk); int get_unique_pb_graph_node_id(const t_pb_graph_node* pb_graph_node); @@ -47,17 +55,21 @@ t_class_range get_class_range_for_block(const AtomBlockId atom_blk); t_class_range get_class_range_for_block(const ParentBlockId blk_id, bool is_flat); -//Returns the physical pin range relative to a block id. This must be called after placement -//as the block id is used to retrieve the information of the used physical tile. -void get_pin_range_for_block(const ClusterBlockId blk_id, - int* pin_low, - int* pin_high); +// +/** + * @brief Returns the physical pin range relative to a block id. This must be called after placement + * as the block id is used to retrieve the information of the used physical tile. + * + * @param blk_id The unique ID of a clustered block whose pin range is desired. + * @return std::pair --> (pin_low, pin_high) + */ +std::pair get_pin_range_for_block(const ClusterBlockId blk_id); t_block_loc get_block_loc(const ParentBlockId& block_id, bool is_flat); int get_block_num_class(const ParentBlockId& block_id, bool is_flat); -int get_block_pin_class_num(const ParentBlockId& block_id, const ParentPinId& pin_id, bool is_flat); +int get_block_pin_class_num(const ParentBlockId block_id, const ParentPinId pin_id, bool is_flat); template inline ClusterNetId convert_to_cluster_net_id(T id) { @@ -213,33 +225,6 @@ void print_usage_by_wire_length(); AtomBlockId find_memory_sibling(const t_pb* pb); -/** - * @brief Syncs the logical block pins corresponding to the input iblk with the corresponding chosen physical tile - * @param iblk cluster block ID to sync within the assigned physical tile - * - * This routine updates the physical pins vector of the place context after the placement step - * to syncronize the pins related to the logical block with the actual connection interface of - * the belonging physical tile with the RR graph. - * - * This step is required as the logical block can be placed at any compatible sub tile locations - * within a physical tile. - * Given that it is possible to have equivalent logical blocks within a specific sub tile, with - * a different subset of IO pins, the various pins offsets must be correctly computed and assigned - * to the physical pins vector, so that, when the net RR terminals are computed, the correct physical - * tile IO pins are selected. - * - * This routine uses the x,y and sub_tile coordinates of the clb netlist, and expects those to place each netlist block - * at a legal location that can accomodate it. - * It does not check for overuse of locations, therefore it can be used with placements that have resource overuse. - */ -void place_sync_external_block_connections(ClusterBlockId iblk); - -//Returns the physical pin of the tile, related to the given ClusterNedId, and the net pin index -int net_pin_to_tile_pin_index(const ClusterNetId net_id, int net_pin_index); - -//Returns the physical pin of the tile, related to the given ClusterPinId -int tile_pin_index(const ClusterPinId pin); - int get_atom_pin_class_num(const AtomPinId atom_pin_id); int max_pins_per_grid_tile(); diff --git a/vpr/test/test_connection_router.cpp b/vpr/test/test_connection_router.cpp index 89ffce30577..1bc208bf3ba 100644 --- a/vpr/test/test_connection_router.cpp +++ b/vpr/test/test_connection_router.cpp @@ -193,8 +193,7 @@ TEST_CASE("connection_router", "[vpr]") { vpr_setup); auto& atom_ctx = g_vpr_ctx.mutable_atom(); - free_pack_molecules(atom_ctx.list_of_pack_molecules.release()); - atom_ctx.atom_molecules.clear(); + atom_ctx.prepacker.reset(); } } // namespace diff --git a/vpr/test/test_noc_place_utils.cpp b/vpr/test/test_noc_place_utils.cpp index 4633996458d..bcbba60a45e 100644 --- a/vpr/test/test_noc_place_utils.cpp +++ b/vpr/test/test_noc_place_utils.cpp @@ -29,11 +29,12 @@ TEST_CASE("test_initial_noc_placement", "[noc_place_utils]") { // get global datastructures auto& noc_ctx = g_vpr_ctx.mutable_noc(); auto& place_ctx = g_vpr_ctx.mutable_placement(); + auto& block_locs = place_ctx.mutable_block_locs(); // start by deleting any global datastructures (this is so that we don't have corruption from previous tests) noc_ctx.noc_model.clear_noc(); noc_ctx.noc_traffic_flows_storage.clear_traffic_flows(); - place_ctx.block_locs.clear(); + block_locs.clear(); // store the reference to device grid with // the grid width will be the size of the noc mesh @@ -112,7 +113,7 @@ TEST_CASE("test_initial_noc_placement", "[noc_place_utils]") { hard_router_block.get_router_layer_position()); // now add the cluster and its placed location to the placement datastructures - place_ctx.block_locs.insert(ClusterBlockId(cluster_block_number), current_cluster_block_location); + block_locs.insert(ClusterBlockId(cluster_block_number), current_cluster_block_location); } // similar parameters for all traffic flows @@ -194,7 +195,7 @@ TEST_CASE("test_initial_noc_placement", "[noc_place_utils]") { } // now call the test function - initial_noc_routing({}); + initial_noc_routing({}, block_locs); // now verify the function by comparing the link bandwidths in the noc model (should have been updated by the test function) to the golden set int number_of_links = golden_link_bandwidths.size(); @@ -226,11 +227,12 @@ TEST_CASE("test_initial_comp_cost_functions", "[noc_place_utils]") { // get global datastructures auto& noc_ctx = g_vpr_ctx.mutable_noc(); auto& place_ctx = g_vpr_ctx.mutable_placement(); + auto& block_locs = place_ctx.mutable_block_locs(); // start by deleting any global datastructures (this is so that we don't have corruption from previous tests) noc_ctx.noc_model.clear_noc(); noc_ctx.noc_traffic_flows_storage.clear_traffic_flows(); - place_ctx.block_locs.clear(); + block_locs.clear(); // store the reference to device grid with // the grid width will be the size of the noc mesh @@ -309,7 +311,7 @@ TEST_CASE("test_initial_comp_cost_functions", "[noc_place_utils]") { hard_router_block.get_router_layer_position()); // now add the cluster and its placed location to the placement datastructures - place_ctx.block_locs.insert(ClusterBlockId(cluster_block_number), current_cluster_block_location); + block_locs.insert(ClusterBlockId(cluster_block_number), current_cluster_block_location); } noc_ctx.noc_model.set_noc_link_latency(1); @@ -389,7 +391,7 @@ TEST_CASE("test_initial_comp_cost_functions", "[noc_place_utils]") { // assume this works // this is needed to set up the global noc packet router and also global datastructures - initial_noc_routing({}); + initial_noc_routing({}, block_locs); SECTION("test_comp_noc_aggregate_bandwidth_cost") { //initialize all the cost calculator datastructures @@ -500,11 +502,12 @@ TEST_CASE("test_find_affected_noc_routers_and_update_noc_costs, test_commit_noc_ // get global datastructures auto& noc_ctx = g_vpr_ctx.mutable_noc(); auto& place_ctx = g_vpr_ctx.mutable_placement(); + auto& block_locs = place_ctx.mutable_block_locs(); // start by deleting any global datastructures (this is so that we don't have corruption from previous tests) noc_ctx.noc_model.clear_noc(); noc_ctx.noc_traffic_flows_storage.clear_traffic_flows(); - place_ctx.block_locs.clear(); + block_locs.clear(); // store the reference to device grid with // the grid width will be the size of the noc mesh @@ -592,7 +595,7 @@ TEST_CASE("test_find_affected_noc_routers_and_update_noc_costs, test_commit_noc_ router_where_cluster_is_placed.push_back((NocRouterId)cluster_block_number); // now add the cluster and its placed location to the placement datastructures - place_ctx.block_locs.insert(ClusterBlockId(cluster_block_number), current_cluster_block_location); + block_locs.insert(ClusterBlockId(cluster_block_number), current_cluster_block_location); } // similar parameters for all traffic flows @@ -676,7 +679,7 @@ TEST_CASE("test_find_affected_noc_routers_and_update_noc_costs, test_commit_noc_ // assume this works // this is needed to set up the global noc packet router and also global datastructures - initial_noc_routing({}); + initial_noc_routing({}, block_locs); // datastructure below will store the bandwidth usages of all the links // and will be updated throughout this test. @@ -776,8 +779,8 @@ TEST_CASE("test_find_affected_noc_routers_and_update_noc_costs, test_commit_noc_ router_where_cluster_is_placed[swap_router_block_two] = router_first_swap_cluster_location; // now move the blocks in the placement datastructures - place_ctx.block_locs[swap_router_block_one].loc = blocks_affected.moved_blocks[0].new_loc; - place_ctx.block_locs[swap_router_block_two].loc = blocks_affected.moved_blocks[1].new_loc; + block_locs[swap_router_block_one].loc = blocks_affected.moved_blocks[0].new_loc; + block_locs[swap_router_block_two].loc = blocks_affected.moved_blocks[1].new_loc; // get all the associated traffic flows of the moved cluster blocks const std::vector& assoc_traffic_flows_block_one = noc_ctx.noc_traffic_flows_storage.get_traffic_flows_associated_to_router_block(swap_router_block_one); @@ -866,7 +869,7 @@ TEST_CASE("test_find_affected_noc_routers_and_update_noc_costs, test_commit_noc_ NocCostTerms delta_cost; // call the test function - find_affected_noc_routers_and_update_noc_costs(blocks_affected, delta_cost); + find_affected_noc_routers_and_update_noc_costs(blocks_affected, delta_cost, block_locs); // update the test noc cost terms based on the cost changes found by the test functions test_noc_costs.aggregate_bandwidth += delta_cost.aggregate_bandwidth; @@ -932,8 +935,8 @@ TEST_CASE("test_find_affected_noc_routers_and_update_noc_costs, test_commit_noc_ router_where_cluster_is_placed[swap_router_block_two] = router_first_swap_cluster_location; // now move the blocks in the placement datastructures - place_ctx.block_locs[swap_router_block_one].loc = blocks_affected.moved_blocks[0].new_loc; - place_ctx.block_locs[swap_router_block_two].loc = blocks_affected.moved_blocks[1].new_loc; + block_locs[swap_router_block_one].loc = blocks_affected.moved_blocks[0].new_loc; + block_locs[swap_router_block_two].loc = blocks_affected.moved_blocks[1].new_loc; // get all the associated traffic flows of the moved cluster blocks const std::vector& assoc_traffic_flows_block_one = noc_ctx.noc_traffic_flows_storage.get_traffic_flows_associated_to_router_block(swap_router_block_one); @@ -1014,7 +1017,7 @@ TEST_CASE("test_find_affected_noc_routers_and_update_noc_costs, test_commit_noc_ NocCostTerms delta_cost; // call the test function - find_affected_noc_routers_and_update_noc_costs(blocks_affected, delta_cost); + find_affected_noc_routers_and_update_noc_costs(blocks_affected, delta_cost, block_locs); // update the test noc cost terms based on the cost changes found by the test functions test_noc_costs.aggregate_bandwidth += delta_cost.aggregate_bandwidth; @@ -1068,8 +1071,8 @@ TEST_CASE("test_find_affected_noc_routers_and_update_noc_costs, test_commit_noc_ router_where_cluster_is_placed[swap_router_block_two] = router_first_swap_cluster_location; // now move the blocks in the placement datastructures - place_ctx.block_locs[swap_router_block_one].loc = blocks_affected.moved_blocks[0].new_loc; - place_ctx.block_locs[swap_router_block_two].loc = blocks_affected.moved_blocks[1].new_loc; + block_locs[swap_router_block_one].loc = blocks_affected.moved_blocks[0].new_loc; + block_locs[swap_router_block_two].loc = blocks_affected.moved_blocks[1].new_loc; // get all the associated traffic flows of the moved cluster blocks // remember that the first cluster block doesn't have any traffic flows associated to it @@ -1115,7 +1118,7 @@ TEST_CASE("test_find_affected_noc_routers_and_update_noc_costs, test_commit_noc_ delta_cost = NocCostTerms(); // call the test function - find_affected_noc_routers_and_update_noc_costs(blocks_affected, delta_cost); + find_affected_noc_routers_and_update_noc_costs(blocks_affected, delta_cost, block_locs); // update the test noc cost terms based on the cost changes found by the test functions test_noc_costs.aggregate_bandwidth += delta_cost.aggregate_bandwidth; @@ -1171,8 +1174,8 @@ TEST_CASE("test_find_affected_noc_routers_and_update_noc_costs, test_commit_noc_ router_where_cluster_is_placed[swap_router_block_two] = router_first_swap_cluster_location; // now move the blocks in the placement datastructures - place_ctx.block_locs[swap_router_block_one].loc = blocks_affected.moved_blocks[0].new_loc; - place_ctx.block_locs[swap_router_block_two].loc = blocks_affected.moved_blocks[1].new_loc; + block_locs[swap_router_block_one].loc = blocks_affected.moved_blocks[0].new_loc; + block_locs[swap_router_block_two].loc = blocks_affected.moved_blocks[1].new_loc; // we don't have to calculate the costs or update bandwidths because the swapped router blocks do not have any associated traffic flows // @@ -1180,7 +1183,7 @@ TEST_CASE("test_find_affected_noc_routers_and_update_noc_costs, test_commit_noc_ delta_cost = NocCostTerms(); // call the test function - find_affected_noc_routers_and_update_noc_costs(blocks_affected, delta_cost); + find_affected_noc_routers_and_update_noc_costs(blocks_affected, delta_cost, block_locs); // update the test noc cost terms based on the cost changes found by the test functions test_noc_costs.aggregate_bandwidth += delta_cost.aggregate_bandwidth; @@ -1377,11 +1380,12 @@ TEST_CASE("test_revert_noc_traffic_flow_routes", "[noc_place_utils]") { // get global datastructures auto& noc_ctx = g_vpr_ctx.mutable_noc(); auto& place_ctx = g_vpr_ctx.mutable_placement(); + auto& block_locs = place_ctx.mutable_block_locs(); // start by deleting any global datastructures (this is so that we don't have corruption from previous tests) noc_ctx.noc_model.clear_noc(); noc_ctx.noc_traffic_flows_storage.clear_traffic_flows(); - place_ctx.block_locs.clear(); + block_locs.clear(); // store the reference to device grid with // the grid width will be the size of the noc mesh @@ -1467,7 +1471,7 @@ TEST_CASE("test_revert_noc_traffic_flow_routes", "[noc_place_utils]") { router_where_cluster_is_placed.push_back((NocRouterId)cluster_block_number); // now add the cluster and its placed location to the placement datastructures - place_ctx.block_locs.insert(ClusterBlockId(cluster_block_number), current_cluster_block_location); + block_locs.insert(ClusterBlockId(cluster_block_number), current_cluster_block_location); } // similar parameters for all traffic flows @@ -1540,7 +1544,7 @@ TEST_CASE("test_revert_noc_traffic_flow_routes", "[noc_place_utils]") { // assume this works // this is needed to set up the global noc packet router and also global datastructures - initial_noc_routing({}); + initial_noc_routing({}, block_locs); // datastructure below will store the bandwidth usages of all the links // and will be updated throughout this test. @@ -1694,7 +1698,7 @@ TEST_CASE("test_revert_noc_traffic_flow_routes", "[noc_place_utils]") { // To undo this we just need to update the noc link bandwidths as if there was no swap (we do this by calling the test function) // This should then re-update the noc link bandwidths to their values before we imitated the swap above // THe result is that the link bandwidths should match the golden link bandwidths that never changed after the initial router block placement (at a point before block swapping) - revert_noc_traffic_flow_routes(blocks_affected); + revert_noc_traffic_flow_routes(blocks_affected, block_locs); // now verify if the test function worked correctly by comparing the noc link bandwidths to the golden link bandwidths int number_of_links = golden_link_bandwidths.size(); @@ -1728,11 +1732,12 @@ TEST_CASE("test_check_noc_placement_costs", "[noc_place_utils]") { // get global datastructures auto& noc_ctx = g_vpr_ctx.mutable_noc(); auto& place_ctx = g_vpr_ctx.mutable_placement(); + auto& block_locs = place_ctx.mutable_block_locs(); // start by deleting any global datastructures (this is so that we don't have corruption from previous tests) noc_ctx.noc_model.clear_noc(); noc_ctx.noc_traffic_flows_storage.clear_traffic_flows(); - place_ctx.block_locs.clear(); + block_locs.clear(); // store the reference to device grid with // the grid width will be the size of the noc mesh @@ -1823,7 +1828,7 @@ TEST_CASE("test_check_noc_placement_costs", "[noc_place_utils]") { router_where_cluster_is_placed.push_back((NocRouterId)cluster_block_number); // now add the cluster and its placed location to the placement datastructures - place_ctx.block_locs.insert(ClusterBlockId(cluster_block_number), current_cluster_block_location); + block_locs.insert(ClusterBlockId(cluster_block_number), current_cluster_block_location); } // similar parameters for all traffic flows @@ -1952,7 +1957,7 @@ TEST_CASE("test_check_noc_placement_costs", "[noc_place_utils]") { SECTION("Case where check place works after initial placement") { // run the test function - int error = check_noc_placement_costs(costs, error_tolerance, noc_opts); + int error = check_noc_placement_costs(costs, error_tolerance, noc_opts, block_locs); // we expect error to be 0 here, meaning the found costs are within the error tolerance of the noc golden costs REQUIRE(error == 0); @@ -1974,7 +1979,7 @@ TEST_CASE("test_check_noc_placement_costs", "[noc_place_utils]") { } // run the test function - int error = check_noc_placement_costs(costs, error_tolerance, noc_opts); + int error = check_noc_placement_costs(costs, error_tolerance, noc_opts, block_locs); // we expect error to be 4 here, meaning the found costs are not within the tolerance range REQUIRE(error == 4); diff --git a/vpr/test/test_post_verilog.cpp b/vpr/test/test_post_verilog.cpp index 514374b7cbb..be4bd45f045 100644 --- a/vpr/test/test_post_verilog.cpp +++ b/vpr/test/test_post_verilog.cpp @@ -4,6 +4,7 @@ #include "timing_place_lookup.h" #include +#include namespace { @@ -36,8 +37,7 @@ void do_vpr_flow(const char* input_unc_opt, const char* output_unc_opt) { auto& atom_ctx = g_vpr_ctx.mutable_atom(); - free_pack_molecules(atom_ctx.list_of_pack_molecules.release()); - atom_ctx.atom_molecules.clear(); + atom_ctx.prepacker.reset(); REQUIRE(flow_succeeded == true); } @@ -87,7 +87,7 @@ void copy_file(const std::string& src_fname, const std::string& dst_fname) { size_t size = src_file.tellg(); src_file.seekg(0, std::ios_base::beg); - auto buf = std::unique_ptr(new uint8_t[size]); + auto buf = std::make_unique(size); src_file.read((char*)buf.get(), size); dst_file.write((char*)buf.get(), size); } diff --git a/vpr/test/test_vpr.cpp b/vpr/test/test_vpr.cpp index 4945c56c001..da0b4c8b21c 100644 --- a/vpr/test/test_vpr.cpp +++ b/vpr/test/test_vpr.cpp @@ -171,8 +171,7 @@ TEST_CASE("read_rr_graph_metadata", "[vpr]") { vpr_free_all(arch, vpr_setup); auto& atom_ctx = g_vpr_ctx.mutable_atom(); - free_pack_molecules(atom_ctx.list_of_pack_molecules.release()); - atom_ctx.atom_molecules.clear(); + atom_ctx.prepacker.reset(); } REQUIRE(src_inode != -1); @@ -236,8 +235,7 @@ TEST_CASE("read_rr_graph_metadata", "[vpr]") { vpr_free_all(arch, vpr_setup); auto& atom_ctx = g_vpr_ctx.mutable_atom(); - free_pack_molecules(atom_ctx.list_of_pack_molecules.release()); - atom_ctx.atom_molecules.clear(); + atom_ctx.prepacker.reset(); } } // namespace diff --git a/vtr_flow/arch/timing/k6_N10_40nm_diff_switch_for_inc_dec_wires.xml b/vtr_flow/arch/timing/k6_N10_40nm_diff_switch_for_inc_dec_wires.xml new file mode 100644 index 00000000000..27a00e767f6 --- /dev/null +++ b/vtr_flow/arch/timing/k6_N10_40nm_diff_switch_for_inc_dec_wires.xml @@ -0,0 +1,288 @@ + + + + + + + + + + + + + + + + + io.outpad io.inpad io.clock + io.outpad io.inpad io.clock + io.outpad io.inpad io.clock + io.outpad io.inpad io.clock + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 1 1 1 1 + 1 1 1 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 261e-12 + 261e-12 + 261e-12 + 261e-12 + 261e-12 + 261e-12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/vtr_flow/parse/parse_config/vpr_chain.txt b/vtr_flow/parse/parse_config/vpr_chain.txt index 48315bd83ae..202e362e304 100644 --- a/vtr_flow/parse/parse_config/vpr_chain.txt +++ b/vtr_flow/parse/parse_config/vpr_chain.txt @@ -1,7 +1,7 @@ %include "vpr_standard.txt" num_le;vpr.out;\s*Total number of Logic Elements used\s*:\s*(\d+) -num_luts;vpr.out;\s*6-LUT\s*:\s*(\d+) +num_luts;vpr.out;\s*.names\s*:\s*(\d+) num_add_blocks;odin.out;The Total Number of Hard Block adders: (\d+) max_add_chain_length;odin.out;The Number of Hard Block adders in the Longest Chain: (\d+) num_sub_blocks;odin.out;The Total Number of Hard Block subs: (\d+) diff --git a/vtr_flow/parse/pass_requirements/common/pass_requirements.vpr_pack_place.txt b/vtr_flow/parse/pass_requirements/common/pass_requirements.vpr_pack_place.txt index 3c84703b628..77669800b60 100644 --- a/vtr_flow/parse/pass_requirements/common/pass_requirements.vpr_pack_place.txt +++ b/vtr_flow/parse/pass_requirements/common/pass_requirements.vpr_pack_place.txt @@ -19,5 +19,5 @@ device_limiting_resources;Equal() device_name;Equal() #Run-time -pack_time;RangeAbs(0.10,10.0,2) +pack_time;RangeAbs(0.10,10.0,3) place_time;RangeAbs(0.10,10.0,2) diff --git a/vtr_flow/parse/pass_requirements/common/pass_requirements.vpr_route_min_chan_width.txt b/vtr_flow/parse/pass_requirements/common/pass_requirements.vpr_route_min_chan_width.txt index 8986c61e434..5b6056f843f 100644 --- a/vtr_flow/parse/pass_requirements/common/pass_requirements.vpr_route_min_chan_width.txt +++ b/vtr_flow/parse/pass_requirements/common/pass_requirements.vpr_route_min_chan_width.txt @@ -11,7 +11,7 @@ min_chan_width_routing_area_total;Range(0.7,1.3) min_chan_width_routing_area_per_tile;Range(0.7,1.3) #Run-time metrics -min_chan_width_route_time;RangeAbs(0.10,15.0,2) +min_chan_width_route_time;RangeAbs(0.10,15.0,3) #Peak memory #We set a 100MiB minimum threshold since the memory diff --git a/vtr_flow/parse/pass_requirements/common/pass_requirements.vpr_route_min_chan_width_small.txt b/vtr_flow/parse/pass_requirements/common/pass_requirements.vpr_route_min_chan_width_small.txt index d596cc849ad..062332324ed 100644 --- a/vtr_flow/parse/pass_requirements/common/pass_requirements.vpr_route_min_chan_width_small.txt +++ b/vtr_flow/parse/pass_requirements/common/pass_requirements.vpr_route_min_chan_width_small.txt @@ -11,7 +11,8 @@ min_chan_width_routing_area_total;Range(0.5,1.6) min_chan_width_routing_area_per_tile;Range(0.5,1.6) #Run-time metrics -min_chan_width_route_time;RangeAbs(0.10,15.0,2) +min_chan_width_route_time;RangeAbs(0.05,15.0,4) + #Peak memory #We set a 100MiB minimum threshold since the memory 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 25b9c578dc1..c5913be18a1 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 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.80 vpr 62.16 MiB -1 -1 0.23 21952 3 0.05 -1 -1 37108 -1 -1 70 99 1 0 success v8.0.0-6956-gf669015f3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-01-27T02:28:44 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63656 99 130 351 481 1 224 300 13 13 169 clb auto 23.7 MiB 0.04 527 62.2 MiB 0.10 0.00 30 1250 10 3.33e+06 2.22e+06 408126. 2414.95 0.79 - k4_N10_memSize16384_memData64.xml diffeq1.v common 4.74 vpr 66.30 MiB -1 -1 0.34 26676 23 0.30 -1 -1 37692 -1 -1 69 162 0 5 success v8.0.0-6956-gf669015f3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-01-27T02:28:44 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 67888 162 96 1186 1127 1 676 332 13 13 169 clb auto 28.3 MiB 0.14 4471 66.3 MiB 0.13 0.00 54 9470 21 3.33e+06 2.52e+06 696024. 4118.48 2.84 - k4_N10_memSize16384_memData64.xml single_wire.v common 0.35 vpr 59.43 MiB -1 -1 0.05 19896 1 0.01 -1 -1 33124 -1 -1 0 1 0 0 success v8.0.0-6956-gf669015f3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-01-27T02:28:44 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 60860 1 1 1 2 0 1 2 3 3 9 -1 auto 20.6 MiB 0.00 2 59.4 MiB 0.00 0.00 2 2 1 30000 0 1489.46 165.495 0.00 - k4_N10_memSize16384_memData64.xml single_ff.v common 0.35 vpr 59.51 MiB -1 -1 0.06 20320 1 0.00 -1 -1 33480 -1 -1 1 2 0 0 success v8.0.0-6956-gf669015f3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-01-27T02:28:44 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 60936 2 1 3 4 1 3 4 3 3 9 -1 auto 20.8 MiB 0.00 4 59.5 MiB 0.00 0.00 16 5 1 30000 30000 2550.78 283.420 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 placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time +k4_N10_memSize16384_memData64.xml ch_intrinsics.v common 5.61 vpr 63.25 MiB -1 -1 0.54 21584 3 0.17 -1 -1 36764 -1 -1 69 99 1 0 success v8.0.0-10947-g0222054f4-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-08-02T07:46:43 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64772 99 130 353 483 1 220 299 13 13 169 clb auto 24.9 MiB 0.08 540 29270 3582 8022 17666 63.3 MiB 0.05 0.00 26 1466 14 3.33e+06 2.19e+06 360896. 2135.48 1.66 +k4_N10_memSize16384_memData64.xml diffeq1.v common 7.52 vpr 67.18 MiB -1 -1 0.93 26616 23 0.75 -1 -1 38172 -1 -1 71 162 0 5 success v8.0.0-10947-g0222054f4-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-08-02T07:46:43 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 68792 162 96 1200 1141 1 688 334 13 13 169 clb auto 29.0 MiB 0.33 4622 86026 24278 56070 5678 67.2 MiB 0.25 0.00 52 9757 19 3.33e+06 2.58e+06 671819. 3975.26 2.27 +k4_N10_memSize16384_memData64.xml single_wire.v common 1.82 vpr 61.08 MiB -1 -1 0.22 20368 1 0.14 -1 -1 33456 -1 -1 0 1 0 0 success v8.0.0-10947-g0222054f4-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-08-02T07:46:43 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 62544 1 1 1 2 0 1 2 3 3 9 -1 auto 22.5 MiB 0.00 2 3 3 0 0 61.1 MiB 0.00 0.00 2 2 1 30000 0 1489.46 165.495 0.00 +k4_N10_memSize16384_memData64.xml single_ff.v common 1.90 vpr 61.09 MiB -1 -1 0.17 20672 1 0.13 -1 -1 33160 -1 -1 1 2 0 0 success v8.0.0-10947-g0222054f4-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-08-02T07:46:43 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 62560 2 1 3 4 1 3 4 3 3 9 -1 auto 22.6 MiB 0.00 4 9 6 0 3 61.1 MiB 0.00 0.00 16 5 1 30000 30000 2550.78 283.420 0.00 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 30f52ddc7e1..bc720ab209c 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_basic/basic_timing/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_basic/basic_timing/config/golden_results.txt @@ -1,9 +1,9 @@ -arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time -k6_N10_mem32K_40nm.xml ch_intrinsics.v common 4.12 vpr 64.05 MiB -1 -1 0.40 22828 3 0.10 -1 -1 35680 -1 -1 69 99 1 0 success v8.0.0-7648-g96837b3-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:14:09 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 65592 99 130 343 473 1 230 299 12 12 144 clb auto 25.2 MiB 0.08 549 64.1 MiB 0.29 0.00 1.50234 -115.736 -1.50234 1.50234 0.36 0.000528173 0.000468779 0.0446154 0.0396412 38 1131 13 5.66058e+06 4.26669e+06 306247. 2126.71 1.60 0.287927 0.261936 10492 58364 -1 987 12 590 807 47353 14609 0 0 47353 14609 807 676 0 0 2367 2185 0 0 2871 2373 0 0 3489 1937 0 0 17526 3976 0 0 20293 3462 0 0 807 0 0 217 364 301 2591 0 0 2.0266 2.0266 -132.636 -2.0266 -0.822662 -0.224738 388532. 2698.14 0.16 0.04 0.06 -1 -1 0.16 0.0236207 0.0221146 -k6_N10_mem32K_40nm.xml ch_intrinsics.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 4.01 vpr 64.07 MiB -1 -1 0.39 22244 3 0.10 -1 -1 35692 -1 -1 69 99 1 0 success v8.0.0-7648-g96837b3-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:14:09 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 65612 99 130 343 473 1 230 299 12 12 144 clb auto 25.2 MiB 0.07 549 64.1 MiB 0.29 0.00 1.50234 -115.736 -1.50234 1.50234 0.36 0.000540195 0.000479551 0.0448647 0.0397297 38 1131 13 5.66058e+06 4.26669e+06 306247. 2126.71 1.59 0.287235 0.260905 10492 58364 -1 987 12 590 807 47353 14609 0 0 47353 14609 807 676 0 0 2367 2185 0 0 2871 2373 0 0 3489 1937 0 0 17526 3976 0 0 20293 3462 0 0 807 0 0 217 364 301 2591 0 0 2.0266 2.0266 -132.636 -2.0266 -0.822662 -0.224738 388532. 2698.14 0.16 0.04 0.06 -1 -1 0.16 0.0235992 0.0221462 -k6_N10_mem32K_40nm.xml diffeq1.v common 13.81 vpr 67.15 MiB -1 -1 0.51 27032 15 0.43 -1 -1 36828 -1 -1 49 162 0 5 success v8.0.0-7648-g96837b3-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:14:09 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 68760 162 96 993 934 1 713 312 16 16 256 mult_36 auto 28.9 MiB 0.25 5746 67.1 MiB 0.79 0.01 20.3951 -1668.77 -20.3951 20.3951 0.75 0.00150327 0.00133516 0.153223 0.136061 56 11561 48 1.21132e+07 4.62081e+06 696785. 2721.82 8.19 0.911932 0.824514 20912 135057 -1 9601 22 4023 8415 2463394 631001 0 0 2463394 631001 8415 5123 0 0 97767 95649 0 0 102378 98023 0 0 36495 18990 0 0 1074861 208603 0 0 1143478 204613 0 0 8415 0 0 4694 13491 11952 82900 0 0 22.3597 22.3597 -1812.79 -22.3597 0 0 894618. 3494.60 0.34 0.57 0.14 -1 -1 0.34 0.0929882 0.0866082 -k6_N10_mem32K_40nm.xml diffeq1.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 13.64 vpr 67.22 MiB -1 -1 0.52 26884 15 0.44 -1 -1 36692 -1 -1 49 162 0 5 success v8.0.0-7648-g96837b3-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:14:09 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 68832 162 96 993 934 1 713 312 16 16 256 mult_36 auto 28.9 MiB 0.28 5746 67.2 MiB 0.81 0.01 20.3951 -1668.77 -20.3951 20.3951 0.72 0.00154782 0.00135789 0.155453 0.138243 56 11561 48 1.21132e+07 4.62081e+06 696785. 2721.82 8.00 0.901464 0.815455 20912 135057 -1 9601 22 4023 8415 2463394 631001 0 0 2463394 631001 8415 5123 0 0 97767 95649 0 0 102378 98023 0 0 36495 18990 0 0 1074861 208603 0 0 1143478 204613 0 0 8415 0 0 4694 13491 11952 82900 0 0 22.3597 22.3597 -1812.79 -22.3597 0 0 894618. 3494.60 0.34 0.57 0.14 -1 -1 0.34 0.0935784 0.0870901 -k6_N10_mem32K_40nm.xml single_wire.v common 0.53 vpr 60.99 MiB -1 -1 0.10 19712 1 0.01 -1 -1 32156 -1 -1 0 1 0 0 success v8.0.0-7648-g96837b3-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:14:09 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 62452 1 1 1 2 0 1 2 3 3 9 -1 auto 22.2 MiB 0.00 2 61.0 MiB 0.00 0.00 0.205011 -0.205011 -0.205011 nan 0.01 6.508e-06 4.21e-06 4.7302e-05 3.2578e-05 2 1 1 53894 0 1165.58 129.509 0.00 0.000133792 9.5007e-05 254 297 -1 1 1 1 1 17 8 0 0 17 8 1 1 0 0 4 1 0 0 8 4 0 0 1 1 0 0 2 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0.211201 nan -0.211201 -0.211201 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 6.1111e-05 4.4458e-05 -k6_N10_mem32K_40nm.xml single_wire.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 0.58 vpr 61.23 MiB -1 -1 0.13 19728 1 0.00 -1 -1 32200 -1 -1 0 1 0 0 success v8.0.0-7648-g96837b3-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:14:09 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 62696 1 1 1 2 0 1 2 3 3 9 -1 auto 22.4 MiB 0.00 2 61.2 MiB 0.00 0.00 0.205011 -0.205011 -0.205011 nan 0.01 6.184e-06 3.993e-06 4.3641e-05 2.9251e-05 2 1 1 53894 0 1165.58 129.509 0.00 0.000125688 8.6197e-05 254 297 -1 1 1 1 1 17 8 0 0 17 8 1 1 0 0 4 1 0 0 8 4 0 0 1 1 0 0 2 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0.211201 nan -0.211201 -0.211201 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 6.1706e-05 4.4581e-05 -k6_N10_mem32K_40nm.xml single_ff.v common 0.58 vpr 61.16 MiB -1 -1 0.15 20380 1 0.00 -1 -1 32344 -1 -1 1 2 0 0 success v8.0.0-7648-g96837b3-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:14:09 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 62628 2 1 3 4 1 3 4 3 3 9 -1 auto 22.3 MiB 0.00 4 61.2 MiB 0.00 0.00 0.570641 -0.944653 -0.570641 0.570641 0.01 8.111e-06 5.609e-06 6.9436e-05 5.2818e-05 2 4 2 53894 53894 1165.58 129.509 0.00 0.000214692 0.000163548 254 297 -1 3 2 3 3 75 50 0 0 75 50 3 3 0 0 18 17 0 0 18 18 0 0 21 3 0 0 7 6 0 0 8 3 0 0 3 0 0 0 0 0 3 0 0 0.577715 0.577715 -1.12352 -0.577715 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.000126735 9.9717e-05 -k6_N10_mem32K_40nm.xml single_ff.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 0.53 vpr 61.28 MiB -1 -1 0.10 20236 1 0.00 -1 -1 32312 -1 -1 1 2 0 0 success v8.0.0-7648-g96837b3-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:14:09 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 62752 2 1 3 4 1 3 4 3 3 9 -1 auto 22.4 MiB 0.00 4 61.3 MiB 0.00 0.00 0.570641 -0.944653 -0.570641 0.570641 0.01 8.326e-06 5.482e-06 6.6158e-05 4.802e-05 2 4 2 53894 53894 1165.58 129.509 0.00 0.000213451 0.000160083 254 297 -1 3 2 3 3 75 50 0 0 75 50 3 3 0 0 18 17 0 0 18 18 0 0 21 3 0 0 7 6 0 0 8 3 0 0 3 0 0 0 0 0 3 0 0 0.577715 0.577715 -1.12352 -0.577715 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.000106785 8.5521e-05 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml ch_intrinsics.v common 6.13 vpr 64.31 MiB -1 -1 0.56 21584 3 0.20 -1 -1 37220 -1 -1 69 99 1 0 success v8.0.0-10947-g0222054f4-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-08-02T07:46:43 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65856 99 130 344 474 1 226 299 12 12 144 clb auto 26.1 MiB 0.13 553 74225 23267 37569 13389 64.3 MiB 0.29 0.00 2.151 -125.239 -2.151 2.151 0.51 0.000437262 0.000388316 0.0356825 0.0315033 38 1171 12 5.66058e+06 4.26669e+06 306247. 2126.71 1.35 0.168145 0.155599 10492 58364 -1 969 11 534 813 36412 10203 2.02018 2.02018 -131.044 -2.02018 -0.488017 -0.167912 388532. 2698.14 0.19 0.03 0.16 -1 -1 0.19 0.0185018 0.0174867 +k6_N10_mem32K_40nm.xml ch_intrinsics.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 6.35 vpr 64.80 MiB -1 -1 0.59 21736 3 0.23 -1 -1 37088 -1 -1 69 99 1 0 success v8.0.0-10947-g0222054f4-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-08-02T07:46:43 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66352 99 130 344 474 1 226 299 12 12 144 clb auto 26.1 MiB 0.13 553 74225 23267 37569 13389 64.8 MiB 0.26 0.00 2.151 -125.239 -2.151 2.151 0.63 0.000459627 0.000407531 0.0693116 0.0652866 38 1171 12 5.66058e+06 4.26669e+06 306247. 2126.71 1.12 0.292271 0.24972 10492 58364 -1 969 11 534 813 36412 10203 2.02018 2.02018 -131.044 -2.02018 -0.488017 -0.167912 388532. 2698.14 0.18 0.03 0.10 -1 -1 0.18 0.0210822 0.0200509 +k6_N10_mem32K_40nm.xml diffeq1.v common 15.17 vpr 68.23 MiB -1 -1 0.92 26828 15 0.68 -1 -1 38352 -1 -1 50 162 0 5 success v8.0.0-10947-g0222054f4-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-08-02T07:46:43 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 69864 162 96 1009 950 1 722 313 16 16 256 mult_36 auto 30.1 MiB 0.33 5538 91645 27307 55775 8563 68.2 MiB 0.63 0.01 22.3603 -1598.09 -22.3603 22.3603 1.14 0.00122557 0.00108911 0.163641 0.150499 54 11020 37 1.21132e+07 4.6747e+06 799729. 3123.94 7.11 0.905847 0.833501 22188 156650 -1 9139 25 4261 9174 1245522 324553 22.5758 22.5758 -1643.99 -22.5758 0 0 1.03873e+06 4057.55 0.36 0.31 0.12 -1 -1 0.36 0.103306 0.0972579 +k6_N10_mem32K_40nm.xml diffeq1.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 15.48 vpr 68.38 MiB -1 -1 0.96 26524 15 0.91 -1 -1 38192 -1 -1 50 162 0 5 success v8.0.0-10947-g0222054f4-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-08-02T07:46:43 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70016 162 96 1009 950 1 722 313 16 16 256 mult_36 auto 30.2 MiB 0.45 5538 91645 27307 55775 8563 68.4 MiB 0.57 0.01 22.3603 -1598.09 -22.3603 22.3603 0.99 0.0013534 0.00121614 0.131191 0.118212 54 11020 37 1.21132e+07 4.6747e+06 799729. 3123.94 7.19 0.881356 0.808482 22188 156650 -1 9139 25 4261 9174 1245522 324553 22.5758 22.5758 -1643.99 -22.5758 0 0 1.03873e+06 4057.55 0.36 0.31 0.13 -1 -1 0.36 0.096959 0.0911819 +k6_N10_mem32K_40nm.xml single_wire.v common 2.44 vpr 61.77 MiB -1 -1 0.22 20216 1 0.02 -1 -1 33348 -1 -1 0 1 0 0 success v8.0.0-10947-g0222054f4-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-08-02T07:46:43 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63256 1 1 1 2 0 1 2 3 3 9 -1 auto 23.4 MiB 0.00 2 3 1 2 0 61.8 MiB 0.00 0.00 0.18684 -0.18684 -0.18684 nan 0.00 1.2847e-05 5.445e-06 7.1033e-05 3.1161e-05 2 1 1 53894 0 1165.58 129.509 0.00 0.000162488 7.3941e-05 254 297 -1 1 1 1 1 16 7 0.211201 nan -0.211201 -0.211201 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 7.3732e-05 3.7051e-05 +k6_N10_mem32K_40nm.xml single_wire.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 1.87 vpr 61.85 MiB -1 -1 0.12 20368 1 0.05 -1 -1 33152 -1 -1 0 1 0 0 success v8.0.0-10947-g0222054f4-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-08-02T07:46:43 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63332 1 1 1 2 0 1 2 3 3 9 -1 auto 23.5 MiB 0.00 2 3 1 2 0 61.8 MiB 0.00 0.00 0.18684 -0.18684 -0.18684 nan 0.00 1.1084e-05 4.137e-06 6.828e-05 2.8484e-05 2 1 1 53894 0 1165.58 129.509 0.00 0.000166109 7.6652e-05 254 297 -1 1 1 1 1 16 7 0.211201 nan -0.211201 -0.211201 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 7.7818e-05 4.1009e-05 +k6_N10_mem32K_40nm.xml single_ff.v common 1.44 vpr 61.94 MiB -1 -1 0.09 20520 1 0.06 -1 -1 33380 -1 -1 1 2 0 0 success v8.0.0-10947-g0222054f4-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-08-02T07:46:43 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63424 2 1 3 4 1 3 4 3 3 9 -1 auto 23.4 MiB 0.00 4 9 3 5 1 61.9 MiB 0.00 0.00 0.55247 -0.90831 -0.55247 0.55247 0.00 1.3466e-05 5.995e-06 8.4449e-05 4.5422e-05 2 2 2 53894 53894 1165.58 129.509 0.00 0.000233674 0.000134991 254 297 -1 2 2 3 3 69 42 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.000133968 8.2918e-05 +k6_N10_mem32K_40nm.xml single_ff.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 2.11 vpr 61.94 MiB -1 -1 0.07 20520 1 0.02 -1 -1 33332 -1 -1 1 2 0 0 success v8.0.0-10947-g0222054f4-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-08-02T07:46:43 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63424 2 1 3 4 1 3 4 3 3 9 -1 auto 23.4 MiB 0.00 4 9 3 5 1 61.9 MiB 0.00 0.00 0.55247 -0.90831 -0.55247 0.55247 0.00 1.4805e-05 7.063e-06 8.2145e-05 4.4068e-05 2 2 2 53894 53894 1165.58 129.509 0.04 0.000238174 0.000137206 254 297 -1 2 2 3 3 69 42 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.000144485 8.9592e-05 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 8d859e143f1..c8553228279 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 place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml mkPktMerge.v common 12.83 vpr 69.31 MiB -1 -1 0.71 28676 2 0.09 -1 -1 37424 -1 -1 32 311 15 0 success v8.0.0-6956-gf669015f3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-01-27T02:28:44 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 70976 311 156 972 1128 1 953 514 28 28 784 memory auto 31.2 MiB 0.36 8263 69.3 MiB 0.59 0.01 4.10714 -4079.96 -4.10714 4.10714 1.72 0.00214647 0.00185203 0.23994 0.207616 40 13618 30 4.25198e+07 9.94461e+06 2.03169e+06 2591.44 5.22 0.85966 0.771476 12768 27 2728 3251 4233754 1299121 4.07346 4.07346 -4907.34 -4.07346 -19.7517 -0.360359 2.90406e+06 3909.73 0.67 0.81 0.165376 0.152898 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml mkPktMerge.v common 17.57 vpr 70.20 MiB -1 -1 1.91 28576 2 0.25 -1 -1 38284 -1 -1 32 311 15 0 success v8.0.0-10947-g0222054f4-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-08-02T07:46:43 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 71888 311 156 972 1128 1 953 514 28 28 784 memory auto 31.8 MiB 0.82 8193 193966 69704 114383 9879 70.2 MiB 0.84 0.02 4.25634 -4335.96 -4.25634 4.25634 2.18 0.00242851 0.00203716 0.261558 0.220104 40 13464 15 4.25198e+07 9.94461e+06 2.03169e+06 2591.44 4.67 0.896776 0.789976 62360 400487 -1 12535 13 2659 3089 851389 226316 4.61366 4.61366 -4967.31 -4.61366 -20.0771 -0.341744 2.55406e+06 3257.73 0.96 0.26 0.29 -1 -1 0.96 0.131411 0.12325 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 3a1e36dbc32..91baa7766ae 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 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.57 vpr 62.44 MiB -1 -1 0.19 21964 3 0.04 -1 -1 36808 -1 -1 70 99 1 0 success v8.0.0-6956-gf669015f3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-01-27T02:28:44 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63936 99 130 351 481 1 224 300 13 13 169 clb auto 24.0 MiB 0.04 530 62.4 MiB 0.10 0.00 28 1586 22 3.33e+06 2.22e+06 384474. 2275.00 0.65 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources 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 5.60 vpr 63.80 MiB -1 -1 0.54 21584 3 0.16 -1 -1 36916 -1 -1 69 99 1 0 success v8.0.0-10947-g0222054f4-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-08-02T07:46:43 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65332 99 130 353 483 1 220 299 13 13 169 clb auto 24.9 MiB 0.11 530 30269 3558 8528 18183 63.8 MiB 0.09 0.00 38 1242 8 3.33e+06 2.19e+06 504671. 2986.22 2.07 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 5fffec0e332..114c32a01a7 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/golden_results.txt @@ -1,221 +1,221 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.83 vpr 62.66 MiB -1 -1 0.09 19512 1 0.06 -1 -1 35968 -1 -1 2 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64160 7 4 21 25 1 15 13 17 17 289 -1 unnamed_device 24.3 MiB 0.01 66 238 53 181 4 62.7 MiB 0.00 0.00 0.701249 -7.34893 -0.701249 0.701249 0.88 5.1661e-05 4.5494e-05 0.00105831 0.000935191 20 137 6 6.55708e+06 24110 394039. 1363.46 1.17 0.00441567 0.00384437 19870 87366 -1 144 7 56 56 4309 1239 0.83871 0.83871 -8.27133 -0.83871 0 0 477104. 1650.88 0.21 0.01 0.09 -1 -1 0.21 0.00205708 0.00186975 10 4 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_004bits.v common 3.25 vpr 62.73 MiB -1 -1 0.10 19656 2 0.05 -1 -1 36088 -1 -1 2 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64232 9 5 28 33 1 21 16 17 17 289 -1 unnamed_device 24.3 MiB 0.01 138 156 48 106 2 62.7 MiB 0.00 0.00 0.900447 -11.3379 -0.900447 0.900447 0.89 6.3066e-05 5.6245e-05 0.000794082 0.000717402 20 235 7 6.55708e+06 24110 394039. 1363.46 0.56 0.00343991 0.00308261 19870 87366 -1 223 9 85 86 5405 1499 0.819447 0.819447 -11.9992 -0.819447 0 0 477104. 1650.88 0.21 0.01 0.09 -1 -1 0.21 0.0025386 0.00227437 13 6 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_005bits.v common 3.38 vpr 62.75 MiB -1 -1 0.10 19644 2 0.06 -1 -1 35500 -1 -1 2 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64252 11 6 34 40 1 24 19 17 17 289 -1 unnamed_device 24.3 MiB 0.02 61 544 113 372 59 62.7 MiB 0.01 0.00 0.900447 -11.5662 -0.900447 0.900447 0.87 6.7545e-05 6.0116e-05 0.00181129 0.00162097 26 178 14 6.55708e+06 24110 477104. 1650.88 0.68 0.0226789 0.0208174 21022 109990 -1 177 9 115 121 6516 2239 0.819447 0.819447 -12.5524 -0.819447 0 0 585099. 2024.56 0.25 0.01 0.10 -1 -1 0.25 0.0026605 0.00237909 16 7 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_006bits.v common 4.32 vpr 62.86 MiB -1 -1 0.08 19544 3 0.06 -1 -1 35908 -1 -1 3 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64372 13 7 41 48 1 32 23 17 17 289 -1 unnamed_device 24.4 MiB 0.01 79 663 125 500 38 62.9 MiB 0.01 0.00 1.58811 -15.8163 -1.58811 1.58811 0.91 9.2892e-05 8.373e-05 0.00226208 0.00202885 20 271 7 6.55708e+06 36165 394039. 1363.46 1.56 0.0106969 0.00917209 19870 87366 -1 250 11 106 127 6915 2276 1.58811 1.58811 -17.5334 -1.58811 0 0 477104. 1650.88 0.21 0.01 0.09 -1 -1 0.21 0.0035596 0.00315613 19 9 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_007bits.v common 5.09 vpr 62.63 MiB -1 -1 0.10 19676 3 0.06 -1 -1 35480 -1 -1 3 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64132 15 8 47 55 1 38 26 17 17 289 -1 unnamed_device 24.2 MiB 0.01 92 976 219 613 144 62.6 MiB 0.01 0.00 1.23151 -17.401 -1.23151 1.23151 0.90 0.000113655 0.000103613 0.00308595 0.00279915 26 362 35 6.55708e+06 36165 477104. 1650.88 2.28 0.0288322 0.0240594 21022 109990 -1 299 13 188 211 9360 3345 1.13885 1.13885 -19.0838 -1.13885 0 0 585099. 2024.56 0.26 0.01 0.11 -1 -1 0.26 0.00410639 0.00363337 23 10 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_008bits.v common 4.27 vpr 62.85 MiB -1 -1 0.10 19536 3 0.06 -1 -1 35604 -1 -1 4 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64360 17 9 56 65 1 42 30 17 17 289 -1 unnamed_device 24.4 MiB 0.07 118 2468 742 1169 557 62.9 MiB 0.02 0.00 1.70831 -21.0444 -1.70831 1.70831 0.89 0.000123982 0.000111278 0.00714222 0.00645072 24 449 19 6.55708e+06 48220 448715. 1552.65 1.44 0.0283585 0.0241516 20734 103517 -1 343 17 212 236 12543 3862 1.82851 1.82851 -23.2742 -1.82851 0 0 554710. 1919.41 0.24 0.01 0.10 -1 -1 0.24 0.00552843 0.00483321 25 14 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_009bits.v common 4.46 vpr 62.95 MiB -1 -1 0.10 19532 4 0.06 -1 -1 35740 -1 -1 4 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64460 19 10 60 70 1 48 33 17 17 289 -1 unnamed_device 24.4 MiB 0.01 141 2165 594 1180 391 62.9 MiB 0.02 0.00 1.58811 -24.792 -1.58811 1.58811 0.91 0.000132516 0.000120126 0.00588031 0.00530889 26 513 16 6.55708e+06 48220 477104. 1650.88 1.62 0.0386759 0.0325269 21022 109990 -1 400 16 258 307 15525 5097 1.58811 1.58811 -26.6416 -1.58811 0 0 585099. 2024.56 0.26 0.02 0.11 -1 -1 0.26 0.00564459 0.00493838 29 13 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_010bits.v common 4.79 vpr 63.08 MiB -1 -1 0.11 19644 4 0.06 -1 -1 36084 -1 -1 5 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64592 21 11 69 80 1 53 37 17 17 289 -1 unnamed_device 24.5 MiB 0.03 284 1928 664 976 288 63.1 MiB 0.01 0.00 1.68077 -30.4899 -1.68077 1.68077 0.92 0.000138017 0.000123631 0.00525783 0.00476634 26 598 10 6.55708e+06 60275 477104. 1650.88 1.95 0.0408808 0.0345205 21022 109990 -1 563 11 181 227 14793 3787 1.46791 1.46791 -31.3524 -1.46791 0 0 585099. 2024.56 0.26 0.01 0.11 -1 -1 0.26 0.00511555 0.00457088 33 17 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_011bits.v common 3.53 vpr 62.99 MiB -1 -1 0.10 19624 5 0.07 -1 -1 35812 -1 -1 6 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64500 23 12 76 88 1 61 41 17 17 289 -1 unnamed_device 24.4 MiB 0.02 228 3471 1214 1851 406 63.0 MiB 0.02 0.00 2.07857 -32.6138 -2.07857 2.07857 0.88 0.000139097 0.000124872 0.00806635 0.00727748 26 584 15 6.55708e+06 72330 477104. 1650.88 0.73 0.0276092 0.0238968 21022 109990 -1 505 11 250 317 17417 4955 1.83817 1.83817 -33.3714 -1.83817 0 0 585099. 2024.56 0.25 0.01 0.11 -1 -1 0.25 0.0054129 0.00481629 37 19 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_012bits.v common 5.21 vpr 62.87 MiB -1 -1 0.10 19908 5 0.07 -1 -1 35236 -1 -1 6 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64380 25 13 83 96 1 66 44 17 17 289 -1 unnamed_device 24.5 MiB 0.02 230 1661 271 1364 26 62.9 MiB 0.01 0.00 1.80097 -35.7252 -1.80097 1.80097 0.89 0.000175281 0.000158565 0.00433674 0.00394176 28 728 17 6.55708e+06 72330 500653. 1732.36 2.40 0.0396404 0.0336321 21310 115450 -1 592 13 286 408 24297 6568 1.65484 1.65484 -37.2094 -1.65484 0 0 612192. 2118.31 0.26 0.02 0.10 -1 -1 0.26 0.00633896 0.00561255 40 21 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_013bits.v common 3.57 vpr 63.08 MiB -1 -1 0.11 19408 5 0.07 -1 -1 35700 -1 -1 7 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64596 27 14 91 105 1 70 48 17 17 289 -1 unnamed_device 24.8 MiB 0.02 298 2223 446 1605 172 63.1 MiB 0.02 0.00 1.82851 -37.5 -1.82851 1.82851 0.89 0.000196027 0.000177972 0.00583217 0.00532012 26 745 17 6.55708e+06 84385 477104. 1650.88 0.74 0.0298427 0.0257556 21022 109990 -1 668 12 263 378 22460 5886 1.73584 1.73584 -40.7811 -1.73584 0 0 585099. 2024.56 0.26 0.02 0.11 -1 -1 0.26 0.00668685 0.00596104 42 24 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_014bits.v common 5.30 vpr 63.12 MiB -1 -1 0.10 19932 6 0.07 -1 -1 35720 -1 -1 7 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64632 29 15 95 110 1 74 51 17 17 289 -1 unnamed_device 24.8 MiB 0.04 329 2401 440 1903 58 63.1 MiB 0.02 0.00 2.39596 -45.5411 -2.39596 2.39596 0.89 0.000202428 0.00018437 0.00598065 0.00546351 28 759 10 6.55708e+06 84385 500653. 1732.36 2.41 0.0436861 0.0373178 21310 115450 -1 706 10 258 360 20144 5444 2.15556 2.15556 -44.9364 -2.15556 0 0 612192. 2118.31 0.27 0.02 0.11 -1 -1 0.27 0.00622558 0.00557035 45 23 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_015bits.v common 3.74 vpr 63.03 MiB -1 -1 0.10 19808 6 0.07 -1 -1 35864 -1 -1 10 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64544 31 16 104 120 1 81 57 17 17 289 -1 unnamed_device 24.6 MiB 0.04 463 3000 671 1855 474 63.0 MiB 0.02 0.00 1.9467 -49.1372 -1.9467 1.9467 0.90 0.000229393 0.000208026 0.00724422 0.00661318 28 1004 14 6.55708e+06 120550 500653. 1732.36 0.83 0.0333714 0.0289497 21310 115450 -1 909 10 299 460 29503 7303 1.85404 1.85404 -50.2387 -1.85404 0 0 612192. 2118.31 0.27 0.02 0.11 -1 -1 0.27 0.00689678 0.00619823 50 27 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_016bits.v common 5.58 vpr 63.18 MiB -1 -1 0.10 19816 7 0.07 -1 -1 35728 -1 -1 7 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64696 33 17 112 129 1 86 57 17 17 289 -1 unnamed_device 24.8 MiB 0.05 322 6597 2323 2891 1383 63.2 MiB 0.04 0.00 2.57253 -53.1074 -2.57253 2.57253 0.91 0.000232898 0.000212058 0.0145397 0.0131746 28 1084 13 6.55708e+06 84385 500653. 1732.36 2.62 0.0585912 0.0505798 21310 115450 -1 789 11 372 478 28544 8239 2.3425 2.3425 -54.886 -2.3425 0 0 612192. 2118.31 0.27 0.02 0.11 -1 -1 0.27 0.00742359 0.00666602 52 30 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_018bits.v common 5.54 vpr 63.38 MiB -1 -1 0.11 19752 7 0.07 -1 -1 35748 -1 -1 10 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64896 37 19 127 146 1 99 66 17 17 289 -1 unnamed_device 24.9 MiB 0.02 517 7514 3058 4421 35 63.4 MiB 0.04 0.00 3.08562 -69.1539 -3.08562 3.08562 0.91 0.000264032 0.000240357 0.0151067 0.0137122 32 1157 14 6.55708e+06 120550 554710. 1919.41 2.58 0.0785689 0.0677204 22174 131602 -1 999 9 347 484 30205 7755 2.87276 2.87276 -68.2585 -2.87276 0 0 701300. 2426.64 0.28 0.02 0.13 -1 -1 0.28 0.00753898 0.00679889 59 35 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_020bits.v common 5.34 vpr 63.46 MiB -1 -1 0.11 19776 8 0.07 -1 -1 36064 -1 -1 11 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64984 41 21 139 160 1 110 73 17 17 289 -1 unnamed_device 24.9 MiB 0.05 423 10105 3105 5166 1834 63.5 MiB 0.05 0.00 2.75456 -69.4691 -2.75456 2.75456 0.91 0.000279944 0.000253919 0.0201714 0.0183239 28 1229 19 6.55708e+06 132605 500653. 1732.36 2.35 0.0885276 0.0768618 21310 115450 -1 1013 16 459 599 40727 11036 2.5417 2.5417 -71.5857 -2.5417 0 0 612192. 2118.31 0.27 0.03 0.11 -1 -1 0.27 0.0110399 0.00982338 67 37 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_022bits.v common 5.93 vpr 63.50 MiB -1 -1 0.12 19780 9 0.08 -1 -1 36012 -1 -1 13 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65020 45 23 153 176 1 123 81 17 17 289 -1 unnamed_device 24.9 MiB 0.24 454 9181 2871 4452 1858 63.5 MiB 0.05 0.00 3.20898 -80.9842 -3.20898 3.20898 0.91 0.000278633 0.000251369 0.0173729 0.015786 30 1196 23 6.55708e+06 156715 526063. 1820.29 2.73 0.0958237 0.0830769 21886 126133 -1 873 11 414 517 24759 7523 3.02956 3.02956 -80.0769 -3.02956 0 0 666494. 2306.21 0.27 0.02 0.13 -1 -1 0.27 0.00945683 0.00850046 74 41 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_024bits.v common 5.79 vpr 63.50 MiB -1 -1 0.12 19748 10 0.08 -1 -1 36060 -1 -1 12 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65024 49 25 166 191 1 129 86 17 17 289 -1 unnamed_device 25.1 MiB 0.08 677 9725 2981 5215 1529 63.5 MiB 0.05 0.00 3.75902 -99.1822 -3.75902 3.75902 0.91 0.000331517 0.000301484 0.0186532 0.0170145 32 1400 10 6.55708e+06 144660 554710. 1919.41 2.69 0.0992016 0.0862657 22174 131602 -1 1255 11 469 643 39075 10434 3.63882 3.63882 -98.8492 -3.63882 0 0 701300. 2426.64 0.30 0.03 0.13 -1 -1 0.30 0.0103055 0.00930304 79 44 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_028bits.v common 4.71 vpr 63.73 MiB -1 -1 0.13 19852 11 0.09 -1 -1 35860 -1 -1 14 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65260 57 29 198 227 1 159 100 17 17 289 -1 unnamed_device 25.3 MiB 0.22 710 9844 2338 6831 675 63.7 MiB 0.05 0.00 4.36968 -119.507 -4.36968 4.36968 0.90 0.000388698 0.000353505 0.018292 0.0166913 34 1591 23 6.55708e+06 168770 585099. 2024.56 1.41 0.0784156 0.0687564 22462 138074 -1 1413 13 546 739 43127 11305 3.88888 3.88888 -116.039 -3.88888 0 0 742403. 2568.87 0.31 0.03 0.14 -1 -1 0.31 0.0128879 0.0115272 93 56 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_032bits.v common 6.25 vpr 63.77 MiB -1 -1 0.13 20100 13 0.09 -1 -1 36092 -1 -1 16 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65296 65 33 224 257 1 180 114 17 17 289 -1 unnamed_device 25.2 MiB 0.28 986 13638 3602 8892 1144 63.8 MiB 0.06 0.00 4.63562 -152.464 -4.63562 4.63562 0.90 0.000421812 0.000380966 0.0220664 0.0201056 30 1963 18 6.55708e+06 192880 526063. 1820.29 2.90 0.135242 0.117937 21886 126133 -1 1731 12 577 785 47918 11606 4.18236 4.18236 -146.964 -4.18236 0 0 666494. 2306.21 0.27 0.03 0.12 -1 -1 0.27 0.0135241 0.0121871 107 62 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_048bits.v common 4.39 vpr 64.81 MiB -1 -1 0.14 20632 19 0.12 -1 -1 35840 -1 -1 24 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66364 97 49 340 389 1 266 170 17 17 289 -1 unnamed_device 26.1 MiB 0.22 1351 35890 10935 20783 4172 64.8 MiB 0.15 0.00 7.54965 -280.539 -7.54965 7.54965 0.89 0.000648573 0.000588032 0.0495448 0.0450556 30 2921 38 6.55708e+06 289320 526063. 1820.29 1.02 0.148692 0.132215 21886 126133 -1 2413 13 874 1213 66598 17862 6.85599 6.85599 -268.058 -6.85599 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0210996 0.0191312 161 98 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_064bits.v common 7.41 vpr 65.17 MiB -1 -1 0.17 20612 26 0.12 -1 -1 36184 -1 -1 35 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66732 129 65 453 518 1 353 229 17 17 289 -1 unnamed_device 26.5 MiB 0.20 1861 50629 13453 32595 4581 65.2 MiB 0.20 0.00 10.1317 -478.148 -10.1317 10.1317 0.90 0.000821946 0.000746997 0.0630117 0.0573693 30 4125 27 6.55708e+06 421925 526063. 1820.29 3.84 0.312578 0.278956 21886 126133 -1 3417 13 1217 1654 102697 25460 9.39576 9.39576 -452.566 -9.39576 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0282473 0.0257755 213 131 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.28 abc 32.87 MiB -1 -1 0.09 19500 1 0.02 -1 -1 33660 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25004 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.27 abc 32.86 MiB -1 -1 0.10 19108 1 0.02 -1 -1 33648 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24540 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 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.26 abc 32.47 MiB -1 -1 0.10 19348 1 0.02 -1 -1 33248 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24440 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 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.26 abc 32.46 MiB -1 -1 0.09 19548 1 0.02 -1 -1 33244 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25180 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 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.27 abc 32.88 MiB -1 -1 0.10 19444 1 0.02 -1 -1 33664 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25112 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 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.27 abc 32.60 MiB -1 -1 0.09 19572 1 0.02 -1 -1 33384 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24240 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 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.27 abc 32.87 MiB -1 -1 0.09 19496 1 0.02 -1 -1 33656 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24184 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 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.26 abc 32.88 MiB -1 -1 0.10 19780 1 0.02 -1 -1 33668 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25408 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 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.27 abc 32.62 MiB -1 -1 0.09 19692 1 0.02 -1 -1 33404 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25232 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 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.27 abc 32.96 MiB -1 -1 0.09 19680 1 0.02 -1 -1 33748 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24808 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 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.27 abc 32.70 MiB -1 -1 0.10 19892 1 0.02 -1 -1 33488 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25244 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 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.27 abc 32.93 MiB -1 -1 0.10 19544 1 0.02 -1 -1 33724 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25024 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 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.27 abc 32.62 MiB -1 -1 0.10 19384 1 0.02 -1 -1 33404 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25272 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 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.27 abc 32.85 MiB -1 -1 0.11 19536 1 0.02 -1 -1 33640 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25520 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 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.27 abc 32.86 MiB -1 -1 0.10 19496 1 0.02 -1 -1 33652 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25176 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 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.27 abc 32.91 MiB -1 -1 0.10 19604 1 0.02 -1 -1 33696 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25412 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 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.27 abc 32.87 MiB -1 -1 0.09 20076 1 0.02 -1 -1 33660 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25392 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 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.27 abc 32.86 MiB -1 -1 0.10 19900 1 0.02 -1 -1 33648 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25144 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 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.29 abc 32.96 MiB -1 -1 0.11 19836 1 0.03 -1 -1 33748 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25548 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 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.29 abc 32.88 MiB -1 -1 0.11 19868 1 0.03 -1 -1 33672 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25516 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 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.32 abc 32.93 MiB -1 -1 0.12 20072 1 0.03 -1 -1 33720 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 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 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.34 abc 33.14 MiB -1 -1 0.13 20412 1 0.03 -1 -1 33940 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25768 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 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.25 abc 32.90 MiB -1 -1 0.09 19496 1 0.02 -1 -1 33688 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24484 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.25 abc 32.64 MiB -1 -1 0.09 19528 1 0.02 -1 -1 33428 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24840 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 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.24 abc 32.79 MiB -1 -1 0.08 19656 1 0.02 -1 -1 33580 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24756 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 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.26 abc 32.57 MiB -1 -1 0.10 19784 1 0.02 -1 -1 33352 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24608 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 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.27 abc 32.75 MiB -1 -1 0.09 19756 1 0.02 -1 -1 33532 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25016 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 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.26 abc 32.58 MiB -1 -1 0.09 19832 1 0.02 -1 -1 33364 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24892 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 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.26 abc 32.58 MiB -1 -1 0.09 19800 1 0.02 -1 -1 33360 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24624 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 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.26 abc 32.50 MiB -1 -1 0.09 19656 1 0.02 -1 -1 33280 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24828 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 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.27 abc 32.55 MiB -1 -1 0.09 19632 1 0.02 -1 -1 33336 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25028 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 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.27 abc 32.62 MiB -1 -1 0.10 19908 1 0.02 -1 -1 33408 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24916 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 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.27 abc 32.95 MiB -1 -1 0.10 19756 1 0.02 -1 -1 33736 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24760 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 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.28 abc 32.88 MiB -1 -1 0.09 19764 1 0.02 -1 -1 33672 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25172 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 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.27 abc 32.86 MiB -1 -1 0.09 19580 1 0.02 -1 -1 33652 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25068 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 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.27 abc 32.83 MiB -1 -1 0.10 19888 1 0.02 -1 -1 33616 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25116 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 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.27 abc 33.12 MiB -1 -1 0.09 19772 1 0.02 -1 -1 33920 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25168 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 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.28 abc 33.11 MiB -1 -1 0.11 19428 1 0.02 -1 -1 33908 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25076 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 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.28 abc 33.26 MiB -1 -1 0.10 20204 1 0.02 -1 -1 34056 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25076 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 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.27 abc 32.87 MiB -1 -1 0.10 19812 1 0.02 -1 -1 33656 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25104 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 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.29 abc 32.68 MiB -1 -1 0.11 19812 1 0.02 -1 -1 33468 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25316 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 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.32 abc 32.90 MiB -1 -1 0.11 19652 1 0.03 -1 -1 33692 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25356 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 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.31 abc 32.87 MiB -1 -1 0.12 20100 1 0.03 -1 -1 33660 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25628 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 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.32 abc 33.41 MiB -1 -1 0.13 20136 1 0.03 -1 -1 34216 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25824 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 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.53 vpr 63.19 MiB -1 -1 0.10 19500 1 0.02 -1 -1 33380 -1 -1 2 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64708 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 24.8 MiB 0.01 45 88 36 48 4 63.2 MiB 0.00 0.00 0.824016 -7.40657 -0.824016 0.824016 0.90 6.2315e-05 4.7278e-05 0.000591993 0.000521342 12 109 9 6.64007e+06 25116 231691. 801.699 0.96 0.00477776 0.00411029 19090 58805 -1 115 5 36 36 2174 676 0.770048 0.770048 -8.25533 -0.770048 0 0 318358. 1101.58 0.15 0.01 0.06 -1 -1 0.15 0.0020191 0.00185002 10 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 3.88 vpr 62.91 MiB -1 -1 0.08 19496 1 0.02 -1 -1 33596 -1 -1 2 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64424 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 24.5 MiB 0.01 43 476 113 309 54 62.9 MiB 0.01 0.00 0.792048 -9.40096 -0.792048 0.792048 0.89 6.3559e-05 5.6917e-05 0.00187377 0.0016749 18 145 18 6.64007e+06 25116 355633. 1230.56 1.21 0.0134081 0.0111389 20242 81429 -1 131 12 120 120 4689 1704 0.901248 0.901248 -10.0628 -0.901248 0 0 448715. 1552.65 0.20 0.01 0.08 -1 -1 0.20 0.00296367 0.00261961 13 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 3.37 vpr 63.26 MiB -1 -1 0.09 19644 1 0.02 -1 -1 33676 -1 -1 2 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64780 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 24.8 MiB 0.01 57 869 279 533 57 63.3 MiB 0.01 0.00 0.803048 -11.5224 -0.803048 0.803048 0.87 6.8742e-05 6.406e-05 0.00278417 0.00253807 26 201 39 6.64007e+06 25116 477104. 1650.88 0.69 0.015235 0.0127454 21682 110474 -1 184 35 220 220 11427 3507 0.923248 0.923248 -13.188 -0.923248 0 0 585099. 2024.56 0.24 0.02 0.11 -1 -1 0.24 0.00592456 0.0050179 16 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 3.42 vpr 63.27 MiB -1 -1 0.10 19416 1 0.02 -1 -1 33604 -1 -1 4 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64784 13 7 48 49 1 32 24 17 17 289 -1 unnamed_device 24.7 MiB 0.01 139 840 239 448 153 63.3 MiB 0.01 0.00 0.825048 -15.1967 -0.825048 0.825048 0.89 7.6434e-05 6.8672e-05 0.0023741 0.0021418 26 313 13 6.64007e+06 50232 477104. 1650.88 0.72 0.0137642 0.0116446 21682 110474 -1 281 12 159 159 9704 2622 0.934248 0.934248 -16.5101 -0.934248 0 0 585099. 2024.56 0.24 0.01 0.11 -1 -1 0.24 0.00357903 0.00315472 20 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 3.61 vpr 63.18 MiB -1 -1 0.08 19492 1 0.02 -1 -1 33628 -1 -1 3 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64700 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 24.6 MiB 0.02 109 1242 363 655 224 63.2 MiB 0.01 0.00 1.18536 -16.9279 -1.18536 1.18536 0.89 0.000109962 0.000100062 0.00375684 0.00339493 32 250 10 6.64007e+06 37674 554710. 1919.41 0.80 0.0154181 0.0131606 22834 132086 -1 237 13 135 135 7706 2270 1.06345 1.06345 -18.3624 -1.06345 0 0 701300. 2426.64 0.28 0.01 0.13 -1 -1 0.28 0.00398267 0.00351298 22 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 5.42 vpr 63.19 MiB -1 -1 0.10 19532 1 0.02 -1 -1 33604 -1 -1 4 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64708 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 24.7 MiB 0.02 121 1870 575 914 381 63.2 MiB 0.01 0.00 1.19636 -19.6512 -1.19636 1.19636 0.90 0.000111329 9.9904e-05 0.00496555 0.00448245 32 311 14 6.64007e+06 50232 554710. 1919.41 2.58 0.0357012 0.0299207 22834 132086 -1 248 11 158 158 7583 2240 0.943248 0.943248 -19.308 -0.943248 0 0 701300. 2426.64 0.28 0.01 0.13 -1 -1 0.28 0.00373608 0.00331513 25 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 3.52 vpr 63.21 MiB -1 -1 0.09 19636 1 0.02 -1 -1 33592 -1 -1 4 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64724 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 24.7 MiB 0.03 130 1749 486 940 323 63.2 MiB 0.01 0.00 1.20736 -22.2432 -1.20736 1.20736 0.91 0.000132323 0.000120033 0.00477246 0.00432334 26 362 15 6.64007e+06 50232 477104. 1650.88 0.72 0.0205086 0.0175664 21682 110474 -1 318 12 182 182 11942 3286 1.10745 1.10745 -24.0466 -1.10745 0 0 585099. 2024.56 0.27 0.01 0.10 -1 -1 0.27 0.00463985 0.00411409 28 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 4.35 vpr 63.09 MiB -1 -1 0.10 19516 1 0.02 -1 -1 33672 -1 -1 5 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64600 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 24.5 MiB 0.03 173 2599 639 1402 558 63.1 MiB 0.02 0.00 1.21836 -24.9885 -1.21836 1.21836 0.86 0.000141304 0.000128183 0.00645072 0.00583582 26 465 15 6.64007e+06 62790 477104. 1650.88 1.63 0.0371718 0.0314603 21682 110474 -1 383 13 196 196 12393 3314 1.00925 1.00925 -26.0016 -1.00925 0 0 585099. 2024.56 0.24 0.01 0.11 -1 -1 0.24 0.00397787 0.00353292 31 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 3.54 vpr 63.23 MiB -1 -1 0.10 19648 1 0.02 -1 -1 33404 -1 -1 5 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64744 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 24.7 MiB 0.03 164 2964 931 1425 608 63.2 MiB 0.02 0.00 1.22936 -27.3898 -1.22936 1.22936 0.89 0.000148864 0.000134529 0.0070538 0.00639559 28 493 20 6.64007e+06 62790 500653. 1732.36 0.79 0.0259442 0.0223293 21970 115934 -1 449 18 287 287 22883 6108 1.12945 1.12945 -29.8071 -1.12945 0 0 612192. 2118.31 0.26 0.02 0.11 -1 -1 0.26 0.0065079 0.00568002 34 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 3.59 vpr 63.44 MiB -1 -1 0.11 19624 1 0.02 -1 -1 33324 -1 -1 5 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64964 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 24.9 MiB 0.03 184 3793 1189 1796 808 63.4 MiB 0.02 0.00 1.24036 -30.1907 -1.24036 1.24036 0.89 0.000158319 0.000142767 0.00865056 0.00786973 28 543 17 6.64007e+06 62790 500653. 1732.36 0.80 0.0284146 0.0246538 21970 115934 -1 470 16 377 377 26116 7071 1.15265 1.15265 -31.7389 -1.15265 0 0 612192. 2118.31 0.27 0.02 0.11 -1 -1 0.27 0.00633197 0.00555372 37 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 5.44 vpr 63.53 MiB -1 -1 0.09 19748 1 0.02 -1 -1 33504 -1 -1 6 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65052 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 25.0 MiB 0.02 211 3827 1497 2158 172 63.5 MiB 0.02 0.00 1.25136 -33.107 -1.25136 1.25136 0.89 0.000163786 0.000147752 0.00852233 0.00770632 30 621 21 6.64007e+06 75348 526063. 1820.29 2.60 0.0487232 0.0415028 22546 126617 -1 496 20 396 396 23543 6618 1.25085 1.25085 -32.5747 -1.25085 0 0 666494. 2306.21 0.27 0.02 0.12 -1 -1 0.27 0.00757846 0.0066021 40 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 4.62 vpr 63.27 MiB -1 -1 0.09 19436 1 0.02 -1 -1 33616 -1 -1 7 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64784 29 15 104 105 1 73 51 17 17 289 -1 unnamed_device 24.9 MiB 0.02 224 4187 1190 2032 965 63.3 MiB 0.02 0.00 1.26236 -35.4106 -1.26236 1.26236 0.88 0.000179653 0.000163 0.00870008 0.00790179 28 726 25 6.64007e+06 87906 500653. 1732.36 1.83 0.0537909 0.0459272 21970 115934 -1 567 23 477 477 36507 9790 1.13065 1.13065 -35.8668 -1.13065 0 0 612192. 2118.31 0.25 0.03 0.11 -1 -1 0.25 0.00904258 0.00787412 44 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 5.42 vpr 63.59 MiB -1 -1 0.10 19748 1 0.02 -1 -1 33656 -1 -1 7 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65116 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 25.2 MiB 0.02 288 4950 1971 2770 209 63.6 MiB 0.03 0.00 1.62267 -39.7496 -1.62267 1.62267 0.88 0.000198217 0.000180214 0.0101854 0.00926268 30 651 37 6.64007e+06 87906 526063. 1820.29 2.61 0.0569188 0.0486992 22546 126617 -1 526 15 302 302 16740 4566 1.05125 1.05125 -38.0908 -1.05125 0 0 666494. 2306.21 0.27 0.02 0.12 -1 -1 0.27 0.0069465 0.00613461 46 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 5.58 vpr 63.31 MiB -1 -1 0.11 19500 1 0.02 -1 -1 33732 -1 -1 7 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64832 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 24.9 MiB 0.03 307 5834 1940 2742 1152 63.3 MiB 0.03 0.00 1.63367 -42.0204 -1.63367 1.63367 0.87 0.000205312 0.000187471 0.0120497 0.0110014 32 726 14 6.64007e+06 87906 554710. 1919.41 2.74 0.0554558 0.0476611 22834 132086 -1 636 17 427 427 32889 8693 1.02925 1.02925 -40.8658 -1.02925 0 0 701300. 2426.64 0.28 0.02 0.13 -1 -1 0.28 0.00760259 0.00667627 49 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 4.81 vpr 63.44 MiB -1 -1 0.11 19900 1 0.02 -1 -1 33868 -1 -1 8 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64964 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 25.0 MiB 0.03 341 7938 3219 4414 305 63.4 MiB 0.04 0.00 1.65567 -48.7751 -1.65567 1.65567 0.88 0.000226935 0.000206274 0.0152537 0.013918 30 830 16 6.64007e+06 100464 526063. 1820.29 1.93 0.0677488 0.0585302 22546 126617 -1 667 12 383 383 21275 5866 1.06225 1.06225 -46.1571 -1.06225 0 0 666494. 2306.21 0.29 0.02 0.12 -1 -1 0.29 0.00736085 0.00656267 55 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 5.83 vpr 63.62 MiB -1 -1 0.10 19828 1 0.02 -1 -1 33940 -1 -1 8 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65144 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 25.1 MiB 0.03 384 7846 3210 4515 121 63.6 MiB 0.04 0.00 1.67767 -55.4572 -1.67767 1.67767 0.90 0.000266647 0.000243207 0.015028 0.0136905 32 1081 24 6.64007e+06 100464 554710. 1919.41 2.88 0.0881583 0.0760537 22834 132086 -1 891 14 540 540 46730 11738 1.24965 1.24965 -55.9942 -1.24965 0 0 701300. 2426.64 0.30 0.03 0.13 -1 -1 0.30 0.00899646 0.00799673 61 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 3.88 vpr 63.68 MiB -1 -1 0.11 20040 1 0.02 -1 -1 33680 -1 -1 10 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65208 45 23 160 161 1 114 78 17 17 289 -1 unnamed_device 25.2 MiB 0.03 432 8876 3599 5116 161 63.7 MiB 0.05 0.00 1.69967 -61.7455 -1.69967 1.69967 0.89 0.000270046 0.000244593 0.0151457 0.0137973 32 1345 24 6.64007e+06 125580 554710. 1919.41 0.93 0.0507272 0.0444278 22834 132086 -1 996 15 645 645 57878 15572 1.30585 1.30585 -61.5086 -1.30585 0 0 701300. 2426.64 0.29 0.03 0.14 -1 -1 0.29 0.00984418 0.00873495 68 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 5.03 vpr 63.70 MiB -1 -1 0.10 19760 1 0.02 -1 -1 33996 -1 -1 10 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65224 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 25.1 MiB 0.04 558 5025 968 3800 257 63.7 MiB 0.04 0.00 2.07098 -71.2143 -2.07098 2.07098 0.90 0.000314568 0.000288081 0.00945632 0.00867192 28 1391 24 6.64007e+06 125580 500653. 1732.36 2.12 0.0862147 0.074528 21970 115934 -1 1226 12 568 568 57127 16713 1.41065 1.41065 -74.0365 -1.41065 0 0 612192. 2118.31 0.27 0.03 0.11 -1 -1 0.27 0.00926094 0.00825872 73 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 3.88 vpr 64.12 MiB -1 -1 0.11 19956 1 0.03 -1 -1 33708 -1 -1 11 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65656 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 25.8 MiB 0.04 667 10531 2201 7783 547 64.1 MiB 0.05 0.00 2.11498 -86.1894 -2.11498 2.11498 0.92 0.000331515 0.000301554 0.0169977 0.015488 30 1561 21 6.64007e+06 138138 526063. 1820.29 0.93 0.0591251 0.0520208 22546 126617 -1 1268 16 646 646 43813 11534 1.39065 1.39065 -81.4616 -1.39065 0 0 666494. 2306.21 0.28 0.03 0.12 -1 -1 0.28 0.012359 0.0110009 85 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 5.78 vpr 64.26 MiB -1 -1 0.11 20016 1 0.03 -1 -1 33956 -1 -1 13 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65800 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 25.8 MiB 0.04 868 13145 3010 9693 442 64.3 MiB 0.07 0.00 2.50829 -103.421 -2.50829 2.50829 0.89 0.000383295 0.000351932 0.0204197 0.0186878 30 1817 19 6.64007e+06 163254 526063. 1820.29 2.78 0.101452 0.0886338 22546 126617 -1 1542 13 610 610 44456 10941 1.39845 1.39845 -95.2543 -1.39845 0 0 666494. 2306.21 0.30 0.03 0.12 -1 -1 0.30 0.0121374 0.0108638 97 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 4.14 vpr 64.72 MiB -1 -1 0.12 20212 1 0.03 -1 -1 33616 -1 -1 19 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66272 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 25.9 MiB 0.06 1568 34065 14169 19781 115 64.7 MiB 0.17 0.00 3.38291 -182.49 -3.38291 3.38291 0.89 0.000577648 0.000522666 0.0438326 0.0400644 32 2884 17 6.64007e+06 238602 554710. 1919.41 0.94 0.111339 0.0994272 22834 132086 -1 2651 12 1032 1032 96525 21316 1.51625 1.51625 -150.019 -1.51625 0 0 701300. 2426.64 0.32 0.05 0.13 -1 -1 0.32 0.0164089 0.0147957 145 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 6.91 vpr 65.15 MiB -1 -1 0.12 20552 1 0.03 -1 -1 33820 -1 -1 25 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66716 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 26.6 MiB 0.07 2005 50303 16107 29492 4704 65.2 MiB 0.24 0.01 4.25753 -269.889 -4.25753 4.25753 0.88 0.000758726 0.000697073 0.0588477 0.0539563 30 3994 32 6.64007e+06 313950 526063. 1820.29 3.57 0.263996 0.236392 22546 126617 -1 3418 18 1360 1360 120282 27724 1.95065 1.95065 -218.265 -1.95065 0 0 666494. 2306.21 0.30 0.07 0.12 -1 -1 0.30 0.028547 0.0257147 193 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.21 vpr 63.00 MiB -1 -1 0.09 19540 1 0.02 -1 -1 33420 -1 -1 2 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64508 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 24.6 MiB 0.01 45 88 36 48 4 63.0 MiB 0.00 0.00 0.824016 -7.37037 -0.824016 0.824016 0.88 5.0297e-05 4.3954e-05 0.000591441 0.000532679 12 108 7 6.65987e+06 25356 231691. 801.699 0.70 0.00381542 0.00337308 19090 58805 -1 104 6 32 32 2079 656 0.770048 0.770048 -7.85853 -0.770048 0 0 318358. 1101.58 0.15 0.01 0.06 -1 -1 0.15 0.00211988 0.00194855 10 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 4.37 vpr 63.00 MiB -1 -1 0.09 19440 1 0.02 -1 -1 33512 -1 -1 2 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64508 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 24.6 MiB 0.01 41 456 116 304 36 63.0 MiB 0.01 0.00 0.781048 -9.22036 -0.781048 0.781048 0.91 7.1198e-05 6.4397e-05 0.00180214 0.00161897 26 147 11 6.65987e+06 25356 477104. 1650.88 1.67 0.0185966 0.0152737 21682 110474 -1 111 8 83 83 4352 1424 0.890248 0.890248 -9.2053 -0.890248 0 0 585099. 2024.56 0.25 0.01 0.11 -1 -1 0.25 0.00259376 0.00234552 13 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 4.24 vpr 62.95 MiB -1 -1 0.10 19496 1 0.02 -1 -1 33532 -1 -1 2 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64460 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 24.4 MiB 0.01 72 1094 334 508 252 62.9 MiB 0.01 0.00 0.803048 -11.753 -0.803048 0.803048 0.89 7.8693e-05 7.0373e-05 0.00381032 0.00342528 26 208 13 6.65987e+06 25356 477104. 1650.88 1.50 0.0217254 0.0180867 21682 110474 -1 158 11 127 127 6178 1900 1.02145 1.02145 -12.4088 -1.02145 0 0 585099. 2024.56 0.24 0.01 0.11 -1 -1 0.24 0.00317635 0.00283099 16 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 3.57 vpr 63.05 MiB -1 -1 0.10 19572 1 0.02 -1 -1 33320 -1 -1 4 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64568 13 7 48 49 1 32 24 17 17 289 -1 unnamed_device 24.6 MiB 0.01 116 976 287 524 165 63.1 MiB 0.01 0.00 0.825048 -14.7932 -0.825048 0.825048 0.90 9.0181e-05 8.0828e-05 0.00295766 0.00267054 32 254 13 6.65987e+06 50712 554710. 1919.41 0.81 0.0139799 0.0118969 22834 132086 -1 224 16 152 152 8724 2737 0.923248 0.923248 -15.6599 -0.923248 0 0 701300. 2426.64 0.29 0.01 0.13 -1 -1 0.29 0.00419463 0.003677 20 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 4.64 vpr 63.10 MiB -1 -1 0.09 19880 1 0.02 -1 -1 33444 -1 -1 3 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64616 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 24.6 MiB 0.01 108 1090 278 634 178 63.1 MiB 0.01 0.00 1.18536 -17.031 -1.18536 1.18536 0.91 9.8709e-05 8.878e-05 0.00336964 0.00304646 26 310 14 6.65987e+06 38034 477104. 1650.88 1.90 0.0294708 0.0246302 21682 110474 -1 279 17 205 205 16408 4648 1.12359 1.12359 -19.3184 -1.12359 0 0 585099. 2024.56 0.26 0.01 0.11 -1 -1 0.26 0.0047261 0.00412162 22 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 3.47 vpr 62.80 MiB -1 -1 0.10 19672 1 0.02 -1 -1 33564 -1 -1 4 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64304 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 24.3 MiB 0.01 121 1870 577 901 392 62.8 MiB 0.01 0.00 1.19636 -19.7591 -1.19636 1.19636 0.90 0.000106371 9.5701e-05 0.00502841 0.00453978 26 318 12 6.65987e+06 50712 477104. 1650.88 0.72 0.0188598 0.0161288 21682 110474 -1 302 11 170 170 9595 2763 0.992389 0.992389 -20.881 -0.992389 0 0 585099. 2024.56 0.26 0.01 0.11 -1 -1 0.26 0.00427367 0.00379294 25 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 4.81 vpr 63.14 MiB -1 -1 0.10 19640 1 0.02 -1 -1 33340 -1 -1 4 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64656 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 24.6 MiB 0.01 130 1489 379 854 256 63.1 MiB 0.01 0.00 1.20736 -22.2972 -1.20736 1.20736 0.90 0.00012224 0.000110503 0.0041194 0.00374211 28 377 20 6.65987e+06 50712 500653. 1732.36 2.01 0.0380053 0.031801 21970 115934 -1 314 11 178 178 11897 3324 0.998248 0.998248 -22.9356 -0.998248 0 0 612192. 2118.31 0.27 0.01 0.11 -1 -1 0.27 0.00456224 0.00404354 28 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 4.71 vpr 63.24 MiB -1 -1 0.10 19748 1 0.02 -1 -1 33368 -1 -1 5 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64760 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 24.6 MiB 0.01 174 2721 690 1411 620 63.2 MiB 0.02 0.00 1.21836 -25.1455 -1.21836 1.21836 0.90 0.000138794 0.000125637 0.00667927 0.00608027 26 497 17 6.65987e+06 63390 477104. 1650.88 1.93 0.0433477 0.0366724 21682 110474 -1 428 17 239 239 26261 6885 1.23865 1.23865 -28.9047 -1.23865 0 0 585099. 2024.56 0.25 0.02 0.11 -1 -1 0.25 0.00612801 0.00534415 31 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 3.66 vpr 63.25 MiB -1 -1 0.11 19496 1 0.02 -1 -1 33328 -1 -1 5 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64764 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 24.7 MiB 0.01 167 2964 885 1525 554 63.2 MiB 0.02 0.00 1.22936 -27.524 -1.22936 1.22936 0.89 0.00014353 0.000129621 0.00701392 0.00634555 32 481 21 6.65987e+06 63390 554710. 1919.41 0.84 0.025841 0.0222749 22834 132086 -1 397 15 290 290 19600 5497 1.11845 1.11845 -28.5061 -1.11845 0 0 701300. 2426.64 0.28 0.02 0.13 -1 -1 0.28 0.00601913 0.00530333 34 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 3.62 vpr 62.90 MiB -1 -1 0.11 19560 1 0.02 -1 -1 33672 -1 -1 5 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64412 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 24.3 MiB 0.01 182 3793 1277 1774 742 62.9 MiB 0.02 0.00 1.24036 -30.1073 -1.24036 1.24036 0.88 0.000153489 0.000138445 0.00791755 0.00716073 30 543 18 6.65987e+06 63390 526063. 1820.29 0.80 0.027847 0.0240818 22546 126617 -1 420 14 289 289 16324 4910 1.14045 1.14045 -31.8023 -1.14045 0 0 666494. 2306.21 0.28 0.02 0.13 -1 -1 0.28 0.00601444 0.00531617 37 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 5.52 vpr 63.34 MiB -1 -1 0.10 19468 1 0.02 -1 -1 33644 -1 -1 6 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64856 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 25.0 MiB 0.02 242 3827 1191 1808 828 63.3 MiB 0.02 0.00 1.25136 -33.3667 -1.25136 1.25136 0.87 0.000161223 0.000145748 0.00817176 0.00740704 32 594 16 6.65987e+06 76068 554710. 1919.41 2.71 0.0462745 0.0394637 22834 132086 -1 545 17 340 340 25670 6823 1.24965 1.24965 -36.9541 -1.24965 0 0 701300. 2426.64 0.30 0.02 0.13 -1 -1 0.30 0.00703365 0.00617827 40 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 5.62 vpr 63.27 MiB -1 -1 0.09 19676 1 0.02 -1 -1 33548 -1 -1 7 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64792 29 15 104 105 1 73 51 17 17 289 -1 unnamed_device 24.9 MiB 0.02 232 4187 1348 1837 1002 63.3 MiB 0.02 0.00 1.26236 -35.7901 -1.26236 1.26236 0.89 0.000177153 0.000160897 0.00881913 0.00802788 32 800 28 6.65987e+06 88746 554710. 1919.41 2.77 0.0571037 0.0487195 22834 132086 -1 603 13 397 397 27493 8061 1.28265 1.28265 -39.3116 -1.28265 0 0 701300. 2426.64 0.28 0.02 0.13 -1 -1 0.28 0.00637319 0.00564804 44 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 3.72 vpr 63.36 MiB -1 -1 0.10 19892 1 0.02 -1 -1 33844 -1 -1 7 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64884 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 25.0 MiB 0.02 288 4950 1999 2838 113 63.4 MiB 0.03 0.00 1.62267 -39.6644 -1.62267 1.62267 0.89 0.000190807 0.000173483 0.0101788 0.00926361 32 671 13 6.65987e+06 88746 554710. 1919.41 0.85 0.0326394 0.0284446 22834 132086 -1 585 18 353 353 29126 7622 1.29165 1.29165 -41.8381 -1.29165 0 0 701300. 2426.64 0.30 0.02 0.13 -1 -1 0.30 0.00825622 0.00722449 46 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 5.47 vpr 63.28 MiB -1 -1 0.10 19904 1 0.02 -1 -1 33940 -1 -1 7 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64800 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 24.9 MiB 0.02 303 5834 2357 3389 88 63.3 MiB 0.03 0.00 1.63367 -43.2049 -1.63367 1.63367 0.86 0.000204176 0.00018516 0.0119445 0.0108869 30 727 28 6.65987e+06 88746 526063. 1820.29 2.64 0.0648982 0.0555712 22546 126617 -1 595 14 318 318 19065 5260 1.09525 1.09525 -41.784 -1.09525 0 0 666494. 2306.21 0.29 0.02 0.12 -1 -1 0.29 0.00743924 0.00658908 49 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 5.65 vpr 63.38 MiB -1 -1 0.09 19836 1 0.02 -1 -1 33984 -1 -1 8 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64896 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 24.9 MiB 0.02 345 7938 3016 3746 1176 63.4 MiB 0.04 0.00 1.65567 -49.0688 -1.65567 1.65567 0.91 0.000228321 0.000207954 0.0152922 0.0139531 32 909 18 6.65987e+06 101424 554710. 1919.41 2.71 0.0821771 0.0705667 22834 132086 -1 729 25 492 492 78096 30555 1.23745 1.23745 -49.6837 -1.23745 0 0 701300. 2426.64 0.30 0.04 0.13 -1 -1 0.30 0.0121753 0.0106348 55 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 6.01 vpr 63.61 MiB -1 -1 0.10 19976 1 0.02 -1 -1 33936 -1 -1 8 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65136 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 25.1 MiB 0.02 384 7846 3176 4532 138 63.6 MiB 0.04 0.00 1.67767 -55.9313 -1.67767 1.67767 0.91 0.000244643 0.000221751 0.014328 0.0130537 36 909 11 6.65987e+06 101424 612192. 2118.31 3.09 0.0821346 0.0706422 23410 145293 -1 762 13 408 408 27360 7471 1.25945 1.25945 -53.1799 -1.25945 0 0 782063. 2706.10 0.31 0.02 0.14 -1 -1 0.31 0.0079282 0.00705491 61 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 3.93 vpr 63.63 MiB -1 -1 0.11 19860 1 0.02 -1 -1 33912 -1 -1 10 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65160 45 23 160 161 1 114 78 17 17 289 -1 unnamed_device 25.1 MiB 0.02 501 8876 3644 5119 113 63.6 MiB 0.05 0.00 1.69967 -63.1909 -1.69967 1.69967 0.89 0.000262626 0.000239742 0.0159733 0.0145734 32 1200 36 6.65987e+06 126780 554710. 1919.41 1.01 0.0576292 0.050334 22834 132086 -1 979 16 534 534 49382 12273 1.37965 1.37965 -63.2348 -1.37965 0 0 701300. 2426.64 0.30 0.03 0.13 -1 -1 0.30 0.0104583 0.00929169 68 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 5.03 vpr 63.64 MiB -1 -1 0.11 19940 1 0.03 -1 -1 33992 -1 -1 10 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65164 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 25.3 MiB 0.02 511 5574 1066 4247 261 63.6 MiB 0.03 0.00 2.07098 -69.2626 -2.07098 2.07098 0.89 0.000295375 0.000268901 0.0102255 0.00934759 30 1199 20 6.65987e+06 126780 526063. 1820.29 2.11 0.0860745 0.0745113 22546 126617 -1 1034 28 579 579 69244 28894 1.31245 1.31245 -68.9833 -1.31245 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.016278 0.0142635 73 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 5.92 vpr 63.86 MiB -1 -1 0.11 19808 1 0.03 -1 -1 33356 -1 -1 11 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65392 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 25.5 MiB 0.03 651 8311 1647 6236 428 63.9 MiB 0.05 0.00 2.11498 -86.6461 -2.11498 2.11498 0.89 0.00028761 0.000262811 0.0137671 0.0125971 34 1479 33 6.65987e+06 139458 585099. 2024.56 2.94 0.112758 0.0976851 23122 138558 -1 1255 14 614 614 43886 11861 1.35645 1.35645 -80.4066 -1.35645 0 0 742403. 2568.87 0.31 0.03 0.14 -1 -1 0.31 0.0112147 0.0100204 85 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 3.91 vpr 63.99 MiB -1 -1 0.10 19832 1 0.03 -1 -1 33832 -1 -1 13 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65524 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 25.5 MiB 0.03 868 11549 2508 8660 381 64.0 MiB 0.07 0.00 2.50829 -103.583 -2.50829 2.50829 0.87 0.00038094 0.000348589 0.0182409 0.0166921 32 1870 19 6.65987e+06 164814 554710. 1919.41 0.93 0.064973 0.0573011 22834 132086 -1 1593 16 706 706 64338 15403 1.33839 1.33839 -94.829 -1.33839 0 0 701300. 2426.64 0.29 0.04 0.13 -1 -1 0.29 0.0137768 0.0122182 97 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 4.25 vpr 64.88 MiB -1 -1 0.12 20340 1 0.03 -1 -1 33628 -1 -1 19 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66432 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 26.3 MiB 0.04 1535 34065 11310 19970 2785 64.9 MiB 0.17 0.00 3.38291 -182.175 -3.38291 3.38291 0.89 0.000546137 0.000498819 0.0437866 0.0400504 32 2999 48 6.65987e+06 240882 554710. 1919.41 1.08 0.138226 0.12298 22834 132086 -1 2717 15 1058 1058 103831 23767 1.66359 1.66359 -155.152 -1.66359 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0193885 0.0174469 145 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 5.16 vpr 65.37 MiB -1 -1 0.13 20396 1 0.03 -1 -1 34072 -1 -1 25 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66936 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 26.7 MiB 0.06 1995 50303 15701 29972 4630 65.4 MiB 0.24 0.01 4.25753 -271.034 -4.25753 4.25753 0.88 0.000756923 0.000694141 0.0578788 0.0529594 34 3950 36 6.65987e+06 316950 585099. 2024.56 1.82 0.236249 0.211278 23122 138558 -1 3379 19 1306 1306 128726 32047 1.98365 1.98365 -219.716 -1.98365 0 0 742403. 2568.87 0.30 0.08 0.14 -1 -1 0.30 0.0305014 0.027501 193 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_003bits.v common 4.27 vpr 63.81 MiB -1 -1 0.10 19748 1 0.02 -1 -1 33272 -1 -1 1 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65344 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 25.4 MiB 0.02 35 142 65 72 5 63.8 MiB 0.00 0.00 0.712895 -7.85699 -0.712895 0.712895 0.89 4.722e-05 4.1811e-05 0.000791413 0.000709217 18 88 15 6.95648e+06 14475.7 376052. 1301.22 1.62 0.0153221 0.0125019 22882 88689 -1 83 6 30 30 1836 608 0.74674 0.74674 -8.48094 -0.74674 0 0 470940. 1629.55 0.19 0.01 0.09 -1 -1 0.19 0.00212196 0.00195282 5 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_004bits.v common 3.30 vpr 63.80 MiB -1 -1 0.10 19808 1 0.02 -1 -1 33708 -1 -1 1 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65328 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 25.3 MiB 0.02 31 339 89 221 29 63.8 MiB 0.01 0.00 0.583992 -8.96727 -0.583992 0.583992 0.92 6.417e-05 5.7453e-05 0.0015398 0.00138572 18 113 10 6.95648e+06 14475.7 376052. 1301.22 0.56 0.00989791 0.00836346 22882 88689 -1 104 15 86 86 5291 1783 0.74674 0.74674 -9.62957 -0.74674 0 0 470940. 1629.55 0.20 0.01 0.09 -1 -1 0.20 0.00298455 0.0026416 7 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_005bits.v common 4.42 vpr 63.93 MiB -1 -1 0.10 19708 1 0.02 -1 -1 33580 -1 -1 1 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65464 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 25.4 MiB 0.03 45 386 75 296 15 63.9 MiB 0.01 0.00 0.701895 -11.7042 -0.701895 0.701895 0.92 7.672e-05 6.8847e-05 0.00167611 0.0015169 20 173 9 6.95648e+06 14475.7 414966. 1435.87 1.66 0.00935896 0.00799138 23170 95770 -1 136 9 68 68 4041 1235 0.709292 0.709292 -12.5375 -0.709292 0 0 503264. 1741.40 0.22 0.01 0.10 -1 -1 0.22 0.00303201 0.00270605 8 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_006bits.v common 4.30 vpr 63.91 MiB -1 -1 0.08 19544 1 0.02 -1 -1 33368 -1 -1 2 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65444 13 7 48 49 1 25 22 17 17 289 -1 unnamed_device 25.4 MiB 0.03 102 442 97 336 9 63.9 MiB 0.01 0.00 0.834592 -15.6382 -0.834592 0.834592 0.92 8.9911e-05 8.0754e-05 0.00172468 0.00156196 14 254 10 6.95648e+06 28951.4 292583. 1012.40 1.60 0.019492 0.0162775 22018 70521 -1 241 10 99 99 5070 1754 0.927732 0.927732 -18.1833 -0.927732 0 0 376052. 1301.22 0.16 0.01 0.07 -1 -1 0.16 0.00313668 0.00282445 10 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_007bits.v common 4.70 vpr 64.03 MiB -1 -1 0.10 19824 1 0.02 -1 -1 33752 -1 -1 2 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65568 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 25.5 MiB 0.04 130 961 301 532 128 64.0 MiB 0.01 0.00 0.881906 -18.7043 -0.881906 0.881906 0.92 9.612e-05 8.5783e-05 0.00315095 0.00283813 26 276 13 6.95648e+06 28951.4 503264. 1741.40 1.84 0.0302063 0.0252273 24322 120374 -1 251 14 116 116 7345 2181 0.852632 0.852632 -19.0638 -0.852632 0 0 618332. 2139.56 0.26 0.01 0.12 -1 -1 0.26 0.00430406 0.00379059 11 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_008bits.v common 4.86 vpr 63.71 MiB -1 -1 0.10 19608 1 0.02 -1 -1 33664 -1 -1 2 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65236 17 9 62 63 1 37 28 17 17 289 -1 unnamed_device 25.2 MiB 0.04 257 910 229 586 95 63.7 MiB 0.01 0.00 0.852632 -22.7137 -0.852632 0.852632 0.94 0.000106953 9.6922e-05 0.00297725 0.00271904 26 481 15 6.95648e+06 28951.4 503264. 1741.40 2.02 0.0257943 0.0215932 24322 120374 -1 456 15 194 194 15045 3456 0.949732 0.949732 -25.2621 -0.949732 0 0 618332. 2139.56 0.25 0.01 0.08 -1 -1 0.25 0.0049193 0.00432391 13 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_009bits.v common 5.66 vpr 63.85 MiB -1 -1 0.10 19540 1 0.02 -1 -1 33504 -1 -1 2 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65380 19 10 69 70 1 44 31 17 17 289 -1 unnamed_device 25.3 MiB 0.04 130 1471 299 1132 40 63.8 MiB 0.01 0.00 1.04807 -22.9622 -1.04807 1.04807 0.92 0.000123709 0.000111415 0.00443891 0.00401812 32 391 12 6.95648e+06 28951.4 586450. 2029.24 2.75 0.0296558 0.0251148 25474 144626 -1 350 12 174 174 11501 3459 1.01093 1.01093 -25.4311 -1.01093 0 0 744469. 2576.02 0.29 0.01 0.14 -1 -1 0.29 0.00474861 0.00422204 14 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_010bits.v common 5.38 vpr 64.14 MiB -1 -1 0.09 19704 1 0.02 -1 -1 33624 -1 -1 2 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65680 21 11 76 77 1 49 34 17 17 289 -1 unnamed_device 25.6 MiB 0.04 132 1464 547 909 8 64.1 MiB 0.01 0.00 0.896632 -24.9691 -0.896632 0.896632 0.93 0.00013025 0.00011742 0.00422334 0.00381474 32 447 35 6.95648e+06 28951.4 586450. 2029.24 2.41 0.0532754 0.0444342 25474 144626 -1 365 13 268 268 18686 5473 1.16733 1.16733 -26.3322 -1.16733 0 0 744469. 2576.02 0.30 0.02 0.14 -1 -1 0.30 0.00527937 0.00467253 16 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_011bits.v common 5.44 vpr 63.98 MiB -1 -1 0.10 19536 1 0.02 -1 -1 33352 -1 -1 3 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65520 23 12 83 84 1 55 38 17 17 289 -1 unnamed_device 25.4 MiB 0.04 156 1235 276 946 13 64.0 MiB 0.01 0.00 0.879432 -27.3624 -0.879432 0.879432 0.92 0.000141762 0.000128098 0.00351223 0.00319437 30 551 16 6.95648e+06 43427 556674. 1926.21 2.53 0.0432829 0.0363771 25186 138497 -1 446 15 316 316 20563 6066 1.11423 1.11423 -32.014 -1.11423 0 0 706193. 2443.58 0.30 0.02 0.13 -1 -1 0.30 0.00603774 0.0053429 17 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_012bits.v common 5.10 vpr 63.91 MiB -1 -1 0.10 19588 1 0.02 -1 -1 33356 -1 -1 3 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65440 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 25.6 MiB 0.04 171 1581 310 1236 35 63.9 MiB 0.01 0.00 0.918632 -29.9024 -0.918632 0.918632 0.90 0.000154624 0.0001401 0.00423029 0.00385757 26 673 21 6.95648e+06 43427 503264. 1741.40 2.22 0.0484546 0.0408737 24322 120374 -1 539 13 337 337 23477 7010 1.26153 1.26153 -37.4109 -1.26153 0 0 618332. 2139.56 0.26 0.02 0.11 -1 -1 0.26 0.00583195 0.00518571 19 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_013bits.v common 4.29 vpr 64.12 MiB -1 -1 0.11 19656 1 0.02 -1 -1 33308 -1 -1 3 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65664 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 25.8 MiB 0.04 436 1584 370 1078 136 64.1 MiB 0.01 0.00 0.951632 -37.9619 -0.951632 0.951632 0.92 0.000171271 0.000155854 0.00419019 0.00384335 34 885 23 6.95648e+06 43427 618332. 2139.56 1.33 0.0403286 0.0342239 25762 151098 -1 806 17 347 347 36876 7808 1.30553 1.30553 -44.5658 -1.30553 0 0 787024. 2723.27 0.30 0.02 0.14 -1 -1 0.30 0.00730527 0.0064351 20 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_014bits.v common 4.39 vpr 64.26 MiB -1 -1 0.10 19416 1 0.02 -1 -1 33476 -1 -1 4 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65804 29 15 104 105 1 72 48 17 17 289 -1 unnamed_device 25.9 MiB 0.03 474 4050 1146 2192 712 64.3 MiB 0.02 0.00 0.951632 -40.2713 -0.951632 0.951632 0.92 0.00017651 0.000160588 0.00896853 0.00816494 34 959 25 6.95648e+06 57902.7 618332. 2139.56 1.42 0.0479897 0.0411236 25762 151098 -1 873 14 421 421 42469 9106 1.20223 1.20223 -46.6538 -1.20223 0 0 787024. 2723.27 0.30 0.02 0.15 -1 -1 0.30 0.00643329 0.00569992 23 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_015bits.v common 4.46 vpr 63.96 MiB -1 -1 0.09 19664 1 0.02 -1 -1 33944 -1 -1 3 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65492 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 25.6 MiB 0.05 265 3730 1483 2213 34 64.0 MiB 0.02 0.00 1.33396 -40.6409 -1.33396 1.33396 0.91 0.000187394 0.000170498 0.00873695 0.00796807 34 813 28 6.95648e+06 43427 618332. 2139.56 1.45 0.0512109 0.0438108 25762 151098 -1 684 20 497 497 55213 14342 1.29733 1.29733 -44.5761 -1.29733 0 0 787024. 2723.27 0.31 0.03 0.15 -1 -1 0.31 0.00901788 0.00790198 24 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_016bits.v common 4.49 vpr 64.23 MiB -1 -1 0.10 19544 1 0.02 -1 -1 33696 -1 -1 4 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65772 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 25.8 MiB 0.07 279 4848 1968 2843 37 64.2 MiB 0.03 0.00 1.34496 -43.5864 -1.34496 1.34496 0.92 0.000205954 0.000186819 0.0106433 0.00968193 34 923 38 6.95648e+06 57902.7 618332. 2139.56 1.45 0.0592112 0.050606 25762 151098 -1 716 17 477 477 43571 11025 1.25333 1.25333 -47.3958 -1.25333 0 0 787024. 2723.27 0.32 0.03 0.14 -1 -1 0.32 0.0087412 0.00770493 25 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_018bits.v common 4.51 vpr 64.24 MiB -1 -1 0.10 19732 1 0.02 -1 -1 33764 -1 -1 4 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65784 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 25.7 MiB 0.09 365 6144 2547 3561 36 64.2 MiB 0.04 0.00 1.36696 -50.3211 -1.36696 1.36696 0.91 0.000230973 0.000210196 0.013117 0.0119685 34 914 16 6.95648e+06 57902.7 618332. 2139.56 1.47 0.0482411 0.0419279 25762 151098 -1 827 19 499 499 56308 12309 1.22703 1.22703 -54.4758 -1.22703 0 0 787024. 2723.27 0.30 0.03 0.15 -1 -1 0.30 0.0103702 0.00910386 28 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_020bits.v common 6.84 vpr 64.16 MiB -1 -1 0.10 19732 1 0.02 -1 -1 33908 -1 -1 4 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65700 41 21 146 147 1 96 66 17 17 289 -1 unnamed_device 25.7 MiB 0.10 353 6716 2777 3889 50 64.2 MiB 0.04 0.00 1.38896 -56.1965 -1.38896 1.38896 0.92 0.000239166 0.000216521 0.0134078 0.0122153 36 1026 41 6.95648e+06 57902.7 648988. 2245.63 3.74 0.0913198 0.0784395 26050 158493 -1 850 18 534 534 49942 12071 1.39633 1.39633 -62.2585 -1.39633 0 0 828058. 2865.25 0.32 0.03 0.15 -1 -1 0.32 0.0106867 0.00945895 31 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_022bits.v common 4.97 vpr 64.41 MiB -1 -1 0.09 19840 1 0.02 -1 -1 33968 -1 -1 5 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65956 45 23 160 161 1 108 73 17 17 289 -1 unnamed_device 25.9 MiB 0.10 426 8889 3770 5070 49 64.4 MiB 0.04 0.00 1.41096 -62.769 -1.41096 1.41096 0.92 0.000262664 0.000238837 0.01594 0.0145213 36 1123 25 6.95648e+06 72378.4 648988. 2245.63 1.88 0.0756382 0.0656599 26050 158493 -1 864 19 604 604 58691 13415 1.35233 1.35233 -65.2583 -1.35233 0 0 828058. 2865.25 0.32 0.03 0.15 -1 -1 0.32 0.0119563 0.0105941 34 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_024bits.v common 5.21 vpr 64.57 MiB -1 -1 0.11 19976 1 0.03 -1 -1 33852 -1 -1 5 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66124 49 25 174 175 1 119 79 17 17 289 -1 unnamed_device 26.0 MiB 0.10 449 10895 4547 6264 84 64.6 MiB 0.06 0.00 1.43296 -68.3754 -1.43296 1.43296 0.93 0.000283575 0.000257811 0.0207575 0.0189723 38 1154 34 6.95648e+06 72378.4 678818. 2348.85 2.00 0.0927262 0.0812127 26626 170182 -1 983 17 666 666 64300 15447 1.41833 1.41833 -73.0392 -1.41833 0 0 902133. 3121.57 0.35 0.04 0.16 -1 -1 0.35 0.01197 0.0106297 37 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_028bits.v common 7.66 vpr 64.66 MiB -1 -1 0.11 19800 1 0.02 -1 -1 33592 -1 -1 6 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66216 57 29 202 203 1 142 92 17 17 289 -1 unnamed_device 26.1 MiB 0.08 552 14789 6414 8303 72 64.7 MiB 0.07 0.00 1.47696 -82.0834 -1.47696 1.47696 0.92 0.000312229 0.000286651 0.025195 0.0229503 46 1430 36 6.95648e+06 86854.1 828058. 2865.25 4.38 0.15742 0.137121 28066 200906 -1 1169 18 809 809 80510 19780 1.48433 1.48433 -86.6209 -1.48433 0 0 1.01997e+06 3529.29 0.39 0.04 0.20 -1 -1 0.39 0.0134001 0.0119226 43 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_032bits.v common 5.15 vpr 64.85 MiB -1 -1 0.10 19864 1 0.03 -1 -1 33772 -1 -1 7 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66404 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 26.4 MiB 0.09 753 15419 6653 8659 107 64.8 MiB 0.08 0.00 1.88129 -97.4586 -1.88129 1.88129 0.92 0.000384935 0.000351104 0.0256366 0.0234192 40 1765 33 6.95648e+06 101330 706193. 2443.58 1.94 0.113125 0.0989798 26914 176310 -1 1469 17 868 868 116248 27026 1.43363 1.43363 -98.4886 -1.43363 0 0 926341. 3205.33 0.36 0.05 0.18 -1 -1 0.36 0.0153222 0.0136381 49 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_048bits.v common 6.36 vpr 65.34 MiB -1 -1 0.12 20000 1 0.03 -1 -1 34016 -1 -1 10 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66904 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 26.6 MiB 0.10 1496 27810 8354 17704 1752 65.3 MiB 0.13 0.00 2.41762 -167.817 -2.41762 2.41762 0.92 0.000572479 0.000522909 0.0385511 0.0351968 48 3131 48 6.95648e+06 144757 865456. 2994.66 2.87 0.186983 0.165593 28354 207349 -1 2706 21 1149 1149 233785 50932 1.72383 1.72383 -165.664 -1.72383 0 0 1.05005e+06 3633.38 0.41 0.09 0.21 -1 -1 0.41 0.0255779 0.0228793 73 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_064bits.v common 10.17 vpr 66.20 MiB -1 -1 0.12 20332 1 0.03 -1 -1 34084 -1 -1 13 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67792 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 27.4 MiB 0.12 2187 38763 11991 23991 2781 66.2 MiB 0.19 0.01 2.95395 -243.557 -2.95395 2.95395 0.89 0.000752432 0.000689777 0.0499989 0.0458212 62 3723 20 6.95648e+06 188184 1.05005e+06 3633.38 6.46 0.316247 0.281724 30946 263737 -1 3363 18 1461 1461 187618 35225 1.73803 1.73803 -214.363 -1.73803 0 0 1.30136e+06 4502.97 0.48 0.08 0.27 -1 -1 0.48 0.0302756 0.0273943 97 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_003bits.v common 3.05 vpr 63.66 MiB -1 -1 0.09 19536 1 0.02 -1 -1 33500 -1 -1 1 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65188 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 25.2 MiB 0.01 38 142 63 74 5 63.7 MiB 0.00 0.00 0.815432 -8.51669 -0.815432 0.815432 0.89 5.4419e-05 4.8471e-05 0.000855085 0.000765866 14 105 9 6.99608e+06 14715.7 292583. 1012.40 0.44 0.00346012 0.00308775 22018 70521 -1 87 5 26 26 1498 534 0.87204 0.87204 -8.99744 -0.87204 0 0 376052. 1301.22 0.16 0.01 0.07 -1 -1 0.16 0.00196072 0.00181392 5 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_004bits.v common 4.64 vpr 63.43 MiB -1 -1 0.10 19440 1 0.02 -1 -1 33544 -1 -1 1 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64952 9 5 34 35 1 17 15 17 17 289 -1 unnamed_device 25.0 MiB 0.01 35 375 107 237 31 63.4 MiB 0.01 0.00 0.712895 -9.56286 -0.712895 0.712895 0.89 6.2666e-05 5.6059e-05 0.00165658 0.00148516 22 124 12 6.99608e+06 14715.7 443629. 1535.05 1.93 0.0181867 0.014992 23458 102101 -1 87 6 38 38 1755 619 0.74674 0.74674 -9.34806 -0.74674 0 0 531479. 1839.03 0.23 0.01 0.10 -1 -1 0.23 0.00239912 0.00219471 7 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_005bits.v common 4.35 vpr 63.69 MiB -1 -1 0.10 19600 1 0.02 -1 -1 33424 -1 -1 1 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65220 11 6 41 42 1 20 18 17 17 289 -1 unnamed_device 25.1 MiB 0.01 44 409 94 303 12 63.7 MiB 0.00 0.00 0.837432 -12.9697 -0.837432 0.837432 0.92 7.8263e-05 7.0751e-05 0.00171149 0.00154987 26 147 10 6.99608e+06 14715.7 503264. 1741.40 1.54 0.0196637 0.0163264 24322 120374 -1 145 5 50 50 3581 1091 0.837432 0.837432 -14.3301 -0.837432 0 0 618332. 2139.56 0.25 0.01 0.12 -1 -1 0.25 0.00245403 0.00224204 8 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_006bits.v common 4.62 vpr 63.70 MiB -1 -1 0.10 19644 1 0.02 -1 -1 33580 -1 -1 2 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65232 13 7 48 49 1 25 22 17 17 289 -1 unnamed_device 25.2 MiB 0.01 105 502 118 371 13 63.7 MiB 0.01 0.00 0.87204 -15.6049 -0.87204 0.87204 0.92 8.8521e-05 7.8422e-05 0.00190989 0.00172291 26 223 11 6.99608e+06 29431.4 503264. 1741.40 1.79 0.0230082 0.0191272 24322 120374 -1 213 6 57 57 3676 1011 0.99734 0.99734 -16.2101 -0.99734 0 0 618332. 2139.56 0.25 0.01 0.12 -1 -1 0.25 0.0026128 0.00237992 10 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_007bits.v common 3.59 vpr 63.75 MiB -1 -1 0.09 19568 1 0.02 -1 -1 33724 -1 -1 2 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65280 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 25.3 MiB 0.01 221 889 226 585 78 63.8 MiB 0.01 0.00 0.859432 -20.3506 -0.859432 0.859432 0.93 9.6431e-05 8.7207e-05 0.0029756 0.0026949 26 397 12 6.99608e+06 29431.4 503264. 1741.40 0.74 0.0153267 0.0130701 24322 120374 -1 368 9 105 105 10800 2361 0.87204 0.87204 -22.2128 -0.87204 0 0 618332. 2139.56 0.25 0.01 0.12 -1 -1 0.25 0.00341109 0.00305689 11 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_008bits.v common 4.90 vpr 63.80 MiB -1 -1 0.09 19636 1 0.02 -1 -1 33644 -1 -1 2 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65336 17 9 62 63 1 36 28 17 17 289 -1 unnamed_device 25.3 MiB 0.01 254 910 227 603 80 63.8 MiB 0.01 0.00 0.835432 -22.1941 -0.835432 0.835432 0.92 0.000106295 9.5925e-05 0.00292783 0.00266375 26 488 14 6.99608e+06 29431.4 503264. 1741.40 2.08 0.0252854 0.0211642 24322 120374 -1 456 13 159 159 15996 3757 1.05303 1.05303 -25.2756 -1.05303 0 0 618332. 2139.56 0.26 0.01 0.11 -1 -1 0.26 0.00470058 0.00412398 13 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_009bits.v common 3.69 vpr 63.88 MiB -1 -1 0.10 19436 1 0.02 -1 -1 33656 -1 -1 2 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65408 19 10 69 70 1 44 31 17 17 289 -1 unnamed_device 25.3 MiB 0.01 127 1327 280 1001 46 63.9 MiB 0.01 0.00 0.99734 -22.7448 -0.99734 0.99734 0.92 0.000102382 9.0931e-05 0.00364914 0.00328256 30 407 16 6.99608e+06 29431.4 556674. 1926.21 0.84 0.0192024 0.016373 25186 138497 -1 334 18 219 219 12513 3719 0.968879 0.968879 -24.6339 -0.968879 0 0 706193. 2443.58 0.29 0.02 0.13 -1 -1 0.29 0.0054396 0.00474949 14 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_010bits.v common 4.85 vpr 63.62 MiB -1 -1 0.09 19548 1 0.02 -1 -1 33720 -1 -1 2 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65144 21 11 76 77 1 49 34 17 17 289 -1 unnamed_device 25.0 MiB 0.01 126 1574 441 793 340 63.6 MiB 0.01 0.00 0.857432 -24.0154 -0.857432 0.857432 0.94 0.000134399 0.000121811 0.00452806 0.00411509 30 434 27 6.99608e+06 29431.4 556674. 1926.21 1.94 0.0420514 0.0352497 25186 138497 -1 351 23 370 370 16172 5279 0.982732 0.982732 -25.8412 -0.982732 0 0 706193. 2443.58 0.29 0.02 0.13 -1 -1 0.29 0.00720402 0.00622013 16 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_011bits.v common 4.73 vpr 63.80 MiB -1 -1 0.09 19468 1 0.02 -1 -1 33444 -1 -1 3 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65336 23 12 83 84 1 54 38 17 17 289 -1 unnamed_device 25.2 MiB 0.02 183 1550 351 1152 47 63.8 MiB 0.01 0.00 0.99734 -28.2495 -0.99734 0.99734 0.93 0.000151455 0.000127293 0.00418226 0.00377875 30 528 14 6.99608e+06 44147 556674. 1926.21 1.80 0.0379492 0.0320619 25186 138497 -1 439 11 227 227 13305 3948 1.08603 1.08603 -31.0258 -1.08603 0 0 706193. 2443.58 0.30 0.01 0.13 -1 -1 0.30 0.00509381 0.00454639 17 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_012bits.v common 5.49 vpr 63.81 MiB -1 -1 0.10 19604 1 0.02 -1 -1 33560 -1 -1 3 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65340 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 25.2 MiB 0.02 204 1721 329 1376 16 63.8 MiB 0.01 0.00 0.890432 -30.9922 -0.890432 0.890432 0.89 0.000147547 0.000132853 0.00454376 0.00411778 30 568 17 6.99608e+06 44147 556674. 1926.21 2.62 0.0472861 0.039886 25186 138497 -1 444 15 282 282 18370 4786 0.984679 0.984679 -32.4857 -0.984679 0 0 706193. 2443.58 0.29 0.02 0.13 -1 -1 0.29 0.00619035 0.00543248 19 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_013bits.v common 4.30 vpr 63.71 MiB -1 -1 0.10 19812 1 0.02 -1 -1 33680 -1 -1 3 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65236 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 25.1 MiB 0.02 436 1892 450 1259 183 63.7 MiB 0.01 0.00 0.912432 -36.8018 -0.912432 0.912432 0.92 0.000176032 0.000160634 0.00482704 0.00441405 34 871 31 6.99608e+06 44147 618332. 2139.56 1.37 0.0435822 0.0368844 25762 151098 -1 817 14 336 336 38351 7943 1.13198 1.13198 -42.3609 -1.13198 0 0 787024. 2723.27 0.30 0.02 0.14 -1 -1 0.30 0.00606592 0.00536456 20 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_014bits.v common 4.44 vpr 63.91 MiB -1 -1 0.09 19608 1 0.02 -1 -1 33556 -1 -1 4 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65448 29 15 104 105 1 72 48 17 17 289 -1 unnamed_device 25.6 MiB 0.02 450 1875 444 1300 131 63.9 MiB 0.01 0.00 0.923432 -40.3253 -0.923432 0.923432 0.92 0.000180277 0.000163495 0.00461299 0.00422003 34 954 25 6.99608e+06 58862.7 618332. 2139.56 1.46 0.044531 0.0378702 25762 151098 -1 848 13 411 411 49168 9894 1.10803 1.10803 -44.6937 -1.10803 0 0 787024. 2723.27 0.32 0.02 0.15 -1 -1 0.32 0.00651785 0.00578674 23 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_015bits.v common 6.04 vpr 64.00 MiB -1 -1 0.09 19676 1 0.02 -1 -1 33604 -1 -1 3 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65540 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 25.6 MiB 0.02 264 3730 1488 2207 35 64.0 MiB 0.02 0.00 1.29476 -39.8553 -1.29476 1.29476 0.92 0.00019029 0.0001728 0.00858738 0.00781918 34 830 27 6.99608e+06 44147 618332. 2139.56 3.06 0.0577929 0.0493066 25762 151098 -1 649 16 443 443 44830 11455 1.24233 1.24233 -43.4292 -1.24233 0 0 787024. 2723.27 0.32 0.02 0.15 -1 -1 0.32 0.00776076 0.00684006 24 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_016bits.v common 4.39 vpr 63.82 MiB -1 -1 0.10 19776 1 0.02 -1 -1 34040 -1 -1 4 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65352 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 25.4 MiB 0.02 281 4848 2013 2797 38 63.8 MiB 0.03 0.00 1.30576 -42.5699 -1.30576 1.30576 0.91 0.00021795 0.000198641 0.0106027 0.00966231 34 847 23 6.99608e+06 58862.7 618332. 2139.56 1.39 0.05343 0.0457506 25762 151098 -1 680 17 456 456 48100 11874 1.30833 1.30833 -48.5698 -1.30833 0 0 787024. 2723.27 0.32 0.03 0.15 -1 -1 0.32 0.00857701 0.00753958 25 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_018bits.v common 4.52 vpr 64.17 MiB -1 -1 0.11 19880 1 0.02 -1 -1 34056 -1 -1 4 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65708 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 25.8 MiB 0.02 364 6027 2460 3523 44 64.2 MiB 0.03 0.00 1.33876 -49.9999 -1.33876 1.33876 0.91 0.000230907 0.000209332 0.0127747 0.0116228 34 980 21 6.99608e+06 58862.7 618332. 2139.56 1.52 0.060715 0.0522377 25762 151098 -1 784 15 444 444 47792 10699 1.25718 1.25718 -53.9315 -1.25718 0 0 787024. 2723.27 0.31 0.03 0.15 -1 -1 0.31 0.00869937 0.00772583 28 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_020bits.v common 4.52 vpr 64.25 MiB -1 -1 0.09 19836 1 0.02 -1 -1 33892 -1 -1 4 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65788 41 21 146 147 1 94 66 17 17 289 -1 unnamed_device 25.8 MiB 0.03 346 6716 2738 3934 44 64.2 MiB 0.04 0.00 1.34976 -55.1748 -1.34976 1.34976 0.90 0.000246274 0.00022435 0.0135315 0.0123474 34 1160 49 6.99608e+06 58862.7 618332. 2139.56 1.58 0.0757723 0.0652418 25762 151098 -1 857 16 510 510 51385 11794 1.25718 1.25718 -58.5102 -1.25718 0 0 787024. 2723.27 0.31 0.03 0.14 -1 -1 0.31 0.00987005 0.00875855 31 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_022bits.v common 6.45 vpr 64.28 MiB -1 -1 0.11 19864 1 0.02 -1 -1 33952 -1 -1 5 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65824 45 23 160 161 1 107 73 17 17 289 -1 unnamed_device 25.8 MiB 0.03 396 8889 3651 5188 50 64.3 MiB 0.05 0.00 1.37176 -60.7615 -1.37176 1.37176 0.93 0.000274854 0.000250777 0.0173546 0.0158532 36 1206 32 6.99608e+06 73578.4 648988. 2245.63 3.37 0.107921 0.0932114 26050 158493 -1 910 20 565 565 82385 22392 1.85353 1.85353 -73.992 -1.85353 0 0 828058. 2865.25 0.32 0.04 0.16 -1 -1 0.32 0.0124746 0.0110191 34 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_024bits.v common 7.12 vpr 64.45 MiB -1 -1 0.11 19660 1 0.02 -1 -1 33900 -1 -1 5 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65992 49 25 174 175 1 118 79 17 17 289 -1 unnamed_device 25.9 MiB 0.03 445 10895 4568 6256 71 64.4 MiB 0.06 0.00 1.39376 -67.8862 -1.39376 1.39376 0.92 0.00029629 0.000269674 0.0202316 0.018472 38 1308 26 6.99608e+06 73578.4 678818. 2348.85 4.04 0.114493 0.0991909 26626 170182 -1 975 16 636 636 50572 12478 1.27103 1.27103 -69.3712 -1.27103 0 0 902133. 3121.57 0.34 0.03 0.16 -1 -1 0.34 0.0113973 0.0101612 37 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_028bits.v common 9.20 vpr 64.27 MiB -1 -1 0.11 19920 1 0.03 -1 -1 33740 -1 -1 6 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65808 57 29 202 203 1 141 92 17 17 289 -1 unnamed_device 25.7 MiB 0.04 635 14168 6072 8041 55 64.3 MiB 0.06 0.00 1.43776 -80.6872 -1.43776 1.43776 0.90 0.000324779 0.000294129 0.0224158 0.0204149 38 1507 22 6.99608e+06 88294.1 678818. 2348.85 6.07 0.158912 0.13775 26626 170182 -1 1188 20 693 693 57031 13881 1.29303 1.29303 -80.6956 -1.29303 0 0 902133. 3121.57 0.35 0.04 0.17 -1 -1 0.35 0.0146591 0.0129765 43 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_032bits.v common 7.40 vpr 64.48 MiB -1 -1 0.11 19812 1 0.03 -1 -1 33676 -1 -1 7 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66028 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 26.1 MiB 0.04 752 15419 6606 8671 142 64.5 MiB 0.08 0.00 1.85309 -96.2187 -1.85309 1.85309 0.93 0.000389307 0.000348527 0.0258503 0.0235965 40 1653 26 6.99608e+06 103010 706193. 2443.58 4.23 0.143454 0.125019 26914 176310 -1 1419 15 778 778 81665 18423 1.52633 1.52633 -101 -1.52633 0 0 926341. 3205.33 0.34 0.04 0.17 -1 -1 0.34 0.0137942 0.0123104 49 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_048bits.v common 9.45 vpr 65.37 MiB -1 -1 0.12 20328 1 0.03 -1 -1 33832 -1 -1 10 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66940 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 26.6 MiB 0.05 1468 27810 8060 18307 1443 65.4 MiB 0.13 0.00 2.38942 -165.278 -2.38942 2.38942 0.91 0.00054444 0.000497823 0.0396118 0.0363077 48 2904 38 6.99608e+06 147157 865456. 2994.66 5.97 0.270486 0.238812 28354 207349 -1 2578 27 1313 1313 404571 187954 1.52003 1.52003 -157.689 -1.52003 0 0 1.05005e+06 3633.38 0.40 0.15 0.20 -1 -1 0.40 0.0314687 0.028059 73 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_064bits.v common 6.58 vpr 66.07 MiB -1 -1 0.13 20484 1 0.03 -1 -1 34092 -1 -1 13 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67652 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 27.3 MiB 0.07 2210 38763 12390 23782 2591 66.1 MiB 0.17 0.00 2.92575 -242.6 -2.92575 2.92575 0.90 0.000772482 0.000708307 0.0474759 0.04345 50 3883 38 6.99608e+06 191304 902133. 3121.57 3.11 0.230821 0.206324 28642 213929 -1 3684 16 1457 1457 205560 42967 1.81463 1.81463 -221.66 -1.81463 0 0 1.08113e+06 3740.92 0.42 0.09 0.19 -1 -1 0.42 0.0270829 0.0245616 97 -1 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_003bits.v common 3.24 vpr 62.86 MiB -1 -1 0.09 19548 1 0.06 -1 -1 35476 -1 -1 1 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64364 7 4 21 25 1 11 12 17 17 289 -1 unnamed_device 24.5 MiB 0.01 84 103 37 64 2 62.9 MiB 0.00 0.00 0.77095 -8.74779 -0.77095 0.77095 0.90 4.3829e-05 3.8311e-05 0.000632852 0.000562417 18 137 6 6.79088e+06 13472 376052. 1301.22 0.52 0.00281844 0.00254676 22222 88205 -1 138 8 40 40 3761 958 0.834592 0.834592 -9.43991 -0.834592 0 0 470940. 1629.55 0.20 0.01 0.09 -1 -1 0.20 0.00222987 0.00203063 6 4 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_004bits.v common 4.05 vpr 62.87 MiB -1 -1 0.09 19772 2 0.06 -1 -1 35624 -1 -1 1 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64380 9 5 28 33 1 16 15 17 17 289 -1 unnamed_device 24.4 MiB 0.01 35 357 92 226 39 62.9 MiB 0.01 0.00 0.883748 -9.933 -0.883748 0.883748 0.93 5.9008e-05 5.2556e-05 0.00154131 0.00138325 18 137 12 6.79088e+06 13472 376052. 1301.22 1.29 0.00715763 0.00614737 22222 88205 -1 113 7 46 46 2303 814 0.883748 0.883748 -10.8459 -0.883748 0 0 470940. 1629.55 0.20 0.01 0.09 -1 -1 0.20 0.00241532 0.00218541 8 6 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_005bits.v common 3.97 vpr 62.94 MiB -1 -1 0.10 19596 2 0.06 -1 -1 35804 -1 -1 2 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64448 11 6 34 40 1 23 19 17 17 289 -1 unnamed_device 24.5 MiB 0.01 64 419 103 298 18 62.9 MiB 0.01 0.00 1.02368 -13.4613 -1.02368 1.02368 0.92 7.7214e-05 6.9144e-05 0.00168073 0.0015107 18 183 9 6.79088e+06 26944 376052. 1301.22 1.22 0.00725036 0.00628649 22222 88205 -1 175 6 65 73 3073 1098 1.02368 1.02368 -14.8017 -1.02368 0 0 470940. 1629.55 0.20 0.01 0.09 -1 -1 0.20 0.00261082 0.00237408 10 7 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_006bits.v common 5.44 vpr 63.04 MiB -1 -1 0.10 19952 3 0.06 -1 -1 35520 -1 -1 2 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64556 13 7 41 48 1 30 22 17 17 289 -1 unnamed_device 24.6 MiB 0.01 76 532 100 418 14 63.0 MiB 0.01 0.00 1.14898 -15.9034 -1.14898 1.14898 0.93 8.8793e-05 7.9489e-05 0.00205104 0.00185051 30 236 11 6.79088e+06 26944 556674. 1926.21 2.52 0.0237554 0.0197041 24526 138013 -1 187 7 66 72 3029 945 1.05944 1.05944 -16.3296 -1.05944 0 0 706193. 2443.58 0.30 0.01 0.13 -1 -1 0.30 0.00301096 0.00272878 11 9 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_007bits.v common 3.56 vpr 62.98 MiB -1 -1 0.10 19616 3 0.06 -1 -1 35348 -1 -1 2 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64496 15 8 47 55 1 36 25 17 17 289 -1 unnamed_device 24.5 MiB 0.01 104 1285 405 745 135 63.0 MiB 0.01 0.00 1.18818 -18.8265 -1.18818 1.18818 0.91 9.192e-05 8.2581e-05 0.00383608 0.00346472 26 333 14 6.79088e+06 26944 503264. 1741.40 0.72 0.0168106 0.0143657 23662 119890 -1 257 11 126 143 7630 2459 1.13784 1.13784 -19.7718 -1.13784 0 0 618332. 2139.56 0.24 0.01 0.12 -1 -1 0.24 0.00373373 0.00332241 13 10 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_008bits.v common 4.64 vpr 63.13 MiB -1 -1 0.11 19452 3 0.06 -1 -1 35340 -1 -1 2 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64644 17 9 56 65 1 43 28 17 17 289 -1 unnamed_device 24.6 MiB 0.04 140 1036 259 742 35 63.1 MiB 0.01 0.00 1.52493 -22.992 -1.52493 1.52493 0.92 0.000119696 0.000107449 0.00362929 0.00330773 22 558 14 6.79088e+06 26944 443629. 1535.05 1.82 0.0262778 0.022181 22798 101617 -1 396 10 193 215 10432 3262 1.27433 1.27433 -24.6925 -1.27433 0 0 531479. 1839.03 0.22 0.01 0.10 -1 -1 0.22 0.00411365 0.00368632 16 14 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_009bits.v common 3.72 vpr 63.30 MiB -1 -1 0.10 19392 4 0.07 -1 -1 35556 -1 -1 3 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64816 19 10 60 70 1 49 32 17 17 289 -1 unnamed_device 24.8 MiB 0.05 146 1882 579 931 372 63.3 MiB 0.01 0.00 1.31348 -24.6536 -1.31348 1.31348 0.88 0.000106174 9.5642e-05 0.00487996 0.00441828 28 479 37 6.79088e+06 40416 531479. 1839.03 0.84 0.0259084 0.0219921 23950 126010 -1 377 12 208 213 13543 4049 1.34919 1.34919 -26.3046 -1.34919 0 0 648988. 2245.63 0.28 0.01 0.12 -1 -1 0.28 0.00490161 0.0043438 17 13 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_010bits.v common 3.94 vpr 63.23 MiB -1 -1 0.10 19672 4 0.07 -1 -1 35712 -1 -1 3 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64744 21 11 69 80 1 55 35 17 17 289 -1 unnamed_device 24.7 MiB 0.20 300 2030 503 1451 76 63.2 MiB 0.02 0.00 1.85398 -35.071 -1.85398 1.85398 0.94 0.000146119 0.000131415 0.00601448 0.00547059 28 657 18 6.79088e+06 40416 531479. 1839.03 0.83 0.0251114 0.0215748 23950 126010 -1 617 13 210 249 23281 5467 1.60338 1.60338 -35.1153 -1.60338 0 0 648988. 2245.63 0.26 0.02 0.12 -1 -1 0.26 0.00548026 0.00485703 21 17 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_011bits.v common 5.04 vpr 63.16 MiB -1 -1 0.10 19544 5 0.06 -1 -1 35652 -1 -1 3 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64680 23 12 76 88 1 61 38 17 17 289 -1 unnamed_device 24.6 MiB 0.11 166 1865 679 1174 12 63.2 MiB 0.01 0.00 1.90432 -33.8065 -1.90432 1.90432 0.92 0.000162759 0.000150229 0.00494476 0.00448798 30 577 30 6.79088e+06 40416 556674. 1926.21 2.08 0.0480968 0.0406835 24526 138013 -1 446 11 322 376 14998 5053 1.72519 1.72519 -33.4029 -1.72519 0 0 706193. 2443.58 0.28 0.01 0.13 -1 -1 0.28 0.0055083 0.00494041 22 19 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_012bits.v common 4.93 vpr 63.43 MiB -1 -1 0.10 19616 5 0.06 -1 -1 35288 -1 -1 3 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64952 25 13 83 96 1 66 41 17 17 289 -1 unnamed_device 24.8 MiB 0.19 220 1581 312 1246 23 63.4 MiB 0.01 0.00 1.86512 -39.3139 -1.86512 1.86512 0.90 0.000152172 0.000137641 0.00448051 0.00406681 30 646 19 6.79088e+06 40416 556674. 1926.21 1.83 0.043588 0.036785 24526 138013 -1 552 11 279 329 17708 5108 1.72868 1.72868 -39.1753 -1.72868 0 0 706193. 2443.58 0.29 0.01 0.12 -1 -1 0.29 0.00546811 0.00488018 23 21 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_013bits.v common 4.60 vpr 63.14 MiB -1 -1 0.11 19884 5 0.07 -1 -1 35840 -1 -1 4 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64656 27 14 91 105 1 72 45 17 17 289 -1 unnamed_device 24.6 MiB 0.32 364 3005 1063 1662 280 63.1 MiB 0.02 0.00 2.15497 -46.6453 -2.15497 2.15497 0.90 0.000188237 0.000172023 0.0081593 0.0074387 34 795 13 6.79088e+06 53888 618332. 2139.56 1.30 0.0463757 0.0397243 25102 150614 -1 712 11 254 334 23124 5676 1.90093 1.90093 -45.172 -1.90093 0 0 787024. 2723.27 0.32 0.02 0.15 -1 -1 0.32 0.00647396 0.00580877 27 24 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_014bits.v common 4.59 vpr 63.57 MiB -1 -1 0.11 20148 6 0.07 -1 -1 35500 -1 -1 4 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65100 29 15 95 110 1 77 48 17 17 289 -1 unnamed_device 25.2 MiB 0.24 255 3963 1479 2060 424 63.6 MiB 0.03 0.00 2.36642 -47.9969 -2.36642 2.36642 0.91 0.000202165 0.000183444 0.0100788 0.00916818 34 793 20 6.79088e+06 53888 618332. 2139.56 1.39 0.042369 0.0365279 25102 150614 -1 609 13 313 372 29455 7884 2.31609 2.31609 -47.9355 -2.31609 0 0 787024. 2723.27 0.31 0.02 0.15 -1 -1 0.31 0.00732064 0.00650832 28 23 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_015bits.v common 4.73 vpr 63.23 MiB -1 -1 0.10 19940 6 0.07 -1 -1 35784 -1 -1 5 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64748 31 16 104 120 1 82 52 17 17 289 -1 unnamed_device 24.9 MiB 0.43 458 5484 1992 2787 705 63.2 MiB 0.03 0.00 2.44482 -57.1239 -2.44482 2.44482 0.90 0.000196946 0.000177536 0.0117818 0.0106271 34 917 21 6.79088e+06 67360 618332. 2139.56 1.33 0.0568954 0.0489238 25102 150614 -1 828 10 282 394 26257 6166 2.14389 2.14389 -55.1703 -2.14389 0 0 787024. 2723.27 0.32 0.02 0.15 -1 -1 0.32 0.00701928 0.00631098 31 27 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_016bits.v common 6.83 vpr 63.34 MiB -1 -1 0.11 19824 7 0.07 -1 -1 35784 -1 -1 5 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64856 33 17 112 129 1 88 55 17 17 289 -1 unnamed_device 24.9 MiB 0.79 550 4423 1218 2590 615 63.3 MiB 0.03 0.00 2.73468 -63.1333 -2.73468 2.73468 0.93 0.000225862 0.000204756 0.0110684 0.0101067 28 1292 46 6.79088e+06 67360 531479. 1839.03 3.08 0.0955212 0.082038 23950 126010 -1 1064 16 361 445 36125 8215 2.60594 2.60594 -66.3394 -2.60594 0 0 648988. 2245.63 0.27 0.02 0.12 -1 -1 0.27 0.00935675 0.0083118 32 30 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_018bits.v common 6.99 vpr 63.78 MiB -1 -1 0.10 19860 7 0.07 -1 -1 36188 -1 -1 6 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65312 37 19 127 146 1 99 62 17 17 289 -1 unnamed_device 25.3 MiB 1.37 427 3600 772 2818 10 63.8 MiB 0.02 0.00 3.37591 -73.3749 -3.37591 3.37591 0.92 0.000229316 0.000209443 0.00864308 0.00789849 30 1082 14 6.79088e+06 80832 556674. 1926.21 2.64 0.0751671 0.0643938 24526 138013 -1 904 10 360 451 30722 7668 3.00001 3.00001 -71.7183 -3.00001 0 0 706193. 2443.58 0.28 0.02 0.13 -1 -1 0.28 0.00807295 0.00728106 37 35 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_020bits.v common 6.58 vpr 63.74 MiB -1 -1 0.11 19756 8 0.08 -1 -1 35840 -1 -1 6 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65268 41 21 139 160 1 106 68 17 17 289 -1 unnamed_device 25.3 MiB 0.53 538 6140 1482 4552 106 63.7 MiB 0.04 0.00 2.83873 -76.6247 -2.83873 2.83873 0.91 0.000289562 0.000264232 0.0139229 0.0126782 34 1267 16 6.79088e+06 80832 618332. 2139.56 2.96 0.0865489 0.0748619 25102 150614 -1 1122 11 408 512 44203 9986 2.78163 2.78163 -79.1023 -2.78163 0 0 787024. 2723.27 0.31 0.02 0.15 -1 -1 0.31 0.00926326 0.00834255 41 37 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_022bits.v common 4.87 vpr 63.85 MiB -1 -1 0.12 20096 9 0.08 -1 -1 36212 -1 -1 6 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65384 45 23 153 176 1 119 74 17 17 289 -1 unnamed_device 25.4 MiB 0.46 495 8909 2437 5871 601 63.9 MiB 0.05 0.00 3.32208 -88.8928 -3.32208 3.32208 0.90 0.000313013 0.000286195 0.0184774 0.0168437 34 1126 14 6.79088e+06 80832 618332. 2139.56 1.37 0.0786422 0.0685167 25102 150614 -1 964 16 434 534 34665 8952 2.98195 2.98195 -84.329 -2.98195 0 0 787024. 2723.27 0.32 0.03 0.15 -1 -1 0.32 0.0121085 0.0108418 43 41 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_024bits.v common 7.09 vpr 63.89 MiB -1 -1 0.12 20088 10 0.08 -1 -1 36144 -1 -1 8 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65424 49 25 166 191 1 133 82 17 17 289 -1 unnamed_device 25.6 MiB 0.97 443 10406 3257 5328 1821 63.9 MiB 0.05 0.00 3.69804 -97.8019 -3.69804 3.69804 0.88 0.000336488 0.000305946 0.0203225 0.0184972 30 1275 29 6.79088e+06 107776 556674. 1926.21 3.14 0.13715 0.118422 24526 138013 -1 942 16 569 644 30950 9603 3.4363 3.4363 -94.393 -3.4363 0 0 706193. 2443.58 0.30 0.03 0.13 -1 -1 0.30 0.0128741 0.0115054 48 44 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_028bits.v common 6.11 vpr 64.13 MiB -1 -1 0.11 19764 11 0.08 -1 -1 35848 -1 -1 8 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65668 57 29 198 227 1 158 94 17 17 289 -1 unnamed_device 25.7 MiB 1.39 693 10744 2889 6912 943 64.1 MiB 0.06 0.00 4.24198 -129.885 -4.24198 4.24198 0.93 0.000392126 0.000357565 0.0214893 0.0195503 36 1621 34 6.79088e+06 107776 648988. 2245.63 1.55 0.110406 0.0964284 25390 158009 -1 1449 12 609 866 56809 14248 3.77654 3.77654 -122.326 -3.77654 0 0 828058. 2865.25 0.34 0.03 0.15 -1 -1 0.34 0.0129885 0.0117561 59 56 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_032bits.v common 8.05 vpr 64.32 MiB -1 -1 0.13 20324 13 0.09 -1 -1 36164 -1 -1 9 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65864 65 33 224 257 1 176 107 17 17 289 -1 unnamed_device 25.8 MiB 1.78 926 16805 6949 9813 43 64.3 MiB 0.08 0.00 5.07578 -160.683 -5.07578 5.07578 0.94 0.000426048 0.000386087 0.0306355 0.0278094 36 1844 17 6.79088e+06 121248 648988. 2245.63 3.06 0.153314 0.133624 25390 158009 -1 1659 16 690 896 53298 13256 4.62142 4.62142 -153.744 -4.62142 0 0 828058. 2865.25 0.33 0.04 0.15 -1 -1 0.33 0.0166101 0.0148293 66 62 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_048bits.v common 11.33 vpr 65.16 MiB -1 -1 0.14 20544 19 0.11 -1 -1 36096 -1 -1 13 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 97 49 340 389 1 267 159 17 17 289 -1 unnamed_device 26.5 MiB 3.49 1392 28109 7029 18915 2165 65.2 MiB 0.13 0.00 7.59683 -301.558 -7.59683 7.59683 0.92 0.000637392 0.000579491 0.045073 0.0410951 38 2894 18 6.79088e+06 175136 678818. 2348.85 4.48 0.253006 0.223731 25966 169698 -1 2642 17 1076 1468 97259 23253 6.84503 6.84503 -284.419 -6.84503 0 0 902133. 3121.57 0.34 0.06 0.16 -1 -1 0.34 0.0253758 0.02291 100 98 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_064bits.v common 13.31 vpr 65.70 MiB -1 -1 0.17 20764 26 0.13 -1 -1 36024 -1 -1 18 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67272 129 65 453 518 1 350 212 17 17 289 -1 unnamed_device 27.0 MiB 4.42 1833 46906 17001 25907 3998 65.7 MiB 0.21 0.00 10.4862 -509.792 -10.4862 10.4862 0.93 0.000840576 0.000764707 0.0680155 0.0620337 40 3816 42 6.79088e+06 242496 706193. 2443.58 5.32 0.467594 0.418801 26254 175826 -1 3371 15 1379 1841 140908 34319 9.82387 9.82387 -485.167 -9.82387 0 0 926341. 3205.33 0.36 0.08 0.17 -1 -1 0.36 0.0336583 0.0308449 129 131 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_003bits.v common 4.15 vpr 63.38 MiB -1 -1 0.09 19608 1 0.02 -1 -1 33544 -1 -1 1 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64900 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 25.0 MiB 0.02 25 155 63 90 2 63.4 MiB 0.00 0.00 0.605992 -7.06722 -0.605992 0.605992 0.91 5.1852e-05 4.4748e-05 0.000933558 0.000827175 22 62 10 6.87369e+06 13973.8 443629. 1535.05 1.39 0.0176942 0.014402 23458 102101 -1 59 3 19 19 1002 355 0.74674 0.74674 -6.60182 -0.74674 0 0 531479. 1839.03 0.22 0.00 0.10 -1 -1 0.22 0.00191093 0.00179105 8 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_004bits.v common 4.05 vpr 63.40 MiB -1 -1 0.09 19528 1 0.02 -1 -1 33580 -1 -1 2 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64920 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 25.0 MiB 0.04 44 336 94 221 21 63.4 MiB 0.00 0.00 0.789073 -9.95572 -0.789073 0.789073 0.89 6.5608e-05 5.8805e-05 0.00140062 0.00125504 18 133 9 6.87369e+06 27947.7 376052. 1301.22 1.32 0.012633 0.0104884 22882 88689 -1 122 8 63 63 3717 1187 0.914373 0.914373 -10.4211 -0.914373 0 0 470940. 1629.55 0.21 0.01 0.09 -1 -1 0.21 0.00260526 0.00235631 10 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_005bits.v common 4.42 vpr 63.32 MiB -1 -1 0.09 19580 1 0.02 -1 -1 33468 -1 -1 3 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64844 11 6 41 42 1 27 20 17 17 289 -1 unnamed_device 24.9 MiB 0.05 61 695 189 478 28 63.3 MiB 0.01 0.00 0.811073 -12.6848 -0.811073 0.811073 0.90 6.4001e-05 5.6902e-05 0.00208019 0.00184519 26 199 9 6.87369e+06 41921.5 503264. 1741.40 1.63 0.02114 0.0172615 24322 120374 -1 188 13 122 122 6474 2164 0.936373 0.936373 -14.2242 -0.936373 0 0 618332. 2139.56 0.26 0.01 0.11 -1 -1 0.26 0.00319401 0.00281058 13 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_006bits.v common 4.92 vpr 63.55 MiB -1 -1 0.10 19548 1 0.02 -1 -1 33408 -1 -1 3 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65072 13 7 48 49 1 33 23 17 17 289 -1 unnamed_device 25.1 MiB 0.06 79 823 189 488 146 63.5 MiB 0.01 0.00 0.833073 -15.431 -0.833073 0.833073 0.90 9.517e-05 8.6419e-05 0.00265911 0.00240227 28 259 20 6.87369e+06 41921.5 531479. 1839.03 2.04 0.029085 0.0241241 24610 126494 -1 264 31 369 369 22698 7051 1.07267 1.07267 -17.5389 -1.07267 0 0 648988. 2245.63 0.26 0.02 0.12 -1 -1 0.26 0.00575001 0.00488277 15 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_007bits.v common 3.62 vpr 63.62 MiB -1 -1 0.09 19640 1 0.02 -1 -1 33632 -1 -1 3 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65148 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 25.1 MiB 0.08 110 1774 718 1009 47 63.6 MiB 0.01 0.00 1.38906 -18.7903 -1.38906 1.38906 0.92 0.000102539 9.2684e-05 0.00513679 0.00464506 26 280 15 6.87369e+06 41921.5 503264. 1741.40 0.73 0.0178693 0.0153039 24322 120374 -1 234 12 143 143 5672 1951 1.07067 1.07067 -18.8174 -1.07067 0 0 618332. 2139.56 0.25 0.01 0.12 -1 -1 0.25 0.00383335 0.00338876 17 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_008bits.v common 3.62 vpr 63.31 MiB -1 -1 0.09 19428 1 0.02 -1 -1 33636 -1 -1 3 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64828 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 24.8 MiB 0.06 121 1965 774 1136 55 63.3 MiB 0.02 0.00 1.2154 -21.6367 -1.2154 1.2154 0.91 0.000110558 0.000100292 0.00551964 0.00499856 26 331 14 6.87369e+06 41921.5 503264. 1741.40 0.76 0.0199015 0.017005 24322 120374 -1 277 13 161 161 10288 3152 1.00037 1.00037 -22.4597 -1.00037 0 0 618332. 2139.56 0.25 0.01 0.12 -1 -1 0.25 0.00430562 0.00380315 18 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_009bits.v common 5.75 vpr 63.75 MiB -1 -1 0.10 19880 1 0.02 -1 -1 33696 -1 -1 3 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65280 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 25.2 MiB 0.06 132 2382 822 1143 417 63.8 MiB 0.02 0.00 1.2264 -24.2078 -1.2264 1.2264 0.93 0.000120681 0.000108998 0.00639069 0.00578568 34 351 22 6.87369e+06 41921.5 618332. 2139.56 2.74 0.0429692 0.0360996 25762 151098 -1 296 11 165 165 10562 3100 1.01137 1.01137 -24.9922 -1.01137 0 0 787024. 2723.27 0.32 0.01 0.15 -1 -1 0.32 0.00447082 0.00395729 20 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_010bits.v common 5.66 vpr 63.62 MiB -1 -1 0.09 19920 1 0.02 -1 -1 33680 -1 -1 3 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65148 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 25.1 MiB 0.07 144 2942 1070 1287 585 63.6 MiB 0.02 0.00 1.2374 -27.3029 -1.2374 1.2374 0.93 0.00013531 0.000121917 0.00726851 0.00657877 32 390 13 6.87369e+06 41921.5 586450. 2029.24 2.67 0.0436789 0.0368763 25474 144626 -1 342 13 206 206 15975 4187 1.10367 1.10367 -27.6336 -1.10367 0 0 744469. 2576.02 0.30 0.01 0.14 -1 -1 0.30 0.00513827 0.00453887 22 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_011bits.v common 3.86 vpr 63.84 MiB -1 -1 0.10 19504 1 0.02 -1 -1 33724 -1 -1 4 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65368 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 25.3 MiB 0.07 162 3207 1137 1446 624 63.8 MiB 0.02 0.00 1.2484 -29.9497 -1.2484 1.2484 0.92 0.000143909 0.000129942 0.00756449 0.00685378 32 462 19 6.87369e+06 55895.4 586450. 2029.24 0.87 0.0252849 0.021822 25474 144626 -1 414 14 252 252 18126 4939 1.21797 1.21797 -32.1502 -1.21797 0 0 744469. 2576.02 0.31 0.02 0.14 -1 -1 0.31 0.00575911 0.00507288 24 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_012bits.v common 3.86 vpr 63.84 MiB -1 -1 0.10 19660 1 0.02 -1 -1 33464 -1 -1 4 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65368 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 25.3 MiB 0.07 186 2994 1117 1328 549 63.8 MiB 0.02 0.00 1.2594 -33.2136 -1.2594 1.2594 0.91 0.000153592 0.000138912 0.00720508 0.00651506 32 639 22 6.87369e+06 55895.4 586450. 2029.24 0.89 0.0277132 0.0238266 25474 144626 -1 486 17 367 367 28907 7440 1.13667 1.13667 -33.3442 -1.13667 0 0 744469. 2576.02 0.30 0.02 0.14 -1 -1 0.30 0.00669831 0.00582981 26 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_013bits.v common 4.93 vpr 63.82 MiB -1 -1 0.09 19524 1 0.02 -1 -1 33752 -1 -1 4 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65348 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 25.3 MiB 0.07 207 4445 1357 2117 971 63.8 MiB 0.03 0.00 1.2704 -35.3786 -1.2704 1.2704 0.93 0.000163946 0.000148973 0.0100501 0.00912932 30 672 21 6.87369e+06 55895.4 556674. 1926.21 1.94 0.0514902 0.043973 25186 138497 -1 484 26 515 515 30262 8667 1.15397 1.15397 -34.7532 -1.15397 0 0 706193. 2443.58 0.28 0.03 0.13 -1 -1 0.28 0.00921927 0.00797992 28 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_014bits.v common 4.45 vpr 63.96 MiB -1 -1 0.10 19648 1 0.02 -1 -1 33388 -1 -1 5 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65492 29 15 104 105 1 74 49 17 17 289 -1 unnamed_device 25.4 MiB 0.11 236 3520 1361 2099 60 64.0 MiB 0.02 0.00 1.2814 -38.667 -1.2814 1.2814 0.89 0.000149202 0.000134542 0.00725264 0.00656705 34 730 25 6.87369e+06 69869.2 618332. 2139.56 1.39 0.0460937 0.0393538 25762 151098 -1 615 21 502 502 44505 11732 1.21997 1.21997 -40.5695 -1.21997 0 0 787024. 2723.27 0.32 0.03 0.15 -1 -1 0.32 0.00836721 0.00727042 31 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_015bits.v common 3.97 vpr 63.81 MiB -1 -1 0.09 19612 1 0.02 -1 -1 33904 -1 -1 5 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65340 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 25.5 MiB 0.13 290 5290 2175 3012 103 63.8 MiB 0.03 0.00 1.65273 -43.1654 -1.65273 1.65273 0.93 0.000198503 0.000180089 0.0113469 0.0102984 32 776 19 6.87369e+06 69869.2 586450. 2029.24 0.88 0.0352439 0.0306308 25474 144626 -1 583 14 385 385 27680 7509 1.16767 1.16767 -42.6023 -1.16767 0 0 744469. 2576.02 0.30 0.02 0.14 -1 -1 0.30 0.00699794 0.00619573 33 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_016bits.v common 3.92 vpr 64.01 MiB -1 -1 0.10 19532 1 0.02 -1 -1 33768 -1 -1 5 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65544 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 25.6 MiB 0.10 305 5567 2291 3184 92 64.0 MiB 0.03 0.00 1.66373 -46.4834 -1.66373 1.66373 0.91 0.000209934 0.000191255 0.0118194 0.0107714 32 774 15 6.87369e+06 69869.2 586450. 2029.24 0.87 0.0360923 0.0314616 25474 144626 -1 630 14 407 407 29937 8167 1.21167 1.21167 -46.2762 -1.21167 0 0 744469. 2576.02 0.31 0.02 0.14 -1 -1 0.31 0.00753949 0.00667571 34 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_018bits.v common 4.91 vpr 64.06 MiB -1 -1 0.10 19940 1 0.02 -1 -1 33956 -1 -1 5 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65600 37 19 132 133 1 89 61 17 17 289 -1 unnamed_device 25.7 MiB 0.09 337 7021 2897 4010 114 64.1 MiB 0.04 0.00 1.68573 -53.53 -1.68573 1.68573 0.91 0.000193062 0.000173541 0.0124667 0.0112683 30 981 24 6.87369e+06 69869.2 556674. 1926.21 1.95 0.0670545 0.0573018 25186 138497 -1 754 16 530 530 45610 11200 1.26197 1.26197 -52.3618 -1.26197 0 0 706193. 2443.58 0.29 0.02 0.12 -1 -1 0.29 0.00805086 0.007064 38 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_020bits.v common 6.77 vpr 64.10 MiB -1 -1 0.10 19844 1 0.02 -1 -1 33696 -1 -1 6 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65640 41 21 146 147 1 101 68 17 17 289 -1 unnamed_device 25.6 MiB 0.10 385 8348 3442 4769 137 64.1 MiB 0.04 0.00 1.70773 -60.4248 -1.70773 1.70773 0.91 0.000223932 0.000203085 0.014876 0.0134896 36 1033 17 6.87369e+06 83843 648988. 2245.63 3.66 0.0822498 0.0708545 26050 158493 -1 846 15 579 579 50011 12770 1.26667 1.26667 -58.1453 -1.26667 0 0 828058. 2865.25 0.33 0.03 0.15 -1 -1 0.33 0.00876429 0.00776542 42 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_022bits.v common 4.52 vpr 63.98 MiB -1 -1 0.11 19940 1 0.03 -1 -1 33788 -1 -1 7 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65516 45 23 160 161 1 115 75 17 17 289 -1 unnamed_device 25.5 MiB 0.14 501 8923 3695 5118 110 64.0 MiB 0.05 0.00 1.72973 -68.4498 -1.72973 1.72973 0.90 0.000268753 0.00024423 0.0162564 0.0147927 34 1221 21 6.87369e+06 97816.9 618332. 2139.56 1.39 0.0578064 0.050434 25762 151098 -1 988 13 571 571 55564 13641 1.28867 1.28867 -66.3007 -1.28867 0 0 787024. 2723.27 0.30 0.03 0.15 -1 -1 0.30 0.00862801 0.0076329 47 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_024bits.v common 4.56 vpr 64.21 MiB -1 -1 0.11 19868 1 0.02 -1 -1 34076 -1 -1 7 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65752 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 25.7 MiB 0.11 546 8481 1841 6167 473 64.2 MiB 0.05 0.00 2.11206 -76.8106 -2.11206 2.11206 0.92 0.000296195 0.000270375 0.0153586 0.0140334 34 1531 40 6.87369e+06 97816.9 618332. 2139.56 1.41 0.08196 0.0710359 25762 151098 -1 1247 14 657 657 55953 14632 1.58127 1.58127 -81.892 -1.58127 0 0 787024. 2723.27 0.32 0.03 0.15 -1 -1 0.32 0.0100515 0.00893572 50 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_028bits.v common 4.58 vpr 64.33 MiB -1 -1 0.11 19828 1 0.03 -1 -1 33708 -1 -1 8 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65872 57 29 202 203 1 142 94 17 17 289 -1 unnamed_device 25.8 MiB 0.11 715 11383 2391 8777 215 64.3 MiB 0.06 0.00 2.15606 -94.3707 -2.15606 2.15606 0.90 0.000350147 0.000320594 0.0192279 0.0175966 34 1698 24 6.87369e+06 111791 618332. 2139.56 1.43 0.0879992 0.0767721 25762 151098 -1 1370 14 646 646 57732 13725 1.62057 1.62057 -91.7087 -1.62057 0 0 787024. 2723.27 0.32 0.03 0.15 -1 -1 0.32 0.0111689 0.00994371 58 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_032bits.v common 4.70 vpr 64.47 MiB -1 -1 0.10 19924 1 0.03 -1 -1 33720 -1 -1 9 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66020 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 26.1 MiB 0.11 934 14022 3954 9126 942 64.5 MiB 0.08 0.00 2.56039 -113.242 -2.56039 2.56039 0.92 0.000391008 0.000358162 0.0233364 0.0213644 34 2070 17 6.87369e+06 125765 618332. 2139.56 1.48 0.101638 0.0891837 25762 151098 -1 1856 13 819 819 85633 18584 1.40567 1.40567 -105.24 -1.40567 0 0 787024. 2723.27 0.33 0.04 0.15 -1 -1 0.33 0.0124219 0.0110862 66 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_048bits.v common 5.37 vpr 65.35 MiB -1 -1 0.13 20340 1 0.04 -1 -1 33992 -1 -1 13 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66920 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 26.7 MiB 0.12 1452 25529 6578 17249 1702 65.4 MiB 0.12 0.00 3.45705 -194.211 -3.45705 3.45705 0.92 0.000513155 0.000474579 0.0328017 0.030051 34 3474 26 6.87369e+06 181660 618332. 2139.56 2.01 0.158747 0.140694 25762 151098 -1 2775 15 1192 1192 134811 28940 1.78627 1.78627 -171.767 -1.78627 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0189172 0.0169545 98 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_064bits.v common 6.22 vpr 65.66 MiB -1 -1 0.12 20244 1 0.03 -1 -1 34084 -1 -1 17 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67236 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 26.9 MiB 0.15 1980 44728 13702 26774 4252 65.7 MiB 0.21 0.01 4.35372 -288.703 -4.35372 4.35372 0.92 0.000750644 0.000692142 0.0549054 0.0503572 34 4900 26 6.87369e+06 237555 618332. 2139.56 2.72 0.228392 0.204737 25762 151098 -1 3906 18 1579 1579 197183 43754 1.89427 1.89427 -232.752 -1.89427 0 0 787024. 2723.27 0.29 0.09 0.15 -1 -1 0.29 0.0281938 0.0253869 130 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_003bits.v common 4.16 vpr 63.13 MiB -1 -1 0.10 19744 1 0.02 -1 -1 33216 -1 -1 1 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64648 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 24.7 MiB 0.02 25 155 63 90 2 63.1 MiB 0.00 0.00 0.605992 -7.06722 -0.605992 0.605992 0.92 5.3145e-05 4.6197e-05 0.000888622 0.000787897 22 62 10 6.89349e+06 14093.8 443629. 1535.05 1.42 0.0171152 0.0138878 23458 102101 -1 59 3 19 19 1002 355 0.74674 0.74674 -6.60182 -0.74674 0 0 531479. 1839.03 0.23 0.00 0.10 -1 -1 0.23 0.00176303 0.00164262 8 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_004bits.v common 5.20 vpr 63.38 MiB -1 -1 0.09 19724 1 0.02 -1 -1 33548 -1 -1 2 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64904 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 25.0 MiB 0.04 48 336 89 227 20 63.4 MiB 0.01 0.00 0.789073 -10.0695 -0.789073 0.789073 0.92 6.7325e-05 6.0477e-05 0.00140968 0.00126596 30 123 12 6.89349e+06 28187.7 556674. 1926.21 2.32 0.0197218 0.0161901 25186 138497 -1 81 10 44 44 1439 513 0.74674 0.74674 -9.21032 -0.74674 0 0 706193. 2443.58 0.29 0.01 0.13 -1 -1 0.29 0.00281583 0.00252041 10 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_005bits.v common 4.34 vpr 63.45 MiB -1 -1 0.10 19632 1 0.03 -1 -1 33584 -1 -1 3 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64968 11 6 41 42 1 27 20 17 17 289 -1 unnamed_device 25.0 MiB 0.04 113 641 164 461 16 63.4 MiB 0.01 0.00 0.817273 -13.5684 -0.817273 0.817273 0.91 8.3529e-05 7.4174e-05 0.00218951 0.00196934 22 290 15 6.89349e+06 42281.5 443629. 1535.05 1.58 0.0221689 0.0182716 23458 102101 -1 234 6 63 63 3586 1010 0.87204 0.87204 -14.3201 -0.87204 0 0 531479. 1839.03 0.22 0.01 0.10 -1 -1 0.22 0.00249607 0.00227505 13 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_006bits.v common 3.65 vpr 63.21 MiB -1 -1 0.10 19428 1 0.02 -1 -1 33664 -1 -1 3 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64732 13 7 48 49 1 33 23 17 17 289 -1 unnamed_device 24.8 MiB 0.05 78 887 222 492 173 63.2 MiB 0.01 0.00 0.833073 -15.4163 -0.833073 0.833073 0.90 8.5116e-05 7.6344e-05 0.00284359 0.00256025 28 304 28 6.89349e+06 42281.5 531479. 1839.03 0.80 0.0158877 0.0133945 24610 126494 -1 248 22 256 256 16432 5246 1.20897 1.20897 -17.9728 -1.20897 0 0 648988. 2245.63 0.28 0.02 0.12 -1 -1 0.28 0.00495498 0.00425298 15 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_007bits.v common 4.30 vpr 63.41 MiB -1 -1 0.09 19560 1 0.02 -1 -1 33680 -1 -1 3 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64932 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 24.9 MiB 0.08 111 1774 737 1001 36 63.4 MiB 0.01 0.00 1.38906 -18.6829 -1.38906 1.38906 0.90 0.000104185 9.4131e-05 0.00514718 0.00464855 24 366 20 6.89349e+06 42281.5 470940. 1629.55 1.43 0.0209749 0.0178328 24034 113901 -1 237 12 150 150 7579 2301 0.923426 0.923426 -18.2337 -0.923426 0 0 586450. 2029.24 0.24 0.01 0.11 -1 -1 0.24 0.00387951 0.00343979 17 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_008bits.v common 5.32 vpr 63.64 MiB -1 -1 0.09 19484 1 0.02 -1 -1 33748 -1 -1 3 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65168 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 25.2 MiB 0.05 120 2009 782 1060 167 63.6 MiB 0.01 0.00 1.2154 -21.1249 -1.2154 1.2154 0.89 9.2165e-05 8.2122e-05 0.00475816 0.00427089 32 281 14 6.89349e+06 42281.5 586450. 2029.24 2.49 0.0334315 0.0277621 25474 144626 -1 269 13 167 167 10511 3132 0.99132 0.99132 -22.0414 -0.99132 0 0 744469. 2576.02 0.30 0.01 0.13 -1 -1 0.30 0.00419014 0.00368843 18 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_009bits.v common 4.60 vpr 63.57 MiB -1 -1 0.08 19840 1 0.02 -1 -1 33672 -1 -1 3 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65100 19 10 69 70 1 46 32 17 17 289 -1 unnamed_device 25.1 MiB 0.06 134 2432 901 1105 426 63.6 MiB 0.02 0.00 1.2264 -24.0836 -1.2264 1.2264 0.93 0.000117469 0.000107117 0.00653766 0.00591977 26 431 21 6.89349e+06 42281.5 503264. 1741.40 1.72 0.0388004 0.0326268 24322 120374 -1 338 13 204 204 16938 4634 1.10367 1.10367 -26.2508 -1.10367 0 0 618332. 2139.56 0.25 0.01 0.12 -1 -1 0.25 0.00445217 0.00389855 20 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_010bits.v common 5.57 vpr 63.54 MiB -1 -1 0.09 19600 1 0.02 -1 -1 33420 -1 -1 3 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65060 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 25.0 MiB 0.06 144 2942 987 1222 733 63.5 MiB 0.02 0.00 1.2374 -27.2687 -1.2374 1.2374 0.91 0.000136251 0.0001235 0.00745995 0.00678206 32 420 12 6.89349e+06 42281.5 586450. 2029.24 2.64 0.0430958 0.0363634 25474 144626 -1 344 13 206 206 15588 4094 1.25097 1.25097 -29.5198 -1.25097 0 0 744469. 2576.02 0.29 0.01 0.15 -1 -1 0.29 0.00493239 0.00434142 22 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_011bits.v common 5.75 vpr 63.38 MiB -1 -1 0.10 19492 1 0.02 -1 -1 33544 -1 -1 4 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64904 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 24.9 MiB 0.05 161 3207 1115 1384 708 63.4 MiB 0.02 0.00 1.2484 -30.0612 -1.2484 1.2484 0.93 0.000144331 0.000130469 0.00701254 0.00633424 32 508 12 6.89349e+06 56375.4 586450. 2029.24 2.78 0.036998 0.0314579 25474 144626 -1 434 11 243 243 18298 4845 1.13667 1.13667 -32.4321 -1.13667 0 0 744469. 2576.02 0.30 0.01 0.14 -1 -1 0.30 0.00494775 0.00439489 24 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_012bits.v common 3.82 vpr 63.57 MiB -1 -1 0.10 19788 1 0.02 -1 -1 33388 -1 -1 4 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65100 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 25.1 MiB 0.06 202 2994 1191 1765 38 63.6 MiB 0.02 0.00 1.2594 -33.7803 -1.2594 1.2594 0.91 0.000152824 0.000138521 0.00720379 0.00654131 32 630 19 6.89349e+06 56375.4 586450. 2029.24 0.88 0.0270469 0.0233112 25474 144626 -1 515 9 278 278 21227 5838 1.15867 1.15867 -34.9584 -1.15867 0 0 744469. 2576.02 0.30 0.01 0.14 -1 -1 0.30 0.00470209 0.00421388 26 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_013bits.v common 3.84 vpr 63.39 MiB -1 -1 0.10 19412 1 0.02 -1 -1 33744 -1 -1 4 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64912 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 24.9 MiB 0.06 209 4445 1740 2185 520 63.4 MiB 0.03 0.00 1.2704 -36.1806 -1.2704 1.2704 0.91 0.000168025 0.000152193 0.0100623 0.00912672 32 679 19 6.89349e+06 56375.4 586450. 2029.24 0.90 0.0314333 0.0272632 25474 144626 -1 560 16 381 381 31679 8445 1.28397 1.28397 -39.6564 -1.28397 0 0 744469. 2576.02 0.30 0.02 0.14 -1 -1 0.30 0.00633018 0.0055559 28 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_014bits.v common 6.87 vpr 63.78 MiB -1 -1 0.09 19544 1 0.02 -1 -1 33416 -1 -1 5 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65308 29 15 104 105 1 74 49 17 17 289 -1 unnamed_device 25.2 MiB 0.08 236 3431 1335 2039 57 63.8 MiB 0.02 0.00 1.2814 -39.5467 -1.2814 1.2814 0.93 0.000177345 0.000160553 0.00767113 0.00697287 38 684 20 6.89349e+06 70469.2 678818. 2348.85 3.78 0.0624804 0.0530206 26626 170182 -1 519 32 480 480 33921 8812 1.09467 1.09467 -37.7139 -1.09467 0 0 902133. 3121.57 0.33 0.03 0.17 -1 -1 0.33 0.0111958 0.0096547 31 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_015bits.v common 5.86 vpr 63.76 MiB -1 -1 0.10 19880 1 0.02 -1 -1 33872 -1 -1 5 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65292 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 25.4 MiB 0.12 290 5290 2177 3014 99 63.8 MiB 0.03 0.00 1.65273 -42.9944 -1.65273 1.65273 0.91 0.000190076 0.000172928 0.011164 0.0101661 32 765 18 6.89349e+06 70469.2 586450. 2029.24 2.84 0.0546816 0.0467959 25474 144626 -1 630 12 359 359 28757 7774 1.33697 1.33697 -45.2996 -1.33697 0 0 744469. 2576.02 0.29 0.02 0.14 -1 -1 0.29 0.00632754 0.00561699 33 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_016bits.v common 5.85 vpr 63.97 MiB -1 -1 0.10 19476 1 0.02 -1 -1 33916 -1 -1 5 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65508 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 25.6 MiB 0.10 305 5567 2266 3212 89 64.0 MiB 0.03 0.00 1.66373 -46.9867 -1.66373 1.66373 0.92 0.00020972 0.000191028 0.0114211 0.0103987 32 748 30 6.89349e+06 70469.2 586450. 2029.24 2.83 0.0608268 0.0519723 25474 144626 -1 657 18 431 431 37995 9892 1.21167 1.21167 -46.5307 -1.21167 0 0 744469. 2576.02 0.31 0.03 0.14 -1 -1 0.31 0.00870949 0.00763038 34 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_018bits.v common 5.95 vpr 63.95 MiB -1 -1 0.10 20024 1 0.02 -1 -1 34000 -1 -1 5 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65488 37 19 132 133 1 90 61 17 17 289 -1 unnamed_device 25.5 MiB 0.09 342 7021 2879 4035 107 64.0 MiB 0.04 0.00 1.68573 -54.0175 -1.68573 1.68573 0.92 0.000235835 0.000214611 0.0130289 0.0118656 32 990 25 6.89349e+06 70469.2 586450. 2029.24 2.91 0.0648107 0.0557 25474 144626 -1 789 12 433 433 39042 9870 1.34797 1.34797 -55.979 -1.34797 0 0 744469. 2576.02 0.30 0.02 0.14 -1 -1 0.30 0.00730887 0.0065009 38 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_020bits.v common 6.82 vpr 63.90 MiB -1 -1 0.11 19792 1 0.02 -1 -1 33984 -1 -1 6 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65432 41 21 146 147 1 102 68 17 17 289 -1 unnamed_device 25.4 MiB 0.09 445 8348 3515 4709 124 63.9 MiB 0.04 0.00 1.70773 -61.5625 -1.70773 1.70773 0.93 0.000243315 0.000220798 0.0148361 0.0134773 36 916 29 6.89349e+06 84563 648988. 2245.63 3.76 0.0853494 0.0733436 26050 158493 -1 772 13 458 458 34453 8657 1.06157 1.06157 -53.1205 -1.06157 0 0 828058. 2865.25 0.33 0.02 0.15 -1 -1 0.33 0.00814568 0.00719922 42 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_022bits.v common 4.98 vpr 63.97 MiB -1 -1 0.10 19716 1 0.02 -1 -1 34024 -1 -1 7 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65504 45 23 160 161 1 115 75 17 17 289 -1 unnamed_device 25.5 MiB 0.10 455 8923 3808 5002 113 64.0 MiB 0.04 0.00 1.72973 -68.2155 -1.72973 1.72973 0.88 0.000241568 0.000217641 0.0146372 0.0132391 36 1441 24 6.89349e+06 98656.9 648988. 2245.63 1.96 0.0716287 0.0618242 26050 158493 -1 1076 24 762 762 121599 43810 1.33622 1.33622 -66.4892 -1.33622 0 0 828058. 2865.25 0.33 0.05 0.14 -1 -1 0.33 0.0128474 0.0111777 47 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_024bits.v common 4.57 vpr 63.84 MiB -1 -1 0.11 19756 1 0.02 -1 -1 33852 -1 -1 7 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65368 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 25.4 MiB 0.11 551 7431 1680 5324 427 63.8 MiB 0.04 0.00 2.11206 -77.2602 -2.11206 2.11206 0.90 0.000296734 0.000271252 0.0135828 0.0124281 34 1555 27 6.89349e+06 98656.9 618332. 2139.56 1.48 0.0748475 0.0649331 25762 151098 -1 1235 23 716 716 70993 17901 1.33262 1.33262 -76.3022 -1.33262 0 0 787024. 2723.27 0.30 0.04 0.15 -1 -1 0.30 0.0129998 0.0113955 50 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_028bits.v common 4.78 vpr 64.25 MiB -1 -1 0.10 20036 1 0.02 -1 -1 33684 -1 -1 8 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65788 57 29 202 203 1 143 94 17 17 289 -1 unnamed_device 25.7 MiB 0.09 650 12022 2723 8727 572 64.2 MiB 0.06 0.00 2.15606 -92.9813 -2.15606 2.15606 0.89 0.000332198 0.00030306 0.0198835 0.018144 34 1756 23 6.89349e+06 112751 618332. 2139.56 1.72 0.0904969 0.0788711 25762 151098 -1 1397 15 687 687 59439 15006 1.38087 1.38087 -88.2523 -1.38087 0 0 787024. 2723.27 0.31 0.03 0.15 -1 -1 0.31 0.0115014 0.0101854 58 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_032bits.v common 4.81 vpr 64.11 MiB -1 -1 0.10 19856 1 0.03 -1 -1 33984 -1 -1 9 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65644 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 25.7 MiB 0.12 1002 14022 4194 8891 937 64.1 MiB 0.07 0.00 2.56039 -114.689 -2.56039 2.56039 0.92 0.000386293 0.000352331 0.022705 0.0207329 34 2078 20 6.89349e+06 126845 618332. 2139.56 1.66 0.1026 0.0898113 25762 151098 -1 1851 14 728 728 71201 15386 1.43867 1.43867 -107.068 -1.43867 0 0 787024. 2723.27 0.31 0.04 0.14 -1 -1 0.31 0.0127523 0.0113565 66 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_048bits.v common 5.09 vpr 65.10 MiB -1 -1 0.12 20300 1 0.03 -1 -1 33664 -1 -1 13 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 26.4 MiB 0.13 1473 25959 7791 16267 1901 65.1 MiB 0.14 0.00 3.45705 -194.328 -3.45705 3.45705 0.90 0.0005713 0.000524576 0.0359987 0.0330366 34 3283 31 6.89349e+06 183220 618332. 2139.56 1.78 0.162954 0.144195 25762 151098 -1 2757 14 1079 1079 125848 27590 1.78147 1.78147 -171.309 -1.78147 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0182303 0.0163496 98 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_064bits.v common 5.75 vpr 65.76 MiB -1 -1 0.13 20324 1 0.03 -1 -1 33984 -1 -1 17 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:10:26 gh-actions-runner-vtr-auto-spawned157 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67340 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 27.1 MiB 0.14 1995 44728 13697 26621 4410 65.8 MiB 0.20 0.00 4.35372 -288.217 -4.35372 4.35372 0.90 0.00062966 0.000578193 0.0549268 0.0504146 34 4888 26 6.89349e+06 239595 618332. 2139.56 2.33 0.222533 0.199279 25762 151098 -1 3930 20 1610 1610 183481 42153 1.98497 1.98497 -237.146 -1.98497 0 0 787024. 2723.27 0.32 0.09 0.15 -1 -1 0.32 0.0296116 0.0265307 130 -1 -1 -1 -1 -1 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_003bits.v common 5.38 vpr 61.79 MiB -1 -1 0.17 20216 1 0.10 -1 -1 35844 -1 -1 2 7 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63268 7 4 21 25 1 15 13 17 17 289 -1 unnamed_device 23.2 MiB 0.00 71 268 69 183 16 61.8 MiB 0.00 0.00 0.701249 -7.22873 -0.701249 0.701249 1.21 1.9941e-05 1.0625e-05 0.000588909 0.000332651 20 164 10 6.55708e+06 24110 394039. 1363.46 0.70 0.00139611 0.000918998 19870 87366 -1 150 8 56 56 3527 967 0.821448 0.821448 -8.31053 -0.821448 0 0 477104. 1650.88 0.20 0.00 0.06 -1 -1 0.20 0.000758241 0.000584084 10 4 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_004bits.v common 5.43 vpr 61.82 MiB -1 -1 0.15 20672 2 0.07 -1 -1 35680 -1 -1 2 9 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63304 9 5 28 33 1 21 16 17 17 289 -1 unnamed_device 23.2 MiB 0.04 135 76 35 40 1 61.8 MiB 0.00 0.00 0.900447 -11.7037 -0.900447 0.900447 1.20 2.6423e-05 1.5616e-05 0.000272073 0.000202567 20 236 7 6.55708e+06 24110 394039. 1363.46 0.61 0.0016096 0.00130633 19870 87366 -1 219 9 65 70 4938 1249 0.83871 0.83871 -12.0384 -0.83871 0 0 477104. 1650.88 0.19 0.00 0.06 -1 -1 0.19 0.00106749 0.000797429 13 6 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_005bits.v common 5.34 vpr 61.86 MiB -1 -1 0.13 20368 2 0.13 -1 -1 35408 -1 -1 2 11 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63348 11 6 34 40 1 24 19 17 17 289 -1 unnamed_device 23.4 MiB 0.01 55 569 131 359 79 61.9 MiB 0.00 0.00 0.900447 -11.5834 -0.900447 0.900447 1.13 2.8569e-05 1.7314e-05 0.000929752 0.000618461 26 210 18 6.55708e+06 24110 477104. 1650.88 0.78 0.00604896 0.00422244 21022 109990 -1 168 10 131 136 5947 2149 0.821448 0.821448 -11.9096 -0.821448 0 0 585099. 2024.56 0.23 0.01 0.07 -1 -1 0.23 0.00132124 0.00101161 16 7 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_006bits.v common 5.66 vpr 61.90 MiB -1 -1 0.26 20216 3 0.11 -1 -1 35572 -1 -1 3 13 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63388 13 7 41 48 1 32 23 17 17 289 -1 unnamed_device 23.5 MiB 0.01 85 567 111 433 23 61.9 MiB 0.00 0.00 1.58811 -16.0101 -1.58811 1.58811 1.16 3.2575e-05 2.0258e-05 0.000909538 0.000609743 20 281 10 6.55708e+06 36165 394039. 1363.46 0.76 0.00242852 0.00184424 19870 87366 -1 238 10 108 128 6249 1969 1.50711 1.50711 -17.0526 -1.50711 0 0 477104. 1650.88 0.23 0.00 0.06 -1 -1 0.23 0.00133934 0.00108087 19 9 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_007bits.v common 5.89 vpr 61.94 MiB -1 -1 0.28 20672 3 0.18 -1 -1 35820 -1 -1 3 15 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63428 15 8 47 55 1 38 26 17 17 289 -1 unnamed_device 23.5 MiB 0.01 208 862 165 657 40 61.9 MiB 0.01 0.00 1.23151 -19.784 -1.23151 1.23151 1.17 3.7235e-05 2.4013e-05 0.00117286 0.000814717 20 451 13 6.55708e+06 36165 394039. 1363.46 0.80 0.00314342 0.00240565 19870 87366 -1 409 8 146 164 9675 2532 1.05785 1.05785 -21.0828 -1.05785 0 0 477104. 1650.88 0.26 0.00 0.08 -1 -1 0.26 0.00139678 0.00117942 23 10 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_008bits.v common 6.87 vpr 61.85 MiB -1 -1 0.42 20368 3 0.14 -1 -1 35616 -1 -1 4 17 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63336 17 9 56 65 1 42 30 17 17 289 -1 unnamed_device 23.4 MiB 0.06 126 720 180 518 22 61.9 MiB 0.00 0.00 1.70831 -21.378 -1.70831 1.70831 1.25 4.3648e-05 2.8462e-05 0.00114916 0.000840919 26 318 9 6.55708e+06 48220 477104. 1650.88 0.87 0.00711556 0.00544199 21022 109990 -1 294 14 168 178 8995 2876 1.70831 1.70831 -22.4328 -1.70831 0 0 585099. 2024.56 0.29 0.01 0.14 -1 -1 0.29 0.00466294 0.00196426 25 14 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_009bits.v common 12.19 vpr 62.03 MiB -1 -1 0.21 20520 4 0.24 -1 -1 35648 -1 -1 4 19 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63520 19 10 60 70 1 48 33 17 17 289 -1 unnamed_device 23.5 MiB 0.01 138 1593 371 925 297 62.0 MiB 0.00 0.00 1.58811 -24.9956 -1.58811 1.58811 2.52 1.8144e-05 1.2182e-05 0.000809484 0.000583379 30 391 15 6.55708e+06 48220 526063. 1820.29 2.04 0.00741544 0.00578279 21886 126133 -1 301 11 188 226 8989 3008 1.50711 1.50711 -24.1514 -1.50711 0 0 666494. 2306.21 0.71 0.01 0.17 -1 -1 0.71 0.00195239 0.00166637 29 13 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_010bits.v common 12.87 vpr 62.11 MiB -1 -1 0.36 20672 4 0.12 -1 -1 35476 -1 -1 5 21 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63604 21 11 69 80 1 53 37 17 17 289 -1 unnamed_device 23.5 MiB 0.01 155 2355 551 1281 523 62.1 MiB 0.01 0.00 1.68077 -27.5084 -1.68077 1.68077 2.45 4.929e-05 3.3847e-05 0.00231772 0.00167044 32 463 10 6.55708e+06 60275 554710. 1919.41 2.31 0.15701 0.1549 22174 131602 -1 387 11 223 268 19676 5833 1.46791 1.46791 -27.5478 -1.46791 0 0 701300. 2426.64 0.75 0.01 0.28 -1 -1 0.75 0.00246106 0.00210154 33 17 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_011bits.v common 12.59 vpr 62.16 MiB -1 -1 0.32 20672 5 0.26 -1 -1 35676 -1 -1 6 23 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63652 23 12 76 88 1 61 41 17 17 289 -1 unnamed_device 23.5 MiB 0.01 238 4031 1480 1575 976 62.2 MiB 0.01 0.00 2.07857 -33.206 -2.07857 2.07857 2.70 2.2853e-05 1.5587e-05 0.00162352 0.00116695 28 591 13 6.55708e+06 72330 500653. 1732.36 2.13 0.00837298 0.00645275 21310 115450 -1 529 14 259 335 21502 5832 1.77504 1.77504 -34.2403 -1.77504 0 0 612192. 2118.31 0.66 0.03 0.19 -1 -1 0.66 0.0221081 0.0217231 37 19 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_012bits.v common 11.68 vpr 62.21 MiB -1 -1 0.26 20520 5 0.25 -1 -1 35532 -1 -1 6 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63700 25 13 83 96 1 66 44 17 17 289 -1 unnamed_device 23.7 MiB 0.01 377 3894 1439 2026 429 62.2 MiB 0.04 0.00 1.80097 -39.3697 -1.80097 1.80097 2.62 7.9738e-05 6.1457e-05 0.0277289 0.02663 26 789 18 6.55708e+06 72330 477104. 1650.88 1.88 0.0369521 0.0338877 21022 109990 -1 724 15 307 437 25143 6412 1.73584 1.73584 -42.2656 -1.73584 0 0 585099. 2024.56 0.57 0.01 0.45 -1 -1 0.57 0.00315337 0.00271158 40 21 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_013bits.v common 12.76 vpr 62.26 MiB -1 -1 0.48 20672 5 0.13 -1 -1 35688 -1 -1 7 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63752 27 14 91 105 1 70 48 17 17 289 -1 unnamed_device 23.7 MiB 0.02 311 3963 1152 2039 772 62.3 MiB 0.01 0.00 1.72548 -36.9438 -1.72548 1.72548 2.79 6.0214e-05 4.2761e-05 0.00359942 0.00269558 26 772 15 6.55708e+06 84385 477104. 1650.88 1.86 0.0135503 0.0107861 21022 109990 -1 704 13 255 357 21633 5754 1.70831 1.70831 -39.6993 -1.70831 0 0 585099. 2024.56 0.77 0.03 0.21 -1 -1 0.77 0.00322475 0.00280852 42 24 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_014bits.v common 12.82 vpr 62.28 MiB -1 -1 0.36 20824 6 0.12 -1 -1 35516 -1 -1 7 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63776 29 15 95 110 1 74 51 17 17 289 -1 unnamed_device 23.7 MiB 0.02 458 5503 1602 3150 751 62.3 MiB 0.13 0.00 2.39596 -48.8547 -2.39596 2.39596 2.81 6.5391e-05 4.7683e-05 0.00471541 0.00356477 26 928 17 6.55708e+06 84385 477104. 1650.88 1.75 0.0151589 0.0120377 21022 109990 -1 822 10 255 357 25216 5776 2.15556 2.15556 -48.4222 -2.15556 0 0 585099. 2024.56 0.59 0.05 0.24 -1 -1 0.59 0.00301393 0.00266837 45 23 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_015bits.v common 12.46 vpr 62.34 MiB -1 -1 0.37 20520 6 0.22 -1 -1 35768 -1 -1 10 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63832 31 16 104 120 1 81 57 17 17 289 -1 unnamed_device 23.7 MiB 0.13 439 6052 2332 3296 424 62.3 MiB 0.03 0.00 1.96388 -48.153 -1.96388 1.96388 2.70 9.2362e-05 6.987e-05 0.00504376 0.00383516 28 925 12 6.55708e+06 120550 500653. 1732.36 2.72 0.0157328 0.012446 21310 115450 -1 855 10 297 457 31695 7952 1.9467 1.9467 -50.3217 -1.9467 0 0 612192. 2118.31 0.69 0.03 0.43 -1 -1 0.69 0.0199009 0.019307 50 27 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_016bits.v common 12.77 vpr 62.37 MiB -1 -1 0.38 20672 7 0.14 -1 -1 35780 -1 -1 7 33 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63864 33 17 112 129 1 86 57 17 17 289 -1 unnamed_device 23.8 MiB 0.13 289 5943 1914 2723 1306 62.4 MiB 0.17 0.00 2.57253 -52.3053 -2.57253 2.57253 2.25 7.549e-05 5.5173e-05 0.149983 0.148737 26 1068 34 6.55708e+06 84385 477104. 1650.88 2.34 0.161297 0.157978 21022 109990 -1 798 11 396 536 39199 11676 2.43516 2.43516 -55.6876 -2.43516 0 0 585099. 2024.56 0.79 0.11 0.21 -1 -1 0.79 0.0747217 0.0740949 52 30 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_018bits.v common 12.17 vpr 62.50 MiB -1 -1 0.19 20824 7 0.41 -1 -1 35688 -1 -1 10 37 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64000 37 19 127 146 1 99 66 17 17 289 -1 unnamed_device 24.1 MiB 0.07 515 7248 1983 4155 1110 62.5 MiB 0.12 0.00 3.08562 -68.3297 -3.08562 3.08562 2.72 8.2667e-05 6.2316e-05 0.00591627 0.00458978 28 1076 10 6.55708e+06 120550 500653. 1732.36 2.32 0.0185783 0.0151974 21310 115450 -1 998 9 326 459 26259 6837 2.84522 2.84522 -70.0641 -2.84522 0 0 612192. 2118.31 0.84 0.05 0.32 -1 -1 0.84 0.00418888 0.00365409 59 35 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_020bits.v common 12.09 vpr 62.62 MiB -1 -1 0.24 20976 8 0.44 -1 -1 35732 -1 -1 11 41 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64128 41 21 139 160 1 110 73 17 17 289 -1 unnamed_device 24.0 MiB 0.10 468 9497 2136 5919 1442 62.6 MiB 0.03 0.00 3.11516 -75.6589 -3.11516 3.11516 2.78 9.6981e-05 7.4114e-05 0.00760574 0.005975 26 1241 16 6.55708e+06 132605 477104. 1650.88 2.57 0.0231752 0.0190804 21022 109990 -1 1135 17 482 675 45245 11599 2.9023 2.9023 -77.7159 -2.9023 0 0 585099. 2024.56 0.76 0.11 0.23 -1 -1 0.76 0.00549306 0.00485951 67 37 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_022bits.v common 12.59 vpr 62.73 MiB -1 -1 0.28 20672 9 0.12 -1 -1 35896 -1 -1 13 45 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64240 45 23 153 176 1 123 81 17 17 289 -1 unnamed_device 24.1 MiB 0.95 635 10406 3278 5552 1576 62.7 MiB 0.15 0.00 3.26996 -84.3895 -3.26996 3.26996 2.91 0.000141007 0.00011384 0.00746392 0.0058863 26 1386 13 6.55708e+06 156715 477104. 1650.88 2.21 0.0238052 0.0197161 21022 109990 -1 1258 17 479 598 43278 12179 3.14976 3.14976 -88.4909 -3.14976 0 0 585099. 2024.56 1.02 0.04 0.21 -1 -1 1.02 0.00488544 0.00429784 74 41 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_024bits.v common 11.22 vpr 62.65 MiB -1 -1 0.17 20976 10 0.17 -1 -1 35604 -1 -1 12 49 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64156 49 25 166 191 1 129 86 17 17 289 -1 unnamed_device 24.1 MiB 0.17 683 5378 1001 3837 540 62.7 MiB 0.09 0.00 3.75902 -99.229 -3.75902 3.75902 2.58 0.000114406 8.7206e-05 0.00457321 0.00368865 26 1511 32 6.55708e+06 144660 477104. 1650.88 2.50 0.173084 0.0230037 21022 109990 -1 1392 11 501 667 47166 11692 3.63882 3.63882 -102.215 -3.63882 0 0 585099. 2024.56 0.72 0.02 0.14 -1 -1 0.72 0.00529511 0.00477308 79 44 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_028bits.v common 14.02 vpr 63.03 MiB -1 -1 0.22 21128 11 0.14 -1 -1 35760 -1 -1 14 57 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64540 57 29 198 227 1 159 100 17 17 289 -1 unnamed_device 24.3 MiB 0.42 922 12860 3205 8260 1395 63.0 MiB 0.06 0.00 4.12928 -123.876 -4.12928 4.12928 3.42 0.000142566 0.000113375 0.0293584 0.00748923 32 1876 39 6.55708e+06 168770 554710. 1919.41 2.84 0.0576435 0.0317671 22174 131602 -1 1719 14 578 751 57347 13289 3.88888 3.88888 -120.008 -3.88888 0 0 701300. 2426.64 0.68 0.02 0.20 -1 -1 0.68 0.00754264 0.00685213 93 56 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_032bits.v common 13.48 vpr 63.17 MiB -1 -1 0.36 20824 13 0.19 -1 -1 36244 -1 -1 16 65 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64684 65 33 224 257 1 180 114 17 17 289 -1 unnamed_device 24.4 MiB 0.85 822 10602 2133 8245 224 63.2 MiB 0.06 0.00 4.39522 -142.214 -4.39522 4.39522 2.47 0.000177514 0.000143994 0.0334604 0.031958 30 2035 28 6.55708e+06 192880 526063. 1820.29 3.41 0.0645034 0.0592321 21886 126133 -1 1654 13 698 939 54547 14327 4.06216 4.06216 -140.833 -4.06216 0 0 666494. 2306.21 0.83 0.09 0.26 -1 -1 0.83 0.00812073 0.0074049 107 62 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_048bits.v common 14.73 vpr 64.07 MiB -1 -1 0.39 20976 19 0.16 -1 -1 36008 -1 -1 24 97 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65608 97 49 340 389 1 266 170 17 17 289 -1 unnamed_device 25.3 MiB 0.52 1220 34480 11205 18771 4504 64.1 MiB 0.43 0.00 7.30925 -279.81 -7.30925 7.30925 2.67 0.000314684 0.000267419 0.194503 0.157467 34 2965 19 6.55708e+06 289320 585099. 2024.56 4.20 0.587692 0.544211 22462 138074 -1 2448 12 954 1328 87149 23405 6.97619 6.97619 -277.114 -6.97619 0 0 742403. 2568.87 0.73 0.03 0.18 -1 -1 0.73 0.0118705 0.0109768 161 98 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_064bits.v common 15.16 vpr 64.91 MiB -1 -1 0.23 21736 26 0.14 -1 -1 35956 -1 -1 35 129 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66464 129 65 453 518 1 353 229 17 17 289 -1 unnamed_device 25.9 MiB 0.40 1949 52029 16089 30447 5493 64.9 MiB 0.63 0.00 10.0778 -486.366 -10.0778 10.0778 2.54 0.000184566 0.00015737 0.200287 0.196713 36 3892 37 6.55708e+06 421925 612192. 2118.31 6.05 1.03311 0.99668 22750 144809 -1 3447 12 1162 1593 104559 25785 9.15536 9.15536 -452.326 -9.15536 0 0 782063. 2706.10 0.48 0.06 0.21 -1 -1 0.48 0.0345673 0.0334765 213 131 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 1.95 abc 32.82 MiB -1 -1 0.13 20672 1 0.06 -1 -1 33608 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24052 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 2.44 abc 32.36 MiB -1 -1 0.18 20520 1 0.03 -1 -1 33140 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23600 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 1.61 abc 32.83 MiB -1 -1 0.20 20520 1 0.03 -1 -1 33620 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24052 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 1.70 abc 32.79 MiB -1 -1 0.23 20520 1 0.18 -1 -1 33580 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23900 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 2.03 abc 32.82 MiB -1 -1 0.32 20672 1 0.01 -1 -1 33608 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24204 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 2.30 abc 32.71 MiB -1 -1 0.34 20520 1 0.07 -1 -1 33496 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23748 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 1.70 abc 32.86 MiB -1 -1 0.22 20672 1 0.06 -1 -1 33652 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24204 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 1.45 abc 32.89 MiB -1 -1 0.19 20824 1 0.03 -1 -1 33684 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24204 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 2.11 abc 32.70 MiB -1 -1 0.15 20672 1 0.07 -1 -1 33488 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24052 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 1.55 abc 33.20 MiB -1 -1 0.13 20976 1 0.04 -1 -1 33992 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24204 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 1.41 abc 32.88 MiB -1 -1 0.20 20672 1 0.05 -1 -1 33668 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24204 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 1.59 abc 32.71 MiB -1 -1 0.14 20520 1 0.13 -1 -1 33500 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24356 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 1.56 abc 32.69 MiB -1 -1 0.14 20824 1 0.05 -1 -1 33472 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24204 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 1.72 abc 32.83 MiB -1 -1 0.14 20824 1 0.05 -1 -1 33620 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24356 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 1.82 abc 33.11 MiB -1 -1 0.21 20672 1 0.03 -1 -1 33904 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24356 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 1.52 abc 33.11 MiB -1 -1 0.13 20672 1 0.03 -1 -1 33908 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24356 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 1.62 abc 32.81 MiB -1 -1 0.16 20672 1 0.03 -1 -1 33600 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24204 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 1.77 abc 33.02 MiB -1 -1 0.16 20976 1 0.19 -1 -1 33816 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24356 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 1.42 abc 32.90 MiB -1 -1 0.15 20976 1 0.03 -1 -1 33688 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24508 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 1.32 abc 32.54 MiB -1 -1 0.17 20672 1 0.06 -1 -1 33324 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24508 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 1.41 abc 32.92 MiB -1 -1 0.17 21128 1 0.05 -1 -1 33708 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24660 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 1.47 abc 33.13 MiB -1 -1 0.21 21128 1 0.06 -1 -1 33928 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 25116 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 1.29 abc 32.84 MiB -1 -1 0.18 20672 1 0.03 -1 -1 33628 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23808 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 1.48 abc 32.65 MiB -1 -1 0.12 20368 1 0.03 -1 -1 33432 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23804 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 1.55 abc 32.66 MiB -1 -1 0.14 20368 1 0.03 -1 -1 33444 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23832 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 1.49 abc 32.79 MiB -1 -1 0.15 20824 1 0.03 -1 -1 33580 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23956 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 1.87 abc 32.86 MiB -1 -1 0.30 20520 1 0.09 -1 -1 33648 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23896 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 1.63 abc 32.88 MiB -1 -1 0.19 20824 1 0.01 -1 -1 33672 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24108 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 1.71 abc 32.72 MiB -1 -1 0.17 20064 1 0.04 -1 -1 33508 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23956 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 1.99 abc 33.01 MiB -1 -1 0.17 20672 1 0.04 -1 -1 33804 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23908 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 1.88 abc 32.89 MiB -1 -1 0.26 20672 1 0.12 -1 -1 33680 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23804 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 1.69 abc 32.72 MiB -1 -1 0.20 20672 1 0.07 -1 -1 33508 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23956 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 2.04 abc 32.74 MiB -1 -1 0.41 20672 1 0.20 -1 -1 33524 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23804 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 1.86 abc 32.73 MiB -1 -1 0.32 20976 1 0.19 -1 -1 33520 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24108 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 1.86 abc 32.66 MiB -1 -1 0.31 20824 1 0.03 -1 -1 33448 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24072 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 2.28 abc 32.75 MiB -1 -1 0.25 20976 1 0.17 -1 -1 33532 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24260 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 2.60 abc 33.11 MiB -1 -1 0.24 20520 1 0.02 -1 -1 33904 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24104 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 2.90 abc 33.08 MiB -1 -1 0.42 20824 1 0.04 -1 -1 33876 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23652 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 2.88 abc 33.08 MiB -1 -1 0.33 20672 1 0.07 -1 -1 33872 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24108 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 3.30 abc 33.09 MiB -1 -1 0.23 20976 1 0.06 -1 -1 33888 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 23652 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 2.04 abc 32.61 MiB -1 -1 0.28 20672 1 0.18 -1 -1 33388 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24264 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 3.26 abc 32.68 MiB -1 -1 0.27 20976 1 0.08 -1 -1 33460 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24260 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 2.28 abc 33.07 MiB -1 -1 0.32 20976 1 0.09 -1 -1 33864 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24564 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 2.71 abc 33.40 MiB -1 -1 0.46 21128 1 0.03 -1 -1 34200 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 24868 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 8.48 vpr 62.21 MiB -1 -1 0.18 20672 1 0.01 -1 -1 33296 -1 -1 2 7 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63700 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 23.8 MiB 0.07 45 88 36 48 4 62.2 MiB 0.00 0.00 0.824016 -7.40657 -0.824016 0.824016 2.28 2.6609e-05 1.5386e-05 0.000323065 0.000227864 12 106 9 6.64007e+06 25116 231691. 801.699 0.76 0.00127935 0.000958079 19090 58805 -1 116 7 43 43 3050 941 0.770048 0.770048 -8.25533 -0.770048 0 0 318358. 1101.58 0.27 0.00 0.13 -1 -1 0.27 0.000750281 0.000596892 10 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 8.99 vpr 62.23 MiB -1 -1 0.07 20520 1 0.08 -1 -1 33448 -1 -1 2 9 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63724 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 23.6 MiB 0.01 43 476 113 309 54 62.2 MiB 0.00 0.00 0.792048 -9.40096 -0.792048 0.792048 2.15 2.3096e-05 1.2901e-05 0.000816489 0.000517897 18 169 9 6.64007e+06 25116 355633. 1230.56 0.94 0.00416804 0.00286688 20242 81429 -1 123 16 122 122 5330 1771 1.03245 1.03245 -10.208 -1.03245 0 0 448715. 1552.65 0.30 0.01 0.09 -1 -1 0.30 0.00124613 0.000927081 13 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 9.94 vpr 62.27 MiB -1 -1 0.23 20520 1 0.40 -1 -1 33644 -1 -1 2 11 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63768 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 23.8 MiB 0.07 57 869 279 533 57 62.3 MiB 0.01 0.00 0.803048 -11.5224 -0.803048 0.803048 2.26 2.7969e-05 1.6891e-05 0.00130377 0.000862017 26 188 38 6.64007e+06 25116 477104. 1650.88 1.69 0.00695897 0.00488533 21682 110474 -1 164 12 124 124 5487 1920 0.923248 0.923248 -12.587 -0.923248 0 0 585099. 2024.56 0.50 0.00 0.21 -1 -1 0.50 0.00128359 0.00103239 16 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 10.25 vpr 62.31 MiB -1 -1 0.23 20672 1 0.05 -1 -1 33708 -1 -1 4 13 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63804 13 7 48 49 1 32 24 17 17 289 -1 unnamed_device 23.8 MiB 0.01 117 1010 285 572 153 62.3 MiB 0.01 0.00 0.825048 -14.462 -0.825048 0.825048 2.18 3.2537e-05 2.0454e-05 0.00124569 0.000806046 26 311 18 6.64007e+06 50232 477104. 1650.88 1.91 0.00631761 0.00443865 21682 110474 -1 262 12 142 142 9033 2342 0.923248 0.923248 -16.2227 -0.923248 0 0 585099. 2024.56 0.57 0.01 0.17 -1 -1 0.57 0.00159324 0.00124695 20 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 10.31 vpr 62.19 MiB -1 -1 0.56 20520 1 0.01 -1 -1 33672 -1 -1 3 15 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63680 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 23.6 MiB 0.02 110 1508 446 794 268 62.2 MiB 0.01 0.00 1.18536 -16.9991 -1.18536 1.18536 2.42 3.4464e-05 2.1951e-05 0.00175811 0.00119432 26 285 16 6.64007e+06 37674 477104. 1650.88 1.78 0.0071198 0.00514232 21682 110474 -1 254 11 159 159 8209 2600 0.965248 0.965248 -17.9696 -0.965248 0 0 585099. 2024.56 0.52 0.01 0.24 -1 -1 0.52 0.00158506 0.00130224 22 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 11.15 vpr 62.23 MiB -1 -1 0.12 20520 1 0.18 -1 -1 33356 -1 -1 4 17 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63720 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 23.9 MiB 0.17 120 1870 496 982 392 62.2 MiB 0.02 0.00 1.19636 -19.4451 -1.19636 1.19636 2.40 3.7551e-05 2.448e-05 0.00208367 0.00148115 32 304 13 6.64007e+06 50232 554710. 1919.41 2.17 0.109511 0.10745 22834 132086 -1 278 13 195 195 9562 2967 0.965248 0.965248 -20.0952 -0.965248 0 0 701300. 2426.64 0.88 0.01 0.20 -1 -1 0.88 0.00184136 0.00152593 25 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 11.67 vpr 62.44 MiB -1 -1 0.42 20672 1 0.14 -1 -1 33344 -1 -1 4 19 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63936 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 23.9 MiB 0.03 130 2165 691 1177 297 62.4 MiB 0.01 0.00 1.20736 -22.2309 -1.20736 1.20736 2.12 4.6206e-05 3.0499e-05 0.00223431 0.0015646 30 305 14 6.64007e+06 50232 526063. 1820.29 2.10 0.00848877 0.00621376 22546 126617 -1 263 12 166 166 8586 2519 0.943248 0.943248 -21.1902 -0.943248 0 0 666494. 2306.21 0.99 0.15 0.28 -1 -1 0.99 0.00455345 0.004251 28 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 12.00 vpr 62.50 MiB -1 -1 0.19 20824 1 0.03 -1 -1 33820 -1 -1 5 21 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64004 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 23.9 MiB 0.02 165 2599 732 1310 557 62.5 MiB 0.15 0.00 1.21836 -25.3249 -1.21836 1.21836 2.45 5.1644e-05 3.5057e-05 0.00158046 0.00114333 26 437 16 6.64007e+06 62790 477104. 1650.88 1.77 0.00852253 0.00636628 21682 110474 -1 397 11 212 212 17327 4546 1.12945 1.12945 -27.9248 -1.12945 0 0 585099. 2024.56 0.61 0.01 0.12 -1 -1 0.61 0.00213001 0.00179936 31 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 10.65 vpr 62.37 MiB -1 -1 0.22 20824 1 0.03 -1 -1 33668 -1 -1 5 23 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63868 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 23.9 MiB 0.11 164 2828 891 1242 695 62.4 MiB 0.01 0.00 1.22936 -27.5958 -1.22936 1.22936 2.21 4.854e-05 3.2426e-05 0.00262652 0.00190085 30 454 16 6.64007e+06 62790 526063. 1820.29 1.99 0.0105108 0.007891 22546 126617 -1 362 10 222 222 11096 3326 1.08545 1.08545 -26.8407 -1.08545 0 0 666494. 2306.21 0.59 0.01 0.26 -1 -1 0.59 0.00186369 0.00158508 34 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 11.05 vpr 62.55 MiB -1 -1 0.45 20824 1 0.12 -1 -1 33536 -1 -1 5 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64052 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 24.1 MiB 0.02 222 3193 974 1551 668 62.6 MiB 0.06 0.00 1.24036 -30.5145 -1.24036 1.24036 2.22 6.2061e-05 4.5181e-05 0.0541061 0.0142985 32 529 11 6.64007e+06 62790 554710. 1919.41 2.38 0.0616625 0.0202159 22834 132086 -1 454 13 240 240 14680 3911 1.02025 1.02025 -30.7205 -1.02025 0 0 701300. 2426.64 0.75 0.01 0.64 -1 -1 0.75 0.00245049 0.00204726 37 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 10.25 vpr 62.60 MiB -1 -1 0.21 20824 1 0.14 -1 -1 33236 -1 -1 6 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64100 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 24.1 MiB 0.04 213 3743 1348 1918 477 62.6 MiB 0.02 0.00 1.25136 -33.0163 -1.25136 1.25136 2.24 5.4144e-05 3.7637e-05 0.00292877 0.0021081 30 572 23 6.64007e+06 75348 526063. 1820.29 1.85 0.0102157 0.00792042 22546 126617 -1 469 19 343 343 21111 5985 1.06545 1.06545 -32.6715 -1.06545 0 0 666494. 2306.21 0.78 0.01 0.37 -1 -1 0.78 0.003265 0.00270897 40 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 11.18 vpr 62.63 MiB -1 -1 0.20 20672 1 0.10 -1 -1 33600 -1 -1 7 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64136 29 15 104 105 1 73 51 17 17 289 -1 unnamed_device 24.2 MiB 0.01 274 4093 1352 1973 768 62.6 MiB 0.02 0.00 1.26236 -36.4784 -1.26236 1.26236 2.68 6.5983e-05 4.8108e-05 0.00326386 0.00239844 28 682 16 6.64007e+06 87906 500653. 1732.36 2.23 0.0122412 0.00949591 21970 115934 -1 555 16 298 298 19833 5185 1.04225 1.04225 -36.9076 -1.04225 0 0 612192. 2118.31 0.89 0.01 0.21 -1 -1 0.89 0.00150915 0.00128545 44 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 11.20 vpr 62.67 MiB -1 -1 0.19 20824 1 0.05 -1 -1 33884 -1 -1 7 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64172 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 24.1 MiB 0.12 288 4848 1950 2799 99 62.7 MiB 0.02 0.00 1.62267 -39.6749 -1.62267 1.62267 2.18 6.4137e-05 4.5299e-05 0.00367333 0.00267953 32 653 15 6.64007e+06 87906 554710. 1919.41 2.47 0.0137278 0.0106569 22834 132086 -1 593 14 356 356 24127 6463 1.08425 1.08425 -39.5936 -1.08425 0 0 701300. 2426.64 0.74 0.01 0.28 -1 -1 0.74 0.0032119 0.00270729 46 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 10.72 vpr 62.70 MiB -1 -1 0.36 20520 1 0.03 -1 -1 33728 -1 -1 7 33 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64208 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 24.2 MiB 0.02 322 6597 2432 2696 1469 62.7 MiB 0.02 0.00 1.63367 -43.7768 -1.63367 1.63367 2.09 6.3901e-05 4.5016e-05 0.0046946 0.00344363 32 788 17 6.64007e+06 87906 554710. 1919.41 2.09 0.0477106 0.044447 22834 132086 -1 624 18 413 413 27004 7158 1.20445 1.20445 -43.7796 -1.20445 0 0 701300. 2426.64 0.64 0.08 0.29 -1 -1 0.64 0.070691 0.0700791 49 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 12.16 vpr 62.67 MiB -1 -1 0.24 20520 1 0.08 -1 -1 33856 -1 -1 8 37 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64172 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 24.2 MiB 0.07 339 6795 2758 3901 136 62.7 MiB 0.07 0.00 1.66184 -49.3449 -1.66184 1.66184 1.92 7.7354e-05 5.6776e-05 0.00500355 0.00379048 30 863 20 6.64007e+06 100464 526063. 1820.29 2.13 0.0153654 0.012162 22546 126617 -1 724 12 390 390 31617 8054 0.998248 0.998248 -46.0177 -0.998248 0 0 666494. 2306.21 0.91 0.01 0.49 -1 -1 0.91 0.00350457 0.00304339 55 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 12.16 vpr 63.09 MiB -1 -1 0.40 20672 1 0.12 -1 -1 33868 -1 -1 8 41 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64608 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 24.4 MiB 0.15 391 7990 3267 4602 121 63.1 MiB 0.01 0.00 1.67767 -55.9871 -1.67767 1.67767 2.80 3.6776e-05 2.6341e-05 0.00240334 0.00180682 30 1096 34 6.64007e+06 100464 526063. 1820.29 2.46 0.0147805 0.0119198 22546 126617 -1 831 18 561 561 50215 12634 1.15145 1.15145 -52.6253 -1.15145 0 0 666494. 2306.21 0.75 0.04 0.25 -1 -1 0.75 0.00464398 0.00399291 61 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 12.25 vpr 63.01 MiB -1 -1 0.30 20976 1 0.03 -1 -1 33904 -1 -1 10 45 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64520 45 23 160 161 1 114 78 17 17 289 -1 unnamed_device 24.4 MiB 0.17 547 9208 3773 5318 117 63.0 MiB 0.21 0.00 1.69967 -63.665 -1.69967 1.69967 2.85 9.0679e-05 6.8367e-05 0.00508939 0.00388694 32 1178 21 6.64007e+06 125580 554710. 1919.41 2.40 0.0192278 0.0155975 22834 132086 -1 989 21 594 594 55253 12975 1.16125 1.16125 -61.7686 -1.16125 0 0 701300. 2426.64 1.16 0.02 0.34 -1 -1 1.16 0.0053506 0.00457251 68 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 12.12 vpr 63.10 MiB -1 -1 0.36 20824 1 0.04 -1 -1 33908 -1 -1 10 49 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64616 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 24.5 MiB 0.13 529 5574 1023 4232 319 63.1 MiB 0.02 0.00 2.07098 -70.8466 -2.07098 2.07098 2.69 9.9599e-05 7.7808e-05 0.00433361 0.00342044 30 1203 14 6.64007e+06 125580 526063. 1820.29 2.96 0.147754 0.145397 22546 126617 -1 1047 12 497 497 35292 9410 1.29045 1.29045 -68.5213 -1.29045 0 0 666494. 2306.21 0.65 0.01 0.29 -1 -1 0.65 0.00428024 0.00376914 73 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 11.11 vpr 63.12 MiB -1 -1 0.15 20976 1 0.06 -1 -1 33604 -1 -1 11 57 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64640 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 24.5 MiB 0.20 688 14749 3296 10627 826 63.1 MiB 0.02 0.00 2.11498 -86.7749 -2.11498 2.11498 2.37 5.4104e-05 4.1267e-05 0.00411628 0.0031968 32 1615 13 6.64007e+06 138138 554710. 1919.41 2.05 0.0212947 0.0176605 22834 132086 -1 1377 16 687 687 51144 13035 1.59685 1.59685 -89.1812 -1.59685 0 0 701300. 2426.64 0.82 0.19 0.34 -1 -1 0.82 0.0060186 0.00525838 85 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 13.16 vpr 63.27 MiB -1 -1 0.35 21128 1 0.07 -1 -1 33308 -1 -1 13 65 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64792 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 24.8 MiB 0.07 791 18731 4146 13545 1040 63.3 MiB 0.03 0.00 2.50829 -102.158 -2.50829 2.50829 2.54 5.9685e-05 4.7213e-05 0.00661618 0.00528175 32 1833 31 6.64007e+06 163254 554710. 1919.41 2.61 0.0327079 0.0275612 22834 132086 -1 1523 16 759 759 67770 16580 1.37645 1.37645 -93.7067 -1.37645 0 0 701300. 2426.64 0.77 0.01 0.23 -1 -1 0.77 0.00414823 0.00372966 97 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 12.43 vpr 64.17 MiB -1 -1 0.26 20976 1 0.12 -1 -1 33804 -1 -1 19 97 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65712 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 25.4 MiB 0.13 1480 31353 9242 19771 2340 64.2 MiB 0.23 0.00 3.38291 -181.53 -3.38291 3.38291 2.29 0.000286648 0.000244081 0.0191959 0.0161984 32 2902 20 6.64007e+06 238602 554710. 1919.41 2.60 0.0910191 0.0834303 22834 132086 -1 2553 15 1039 1039 95766 22209 1.73465 1.73465 -159.111 -1.73465 0 0 701300. 2426.64 0.87 0.08 0.19 -1 -1 0.87 0.0108483 0.00988063 145 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 14.10 vpr 64.82 MiB -1 -1 0.44 21280 1 0.15 -1 -1 34032 -1 -1 25 129 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66376 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 26.0 MiB 0.04 2038 51621 17664 30557 3400 64.8 MiB 0.57 0.01 4.25753 -269.429 -4.25753 4.25753 2.16 0.000391401 0.000341118 0.0302312 0.0263916 32 4026 35 6.64007e+06 313950 554710. 1919.41 3.13 0.30837 0.298374 22834 132086 -1 3511 16 1376 1376 131216 29937 1.76645 1.76645 -207.549 -1.76645 0 0 701300. 2426.64 0.93 0.06 0.49 -1 -1 0.93 0.017885 0.0165673 193 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 9.94 vpr 62.03 MiB -1 -1 0.19 20368 1 0.03 -1 -1 33576 -1 -1 2 7 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63520 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 23.7 MiB 0.01 45 88 36 48 4 62.0 MiB 0.00 0.00 0.824016 -7.37037 -0.824016 0.824016 2.68 2.5873e-05 1.5321e-05 0.000344207 0.000253116 12 109 9 6.65987e+06 25356 231691. 801.699 1.05 0.0013852 0.00105225 19090 58805 -1 106 5 36 36 2491 792 0.770048 0.770048 -7.85853 -0.770048 0 0 318358. 1101.58 0.30 0.00 0.23 -1 -1 0.30 0.000666407 0.000536571 10 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 9.91 vpr 62.05 MiB -1 -1 0.20 20368 1 0.17 -1 -1 33576 -1 -1 2 9 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63536 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 23.6 MiB 0.01 41 456 116 304 36 62.0 MiB 0.00 0.00 0.781048 -9.22036 -0.781048 0.781048 2.07 2.5837e-05 1.6357e-05 0.000833572 0.000564439 26 134 7 6.65987e+06 25356 477104. 1650.88 1.58 0.00437946 0.00306916 21682 110474 -1 108 10 78 78 3229 1129 0.901248 0.901248 -9.34056 -0.901248 0 0 585099. 2024.56 0.71 0.00 0.23 -1 -1 0.71 0.000526461 0.00043274 13 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 9.56 vpr 62.10 MiB -1 -1 0.28 20520 1 0.12 -1 -1 33456 -1 -1 2 11 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63588 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 23.6 MiB 0.05 72 1094 334 508 252 62.1 MiB 0.01 0.00 0.803048 -11.753 -0.803048 0.803048 2.17 3.2138e-05 1.9024e-05 0.00167306 0.00107151 26 221 9 6.65987e+06 25356 477104. 1650.88 1.56 0.00397657 0.00277689 21682 110474 -1 151 7 96 96 4519 1385 0.912248 0.912248 -12.0702 -0.912248 0 0 585099. 2024.56 0.93 0.00 0.25 -1 -1 0.93 0.00109464 0.000949485 16 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 10.74 vpr 61.92 MiB -1 -1 0.26 20520 1 0.15 -1 -1 33576 -1 -1 4 13 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63408 13 7 48 49 1 32 24 17 17 289 -1 unnamed_device 23.6 MiB 0.01 113 670 139 437 94 61.9 MiB 0.11 0.00 0.825048 -14.1032 -0.825048 0.825048 2.31 4.0371e-05 2.7466e-05 0.105697 0.105411 26 293 16 6.65987e+06 50712 477104. 1650.88 1.66 0.111124 0.109195 21682 110474 -1 283 18 187 187 18934 4701 1.06545 1.06545 -17.5297 -1.06545 0 0 585099. 2024.56 0.62 0.00 0.39 -1 -1 0.62 0.000892076 0.000709589 20 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 11.58 vpr 62.16 MiB -1 -1 0.27 20368 1 0.04 -1 -1 33496 -1 -1 3 15 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63656 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 23.9 MiB 0.01 111 1508 461 714 333 62.2 MiB 0.01 0.00 1.18536 -17.1757 -1.18536 1.18536 2.71 3.4756e-05 2.178e-05 0.00177349 0.00120566 28 279 11 6.65987e+06 38034 500653. 1732.36 1.92 0.00496411 0.00367847 21970 115934 -1 273 16 185 185 16138 4416 1.07445 1.07445 -18.9964 -1.07445 0 0 612192. 2118.31 0.72 0.05 0.15 -1 -1 0.72 0.00215737 0.00173907 22 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 12.71 vpr 62.20 MiB -1 -1 0.44 20672 1 0.11 -1 -1 33804 -1 -1 4 17 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63692 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 23.7 MiB 0.01 119 1594 461 883 250 62.2 MiB 0.01 0.00 1.19636 -19.4942 -1.19636 1.19636 2.28 4.5778e-05 3.1279e-05 0.00188789 0.00135454 32 327 16 6.65987e+06 50712 554710. 1919.41 2.27 0.00710385 0.00524397 22834 132086 -1 271 13 162 162 9963 2911 1.08545 1.08545 -21.2972 -1.08545 0 0 701300. 2426.64 0.76 0.01 0.36 -1 -1 0.76 0.00203237 0.00165419 25 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 9.92 vpr 62.28 MiB -1 -1 0.18 20520 1 0.04 -1 -1 33688 -1 -1 4 19 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63772 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 23.7 MiB 0.01 130 2165 641 1112 412 62.3 MiB 0.01 0.00 1.20736 -22.0911 -1.20736 1.20736 1.96 4.7354e-05 3.2782e-05 0.00231875 0.00166685 26 403 16 6.65987e+06 50712 477104. 1650.88 1.73 0.0424421 0.0399943 21682 110474 -1 356 14 205 205 21198 5568 1.21665 1.21665 -25.2068 -1.21665 0 0 585099. 2024.56 0.57 0.01 0.26 -1 -1 0.57 0.00261276 0.00192711 28 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 10.29 vpr 62.33 MiB -1 -1 0.14 20672 1 0.24 -1 -1 33552 -1 -1 5 21 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63824 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 23.7 MiB 0.01 146 2599 849 1247 503 62.3 MiB 0.01 0.00 1.21836 -24.7702 -1.21836 1.21836 2.38 4.2587e-05 2.7881e-05 0.00233672 0.0016366 28 457 21 6.65987e+06 63390 500653. 1732.36 1.64 0.00855064 0.00633521 21970 115934 -1 397 13 250 250 19292 5220 1.15659 1.15659 -26.5215 -1.15659 0 0 612192. 2118.31 0.91 0.12 0.24 -1 -1 0.91 0.00244685 0.00205769 31 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 11.46 vpr 62.35 MiB -1 -1 0.34 20368 1 0.10 -1 -1 33388 -1 -1 5 23 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63844 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 23.7 MiB 0.01 164 2624 822 1205 597 62.3 MiB 0.01 0.00 1.22936 -27.5927 -1.22936 1.22936 2.04 4.4761e-05 2.9588e-05 0.00215993 0.0015069 28 538 16 6.65987e+06 63390 500653. 1732.36 1.94 0.00997708 0.0074881 21970 115934 -1 443 12 262 262 20506 5662 1.26065 1.26065 -31.3625 -1.26065 0 0 612192. 2118.31 0.65 0.07 0.16 -1 -1 0.65 0.0025024 0.00202842 34 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 11.24 vpr 62.38 MiB -1 -1 0.38 20672 1 0.10 -1 -1 33360 -1 -1 5 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63876 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 23.9 MiB 0.11 223 3193 975 1461 757 62.4 MiB 0.07 0.00 1.24036 -30.6298 -1.24036 1.24036 2.43 8.3661e-05 6.4907e-05 0.00302706 0.00221249 32 562 18 6.65987e+06 63390 554710. 1919.41 2.15 0.154473 0.0557576 22834 132086 -1 445 14 258 258 14819 4163 1.11845 1.11845 -31.385 -1.11845 0 0 701300. 2426.64 0.62 0.01 0.43 -1 -1 0.62 0.00275245 0.00228506 37 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 12.07 vpr 62.43 MiB -1 -1 0.26 20824 1 0.15 -1 -1 33556 -1 -1 6 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63924 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 23.9 MiB 0.01 203 3743 1266 1895 582 62.4 MiB 0.09 0.00 1.25136 -33.0797 -1.25136 1.25136 2.28 5.3706e-05 3.707e-05 0.0776697 0.0768519 28 674 24 6.65987e+06 76068 500653. 1732.36 1.97 0.0880606 0.0847292 21970 115934 -1 571 12 340 340 25970 7253 1.27165 1.27165 -36.6933 -1.27165 0 0 612192. 2118.31 0.70 0.01 0.28 -1 -1 0.70 0.002663 0.00225715 40 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 11.24 vpr 62.31 MiB -1 -1 0.33 20824 1 0.01 -1 -1 33448 -1 -1 7 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63804 29 15 104 105 1 73 51 17 17 289 -1 unnamed_device 23.7 MiB 0.01 264 4093 1437 1752 904 62.3 MiB 0.01 0.00 1.26236 -36.2215 -1.26236 1.26236 2.76 5.9701e-05 4.2076e-05 0.00311758 0.00230239 32 673 33 6.65987e+06 88746 554710. 1919.41 1.47 0.0143733 0.0111753 22834 132086 -1 580 25 380 380 86919 43538 1.12945 1.12945 -37.1478 -1.12945 0 0 701300. 2426.64 1.09 0.01 0.28 -1 -1 1.09 0.00227428 0.00191509 44 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 11.61 vpr 62.51 MiB -1 -1 0.27 20824 1 0.13 -1 -1 33904 -1 -1 7 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64012 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 23.9 MiB 0.01 288 4848 1943 2811 94 62.5 MiB 0.07 0.00 1.62267 -39.7289 -1.62267 1.62267 2.42 6.6313e-05 4.6781e-05 0.00383312 0.00283505 32 695 12 6.65987e+06 88746 554710. 1919.41 2.39 0.0368071 0.0339728 22834 132086 -1 607 16 348 348 26963 7175 1.30265 1.30265 -42.536 -1.30265 0 0 701300. 2426.64 0.77 0.01 0.28 -1 -1 0.77 0.00347577 0.00295807 46 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 12.31 vpr 62.54 MiB -1 -1 0.30 20824 1 0.03 -1 -1 33916 -1 -1 7 33 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64040 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 23.9 MiB 0.02 308 6597 2389 2698 1510 62.5 MiB 0.16 0.00 1.63367 -42.5457 -1.63367 1.63367 2.43 6.7348e-05 4.7527e-05 0.00523976 0.00381654 32 747 26 6.65987e+06 88746 554710. 1919.41 2.34 0.0168819 0.0131061 22834 132086 -1 627 16 405 405 28816 7723 1.21545 1.21545 -43.8274 -1.21545 0 0 701300. 2426.64 0.83 0.01 0.30 -1 -1 0.83 0.00388144 0.00334456 49 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 12.57 vpr 62.64 MiB -1 -1 0.35 20672 1 0.01 -1 -1 33732 -1 -1 8 37 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64144 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 24.2 MiB 0.02 338 6795 2757 3910 128 62.6 MiB 0.07 0.00 1.66184 -49.2226 -1.66184 1.66184 2.40 9.962e-05 7.8227e-05 0.00496446 0.00358199 30 838 20 6.65987e+06 101424 526063. 1820.29 2.44 0.0563267 0.0124053 22546 126617 -1 708 12 381 381 27467 7119 1.07445 1.07445 -44.2949 -1.07445 0 0 666494. 2306.21 0.97 0.18 0.19 -1 -1 0.97 0.00705218 0.00303661 55 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 11.79 vpr 62.63 MiB -1 -1 0.26 20520 1 0.10 -1 -1 33744 -1 -1 8 41 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64132 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 24.0 MiB 0.01 394 7990 3280 4604 106 62.6 MiB 0.03 0.00 1.67767 -56.0732 -1.67767 1.67767 2.31 8.1895e-05 6.0982e-05 0.00534788 0.00407799 30 1149 23 6.65987e+06 101424 526063. 1820.29 2.41 0.142664 0.015267 22546 126617 -1 842 17 502 502 35108 9421 1.24845 1.24845 -55.1316 -1.24845 0 0 666494. 2306.21 0.73 0.11 0.30 -1 -1 0.73 0.00478639 0.00410821 61 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 12.28 vpr 62.71 MiB -1 -1 0.24 20976 1 0.10 -1 -1 33464 -1 -1 10 45 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64216 45 23 160 161 1 114 78 17 17 289 -1 unnamed_device 24.0 MiB 0.04 488 9208 3771 5298 139 62.7 MiB 0.06 0.00 1.69967 -62.9619 -1.69967 1.69967 2.54 8.9493e-05 6.7219e-05 0.00617353 0.00472204 32 1334 36 6.65987e+06 126780 554710. 1919.41 2.31 0.153493 0.149185 22834 132086 -1 1016 19 614 614 66838 16306 1.36865 1.36865 -65.1455 -1.36865 0 0 701300. 2426.64 1.01 0.06 0.31 -1 -1 1.01 0.0060192 0.00523462 68 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 11.54 vpr 62.94 MiB -1 -1 0.20 21128 1 0.19 -1 -1 33908 -1 -1 10 49 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64452 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 24.3 MiB 0.03 522 5025 948 3851 226 62.9 MiB 0.01 0.00 2.07098 -69.6207 -2.07098 2.07098 2.28 4.621e-05 3.5204e-05 0.00166952 0.00132579 30 1255 20 6.65987e+06 126780 526063. 1820.29 2.18 0.164409 0.161379 22546 126617 -1 1034 14 497 497 34056 9178 1.39965 1.39965 -70.1013 -1.39965 0 0 666494. 2306.21 1.01 0.02 0.37 -1 -1 1.01 0.00519093 0.00453321 73 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 13.90 vpr 63.10 MiB -1 -1 0.41 20976 1 0.10 -1 -1 33588 -1 -1 11 57 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64616 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 24.5 MiB 0.10 695 10531 2311 7690 530 63.1 MiB 0.05 0.00 2.11498 -86.4875 -2.11498 2.11498 2.64 0.00011162 8.7188e-05 0.00703304 0.00563395 32 1714 40 6.65987e+06 139458 554710. 1919.41 2.96 0.201159 0.195936 22834 132086 -1 1428 16 660 660 61153 16898 1.93545 1.93545 -97.6703 -1.93545 0 0 701300. 2426.64 0.86 0.04 0.19 -1 -1 0.86 0.00595941 0.00525377 85 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 13.19 vpr 63.26 MiB -1 -1 0.27 21128 1 0.11 -1 -1 33616 -1 -1 13 65 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64776 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 24.6 MiB 0.11 796 12613 2902 8977 734 63.3 MiB 0.11 0.00 2.50829 -102.591 -2.50829 2.50829 2.65 0.000132489 0.000105962 0.00772371 0.00620396 30 1803 33 6.65987e+06 164814 526063. 1820.29 3.14 0.234035 0.228446 22546 126617 -1 1449 16 692 692 48282 12614 1.55679 1.55679 -98.4661 -1.55679 0 0 666494. 2306.21 0.98 0.04 0.15 -1 -1 0.98 0.0259064 0.0251043 97 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 12.40 vpr 64.03 MiB -1 -1 0.23 21280 1 0.13 -1 -1 33800 -1 -1 19 97 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65568 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 25.2 MiB 0.07 1495 31353 9814 19140 2399 64.0 MiB 0.28 0.00 3.38291 -183.11 -3.38291 3.38291 2.45 0.00022691 0.000188495 0.0190887 0.0159866 32 3039 39 6.65987e+06 240882 554710. 1919.41 2.81 0.311739 0.1603 22834 132086 -1 2734 29 1154 1154 178039 56730 1.63645 1.63645 -157.11 -1.63645 0 0 701300. 2426.64 1.03 0.32 0.19 -1 -1 1.03 0.0831962 0.081419 145 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 14.14 vpr 64.52 MiB -1 -1 0.46 21432 1 0.04 -1 -1 33980 -1 -1 25 129 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66072 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 25.8 MiB 0.20 2040 51621 17960 30273 3388 64.5 MiB 0.80 0.01 4.25753 -270.446 -4.25753 4.25753 2.69 0.000416243 0.000337086 0.244414 0.240219 32 4148 19 6.65987e+06 316950 554710. 1919.41 3.03 0.419778 0.412328 22834 132086 -1 3561 18 1415 1415 153490 35223 1.81945 1.81945 -208.986 -1.81945 0 0 701300. 2426.64 0.80 0.25 0.27 -1 -1 0.80 0.0187225 0.0172631 193 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_003bits.v common 10.66 vpr 62.89 MiB -1 -1 0.24 20672 1 0.01 -1 -1 33328 -1 -1 1 7 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64400 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 24.4 MiB 0.08 35 142 65 72 5 62.9 MiB 0.00 0.00 0.712895 -7.85699 -0.712895 0.712895 2.44 3.2632e-05 2.0696e-05 0.000548749 0.000377459 18 80 8 6.95648e+06 14475.7 376052. 1301.22 1.50 0.00404716 0.00278646 22882 88689 -1 89 8 40 40 3634 1190 0.74674 0.74674 -8.48094 -0.74674 0 0 470940. 1629.55 0.40 0.00 0.70 -1 -1 0.40 0.000795156 0.000623747 5 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_004bits.v common 10.55 vpr 62.93 MiB -1 -1 0.20 20520 1 0.03 -1 -1 33448 -1 -1 1 9 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64444 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 24.4 MiB 0.17 31 339 89 221 29 62.9 MiB 0.00 0.00 0.583992 -8.96727 -0.583992 0.583992 2.30 2.6695e-05 1.6073e-05 0.000918211 0.000664278 18 102 17 6.95648e+06 14475.7 376052. 1301.22 1.60 0.00479794 0.003409 22882 88689 -1 105 15 80 80 5128 1694 0.74674 0.74674 -9.62957 -0.74674 0 0 470940. 1629.55 0.63 0.01 0.17 -1 -1 0.63 0.00128722 0.000986276 7 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_005bits.v common 11.21 vpr 62.98 MiB -1 -1 0.20 20672 1 0.03 -1 -1 33452 -1 -1 1 11 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64496 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 24.4 MiB 0.01 45 386 75 296 15 63.0 MiB 0.01 0.00 0.701895 -11.7042 -0.701895 0.701895 2.85 4.0013e-05 2.5904e-05 0.000977981 0.000707013 20 169 7 6.95648e+06 14475.7 414966. 1435.87 1.23 0.00226014 0.00175429 23170 95770 -1 130 7 58 58 3285 1028 0.709292 0.709292 -12.5375 -0.709292 0 0 503264. 1741.40 0.54 0.00 0.21 -1 -1 0.54 0.00109864 0.000918175 8 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_006bits.v common 10.66 vpr 63.02 MiB -1 -1 0.20 20368 1 0.21 -1 -1 33608 -1 -1 2 13 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64532 13 7 48 49 1 25 22 17 17 289 -1 unnamed_device 24.4 MiB 0.14 98 502 124 370 8 63.0 MiB 0.00 0.00 0.87204 -15.8068 -0.87204 0.87204 1.93 3.5804e-05 2.0361e-05 0.000930109 0.000652379 26 221 12 6.95648e+06 28951.4 503264. 1741.40 1.90 0.00595463 0.00441321 24322 120374 -1 197 4 46 46 2709 758 0.87204 0.87204 -15.9148 -0.87204 0 0 618332. 2139.56 0.62 0.00 0.34 -1 -1 0.62 0.00111754 0.000984916 10 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_007bits.v common 11.81 vpr 62.90 MiB -1 -1 0.32 20520 1 0.13 -1 -1 33640 -1 -1 2 15 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64412 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 24.4 MiB 0.21 182 997 285 587 125 62.9 MiB 0.11 0.00 0.852632 -19.1795 -0.852632 0.852632 2.23 6.2319e-05 4.7356e-05 0.00146538 0.00103503 24 369 10 6.95648e+06 28951.4 470940. 1629.55 2.15 0.00634469 0.00468774 24034 113901 -1 347 11 146 146 12368 2959 0.959892 0.959892 -21.6636 -0.959892 0 0 586450. 2029.24 0.67 0.01 0.33 -1 -1 0.67 0.00192602 0.00142305 11 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_008bits.v common 11.05 vpr 62.94 MiB -1 -1 0.40 20672 1 0.01 -1 -1 33512 -1 -1 2 17 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64448 17 9 62 63 1 37 28 17 17 289 -1 unnamed_device 24.6 MiB 0.22 152 658 188 431 39 62.9 MiB 0.00 0.00 0.87204 -21.3276 -0.87204 0.87204 2.20 3.91e-05 2.54e-05 0.0010076 0.000733675 26 342 11 6.95648e+06 28951.4 503264. 1741.40 1.84 0.00452904 0.00341742 24322 120374 -1 332 10 132 132 9588 2514 1.07503 1.07503 -23.6332 -1.07503 0 0 618332. 2139.56 0.90 0.01 0.29 -1 -1 0.90 0.00193242 0.00146704 13 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_009bits.v common 12.74 vpr 63.12 MiB -1 -1 0.20 20824 1 0.03 -1 -1 33684 -1 -1 2 19 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64640 19 10 69 70 1 44 31 17 17 289 -1 unnamed_device 24.6 MiB 0.16 108 2527 936 1406 185 63.1 MiB 0.14 0.00 0.874632 -21.915 -0.874632 0.874632 2.62 4.0881e-05 2.6473e-05 0.00268734 0.00186369 32 368 30 6.95648e+06 28951.4 586450. 2029.24 2.31 0.0101365 0.00748996 25474 144626 -1 325 24 315 315 22846 6926 1.08603 1.08603 -24.3469 -1.08603 0 0 744469. 2576.02 0.67 0.01 0.23 -1 -1 0.67 0.00319379 0.00257192 14 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_010bits.v common 13.94 vpr 63.17 MiB -1 -1 0.25 20520 1 0.15 -1 -1 33820 -1 -1 2 21 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64688 21 11 76 77 1 49 34 17 17 289 -1 unnamed_device 24.4 MiB 0.12 127 1849 605 914 330 63.2 MiB 0.01 0.00 0.896632 -24.7697 -0.896632 0.896632 2.86 4.3666e-05 2.8667e-05 0.00189492 0.00134427 34 472 39 6.95648e+06 28951.4 618332. 2139.56 3.19 0.0151454 0.0112579 25762 151098 -1 376 32 405 405 24729 7029 1.17833 1.17833 -27.3207 -1.17833 0 0 787024. 2723.27 0.67 0.12 0.31 -1 -1 0.67 0.112474 0.00341092 16 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_011bits.v common 12.63 vpr 63.04 MiB -1 -1 0.33 20824 1 0.03 -1 -1 33688 -1 -1 3 23 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64556 23 12 83 84 1 55 38 17 17 289 -1 unnamed_device 24.7 MiB 0.03 149 1424 335 1059 30 63.0 MiB 0.15 0.00 0.879432 -27.154 -0.879432 0.879432 3.02 2.4106e-05 1.6809e-05 0.000834833 0.000641181 28 542 15 6.95648e+06 43427 531479. 1839.03 1.89 0.00813584 0.00624811 24610 126494 -1 474 14 313 313 23256 6856 1.45713 1.45713 -33.3064 -1.45713 0 0 648988. 2245.63 0.78 0.03 0.22 -1 -1 0.78 0.00256985 0.00217734 17 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_012bits.v common 14.03 vpr 63.22 MiB -1 -1 0.31 20520 1 0.01 -1 -1 33544 -1 -1 3 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64740 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 24.7 MiB 0.17 191 1581 337 1210 34 63.2 MiB 0.01 0.00 0.918632 -30.4288 -0.918632 0.918632 2.72 5.1834e-05 3.5418e-05 0.00176222 0.00132711 34 575 14 6.95648e+06 43427 618332. 2139.56 3.46 0.0153258 0.0116927 25762 151098 -1 485 17 337 337 32607 9181 1.26153 1.26153 -35.4987 -1.26153 0 0 787024. 2723.27 0.71 0.16 0.15 -1 -1 0.71 0.0031399 0.00258389 19 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_013bits.v common 12.82 vpr 63.25 MiB -1 -1 0.29 20520 1 0.08 -1 -1 33532 -1 -1 3 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64768 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 24.7 MiB 0.04 373 2046 513 1237 296 63.2 MiB 0.01 0.00 0.951632 -36.1138 -0.951632 0.951632 2.69 6.0847e-05 4.3391e-05 0.00220523 0.00167138 30 810 22 6.95648e+06 43427 556674. 1926.21 1.95 0.011774 0.00919372 25186 138497 -1 726 16 355 355 34660 7362 1.20223 1.20223 -41.7457 -1.20223 0 0 706193. 2443.58 0.95 0.10 0.51 -1 -1 0.95 0.00315757 0.002646 20 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_014bits.v common 14.34 vpr 63.27 MiB -1 -1 0.15 20672 1 0.04 -1 -1 33260 -1 -1 4 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64792 29 15 104 105 1 72 48 17 17 289 -1 unnamed_device 24.7 MiB 0.10 471 3180 797 1969 414 63.3 MiB 0.01 0.00 0.951632 -40.3696 -0.951632 0.951632 2.56 5.7782e-05 4.0886e-05 0.00290601 0.00217525 34 992 18 6.95648e+06 57902.7 618332. 2139.56 3.89 0.0182963 0.0142161 25762 151098 -1 894 17 431 431 52703 10430 1.29933 1.29933 -49.9099 -1.29933 0 0 787024. 2723.27 1.05 0.03 0.13 -1 -1 1.05 0.00405726 0.00344125 23 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_015bits.v common 14.33 vpr 63.34 MiB -1 -1 0.31 20520 1 0.11 -1 -1 33596 -1 -1 3 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64860 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 24.9 MiB 0.12 264 3822 1541 2241 40 63.3 MiB 0.01 0.00 1.33396 -40.3826 -1.33396 1.33396 2.96 2.7499e-05 1.9194e-05 0.00152132 0.00113978 34 707 21 6.95648e+06 43427 618332. 2139.56 3.69 0.019052 0.0147956 25762 151098 -1 602 14 398 398 32258 8155 1.31933 1.31933 -44.7038 -1.31933 0 0 787024. 2723.27 0.96 0.01 0.30 -1 -1 0.96 0.0040139 0.00347101 24 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_016bits.v common 16.19 vpr 63.09 MiB -1 -1 0.27 20672 1 0.03 -1 -1 33728 -1 -1 4 33 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64608 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 24.7 MiB 0.09 280 4848 1977 2824 47 63.1 MiB 0.02 0.00 1.34496 -43.4863 -1.34496 1.34496 2.58 6.5584e-05 4.6315e-05 0.00395712 0.00296153 38 712 17 6.95648e+06 57902.7 678818. 2348.85 4.08 0.0886831 0.0843662 26626 170182 -1 566 20 377 377 26739 6756 1.33033 1.33033 -46.6098 -1.33033 0 0 902133. 3121.57 1.67 0.01 0.23 -1 -1 1.67 0.00434119 0.00367592 25 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_018bits.v common 14.98 vpr 63.44 MiB -1 -1 0.23 20672 1 0.03 -1 -1 33588 -1 -1 4 37 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64964 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 24.9 MiB 0.46 309 6963 2952 3964 47 63.4 MiB 0.13 0.00 1.36696 -49.676 -1.36696 1.36696 3.20 7.8557e-05 5.7041e-05 0.00550722 0.00410502 34 865 23 6.95648e+06 57902.7 618332. 2139.56 4.05 0.228311 0.222859 25762 151098 -1 729 14 458 458 47297 11443 1.33033 1.33033 -53.903 -1.33033 0 0 787024. 2723.27 0.78 0.14 0.37 -1 -1 0.78 0.00446195 0.00376613 28 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_020bits.v common 17.53 vpr 63.75 MiB -1 -1 0.42 20976 1 0.01 -1 -1 33756 -1 -1 4 41 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65276 41 21 146 147 1 96 66 17 17 289 -1 unnamed_device 25.2 MiB 0.34 350 7248 3002 4195 51 63.7 MiB 0.02 0.00 1.38896 -55.9236 -1.38896 1.38896 3.46 8.7823e-05 6.3814e-05 0.00568418 0.00430835 36 926 17 6.95648e+06 57902.7 648988. 2245.63 4.25 0.0260232 0.0209111 26050 158493 -1 791 21 569 569 56867 12664 1.20023 1.20023 -56.5033 -1.20023 0 0 828058. 2865.25 0.92 0.03 0.36 -1 -1 0.92 0.0034268 0.00298962 31 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_022bits.v common 15.84 vpr 63.68 MiB -1 -1 0.36 20672 1 0.16 -1 -1 33728 -1 -1 5 45 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65208 45 23 160 161 1 108 73 17 17 289 -1 unnamed_device 25.0 MiB 0.26 398 9041 3734 5246 61 63.7 MiB 0.17 0.00 1.41096 -61.6599 -1.41096 1.41096 2.36 9.578e-05 7.16e-05 0.0064002 0.00497489 38 1036 22 6.95648e+06 72378.4 678818. 2348.85 5.68 0.0323448 0.0264989 26626 170182 -1 797 16 578 578 53010 12358 1.39633 1.39633 -65.2027 -1.39633 0 0 902133. 3121.57 1.30 0.02 0.40 -1 -1 1.30 0.00533483 0.0046945 34 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_024bits.v common 15.20 vpr 63.60 MiB -1 -1 0.24 20976 1 0.21 -1 -1 33892 -1 -1 5 49 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65124 49 25 174 175 1 119 79 17 17 289 -1 unnamed_device 25.2 MiB 0.36 521 10050 4309 5679 62 63.6 MiB 0.12 0.00 1.43296 -70.1603 -1.43296 1.43296 2.35 8.9771e-05 6.7397e-05 0.0065331 0.00510073 34 1511 50 6.95648e+06 72378.4 618332. 2139.56 5.34 0.0368012 0.0302872 25762 151098 -1 1077 12 570 570 53399 12722 1.46853 1.46853 -76.728 -1.46853 0 0 787024. 2723.27 1.09 0.01 0.33 -1 -1 1.09 0.00313314 0.0028636 37 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_028bits.v common 16.19 vpr 63.89 MiB -1 -1 0.25 20520 1 0.11 -1 -1 33608 -1 -1 6 57 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65420 57 29 202 203 1 142 92 17 17 289 -1 unnamed_device 25.3 MiB 0.17 560 13961 5920 7973 68 63.9 MiB 0.10 0.00 1.47696 -82.5806 -1.47696 1.47696 2.22 0.000119246 9.2437e-05 0.00918984 0.00724911 40 1620 25 6.95648e+06 86854.1 706193. 2443.58 6.18 0.0544661 0.0469377 26914 176310 -1 1315 19 840 840 100303 24559 1.57663 1.57663 -91.5568 -1.57663 0 0 926341. 3205.33 1.06 0.08 0.64 -1 -1 1.06 0.00743475 0.00655431 43 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_032bits.v common 17.45 vpr 64.07 MiB -1 -1 0.49 20824 1 0.02 -1 -1 33644 -1 -1 7 65 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65612 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 25.3 MiB 0.41 758 16160 6842 9176 142 64.1 MiB 0.10 0.00 1.88129 -97.0955 -1.88129 1.88129 2.71 0.000140951 0.000102614 0.0105387 0.00846761 44 1764 48 6.95648e+06 101330 787024. 2723.27 6.57 0.056906 0.048188 27778 195446 -1 1312 18 905 905 77762 17648 1.40103 1.40103 -96.7405 -1.40103 0 0 997811. 3452.63 1.77 0.03 0.43 -1 -1 1.77 0.00832057 0.00726346 49 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_048bits.v common 17.25 vpr 64.78 MiB -1 -1 0.32 20976 1 0.11 -1 -1 33812 -1 -1 10 97 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66336 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 25.9 MiB 0.38 1331 30743 8901 19960 1882 64.8 MiB 0.32 0.00 2.41762 -163.869 -2.41762 2.41762 1.50 0.000232882 0.000194132 0.05579 0.0527445 50 2695 21 6.95648e+06 144757 902133. 3121.57 7.42 0.464029 0.454269 28642 213929 -1 2422 17 1163 1163 124464 29323 1.74433 1.74433 -166.732 -1.74433 0 0 1.08113e+06 3740.92 1.32 0.21 0.50 -1 -1 1.32 0.198559 0.197391 73 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_064bits.v common 21.18 vpr 65.45 MiB -1 -1 0.23 21128 1 0.03 -1 -1 34044 -1 -1 13 129 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67016 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 26.5 MiB 0.26 2090 36315 10749 23078 2488 65.4 MiB 0.28 0.00 2.95395 -243.637 -2.95395 2.95395 3.39 0.000362167 0.00030233 0.0155867 0.0133923 58 3533 18 6.95648e+06 188184 997811. 3452.63 9.14 0.350972 0.3398 30370 251734 -1 3219 22 1421 1421 194643 38773 1.87583 1.87583 -220.234 -1.87583 0 0 1.25153e+06 4330.55 1.08 0.14 0.64 -1 -1 1.08 0.0120357 0.0110394 97 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_003bits.v common 10.47 vpr 62.72 MiB -1 -1 0.36 20672 1 0.07 -1 -1 33480 -1 -1 1 7 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64224 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 24.1 MiB 0.01 38 142 63 74 5 62.7 MiB 0.00 0.00 0.815432 -8.51669 -0.815432 0.815432 2.97 2.2529e-05 1.2545e-05 0.000449283 0.000299178 14 104 8 6.99608e+06 14715.7 292583. 1012.40 1.19 0.00133338 0.000985117 22018 70521 -1 85 6 32 32 1234 425 0.834592 0.834592 -8.74684 -0.834592 0 0 376052. 1301.22 0.42 0.00 0.17 -1 -1 0.42 0.000755263 0.000601649 5 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_004bits.v common 10.78 vpr 62.62 MiB -1 -1 0.25 20368 1 0.01 -1 -1 33604 -1 -1 1 9 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64120 9 5 34 35 1 17 15 17 17 289 -1 unnamed_device 24.3 MiB 0.06 35 375 107 237 31 62.6 MiB 0.00 0.00 0.712895 -9.56286 -0.712895 0.712895 2.60 2.1398e-05 1.1669e-05 0.000692021 0.000450452 22 122 12 6.99608e+06 14715.7 443629. 1535.05 1.41 0.00456317 0.00312246 23458 102101 -1 88 10 56 56 2042 763 0.834592 0.834592 -9.47336 -0.834592 0 0 531479. 1839.03 0.60 0.00 0.19 -1 -1 0.60 0.00121047 0.00100682 7 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_005bits.v common 10.97 vpr 62.80 MiB -1 -1 0.34 20368 1 0.03 -1 -1 33640 -1 -1 1 11 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64312 11 6 41 42 1 20 18 17 17 289 -1 unnamed_device 24.4 MiB 0.00 44 409 92 302 15 62.8 MiB 0.01 0.00 0.837432 -12.9697 -0.837432 0.837432 2.83 2.655e-05 1.596e-05 0.000744019 0.000508329 22 151 9 6.99608e+06 14715.7 443629. 1535.05 1.57 0.0364137 0.0349213 23458 102101 -1 153 8 64 64 3866 1186 0.837432 0.837432 -14.2048 -0.837432 0 0 531479. 1839.03 0.58 0.00 0.42 -1 -1 0.58 0.00106283 0.0008683 8 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_006bits.v common 10.61 vpr 62.84 MiB -1 -1 0.44 20520 1 0.09 -1 -1 33764 -1 -1 2 13 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64352 13 7 48 49 1 26 22 17 17 289 -1 unnamed_device 24.3 MiB 0.01 66 472 112 343 17 62.8 MiB 0.00 0.00 0.802432 -14.7849 -0.802432 0.802432 2.48 3.1573e-05 1.9447e-05 0.000949009 0.000710797 18 222 10 6.99608e+06 29431.4 376052. 1301.22 1.32 0.0025847 0.00203339 22882 88689 -1 204 7 90 90 4789 1589 0.816915 0.816915 -16.462 -0.816915 0 0 470940. 1629.55 0.46 0.00 0.12 -1 -1 0.46 0.000627637 0.000544936 10 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_007bits.v common 12.39 vpr 62.59 MiB -1 -1 0.35 20368 1 0.03 -1 -1 33648 -1 -1 2 15 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64092 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 24.1 MiB 0.09 80 745 225 479 41 62.6 MiB 0.00 0.00 0.859432 -18.0958 -0.859432 0.859432 2.37 3.4587e-05 2.1427e-05 0.00101806 0.000709844 26 249 21 6.99608e+06 29431.4 503264. 1741.40 2.47 0.00708884 0.00525389 24322 120374 -1 214 9 118 118 7322 2251 1.04203 1.04203 -18.2768 -1.04203 0 0 618332. 2139.56 0.84 0.01 0.25 -1 -1 0.84 0.00147446 0.00122861 11 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_008bits.v common 12.28 vpr 62.91 MiB -1 -1 0.42 20824 1 0.14 -1 -1 33836 -1 -1 2 17 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64416 17 9 62 63 1 38 28 17 17 289 -1 unnamed_device 24.4 MiB 0.16 203 658 170 428 60 62.9 MiB 0.00 0.00 0.87204 -21.2308 -0.87204 0.87204 2.56 3.8018e-05 2.4469e-05 0.000977848 0.000722478 26 451 15 6.99608e+06 29431.4 503264. 1741.40 2.48 0.00677336 0.00510325 24322 120374 -1 392 10 158 158 16021 3888 1.05303 1.05303 -23.7656 -1.05303 0 0 618332. 2139.56 0.92 0.24 0.18 -1 -1 0.92 0.00174968 0.00148061 13 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_009bits.v common 15.14 vpr 62.94 MiB -1 -1 0.33 20824 1 0.05 -1 -1 33664 -1 -1 2 19 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64452 19 10 69 70 1 44 31 17 17 289 -1 unnamed_device 24.6 MiB 0.01 110 2479 792 1104 583 62.9 MiB 0.22 0.00 0.846432 -21.9214 -0.846432 0.846432 2.64 3.6388e-05 2.325e-05 0.00241664 0.00163343 34 332 29 6.99608e+06 29431.4 618332. 2139.56 3.30 0.0158963 0.0118566 25762 151098 -1 301 13 234 234 12303 3969 0.940679 0.940679 -22.9435 -0.940679 0 0 787024. 2723.27 0.96 0.00 0.35 -1 -1 0.96 0.00101331 0.000856234 14 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_010bits.v common 15.63 vpr 62.99 MiB -1 -1 0.51 20672 1 0.08 -1 -1 33536 -1 -1 2 21 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64504 21 11 76 77 1 49 34 17 17 289 -1 unnamed_device 24.4 MiB 0.01 134 1739 500 978 261 63.0 MiB 0.01 0.00 0.857432 -24.4123 -0.857432 0.857432 2.19 4.3448e-05 2.8916e-05 0.00187035 0.00133527 34 441 36 6.99608e+06 29431.4 618332. 2139.56 3.11 0.0153559 0.0114292 25762 151098 -1 341 18 304 304 17226 5175 1.09703 1.09703 -25.3097 -1.09703 0 0 787024. 2723.27 0.84 0.01 0.34 -1 -1 0.84 0.0027254 0.00223722 16 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_011bits.v common 13.95 vpr 63.04 MiB -1 -1 0.68 20672 1 0.22 -1 -1 33384 -1 -1 3 23 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64548 23 12 83 84 1 54 38 17 17 289 -1 unnamed_device 24.4 MiB 0.18 157 1298 273 992 33 63.0 MiB 0.01 0.00 0.879432 -27.0809 -0.879432 0.879432 2.44 4.2802e-05 2.8745e-05 0.00134119 0.000965426 30 510 13 6.99608e+06 44147 556674. 1926.21 2.21 0.00894275 0.00689373 25186 138497 -1 413 14 270 270 18051 5350 1.08603 1.08603 -30.4861 -1.08603 0 0 706193. 2443.58 0.59 0.01 0.29 -1 -1 0.59 0.00264179 0.00219367 17 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_012bits.v common 12.64 vpr 62.91 MiB -1 -1 0.30 20672 1 0.02 -1 -1 33668 -1 -1 3 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64416 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 24.6 MiB 0.07 214 1861 414 1414 33 62.9 MiB 0.20 0.00 0.890432 -31.2249 -0.890432 0.890432 2.52 4.8969e-05 3.352e-05 0.182817 0.182263 26 593 14 6.99608e+06 44147 503264. 1741.40 1.56 0.190055 0.187948 24322 120374 -1 532 16 359 359 30608 8283 1.07503 1.07503 -35.6333 -1.07503 0 0 618332. 2139.56 0.89 0.05 0.20 -1 -1 0.89 0.00339207 0.00290591 19 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_013bits.v common 10.79 vpr 63.10 MiB -1 -1 0.26 20824 1 0.17 -1 -1 33676 -1 -1 3 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64616 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 24.6 MiB 0.02 395 2354 574 1438 342 63.1 MiB 0.01 0.00 0.912432 -36.6204 -0.912432 0.912432 2.53 5.5368e-05 3.8854e-05 0.00346235 0.00286187 30 794 18 6.99608e+06 44147 556674. 1926.21 1.92 0.0121767 0.00962023 25186 138497 -1 704 18 360 360 33967 7040 1.13003 1.13003 -40.2917 -1.13003 0 0 706193. 2443.58 0.87 0.01 0.26 -1 -1 0.87 0.00340107 0.00284109 20 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_014bits.v common 12.25 vpr 62.90 MiB -1 -1 0.49 20824 1 0.01 -1 -1 33620 -1 -1 4 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64412 29 15 104 105 1 72 48 17 17 289 -1 unnamed_device 24.6 MiB 0.01 470 2571 633 1642 296 62.9 MiB 0.01 0.00 0.923432 -39.2056 -0.923432 0.923432 2.50 5.9918e-05 4.2888e-05 0.00229457 0.00170827 34 979 33 6.99608e+06 58862.7 618332. 2139.56 3.17 0.0305628 0.0259083 25762 151098 -1 864 19 475 475 57956 11480 1.16303 1.16303 -45.1457 -1.16303 0 0 787024. 2723.27 0.90 0.02 0.36 -1 -1 0.90 0.00380817 0.00319353 23 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_015bits.v common 13.20 vpr 63.03 MiB -1 -1 0.30 20672 1 0.07 -1 -1 33572 -1 -1 3 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64540 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 24.6 MiB 0.01 264 3822 1512 2266 44 63.0 MiB 0.01 0.00 1.29476 -39.4641 -1.29476 1.29476 2.24 6.1184e-05 4.2907e-05 0.00333509 0.00247868 34 753 25 6.99608e+06 44147 618332. 2139.56 3.78 0.0279486 0.0169803 25762 151098 -1 609 16 403 403 33569 8467 1.28633 1.28633 -44.8569 -1.28633 0 0 787024. 2723.27 0.93 0.10 0.27 -1 -1 0.93 0.00399309 0.00339608 24 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_016bits.v common 13.42 vpr 63.21 MiB -1 -1 0.51 20672 1 0.05 -1 -1 33748 -1 -1 4 33 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64728 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 24.7 MiB 0.02 279 4848 1973 2828 47 63.2 MiB 0.02 0.00 1.31676 -42.9938 -1.31676 1.31676 2.89 6.7711e-05 4.8654e-05 0.00396539 0.00296622 34 883 23 6.99608e+06 58862.7 618332. 2139.56 3.64 0.0260294 0.0210396 25762 151098 -1 611 18 425 425 38814 9330 1.27533 1.27533 -46.1248 -1.27533 0 0 787024. 2723.27 0.91 0.14 0.35 -1 -1 0.91 0.00255674 0.00222977 25 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_018bits.v common 14.67 vpr 63.27 MiB -1 -1 0.35 20672 1 0.06 -1 -1 33728 -1 -1 4 37 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64792 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 24.7 MiB 0.02 309 6963 2905 3992 66 63.3 MiB 0.04 0.00 1.33876 -48.9536 -1.33876 1.33876 2.59 7.2635e-05 5.3019e-05 0.00526834 0.00400827 36 883 14 6.99608e+06 58862.7 648988. 2245.63 4.44 0.0841584 0.0788406 26050 158493 -1 712 19 483 483 47651 11392 1.31933 1.31933 -52.427 -1.31933 0 0 828058. 2865.25 0.96 0.01 0.25 -1 -1 0.96 0.00242875 0.00210724 28 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_020bits.v common 13.63 vpr 63.36 MiB -1 -1 0.50 20976 1 0.03 -1 -1 34060 -1 -1 4 41 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64880 41 21 146 147 1 94 66 17 17 289 -1 unnamed_device 24.7 MiB 0.05 346 7115 2925 4148 42 63.4 MiB 0.12 0.00 1.34976 -55.318 -1.34976 1.34976 2.54 8.0373e-05 5.9414e-05 0.00533405 0.00407093 34 1048 37 6.99608e+06 58862.7 618332. 2139.56 4.13 0.0312247 0.0251989 25762 151098 -1 844 22 516 516 73942 27602 1.34133 1.34133 -60.4831 -1.34133 0 0 787024. 2723.27 0.82 0.24 0.20 -1 -1 0.82 0.00381383 0.00336152 31 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_022bits.v common 15.70 vpr 63.50 MiB -1 -1 0.36 20976 1 0.01 -1 -1 33724 -1 -1 5 45 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65024 45 23 160 161 1 107 73 17 17 289 -1 unnamed_device 24.9 MiB 0.09 396 9041 3748 5233 60 63.5 MiB 0.10 0.00 1.37176 -60.8627 -1.37176 1.37176 2.67 0.000151071 0.00012521 0.00647059 0.00505637 36 1116 23 6.99608e+06 73578.4 648988. 2245.63 4.53 0.0299275 0.0242985 26050 158493 -1 900 16 573 573 55117 12978 1.24618 1.24618 -61.2695 -1.24618 0 0 828058. 2865.25 1.16 0.02 0.24 -1 -1 1.16 0.00502995 0.00439933 34 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_024bits.v common 16.44 vpr 63.59 MiB -1 -1 0.23 20976 1 0.22 -1 -1 33732 -1 -1 5 49 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65112 49 25 174 175 1 118 79 17 17 289 -1 unnamed_device 24.9 MiB 0.03 446 10050 4202 5799 49 63.6 MiB 0.23 0.00 1.39376 -66.6204 -1.39376 1.39376 2.64 9.6425e-05 7.1858e-05 0.0074431 0.00583932 38 1240 31 6.99608e+06 73578.4 678818. 2348.85 6.04 0.147152 0.140951 26626 170182 -1 945 16 614 614 67437 16921 1.39633 1.39633 -70.5813 -1.39633 0 0 902133. 3121.57 1.01 0.04 0.50 -1 -1 1.01 0.0269242 0.0261703 37 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_028bits.v common 17.51 vpr 63.73 MiB -1 -1 0.39 20824 1 0.33 -1 -1 33480 -1 -1 6 57 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65256 57 29 202 203 1 141 92 17 17 289 -1 unnamed_device 25.0 MiB 0.12 634 13961 5842 8023 96 63.7 MiB 0.18 0.00 1.44876 -81.1127 -1.44876 1.44876 2.51 0.000131171 0.000100971 0.00969452 0.00760927 34 1802 49 6.99608e+06 88294.1 618332. 2139.56 6.90 0.205044 0.0821 25762 151098 -1 1281 17 737 737 70573 16932 1.53263 1.53263 -87.6927 -1.53263 0 0 787024. 2723.27 0.82 0.07 0.32 -1 -1 0.82 0.00703692 0.00608612 43 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_032bits.v common 16.38 vpr 63.90 MiB -1 -1 0.27 21128 1 0.02 -1 -1 33608 -1 -1 7 65 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65432 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 25.3 MiB 0.06 748 16160 6967 9054 139 63.9 MiB 0.16 0.00 1.85309 -96.1412 -1.85309 1.85309 2.75 0.000137113 0.000106234 0.124649 0.122525 42 1640 29 6.99608e+06 103010 744469. 2576.02 4.77 0.206342 0.198998 27202 183097 -1 1314 13 757 757 63756 14934 1.33503 1.33503 -92.8832 -1.33503 0 0 949917. 3286.91 1.37 0.13 0.63 -1 -1 1.37 0.122107 0.0035652 49 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_048bits.v common 19.19 vpr 64.61 MiB -1 -1 0.28 21128 1 0.17 -1 -1 33816 -1 -1 10 97 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66160 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 25.8 MiB 0.12 1337 28648 7802 19085 1761 64.6 MiB 0.38 0.00 2.38942 -163.539 -2.38942 2.38942 2.61 0.000104946 8.5584e-05 0.126402 0.0148677 46 3018 26 6.99608e+06 147157 828058. 2865.25 7.82 0.718842 0.600381 28066 200906 -1 2492 22 1225 1225 243471 79327 1.93993 1.93993 -175.414 -1.93993 0 0 1.01997e+06 3529.29 1.33 0.44 0.46 -1 -1 1.33 0.0150943 0.0136729 73 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_064bits.v common 19.90 vpr 65.04 MiB -1 -1 0.32 21128 1 0.12 -1 -1 34040 -1 -1 13 129 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66604 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 26.3 MiB 0.16 2094 36315 10889 23051 2375 65.0 MiB 0.32 0.00 2.92575 -240.987 -2.92575 2.92575 3.25 0.000378741 0.000296664 0.135806 0.13266 50 3870 42 6.99608e+06 191304 902133. 3121.57 8.28 0.464402 0.451214 28642 213929 -1 3432 17 1390 1390 172611 34629 1.80403 1.80403 -222.952 -1.80403 0 0 1.08113e+06 3740.92 1.11 0.30 0.48 -1 -1 1.11 0.016813 0.0153724 97 2 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_003bits.v common 11.19 vpr 62.19 MiB -1 -1 0.20 20672 1 0.09 -1 -1 35688 -1 -1 1 7 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63680 7 4 21 25 1 11 12 17 17 289 -1 unnamed_device 23.6 MiB 0.00 84 103 37 64 2 62.2 MiB 0.00 0.00 0.77095 -8.74779 -0.77095 0.77095 2.42 2.4207e-05 1.3678e-05 0.000405836 0.000289889 18 138 7 6.79088e+06 13472 376052. 1301.22 1.63 0.00131201 0.000992992 22222 88205 -1 139 7 36 36 3554 874 0.834592 0.834592 -9.43991 -0.834592 0 0 470940. 1629.55 0.65 0.00 0.10 -1 -1 0.65 0.000401173 0.000330687 6 4 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_004bits.v common 10.38 vpr 62.22 MiB -1 -1 0.23 20672 2 0.20 -1 -1 35984 -1 -1 1 9 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63716 9 5 28 33 1 16 15 17 17 289 -1 unnamed_device 23.6 MiB 0.01 35 357 92 226 39 62.2 MiB 0.00 0.00 0.883748 -9.933 -0.883748 0.883748 2.73 2.5136e-05 1.4415e-05 0.000773696 0.000511385 18 144 17 6.79088e+06 13472 376052. 1301.22 1.29 0.00231991 0.00169472 22222 88205 -1 110 7 44 44 1714 684 0.883748 0.883748 -10.7206 -0.883748 0 0 470940. 1629.55 0.42 0.00 0.14 -1 -1 0.42 0.000942456 0.000614038 8 6 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_005bits.v common 12.19 vpr 62.26 MiB -1 -1 0.28 20216 2 0.16 -1 -1 35412 -1 -1 2 11 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63752 11 6 34 40 1 23 19 17 17 289 -1 unnamed_device 23.8 MiB 0.01 56 369 83 271 15 62.3 MiB 0.00 0.00 1.02368 -13.1072 -1.02368 1.02368 2.34 3.047e-05 1.8884e-05 0.000750678 0.000534848 30 190 11 6.79088e+06 26944 556674. 1926.21 2.27 0.00502002 0.00355271 24526 138013 -1 148 7 57 63 2684 856 1.02368 1.02368 -13.4626 -1.02368 0 0 706193. 2443.58 0.83 0.00 0.15 -1 -1 0.83 0.000507138 0.000436108 10 7 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_006bits.v common 11.86 vpr 62.29 MiB -1 -1 0.32 20672 3 0.23 -1 -1 35424 -1 -1 2 13 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63788 13 7 41 48 1 30 22 17 17 289 -1 unnamed_device 23.8 MiB 0.01 84 562 132 416 14 62.3 MiB 0.00 0.00 1.14898 -15.8855 -1.14898 1.14898 2.67 3.6688e-05 2.3531e-05 0.000949484 0.000677554 22 278 10 6.79088e+06 26944 443629. 1535.05 2.13 0.00563681 0.00411925 22798 101617 -1 203 9 87 90 4352 1382 1.05944 1.05944 -16.5802 -1.05944 0 0 531479. 1839.03 0.70 0.00 0.33 -1 -1 0.70 0.000679206 0.000585462 11 9 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_007bits.v common 10.84 vpr 62.33 MiB -1 -1 0.15 20824 3 0.03 -1 -1 35512 -1 -1 2 15 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63824 15 8 47 55 1 36 25 17 17 289 -1 unnamed_device 23.8 MiB 0.01 105 1609 651 939 19 62.3 MiB 0.01 0.00 1.18818 -19.0107 -1.18818 1.18818 2.07 3.6549e-05 2.3592e-05 0.00189198 0.00126399 26 275 20 6.79088e+06 26944 503264. 1741.40 2.04 0.150187 0.00611635 23662 119890 -1 243 8 132 150 8774 2913 1.18818 1.18818 -20.6489 -1.18818 0 0 618332. 2139.56 0.84 0.01 0.17 -1 -1 0.84 0.00154986 0.00132232 13 10 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_008bits.v common 11.02 vpr 62.40 MiB -1 -1 0.30 20520 3 0.13 -1 -1 35620 -1 -1 2 17 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63900 17 9 56 65 1 43 28 17 17 289 -1 unnamed_device 23.9 MiB 0.23 265 1246 323 720 203 62.4 MiB 0.01 0.00 1.52493 -25.689 -1.52493 1.52493 1.97 3.6146e-05 2.3098e-05 0.00172847 0.00129291 26 569 23 6.79088e+06 26944 503264. 1741.40 2.57 0.00801048 0.00595151 23662 119890 -1 532 8 170 202 16940 3844 1.27433 1.27433 -27.5744 -1.27433 0 0 618332. 2139.56 1.20 0.18 0.22 -1 -1 1.20 0.17664 0.176461 16 14 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_009bits.v common 13.03 vpr 62.42 MiB -1 -1 0.38 20824 4 0.11 -1 -1 35472 -1 -1 3 19 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63916 19 10 60 70 1 49 32 17 17 289 -1 unnamed_device 23.9 MiB 0.04 127 2032 631 960 441 62.4 MiB 0.00 0.00 1.31348 -24.6536 -1.31348 1.31348 2.34 1.8957e-05 1.2392e-05 0.00102259 0.000735903 28 516 43 6.79088e+06 40416 531479. 1839.03 2.39 0.0113625 0.0089413 23950 126010 -1 416 9 213 217 11180 3714 1.22389 1.22389 -25.8749 -1.22389 0 0 648988. 2245.63 0.51 0.01 0.30 -1 -1 0.51 0.0019508 0.00167815 17 13 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_010bits.v common 13.90 vpr 62.48 MiB -1 -1 0.27 20672 4 0.17 -1 -1 35628 -1 -1 3 21 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63976 21 11 69 80 1 55 35 17 17 289 -1 unnamed_device 23.9 MiB 0.67 244 2429 615 1619 195 62.5 MiB 0.16 0.00 1.85398 -32.5153 -1.85398 1.85398 2.96 2.4064e-05 1.6895e-05 0.00278023 0.00203947 26 661 19 6.79088e+06 40416 503264. 1741.40 2.03 0.0116419 0.00898249 23662 119890 -1 565 14 238 294 23917 5793 1.65028 1.65028 -35.0292 -1.65028 0 0 618332. 2139.56 0.70 0.01 0.18 -1 -1 0.70 0.00294845 0.00239755 21 17 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_011bits.v common 12.67 vpr 62.29 MiB -1 -1 0.23 20824 5 0.15 -1 -1 35756 -1 -1 3 23 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63780 23 12 76 88 1 61 38 17 17 289 -1 unnamed_device 23.9 MiB 0.45 176 2243 530 1542 171 62.3 MiB 0.01 0.00 1.90432 -33.5201 -1.90432 1.90432 2.64 5.2936e-05 3.7394e-05 0.00259265 0.00194883 26 600 28 6.79088e+06 40416 503264. 1741.40 2.60 0.121237 0.0104145 23662 119890 -1 415 15 287 353 19584 6651 2.06533 2.06533 -35.9914 -2.06533 0 0 618332. 2139.56 0.93 0.00 0.27 -1 -1 0.93 0.00151539 0.0013103 22 19 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_012bits.v common 12.23 vpr 62.57 MiB -1 -1 0.17 20824 5 0.04 -1 -1 35532 -1 -1 3 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64076 25 13 83 96 1 66 41 17 17 289 -1 unnamed_device 24.2 MiB 0.58 399 2141 527 1390 224 62.6 MiB 0.15 0.00 1.86512 -43.4929 -1.86512 1.86512 2.18 5.8404e-05 4.1031e-05 0.00239636 0.00181652 30 820 13 6.79088e+06 40416 556674. 1926.21 2.22 0.00844775 0.00681272 24526 138013 -1 728 11 256 311 20183 4744 1.67834 1.67834 -42.9812 -1.67834 0 0 706193. 2443.58 0.60 0.18 0.39 -1 -1 0.60 0.00294636 0.00256906 23 21 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_013bits.v common 14.27 vpr 62.64 MiB -1 -1 0.22 20824 5 0.18 -1 -1 35532 -1 -1 4 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64140 27 14 91 105 1 72 45 17 17 289 -1 unnamed_device 24.2 MiB 1.08 320 2045 440 1409 196 62.6 MiB 0.08 0.07 2.15497 -44.6625 -2.15497 2.15497 2.41 6.4133e-05 4.6309e-05 0.00226517 0.00176553 34 775 12 6.79088e+06 53888 618332. 2139.56 2.98 0.0148579 0.0117234 25102 150614 -1 737 12 259 330 24924 5934 1.81483 1.81483 -44.2403 -1.81483 0 0 787024. 2723.27 0.82 0.01 0.32 -1 -1 0.82 0.00345376 0.00301564 27 24 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_014bits.v common 14.52 vpr 62.66 MiB -1 -1 0.26 20824 6 0.28 -1 -1 35520 -1 -1 4 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64160 29 15 95 110 1 77 48 17 17 289 -1 unnamed_device 24.1 MiB 0.87 242 2310 439 1830 41 62.7 MiB 0.01 0.00 2.36642 -47.3554 -2.36642 2.36642 2.93 6.7282e-05 4.9969e-05 0.00253503 0.00197787 28 885 12 6.79088e+06 53888 531479. 1839.03 2.54 0.0878789 0.0860628 23950 126010 -1 694 18 355 423 25811 7679 2.24112 2.24112 -50.4415 -2.24112 0 0 648988. 2245.63 0.87 0.02 0.30 -1 -1 0.87 0.0152343 0.0146856 28 23 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_015bits.v common 14.04 vpr 62.55 MiB -1 -1 0.28 20976 6 0.17 -1 -1 35768 -1 -1 5 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64056 31 16 104 120 1 82 52 17 17 289 -1 unnamed_device 24.1 MiB 1.35 486 4708 1100 3116 492 62.6 MiB 0.09 0.00 2.44482 -56.7016 -2.44482 2.44482 2.28 7.849e-05 5.7847e-05 0.00502122 0.00386535 34 1053 15 6.79088e+06 67360 618332. 2139.56 3.25 0.137256 0.0184965 25102 150614 -1 930 16 321 449 31351 7409 2.53092 2.53092 -58.7374 -2.53092 0 0 787024. 2723.27 0.76 0.01 0.43 -1 -1 0.76 0.0042529 0.003728 31 27 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_016bits.v common 14.94 vpr 62.54 MiB -1 -1 0.22 20672 7 0.07 -1 -1 35648 -1 -1 5 33 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64044 33 17 112 129 1 88 55 17 17 289 -1 unnamed_device 24.1 MiB 2.06 552 6503 2125 3261 1117 62.5 MiB 0.02 0.00 2.73468 -63.9664 -2.73468 2.73468 2.71 9.3813e-05 7.352e-05 0.00601155 0.00455128 34 1109 16 6.79088e+06 67360 618332. 2139.56 3.47 0.0227638 0.0183302 25102 150614 -1 988 15 341 443 32433 7411 2.60594 2.60594 -65.337 -2.60594 0 0 787024. 2723.27 1.13 0.06 0.20 -1 -1 1.13 0.00453778 0.00397847 32 30 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_018bits.v common 16.86 vpr 62.70 MiB -1 -1 0.35 20824 7 0.13 -1 -1 35692 -1 -1 6 37 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64200 37 19 127 146 1 99 62 17 17 289 -1 unnamed_device 24.2 MiB 3.98 374 3234 672 2521 41 62.7 MiB 0.01 0.00 3.37591 -72.5139 -3.37591 3.37591 2.77 4.5418e-05 3.5267e-05 0.0016187 0.00130033 34 935 9 6.79088e+06 80832 618332. 2139.56 3.63 0.0441336 0.0399196 25102 150614 -1 820 9 325 405 21162 6087 3.12531 3.12531 -70.5514 -3.12531 0 0 787024. 2723.27 0.74 0.01 0.27 -1 -1 0.74 0.00433232 0.00394249 37 35 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_020bits.v common 14.46 vpr 63.07 MiB -1 -1 0.31 20824 8 0.15 -1 -1 35880 -1 -1 6 41 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64584 41 21 139 160 1 106 68 17 17 289 -1 unnamed_device 24.5 MiB 1.70 404 5588 1196 4245 147 63.1 MiB 0.02 0.00 2.87709 -74.8082 -2.87709 2.87709 2.28 9.2094e-05 6.8755e-05 0.00476127 0.00372637 28 1437 35 6.79088e+06 80832 531479. 1839.03 3.43 0.151407 0.14692 23950 126010 -1 1078 12 478 610 44214 11821 2.73129 2.73129 -79.2353 -2.73129 0 0 648988. 2245.63 0.87 0.07 0.26 -1 -1 0.87 0.0613965 0.0606679 41 37 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_022bits.v common 15.14 vpr 63.05 MiB -1 -1 0.38 20520 9 0.07 -1 -1 35892 -1 -1 6 45 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64568 45 23 153 176 1 119 74 17 17 289 -1 unnamed_device 24.5 MiB 1.29 495 9064 3734 5299 31 63.1 MiB 0.04 0.00 3.44738 -91.1716 -3.44738 3.44738 2.37 0.000111915 8.4938e-05 0.0231437 0.0215498 34 1262 15 6.79088e+06 80832 618332. 2139.56 4.16 0.0775318 0.0713178 25102 150614 -1 1009 10 451 546 33844 8849 3.10725 3.10725 -87.5868 -3.10725 0 0 787024. 2723.27 0.91 0.01 0.25 -1 -1 0.91 0.00520362 0.00471908 43 41 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_024bits.v common 16.70 vpr 63.18 MiB -1 -1 0.26 20824 10 0.18 -1 -1 35900 -1 -1 8 49 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64700 49 25 166 191 1 133 82 17 17 289 -1 unnamed_device 24.5 MiB 2.43 703 7914 1830 5632 452 63.2 MiB 0.10 0.00 3.44744 -102.94 -3.44744 3.44744 2.36 0.00011432 9.0299e-05 0.00641115 0.00521856 34 1579 20 6.79088e+06 107776 618332. 2139.56 4.19 0.0311201 0.026215 25102 150614 -1 1320 11 467 546 38551 9262 3.311 3.311 -101.159 -3.311 0 0 787024. 2723.27 0.82 0.01 0.59 -1 -1 0.82 0.00313314 0.00274833 48 44 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_028bits.v common 17.52 vpr 63.35 MiB -1 -1 0.25 20672 11 0.23 -1 -1 35760 -1 -1 8 57 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64872 57 29 198 227 1 158 94 17 17 289 -1 unnamed_device 24.7 MiB 4.32 745 10531 2305 7755 471 63.4 MiB 0.06 0.00 4.11668 -130.271 -4.11668 4.11668 2.13 6.5723e-05 5.2215e-05 0.00798162 0.0064802 34 1944 22 6.79088e+06 107776 618332. 2139.56 3.66 0.03701 0.0312884 25102 150614 -1 1650 17 694 976 70448 17398 3.77654 3.77654 -127.338 -3.77654 0 0 787024. 2723.27 1.03 0.09 0.31 -1 -1 1.03 0.07172 0.0709063 59 56 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_032bits.v common 18.36 vpr 63.50 MiB -1 -1 0.38 21128 13 0.25 -1 -1 35792 -1 -1 9 65 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65024 65 33 224 257 1 176 107 17 17 289 -1 unnamed_device 24.8 MiB 4.91 1085 14781 4255 8693 1833 63.5 MiB 0.18 0.00 5.13751 -166.798 -5.13751 5.13751 2.63 7.4273e-05 5.8046e-05 0.15531 0.00743833 30 2275 23 6.79088e+06 121248 556674. 1926.21 2.72 0.292663 0.140924 24526 138013 -1 1997 14 659 871 59242 13639 4.62142 4.62142 -163.517 -4.62142 0 0 706193. 2443.58 1.30 0.06 0.28 -1 -1 1.30 0.0412774 0.0404653 66 62 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_048bits.v common 28.29 vpr 64.10 MiB -1 -1 0.70 21128 19 0.54 -1 -1 35864 -1 -1 13 97 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65640 97 49 340 389 1 267 159 17 17 289 -1 unnamed_device 25.4 MiB 10.50 1245 33699 14062 19573 64 64.1 MiB 0.34 0.15 7.59683 -298.263 -7.59683 7.59683 3.00 0.000309666 0.000264005 0.026486 0.0226397 36 2849 20 6.79088e+06 175136 648988. 2245.63 4.83 0.0991613 0.0877466 25390 158009 -1 2385 14 1113 1496 86918 23255 6.93113 6.93113 -283.869 -6.93113 0 0 828058. 2865.25 1.21 0.02 0.52 -1 -1 1.21 0.00715652 0.00658791 100 98 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_064bits.v common 28.97 vpr 64.89 MiB -1 -1 0.71 21736 26 0.37 -1 -1 35952 -1 -1 18 129 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66444 129 65 453 518 1 350 212 17 17 289 -1 unnamed_device 26.2 MiB 12.92 1555 46906 15122 26023 5761 64.9 MiB 0.32 0.00 10.1998 -491.342 -10.1998 10.1998 2.23 0.000431108 0.000376121 0.107626 0.0976867 38 3659 28 6.79088e+06 242496 678818. 2348.85 5.32 0.379766 0.359415 25966 169698 -1 2900 11 1200 1606 95570 24629 9.57327 9.57327 -468.252 -9.57327 0 0 902133. 3121.57 0.91 0.19 0.34 -1 -1 0.91 0.01788 0.0167846 129 131 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_003bits.v common 11.55 vpr 62.56 MiB -1 -1 0.44 20520 1 0.18 -1 -1 33588 -1 -1 1 7 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64060 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 24.0 MiB 0.09 25 155 63 90 2 62.6 MiB 0.00 0.00 0.605992 -7.06722 -0.605992 0.605992 2.63 2.9625e-05 1.6078e-05 0.000495418 0.000329911 22 67 10 6.87369e+06 13973.8 443629. 1535.05 1.35 0.00382389 0.00242212 23458 102101 -1 67 3 19 19 1052 364 0.74674 0.74674 -6.97772 -0.74674 0 0 531479. 1839.03 0.84 0.00 0.30 -1 -1 0.84 0.000634803 0.000535809 8 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_004bits.v common 10.45 vpr 62.62 MiB -1 -1 0.39 20520 1 0.03 -1 -1 33428 -1 -1 2 9 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64124 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 24.2 MiB 0.21 44 336 94 221 21 62.6 MiB 0.00 0.00 0.789073 -9.95572 -0.789073 0.789073 2.71 2.9024e-05 1.7483e-05 0.000699245 0.000459598 18 145 11 6.87369e+06 27947.7 376052. 1301.22 1.48 0.0044115 0.00303406 22882 88689 -1 132 14 97 97 7372 2110 0.914373 0.914373 -10.9223 -0.914373 0 0 470940. 1629.55 0.51 0.00 0.21 -1 -1 0.51 0.000751121 0.000601553 10 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_005bits.v common 11.92 vpr 62.66 MiB -1 -1 0.32 20520 1 0.24 -1 -1 33756 -1 -1 3 11 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64164 11 6 41 42 1 27 20 17 17 289 -1 unnamed_device 24.3 MiB 0.23 65 641 179 439 23 62.7 MiB 0.00 0.00 0.811073 -12.7564 -0.811073 0.811073 2.97 2.5488e-05 1.4604e-05 0.000856657 0.000553602 26 194 9 6.87369e+06 41921.5 503264. 1741.40 1.72 0.00478948 0.00335355 24322 120374 -1 200 13 137 137 7760 2540 1.02867 1.02867 -14.5281 -1.02867 0 0 618332. 2139.56 0.80 0.00 0.24 -1 -1 0.80 0.000634463 0.000505169 13 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_006bits.v common 11.37 vpr 62.69 MiB -1 -1 0.21 20520 1 0.18 -1 -1 33584 -1 -1 3 13 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64192 13 7 48 49 1 33 23 17 17 289 -1 unnamed_device 24.2 MiB 0.11 78 1015 230 584 201 62.7 MiB 0.01 0.00 0.833073 -15.4131 -0.833073 0.833073 2.39 2.7797e-05 1.6635e-05 0.00123428 0.00081502 28 272 22 6.87369e+06 41921.5 531479. 1839.03 1.96 0.00645389 0.0044415 24610 126494 -1 248 24 291 291 17878 5618 1.19797 1.19797 -17.4136 -1.19797 0 0 648988. 2245.63 0.76 0.02 0.22 -1 -1 0.76 0.0117818 0.00154158 15 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_007bits.v common 12.07 vpr 62.55 MiB -1 -1 0.49 20672 1 0.08 -1 -1 33700 -1 -1 3 15 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64048 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 24.0 MiB 0.28 110 1850 737 1031 82 62.5 MiB 0.01 0.00 1.38906 -18.4681 -1.38906 1.38906 2.76 3.2518e-05 2.0022e-05 0.00195858 0.0012838 26 309 17 6.87369e+06 41921.5 503264. 1741.40 1.75 0.00580642 0.00419356 24322 120374 -1 259 11 138 138 6362 2031 0.945373 0.945373 -19.104 -0.945373 0 0 618332. 2139.56 0.69 0.01 0.34 -1 -1 0.69 0.00155346 0.00125775 17 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_008bits.v common 10.35 vpr 62.75 MiB -1 -1 0.16 20672 1 0.01 -1 -1 33676 -1 -1 3 17 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64256 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 24.3 MiB 0.16 121 2097 815 1060 222 62.8 MiB 0.01 0.00 1.2154 -21.5293 -1.2154 1.2154 2.52 4.2988e-05 2.8809e-05 0.00241231 0.001649 26 287 12 6.87369e+06 41921.5 503264. 1741.40 1.88 0.00739376 0.00532715 24322 120374 -1 253 12 154 154 7146 2362 0.934373 0.934373 -20.8004 -0.934373 0 0 618332. 2139.56 0.74 0.04 0.34 -1 -1 0.74 0.00173743 0.00142996 18 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_009bits.v common 12.86 vpr 62.49 MiB -1 -1 0.51 20824 1 0.03 -1 -1 33528 -1 -1 3 19 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63992 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 24.3 MiB 0.38 132 2382 904 1195 283 62.5 MiB 0.19 0.00 1.2264 -24.1567 -1.2264 1.2264 2.56 4.0834e-05 2.7199e-05 0.0025549 0.00180445 30 349 16 6.87369e+06 41921.5 556674. 1926.21 2.16 0.00908649 0.00676553 25186 138497 -1 281 12 209 209 11210 3408 0.956373 0.956373 -23.7228 -0.956373 0 0 706193. 2443.58 0.75 0.08 0.16 -1 -1 0.75 0.00188496 0.00155051 20 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_010bits.v common 12.64 vpr 62.86 MiB -1 -1 0.20 20824 1 0.13 -1 -1 33708 -1 -1 3 21 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64368 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 24.4 MiB 0.24 144 2600 892 1091 617 62.9 MiB 0.01 0.00 1.2374 -26.9296 -1.2374 1.2374 2.53 4.872e-05 3.2909e-05 0.00305971 0.00217023 32 429 11 6.87369e+06 41921.5 586450. 2029.24 2.29 0.00955249 0.00711755 25474 144626 -1 362 16 243 243 17973 4690 1.13667 1.13667 -28.3328 -1.13667 0 0 744469. 2576.02 0.85 0.02 0.28 -1 -1 0.85 0.00226308 0.00182653 22 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_011bits.v common 12.68 vpr 62.90 MiB -1 -1 0.42 20368 1 0.16 -1 -1 33684 -1 -1 4 23 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64408 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 24.3 MiB 0.36 160 3207 1100 1548 559 62.9 MiB 0.01 0.00 1.2484 -29.9344 -1.2484 1.2484 2.43 4.4019e-05 2.9247e-05 0.00306835 0.0021773 32 498 15 6.87369e+06 55895.4 586450. 2029.24 1.79 0.00954512 0.00716964 25474 144626 -1 426 12 236 236 17265 4482 1.12567 1.12567 -31.4381 -1.12567 0 0 744469. 2576.02 1.61 0.05 0.44 -1 -1 1.61 0.00239317 0.00201052 24 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_012bits.v common 12.95 vpr 62.93 MiB -1 -1 0.44 20672 1 0.03 -1 -1 33228 -1 -1 4 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64436 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 24.3 MiB 0.25 185 3066 1166 1622 278 62.9 MiB 0.04 0.00 1.2594 -32.9809 -1.2594 1.2594 2.83 5.3872e-05 3.7307e-05 0.00281039 0.00204828 32 676 18 6.87369e+06 55895.4 586450. 2029.24 2.07 0.01061 0.00806728 25474 144626 -1 469 22 396 396 35405 8635 1.13667 1.13667 -33.6088 -1.13667 0 0 744469. 2576.02 0.80 0.01 0.33 -1 -1 0.80 0.00321482 0.00257788 26 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_013bits.v common 14.61 vpr 62.93 MiB -1 -1 0.32 20520 1 0.02 -1 -1 33396 -1 -1 4 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64436 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 24.5 MiB 0.25 211 3965 1584 2332 49 62.9 MiB 0.01 0.00 1.2704 -36.2225 -1.2704 1.2704 3.15 5.2969e-05 3.5493e-05 0.00333159 0.00239104 34 719 23 6.87369e+06 55895.4 618332. 2139.56 3.41 0.0169586 0.0127506 25762 151098 -1 594 12 393 393 28934 7953 1.18067 1.18067 -39.3892 -1.18067 0 0 787024. 2723.27 1.00 0.01 0.37 -1 -1 1.00 0.00250136 0.00213303 28 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_014bits.v common 12.52 vpr 63.00 MiB -1 -1 0.39 20672 1 0.11 -1 -1 33256 -1 -1 5 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64516 29 15 104 105 1 74 49 17 17 289 -1 unnamed_device 24.5 MiB 0.23 223 4855 1750 2130 975 63.0 MiB 0.02 0.00 1.2814 -38.4986 -1.2814 1.2814 2.09 5.8048e-05 4.092e-05 0.00397822 0.00292132 32 806 21 6.87369e+06 69869.2 586450. 2029.24 2.72 0.152711 0.0106876 25474 144626 -1 621 19 514 514 50733 12715 1.15397 1.15397 -40.2683 -1.15397 0 0 744469. 2576.02 1.05 0.06 0.25 -1 -1 1.05 0.00344025 0.00284575 31 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_015bits.v common 14.05 vpr 62.91 MiB -1 -1 0.28 20824 1 0.29 -1 -1 34044 -1 -1 5 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64420 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 24.5 MiB 0.28 290 5096 2071 2924 101 62.9 MiB 0.12 0.00 1.65273 -42.9382 -1.65273 1.65273 2.62 7.7041e-05 5.6738e-05 0.00441849 0.00334364 32 765 16 6.87369e+06 69869.2 586450. 2029.24 2.02 0.0172126 0.0139183 25474 144626 -1 612 16 379 379 30080 8049 1.32597 1.32597 -45.28 -1.32597 0 0 744469. 2576.02 0.92 0.01 0.37 -1 -1 0.92 0.00396023 0.00339401 33 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_016bits.v common 12.96 vpr 62.90 MiB -1 -1 0.27 20672 1 0.12 -1 -1 33868 -1 -1 5 33 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64408 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 24.3 MiB 0.24 305 6087 2506 3480 101 62.9 MiB 0.15 0.00 1.66373 -46.9561 -1.66373 1.66373 2.80 6.5408e-05 4.6994e-05 0.131173 0.129987 30 753 18 6.87369e+06 69869.2 556674. 1926.21 2.22 0.142375 0.138868 25186 138497 -1 581 13 368 368 24488 6506 1.21167 1.21167 -45.6497 -1.21167 0 0 706193. 2443.58 0.72 0.02 0.32 -1 -1 0.72 0.00364672 0.00294647 34 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_018bits.v common 12.44 vpr 63.04 MiB -1 -1 0.35 20672 1 0.11 -1 -1 33600 -1 -1 5 37 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64552 37 19 132 133 1 89 61 17 17 289 -1 unnamed_device 24.5 MiB 0.27 337 5821 2351 3385 85 63.0 MiB 0.02 0.00 1.68573 -53.0646 -1.68573 1.68573 2.26 7.4584e-05 5.389e-05 0.00453456 0.00346467 32 1021 19 6.87369e+06 69869.2 586450. 2029.24 2.22 0.091485 0.0881461 25474 144626 -1 799 17 473 473 46109 11007 1.34797 1.34797 -55.2846 -1.34797 0 0 744469. 2576.02 0.85 0.06 0.26 -1 -1 0.85 0.00412503 0.00349224 38 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_020bits.v common 14.78 vpr 63.25 MiB -1 -1 0.52 20976 1 0.12 -1 -1 33888 -1 -1 6 41 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64764 41 21 146 147 1 101 68 17 17 289 -1 unnamed_device 24.8 MiB 0.35 382 7382 2998 4293 91 63.2 MiB 0.10 0.00 1.70773 -60.6776 -1.70773 1.70773 2.08 9.5057e-05 7.0822e-05 0.006156 0.00460583 34 1080 21 6.87369e+06 83843 618332. 2139.56 4.16 0.428766 0.277848 25762 151098 -1 878 18 602 602 59456 14019 1.26197 1.26197 -58.7571 -1.26197 0 0 787024. 2723.27 0.85 0.05 0.10 -1 -1 0.85 0.00493112 0.00421469 42 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_022bits.v common 14.09 vpr 63.39 MiB -1 -1 0.27 20976 1 0.16 -1 -1 33752 -1 -1 7 45 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64912 45 23 160 161 1 115 75 17 17 289 -1 unnamed_device 24.8 MiB 0.46 435 8449 3436 4886 127 63.4 MiB 0.14 0.00 1.72973 -67.1496 -1.72973 1.72973 2.38 0.000505199 0.000369849 0.00589234 0.00454936 36 1170 20 6.87369e+06 97816.9 648988. 2245.63 3.50 0.121529 0.115689 26050 158493 -1 1001 18 648 648 59519 14454 1.25567 1.25567 -64.9549 -1.25567 0 0 828058. 2865.25 1.00 0.05 0.35 -1 -1 1.00 0.00519625 0.00447621 47 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_024bits.v common 13.92 vpr 63.45 MiB -1 -1 0.50 20824 1 0.08 -1 -1 33868 -1 -1 7 49 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64976 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 24.8 MiB 0.27 606 10056 2320 7330 406 63.5 MiB 0.16 0.00 2.11206 -79.0405 -2.11206 2.11206 2.31 0.00010923 8.3617e-05 0.00672979 0.00522225 34 1386 16 6.87369e+06 97816.9 618332. 2139.56 3.23 0.0628001 0.0235143 25762 151098 -1 1223 18 668 668 62536 14705 1.49527 1.49527 -79.1583 -1.49527 0 0 787024. 2723.27 0.89 0.12 0.30 -1 -1 0.89 0.00550774 0.00473289 50 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_028bits.v common 14.02 vpr 63.50 MiB -1 -1 0.23 20672 1 0.03 -1 -1 33628 -1 -1 8 57 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65028 57 29 202 203 1 142 94 17 17 289 -1 unnamed_device 24.8 MiB 0.26 732 10957 2399 8066 492 63.5 MiB 0.13 0.00 2.15606 -95.0168 -2.15606 2.15606 2.64 0.000127008 0.000101695 0.00700932 0.0055624 34 1694 21 6.87369e+06 111791 618332. 2139.56 3.55 0.0377909 0.0313587 25762 151098 -1 1433 17 739 739 74923 16984 1.28867 1.28867 -87.641 -1.28867 0 0 787024. 2723.27 0.90 0.18 0.32 -1 -1 0.90 0.00409056 0.0036087 58 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_032bits.v common 15.13 vpr 63.63 MiB -1 -1 0.31 21128 1 0.03 -1 -1 33604 -1 -1 9 65 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65160 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 25.1 MiB 0.37 1001 16046 4955 9770 1321 63.6 MiB 0.08 0.00 2.56039 -116.939 -2.56039 2.56039 2.70 0.000143778 0.000112604 0.0100891 0.00806421 34 2093 19 6.87369e+06 125765 618332. 2139.56 4.09 0.256636 0.248374 25762 151098 -1 1851 17 871 871 90904 19499 1.44967 1.44967 -108.663 -1.44967 0 0 787024. 2723.27 0.93 0.02 0.43 -1 -1 0.93 0.00363999 0.00317444 66 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_048bits.v common 15.37 vpr 64.47 MiB -1 -1 0.24 21128 1 0.15 -1 -1 33744 -1 -1 13 97 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66020 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 25.8 MiB 0.35 1379 28969 8779 18116 2074 64.5 MiB 0.18 0.00 3.45705 -191.124 -3.45705 3.45705 2.44 0.000243321 0.000203037 0.0174679 0.0146218 36 2974 16 6.87369e+06 181660 648988. 2245.63 4.45 0.153816 0.0649979 26050 158493 -1 2613 19 1258 1258 134087 29352 1.67197 1.67197 -161.552 -1.67197 0 0 828058. 2865.25 0.83 0.05 0.29 -1 -1 0.83 0.0123207 0.0110916 98 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_064bits.v common 17.14 vpr 65.11 MiB -1 -1 0.34 21432 1 0.19 -1 -1 33680 -1 -1 17 129 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66676 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 26.2 MiB 0.42 1983 46609 14562 27682 4365 65.1 MiB 0.40 0.00 4.35372 -288.959 -4.35372 4.35372 2.43 0.000370054 0.000323577 0.186006 0.182607 34 4783 49 6.87369e+06 237555 618332. 2139.56 6.43 0.353682 0.339802 25762 151098 -1 3855 18 1639 1639 193474 45118 1.86597 1.86597 -229.54 -1.86597 0 0 787024. 2723.27 0.99 0.22 0.31 -1 -1 0.99 0.0176268 0.015967 130 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_003bits.v common 10.59 vpr 62.45 MiB -1 -1 0.18 20520 1 0.10 -1 -1 33568 -1 -1 1 7 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63952 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 23.9 MiB 0.02 25 155 63 90 2 62.5 MiB 0.00 0.00 0.605992 -7.06722 -0.605992 0.605992 2.67 1.4936e-05 8.928e-06 0.000407481 0.000314052 22 67 10 6.89349e+06 14093.8 443629. 1535.05 1.62 0.00314613 0.00209608 23458 102101 -1 67 3 19 19 1052 364 0.74674 0.74674 -6.97772 -0.74674 0 0 531479. 1839.03 0.62 0.00 0.16 -1 -1 0.62 0.000571412 0.000474246 8 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_004bits.v common 12.03 vpr 62.37 MiB -1 -1 0.26 20672 1 0.13 -1 -1 33276 -1 -1 2 9 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63868 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 23.9 MiB 0.14 48 336 89 227 20 62.4 MiB 0.00 0.00 0.789073 -10.0695 -0.789073 0.789073 2.57 2.4272e-05 1.3725e-05 0.000773647 0.000452354 30 120 12 6.89349e+06 28187.7 556674. 1926.21 2.35 0.00381363 0.00252487 25186 138497 -1 91 9 50 50 1794 670 0.74674 0.74674 -9.58622 -0.74674 0 0 706193. 2443.58 1.02 0.00 0.24 -1 -1 1.02 0.000901743 0.000707661 10 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_005bits.v common 11.40 vpr 62.54 MiB -1 -1 0.29 20672 1 0.10 -1 -1 33460 -1 -1 3 11 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64044 11 6 41 42 1 27 20 17 17 289 -1 unnamed_device 24.2 MiB 0.04 90 614 167 429 18 62.5 MiB 0.01 0.00 0.99734 -13.6863 -0.99734 0.99734 2.43 2.9004e-05 1.7851e-05 0.00101449 0.000671285 22 241 10 6.89349e+06 42281.5 443629. 1535.05 2.16 0.00432202 0.00317586 23458 102101 -1 213 9 77 77 5997 1642 1.12264 1.12264 -14.8378 -1.12264 0 0 531479. 1839.03 0.88 0.00 0.27 -1 -1 0.88 0.00103232 0.00082385 13 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_006bits.v common 11.28 vpr 62.58 MiB -1 -1 0.31 20672 1 0.12 -1 -1 33592 -1 -1 3 13 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64084 13 7 48 49 1 33 23 17 17 289 -1 unnamed_device 24.1 MiB 0.16 78 887 199 520 168 62.6 MiB 0.01 0.00 0.833073 -15.4163 -0.833073 0.833073 2.67 2.8722e-05 1.7562e-05 0.00108567 0.000724981 28 301 34 6.89349e+06 42281.5 531479. 1839.03 2.10 0.0790886 0.0768788 24610 126494 -1 250 29 295 295 18298 5685 1.08367 1.08367 -17.221 -1.08367 0 0 648988. 2245.63 0.71 0.24 0.15 -1 -1 0.71 0.00253517 0.00183431 15 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_007bits.v common 13.07 vpr 62.62 MiB -1 -1 0.40 20520 1 0.09 -1 -1 33364 -1 -1 3 15 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64128 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 24.1 MiB 0.17 112 1850 763 1049 38 62.6 MiB 0.01 0.00 1.38906 -18.7903 -1.38906 1.38906 3.44 1.4943e-05 9.352e-06 0.00124351 0.000833068 28 276 10 6.89349e+06 42281.5 531479. 1839.03 2.17 0.00642631 0.00450544 24610 126494 -1 243 12 141 141 5792 1971 0.98032 0.98032 -19.0933 -0.98032 0 0 648988. 2245.63 1.01 0.01 0.22 -1 -1 1.01 0.00160438 0.00128756 17 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_008bits.v common 11.76 vpr 62.44 MiB -1 -1 0.47 20672 1 0.03 -1 -1 33512 -1 -1 3 17 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63936 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 23.9 MiB 0.14 120 2097 850 1164 83 62.4 MiB 0.01 0.00 1.2154 -21.2291 -1.2154 1.2154 2.61 4.6362e-05 3.1636e-05 0.00265862 0.00188839 26 352 21 6.89349e+06 42281.5 503264. 1741.40 2.27 0.00887159 0.00661523 24322 120374 -1 297 16 211 211 13252 4167 1.10367 1.10367 -23.4634 -1.10367 0 0 618332. 2139.56 0.91 0.01 0.19 -1 -1 0.91 0.00207253 0.00159548 18 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_009bits.v common 12.07 vpr 62.68 MiB -1 -1 0.12 20824 1 0.07 -1 -1 33660 -1 -1 3 19 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64184 19 10 69 70 1 46 32 17 17 289 -1 unnamed_device 24.2 MiB 0.19 136 2432 923 1201 308 62.7 MiB 0.01 0.00 1.2264 -24.2325 -1.2264 1.2264 3.04 3.6243e-05 2.2388e-05 0.00215188 0.00144763 26 396 16 6.89349e+06 42281.5 503264. 1741.40 2.29 0.00688421 0.00510103 24322 120374 -1 346 13 211 211 14986 4099 1.13667 1.13667 -26.975 -1.13667 0 0 618332. 2139.56 0.91 0.01 0.14 -1 -1 0.91 0.00186383 0.00151507 20 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_010bits.v common 12.98 vpr 62.48 MiB -1 -1 0.08 20672 1 0.03 -1 -1 33668 -1 -1 3 21 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 63976 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 24.1 MiB 0.32 144 2657 978 1300 379 62.5 MiB 0.01 0.00 1.2374 -26.9548 -1.2374 1.2374 2.70 4.4489e-05 2.9223e-05 0.00242224 0.00163912 28 478 17 6.89349e+06 42281.5 531479. 1839.03 2.68 0.00947739 0.00702486 24610 126494 -1 432 14 250 250 20975 5623 1.27297 1.27297 -32.3411 -1.27297 0 0 648988. 2245.63 1.14 0.01 0.28 -1 -1 1.14 0.00223753 0.00183323 22 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_011bits.v common 12.55 vpr 62.80 MiB -1 -1 0.15 20824 1 0.03 -1 -1 33672 -1 -1 4 23 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64304 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 24.2 MiB 0.11 164 3207 1150 1481 576 62.8 MiB 0.01 0.00 1.2484 -30.2716 -1.2484 1.2484 2.74 2.1218e-05 1.4157e-05 0.00126808 0.000897274 28 549 17 6.89349e+06 56375.4 531479. 1839.03 2.09 0.132938 0.130697 24610 126494 -1 501 15 271 271 25089 6500 1.25097 1.25097 -34.7378 -1.25097 0 0 648988. 2245.63 0.82 0.01 0.63 -1 -1 0.82 0.00261397 0.00200182 24 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_012bits.v common 13.56 vpr 62.67 MiB -1 -1 0.21 20520 1 0.11 -1 -1 33232 -1 -1 4 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64176 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 24.1 MiB 0.11 186 3138 1182 1630 326 62.7 MiB 0.01 0.00 1.2594 -32.962 -1.2594 1.2594 3.09 5.944e-05 4.1808e-05 0.00315228 0.00230742 32 623 24 6.89349e+06 56375.4 586450. 2029.24 2.53 0.0117664 0.00879752 25474 144626 -1 465 14 284 284 21157 5429 1.15867 1.15867 -34.7078 -1.15867 0 0 744469. 2576.02 0.70 0.01 0.28 -1 -1 0.70 0.00250326 0.00208263 26 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_013bits.v common 13.35 vpr 62.86 MiB -1 -1 0.16 20824 1 0.24 -1 -1 33384 -1 -1 4 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64372 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 24.5 MiB 0.15 210 3965 1585 2344 36 62.9 MiB 0.01 0.00 1.2704 -36.265 -1.2704 1.2704 2.49 6.7565e-05 3.9192e-05 0.0035653 0.00255093 32 679 23 6.89349e+06 56375.4 586450. 2029.24 2.86 0.121738 0.118623 25474 144626 -1 560 14 370 370 30641 8262 1.27297 1.27297 -39.4321 -1.27297 0 0 744469. 2576.02 0.81 0.01 0.16 -1 -1 0.81 0.00327828 0.00278224 28 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_014bits.v common 15.32 vpr 62.89 MiB -1 -1 0.19 20824 1 0.12 -1 -1 33624 -1 -1 5 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64404 29 15 104 105 1 74 49 17 17 289 -1 unnamed_device 24.4 MiB 0.30 223 4855 1757 2166 932 62.9 MiB 0.01 0.00 1.2814 -38.5472 -1.2814 1.2814 3.37 2.5914e-05 1.7897e-05 0.00173443 0.00126711 38 628 16 6.89349e+06 70469.2 678818. 2348.85 4.71 0.0520011 0.0481896 26626 170182 -1 526 14 357 357 30245 8168 1.08987 1.08987 -37.7185 -1.08987 0 0 902133. 3121.57 0.97 0.01 0.35 -1 -1 0.97 0.00278298 0.00232778 31 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_015bits.v common 12.31 vpr 62.95 MiB -1 -1 0.27 20672 1 0.10 -1 -1 33900 -1 -1 5 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64456 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 24.4 MiB 0.28 290 5096 2058 2934 104 62.9 MiB 0.10 0.00 1.65273 -42.9889 -1.65273 1.65273 2.55 5.5452e-05 3.8284e-05 0.00396532 0.00291064 30 683 13 6.89349e+06 70469.2 556674. 1926.21 2.34 0.0162651 0.0132758 25186 138497 -1 556 13 326 326 18494 5103 1.08832 1.08832 -41.3192 -1.08832 0 0 706193. 2443.58 1.05 0.01 0.28 -1 -1 1.05 0.0034232 0.00294712 33 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_016bits.v common 11.90 vpr 62.83 MiB -1 -1 0.19 20672 1 0.06 -1 -1 33728 -1 -1 5 33 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64340 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 24.2 MiB 0.35 305 6087 2521 3470 96 62.8 MiB 0.02 0.00 1.66373 -46.7138 -1.66373 1.66373 2.74 6.6257e-05 4.7225e-05 0.00450985 0.0032702 32 866 14 6.89349e+06 70469.2 586450. 2029.24 2.58 0.040011 0.0368412 25474 144626 -1 665 13 337 337 28629 7248 1.22267 1.22267 -47.4346 -1.22267 0 0 744469. 2576.02 1.16 0.01 0.24 -1 -1 1.16 0.00315045 0.002668 34 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_018bits.v common 13.67 vpr 63.18 MiB -1 -1 0.21 20672 1 0.08 -1 -1 33600 -1 -1 5 37 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64700 37 19 132 133 1 90 61 17 17 289 -1 unnamed_device 24.7 MiB 0.16 339 5941 2393 3467 81 63.2 MiB 0.20 0.00 1.68573 -53.2046 -1.68573 1.68573 2.57 8.9062e-05 6.6014e-05 0.00460785 0.00349734 32 957 22 6.89349e+06 70469.2 586450. 2029.24 2.93 0.0172015 0.013673 25474 144626 -1 755 12 411 411 37973 9217 1.23367 1.23367 -52.0141 -1.23367 0 0 744469. 2576.02 0.91 0.01 0.33 -1 -1 0.91 0.00335962 0.00290425 38 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_020bits.v common 13.76 vpr 62.69 MiB -1 -1 0.19 20824 1 0.03 -1 -1 33724 -1 -1 6 41 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64196 41 21 146 147 1 102 68 17 17 289 -1 unnamed_device 24.1 MiB 0.23 384 7520 3042 4380 98 62.7 MiB 0.07 0.00 1.70773 -60.4553 -1.70773 1.70773 2.40 9.7352e-05 7.268e-05 0.00592114 0.00451634 34 1195 25 6.89349e+06 84563 618332. 2139.56 4.73 0.027417 0.0217695 25762 151098 -1 960 17 570 570 75443 20015 1.42027 1.42027 -62.3146 -1.42027 0 0 787024. 2723.27 0.84 0.10 0.42 -1 -1 0.84 0.00423232 0.00362022 42 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_022bits.v common 15.59 vpr 63.25 MiB -1 -1 0.17 20824 1 0.06 -1 -1 33764 -1 -1 7 45 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64768 45 23 160 161 1 115 75 17 17 289 -1 unnamed_device 24.7 MiB 0.42 434 8449 3473 4843 133 63.2 MiB 0.37 0.00 1.72973 -67.5985 -1.72973 1.72973 3.04 8.8562e-05 6.4444e-05 0.00580493 0.00444524 36 1246 24 6.89349e+06 98656.9 648988. 2245.63 4.99 0.0306249 0.0248694 26050 158493 -1 987 22 654 654 142955 55836 1.21092 1.21092 -62.3813 -1.21092 0 0 828058. 2865.25 0.98 0.12 0.28 -1 -1 0.98 0.00555195 0.00469194 47 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_024bits.v common 15.05 vpr 63.34 MiB -1 -1 0.29 20976 1 0.05 -1 -1 34016 -1 -1 7 49 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64864 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 24.7 MiB 0.24 604 10056 2363 7435 258 63.3 MiB 0.64 0.00 2.11206 -78.831 -2.11206 2.11206 2.83 0.000101239 7.7208e-05 0.00695255 0.00544034 34 1378 31 6.89349e+06 98656.9 618332. 2139.56 4.80 0.0295031 0.0239572 25762 151098 -1 1237 16 629 629 70513 15933 1.55457 1.55457 -77.481 -1.55457 0 0 787024. 2723.27 0.63 0.02 0.38 -1 -1 0.63 0.00524114 0.00454195 50 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_028bits.v common 12.93 vpr 63.48 MiB -1 -1 0.13 20824 1 0.04 -1 -1 33692 -1 -1 8 57 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65000 57 29 202 203 1 143 94 17 17 289 -1 unnamed_device 24.8 MiB 0.16 726 10957 2442 8181 334 63.5 MiB 0.03 0.00 2.15606 -94.1497 -2.15606 2.15606 2.48 0.000116036 8.9937e-05 0.00710828 0.00566237 34 1609 13 6.89349e+06 112751 618332. 2139.56 4.03 0.244829 0.208471 25762 151098 -1 1426 12 662 662 58267 13888 1.41397 1.41397 -90.3963 -1.41397 0 0 787024. 2723.27 1.03 0.02 0.35 -1 -1 1.03 0.00501394 0.00444918 58 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_032bits.v common 13.27 vpr 63.63 MiB -1 -1 0.13 20824 1 0.04 -1 -1 33464 -1 -1 9 65 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65156 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 25.0 MiB 0.22 756 11745 2650 8397 698 63.6 MiB 0.14 0.00 2.56039 -108.906 -2.56039 2.56039 2.59 6.223e-05 4.8461e-05 0.117577 0.116202 34 2009 24 6.89349e+06 126845 618332. 2139.56 4.13 0.147182 0.14158 25762 151098 -1 1614 14 776 776 66837 16427 1.65627 1.65627 -107.904 -1.65627 0 0 787024. 2723.27 0.76 0.14 0.32 -1 -1 0.76 0.004449 0.00402914 66 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_048bits.v common 14.90 vpr 63.90 MiB -1 -1 0.18 21280 1 0.07 -1 -1 33812 -1 -1 13 97 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65436 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 25.1 MiB 0.27 1383 28969 7882 19104 1983 63.9 MiB 0.45 0.00 3.45705 -191.088 -3.45705 3.45705 2.79 0.00023552 0.000194993 0.0361549 0.0152043 34 3125 28 6.89349e+06 183220 618332. 2139.56 4.55 0.0918446 0.0639457 25762 151098 -1 2725 17 1133 1133 125663 28236 1.66567 1.66567 -167.292 -1.66567 0 0 787024. 2723.27 0.63 0.05 0.21 -1 -1 0.63 0.0116197 0.0104415 98 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_064bits.v common 18.19 vpr 64.95 MiB -1 -1 0.22 21280 1 0.09 -1 -1 34040 -1 -1 17 129 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66504 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 26.1 MiB 0.44 1994 46609 14649 27523 4437 64.9 MiB 0.63 0.00 4.35372 -288.643 -4.35372 4.35372 2.90 0.000397932 0.000339983 0.100791 0.0969024 34 4729 38 6.89349e+06 239595 618332. 2139.56 5.71 0.363391 0.349227 25762 151098 -1 3833 16 1511 1511 160735 36342 1.99597 1.99597 -239.084 -1.99597 0 0 787024. 2723.27 1.04 0.17 0.39 -1 -1 1.04 0.0979019 0.0154884 130 2 -1 -1 -1 -1 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 78cba1d6b86..6762ea6e2d5 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/multless_consts/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/multless_consts/config/golden_results.txt @@ -1,1025 +1,1025 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 12.25 vpr 64.91 MiB -1 -1 0.22 20668 14 0.31 -1 -1 36916 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 32 32 277 309 1 204 91 17 17 289 -1 unnamed_device 26.3 MiB 0.49 1279 6823 1440 4905 478 64.9 MiB 0.07 0.00 7.95704 -163.811 -7.95704 7.95704 0.90 0.000644466 0.000584951 0.0261223 0.0237692 36 3193 16 6.55708e+06 325485 612192. 2118.31 8.17 0.299451 0.263742 22750 144809 -1 2849 34 1240 3807 386059 168230 6.88996 6.88996 -155.56 -6.88996 0 0 782063. 2706.10 0.32 0.16 0.14 -1 -1 0.32 0.0491233 0.0437711 183 182 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 6.18 vpr 64.90 MiB -1 -1 0.24 20520 14 0.37 -1 -1 36508 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66456 30 32 272 304 1 210 93 17 17 289 -1 unnamed_device 26.3 MiB 0.62 1272 10173 2471 6545 1157 64.9 MiB 0.08 0.00 8.16064 -158.468 -8.16064 8.16064 0.88 0.000639138 0.000583373 0.0333726 0.0303216 36 3251 22 6.55708e+06 373705 612192. 2118.31 1.88 0.149984 0.131988 22750 144809 -1 2871 28 1569 4797 434858 167668 7.27044 7.27044 -149.639 -7.27044 0 0 782063. 2706.10 0.32 0.16 0.14 -1 -1 0.32 0.0419223 0.0374642 184 181 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 7.06 vpr 64.44 MiB -1 -1 0.19 20480 11 0.28 -1 -1 36192 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65984 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 25.9 MiB 0.40 1375 11748 3042 6701 2005 64.4 MiB 0.10 0.00 6.90223 -139.699 -6.90223 6.90223 0.89 0.000623937 0.000563213 0.0404364 0.0366665 28 4030 31 6.55708e+06 313430 500653. 1732.36 3.22 0.155824 0.138594 21310 115450 -1 3257 20 1688 5676 395500 88119 6.50178 6.50178 -144.577 -6.50178 0 0 612192. 2118.31 0.27 0.12 0.11 -1 -1 0.27 0.0343819 0.0310306 186 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 7.08 vpr 64.93 MiB -1 -1 0.22 20396 12 0.41 -1 -1 36396 -1 -1 30 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66484 29 32 275 307 1 205 91 17 17 289 -1 unnamed_device 26.6 MiB 0.67 1263 4783 870 3608 305 64.9 MiB 0.05 0.00 7.83974 -145.087 -7.83974 7.83974 0.88 0.000641588 0.000583353 0.0189679 0.0173138 36 3198 28 6.55708e+06 361650 612192. 2118.31 2.82 0.185627 0.163594 22750 144809 -1 2762 18 1264 4136 214917 50074 7.0397 7.0397 -139.752 -7.0397 0 0 782063. 2706.10 0.32 0.08 0.14 -1 -1 0.32 0.0296392 0.026597 190 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 6.80 vpr 64.71 MiB -1 -1 0.23 20728 13 0.35 -1 -1 36700 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66268 32 32 302 334 1 233 95 17 17 289 -1 unnamed_device 26.3 MiB 0.57 1445 11111 2879 6967 1265 64.7 MiB 0.10 0.00 7.83935 -165.421 -7.83935 7.83935 0.89 0.000704739 0.000637192 0.039125 0.0354417 28 4394 44 6.55708e+06 373705 500653. 1732.36 2.67 0.16882 0.148914 21310 115450 -1 3682 20 1754 5020 353252 92662 6.8405 6.8405 -162.584 -6.8405 0 0 612192. 2118.31 0.27 0.12 0.11 -1 -1 0.27 0.0349563 0.0312854 210 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 8.48 vpr 64.61 MiB -1 -1 0.23 20876 13 0.30 -1 -1 36540 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66164 32 32 292 324 1 217 96 17 17 289 -1 unnamed_device 26.2 MiB 0.42 1337 11046 2900 6780 1366 64.6 MiB 0.10 0.00 7.78297 -154.862 -7.78297 7.78297 0.89 0.000662512 0.000599304 0.0373972 0.0338582 36 3405 22 6.55708e+06 385760 612192. 2118.31 4.52 0.291738 0.255592 22750 144809 -1 2807 15 1168 3766 204246 48163 6.8411 6.8411 -146.675 -6.8411 0 0 782063. 2706.10 0.32 0.08 0.14 -1 -1 0.32 0.0287825 0.026157 198 197 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 6.88 vpr 64.32 MiB -1 -1 0.19 20392 12 0.24 -1 -1 36376 -1 -1 27 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65864 27 32 229 261 1 176 86 17 17 289 -1 unnamed_device 26.0 MiB 0.33 1022 8969 2278 5945 746 64.3 MiB 0.07 0.00 7.21391 -130.754 -7.21391 7.21391 0.87 0.000551298 0.000503406 0.0287552 0.0262008 30 2436 17 6.55708e+06 325485 526063. 1820.29 3.29 0.172506 0.151142 21886 126133 -1 2080 16 937 2522 114156 28302 6.43104 6.43104 -125.386 -6.43104 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0230929 0.0208209 152 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 7.16 vpr 64.28 MiB -1 -1 0.20 20500 12 0.24 -1 -1 36320 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65824 31 32 229 261 1 184 85 17 17 289 -1 unnamed_device 25.9 MiB 0.28 1233 12733 3609 7498 1626 64.3 MiB 0.10 0.00 6.32286 -134.975 -6.32286 6.32286 0.89 0.000551316 0.000496822 0.0395188 0.0358134 36 3149 24 6.55708e+06 265210 612192. 2118.31 3.47 0.167718 0.147153 22750 144809 -1 2676 17 1207 3768 201034 45387 5.53052 5.53052 -132.576 -5.53052 0 0 782063. 2706.10 0.32 0.07 0.14 -1 -1 0.32 0.0237697 0.0213872 140 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 7.78 vpr 64.46 MiB -1 -1 0.20 21124 12 0.20 -1 -1 36472 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66008 31 32 235 267 1 192 89 17 17 289 -1 unnamed_device 26.1 MiB 0.29 1203 13157 3412 7574 2171 64.5 MiB 0.10 0.00 6.35469 -136.224 -6.35469 6.35469 0.89 0.000577583 0.000525054 0.0397524 0.036129 36 2772 21 6.55708e+06 313430 612192. 2118.31 4.13 0.2804 0.246039 22750 144809 -1 2370 14 985 2568 141811 32387 5.67826 5.67826 -129.27 -5.67826 0 0 782063. 2706.10 0.32 0.06 0.14 -1 -1 0.32 0.0214843 0.0193815 150 142 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 5.71 vpr 64.44 MiB -1 -1 0.20 20576 13 0.24 -1 -1 36396 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65988 32 32 250 282 1 193 89 17 17 289 -1 unnamed_device 26.0 MiB 0.36 1164 8207 1986 5229 992 64.4 MiB 0.07 0.00 7.79043 -163.222 -7.79043 7.79043 0.89 0.00060297 0.000549364 0.0275702 0.0251544 28 3341 23 6.55708e+06 301375 500653. 1732.36 2.01 0.116153 0.103085 21310 115450 -1 2943 16 1280 3583 227960 53199 6.58844 6.58844 -160.003 -6.58844 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0255869 0.0230857 157 155 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 9.68 vpr 64.00 MiB -1 -1 0.19 20328 12 0.22 -1 -1 36340 -1 -1 24 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65540 30 32 216 248 1 168 86 17 17 289 -1 unnamed_device 25.4 MiB 0.30 1043 7646 1812 5284 550 64.0 MiB 0.06 0.00 6.98257 -137.016 -6.98257 6.98257 0.88 0.000521162 0.000471955 0.0223587 0.0201975 28 2870 17 6.55708e+06 289320 500653. 1732.36 6.13 0.159058 0.138799 21310 115450 -1 2423 29 956 2599 287403 124368 5.86158 5.86158 -130.373 -5.86158 0 0 612192. 2118.31 0.26 0.12 0.10 -1 -1 0.26 0.0320021 0.0283341 132 125 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 12.92 vpr 64.37 MiB -1 -1 0.20 20444 12 0.19 -1 -1 36192 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65912 32 32 236 268 1 183 86 17 17 289 -1 unnamed_device 25.8 MiB 0.30 1210 6701 1475 4829 397 64.4 MiB 0.06 0.00 6.74278 -155.388 -6.74278 6.74278 0.89 0.000479134 0.000431229 0.0213102 0.0193087 28 3180 36 6.55708e+06 265210 500653. 1732.36 9.36 0.206601 0.179932 21310 115450 -1 2743 23 1051 2953 280355 102696 5.95786 5.95786 -150.76 -5.95786 0 0 612192. 2118.31 0.25 0.10 0.11 -1 -1 0.25 0.0282883 0.0251581 146 141 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 11.19 vpr 64.79 MiB -1 -1 0.24 20628 13 0.30 -1 -1 36444 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 32 32 283 315 1 223 94 17 17 289 -1 unnamed_device 26.2 MiB 0.30 1329 9892 2541 6359 992 64.8 MiB 0.09 0.00 8.09466 -168.958 -8.09466 8.09466 0.90 0.000650341 0.000591084 0.0341279 0.0309589 28 3841 47 6.55708e+06 361650 500653. 1732.36 7.40 0.249207 0.219725 21310 115450 -1 3125 14 1275 3654 217111 49344 6.96836 6.96836 -162.422 -6.96836 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0272073 0.0247744 191 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 14.84 vpr 65.14 MiB -1 -1 0.24 20976 14 0.38 -1 -1 36596 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66708 32 32 303 335 1 241 94 17 17 289 -1 unnamed_device 26.7 MiB 0.50 1640 11170 2650 7415 1105 65.1 MiB 0.09 0.00 9.0039 -186.596 -9.0039 9.0039 0.90 0.000628638 0.000571533 0.0382222 0.0345794 30 4087 23 6.55708e+06 361650 526063. 1820.29 10.76 0.307692 0.269717 21886 126133 -1 3325 19 1537 4514 224801 51116 7.64835 7.64835 -171.324 -7.64835 0 0 666494. 2306.21 0.29 0.09 0.12 -1 -1 0.29 0.0327013 0.0292665 210 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 4.99 vpr 64.56 MiB -1 -1 0.19 20340 11 0.21 -1 -1 36368 -1 -1 27 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66112 29 32 225 257 1 174 88 17 17 289 -1 unnamed_device 26.2 MiB 0.29 878 5158 949 3601 608 64.6 MiB 0.05 0.00 6.71354 -123.992 -6.71354 6.71354 0.87 0.000524094 0.000476057 0.0168837 0.015385 28 3083 35 6.55708e+06 325485 500653. 1732.36 1.48 0.109797 0.0966377 21310 115450 -1 2258 18 1080 2942 164903 40606 6.13918 6.13918 -124.562 -6.13918 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.023759 0.0213037 147 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 18.58 vpr 64.97 MiB -1 -1 0.23 20840 12 0.35 -1 -1 36780 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66532 32 32 301 333 1 230 97 17 17 289 -1 unnamed_device 26.5 MiB 0.46 1420 10309 2435 6528 1346 65.0 MiB 0.09 0.00 7.45763 -153.823 -7.45763 7.45763 0.89 0.000685575 0.000620359 0.0369141 0.0334064 34 4188 46 6.55708e+06 397815 585099. 2024.56 14.43 0.43819 0.383266 22462 138074 -1 3417 30 1712 6122 483902 135469 6.58278 6.58278 -149.989 -6.58278 0 0 742403. 2568.87 0.31 0.17 0.14 -1 -1 0.31 0.0469367 0.0418013 209 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 8.40 vpr 64.93 MiB -1 -1 0.23 20564 14 0.31 -1 -1 36492 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66492 32 32 277 309 1 217 93 17 17 289 -1 unnamed_device 26.4 MiB 0.35 1436 5553 1081 4073 399 64.9 MiB 0.06 0.00 7.42808 -156.41 -7.42808 7.42808 0.90 0.000628103 0.000568937 0.0203437 0.0184807 38 3267 17 6.55708e+06 349595 638502. 2209.35 4.49 0.234867 0.20453 23326 155178 -1 2853 17 1235 3687 188502 42656 6.46824 6.46824 -148.294 -6.46824 0 0 851065. 2944.86 0.35 0.08 0.15 -1 -1 0.35 0.0284457 0.0255955 184 182 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 5.64 vpr 64.25 MiB -1 -1 0.20 20320 12 0.20 -1 -1 36060 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65792 32 32 227 259 1 178 87 17 17 289 -1 unnamed_device 25.7 MiB 0.40 1097 11991 2937 7207 1847 64.2 MiB 0.09 0.00 7.19884 -160.926 -7.19884 7.19884 0.91 0.000529656 0.00047873 0.03635 0.0329696 28 3171 46 6.55708e+06 277265 500653. 1732.36 1.92 0.139267 0.122785 21310 115450 -1 2530 17 1028 2794 175881 40837 6.01958 6.01958 -151.671 -6.01958 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0242703 0.0218063 140 132 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 4.07 vpr 63.71 MiB -1 -1 0.16 20312 10 0.11 -1 -1 36512 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65236 30 32 175 207 1 131 78 17 17 289 -1 unnamed_device 25.2 MiB 0.18 733 7548 1614 5464 470 63.7 MiB 0.05 0.00 5.36346 -120.328 -5.36346 5.36346 0.87 0.000399711 0.000360163 0.0188934 0.0171138 28 1940 22 6.55708e+06 192880 500653. 1732.36 0.89 0.0694643 0.0607831 21310 115450 -1 1721 16 679 1685 92341 23056 4.61634 4.61634 -115.41 -4.61634 0 0 612192. 2118.31 0.27 0.04 0.10 -1 -1 0.27 0.0157421 0.0140605 91 84 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 5.52 vpr 64.34 MiB -1 -1 0.21 20512 13 0.23 -1 -1 36020 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65888 31 32 231 263 1 184 87 17 17 289 -1 unnamed_device 26.0 MiB 0.47 1075 12951 3421 7713 1817 64.3 MiB 0.09 0.00 6.90774 -144.707 -6.90774 6.90774 0.87 0.000518921 0.000470492 0.0383893 0.0348581 28 3088 32 6.55708e+06 289320 500653. 1732.36 1.75 0.127841 0.112804 21310 115450 -1 2418 21 1210 3242 183150 43715 6.49978 6.49978 -146.691 -6.49978 0 0 612192. 2118.31 0.28 0.08 0.12 -1 -1 0.28 0.0288292 0.025754 144 138 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 7.79 vpr 65.11 MiB -1 -1 0.21 20644 13 0.34 -1 -1 36364 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66676 32 32 304 336 1 224 95 17 17 289 -1 unnamed_device 26.7 MiB 0.50 1429 6575 1166 5105 304 65.1 MiB 0.07 0.00 8.01121 -157.98 -8.01121 8.01121 0.88 0.000682184 0.000620156 0.0251293 0.0228848 34 3477 22 6.55708e+06 373705 585099. 2024.56 3.77 0.259269 0.227576 22462 138074 -1 3110 20 1424 4228 228234 53308 7.2403 7.2403 -154.176 -7.2403 0 0 742403. 2568.87 0.31 0.09 0.13 -1 -1 0.31 0.0356212 0.0321156 211 209 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 6.66 vpr 64.86 MiB -1 -1 0.23 20728 13 0.35 -1 -1 36668 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66420 32 32 288 320 1 221 91 17 17 289 -1 unnamed_device 26.5 MiB 0.53 1433 6823 1289 5315 219 64.9 MiB 0.07 0.00 7.886 -165.604 -7.886 7.886 0.88 0.000678421 0.000615822 0.0262773 0.0238461 44 3574 22 6.55708e+06 325485 742403. 2568.87 2.46 0.154591 0.137323 24478 177802 -1 2942 14 1252 4194 212048 48398 7.0397 7.0397 -155.854 -7.0397 0 0 937218. 3242.97 0.38 0.08 0.18 -1 -1 0.38 0.0289466 0.026386 194 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 4.41 vpr 63.80 MiB -1 -1 0.17 20096 9 0.11 -1 -1 35676 -1 -1 24 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65336 26 32 152 184 1 120 82 17 17 289 -1 unnamed_device 25.3 MiB 0.21 744 10762 3120 6243 1399 63.8 MiB 0.06 0.00 5.06374 -98.4324 -5.06374 5.06374 0.86 0.000348834 0.000318644 0.0229421 0.0208564 26 1898 20 6.55708e+06 289320 477104. 1650.88 1.23 0.0725384 0.0638617 21022 109990 -1 1641 15 634 1522 95057 22191 4.8332 4.8332 -99.6652 -4.8332 0 0 585099. 2024.56 0.24 0.04 0.11 -1 -1 0.24 0.0138234 0.0123184 87 69 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 6.92 vpr 64.78 MiB -1 -1 0.20 20480 13 0.36 -1 -1 36596 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66332 32 32 287 319 1 210 89 17 17 289 -1 unnamed_device 26.4 MiB 0.30 1381 10781 2930 5957 1894 64.8 MiB 0.10 0.00 7.83519 -151.249 -7.83519 7.83519 0.89 0.000681693 0.000616765 0.0401308 0.0364445 30 4083 42 6.55708e+06 301375 526063. 1820.29 3.11 0.162937 0.143911 21886 126133 -1 3116 19 1424 4288 219011 50426 6.9633 6.9633 -149.742 -6.9633 0 0 666494. 2306.21 0.27 0.08 0.12 -1 -1 0.27 0.0305639 0.0274023 193 192 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 4.07 vpr 63.58 MiB -1 -1 0.15 19852 8 0.10 -1 -1 36192 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65108 32 32 154 186 1 120 80 17 17 289 -1 unnamed_device 25.2 MiB 0.14 553 7648 2806 3716 1126 63.6 MiB 0.04 0.00 4.12642 -89.8462 -4.12642 4.12642 0.87 0.000355901 0.000319822 0.016355 0.0147544 30 1616 22 6.55708e+06 192880 526063. 1820.29 0.98 0.0627594 0.0545273 21886 126133 -1 1260 14 548 1189 58527 16069 3.73148 3.73148 -90.4104 -3.73148 0 0 666494. 2306.21 0.29 0.03 0.11 -1 -1 0.29 0.0129312 0.0115289 77 59 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 6.20 vpr 64.61 MiB -1 -1 0.21 20724 15 0.29 -1 -1 36332 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66160 32 32 254 286 1 199 92 17 17 289 -1 unnamed_device 26.1 MiB 0.41 1321 6923 1475 4903 545 64.6 MiB 0.06 0.00 8.32249 -162.146 -8.32249 8.32249 0.88 0.000588242 0.00053421 0.0235334 0.0214168 36 3269 25 6.55708e+06 337540 612192. 2118.31 2.35 0.168579 0.148055 22750 144809 -1 2787 16 1252 3638 203897 46010 7.4009 7.4009 -155.503 -7.4009 0 0 782063. 2706.10 0.32 0.07 0.14 -1 -1 0.32 0.0259566 0.023414 165 159 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 7.98 vpr 64.78 MiB -1 -1 0.20 20332 13 0.28 -1 -1 36484 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 32 32 260 292 1 207 90 17 17 289 -1 unnamed_device 26.3 MiB 0.33 1319 5919 1133 4327 459 64.8 MiB 0.06 0.00 7.07675 -156.6 -7.07675 7.07675 0.87 0.000593392 0.00054541 0.0210358 0.0191126 36 3055 23 6.55708e+06 313430 612192. 2118.31 4.24 0.204978 0.179175 22750 144809 -1 2665 15 1110 3141 165339 38965 6.29918 6.29918 -149.671 -6.29918 0 0 782063. 2706.10 0.32 0.07 0.14 -1 -1 0.32 0.0248313 0.0224318 168 165 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 5.15 vpr 64.64 MiB -1 -1 0.19 20712 13 0.33 -1 -1 36652 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66188 32 32 279 311 1 212 93 17 17 289 -1 unnamed_device 26.1 MiB 0.28 1276 11223 2538 6825 1860 64.6 MiB 0.09 0.00 7.85647 -160.581 -7.85647 7.85647 0.88 0.000660788 0.000601001 0.038465 0.0349657 30 3320 24 6.55708e+06 349595 526063. 1820.29 1.40 0.141788 0.126165 21886 126133 -1 2648 15 1237 3758 172498 41897 6.7183 6.7183 -150.821 -6.7183 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0273409 0.0247965 187 184 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 6.04 vpr 64.06 MiB -1 -1 0.20 20384 12 0.19 -1 -1 36208 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65596 32 32 238 270 1 189 87 17 17 289 -1 unnamed_device 25.7 MiB 0.40 1153 7191 1558 5291 342 64.1 MiB 0.07 0.00 6.57592 -147.41 -6.57592 6.57592 0.90 0.000558458 0.000508672 0.0236861 0.021517 36 3148 35 6.55708e+06 277265 612192. 2118.31 2.30 0.156682 0.136833 22750 144809 -1 2589 16 1117 3275 186852 43337 5.60692 5.60692 -136.412 -5.60692 0 0 782063. 2706.10 0.31 0.07 0.14 -1 -1 0.31 0.0226543 0.020286 147 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 4.71 vpr 64.31 MiB -1 -1 0.19 20700 11 0.19 -1 -1 36264 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65856 30 32 213 245 1 165 85 17 17 289 -1 unnamed_device 25.8 MiB 0.22 963 12919 3847 7319 1753 64.3 MiB 0.09 0.00 6.46503 -135.82 -6.46503 6.46503 0.91 0.000490911 0.000447319 0.0367836 0.0333483 28 2611 19 6.55708e+06 277265 500653. 1732.36 1.25 0.106111 0.0938547 21310 115450 -1 2181 15 892 2397 136411 32401 5.86158 5.86158 -133.481 -5.86158 0 0 612192. 2118.31 0.27 0.05 0.11 -1 -1 0.27 0.0198488 0.0178761 131 122 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 6.21 vpr 64.55 MiB -1 -1 0.20 20744 11 0.21 -1 -1 36208 -1 -1 28 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66096 28 32 227 259 1 175 88 17 17 289 -1 unnamed_device 26.2 MiB 0.49 1010 6913 1544 4325 1044 64.5 MiB 0.06 0.00 6.38158 -126.573 -6.38158 6.38158 0.88 0.000520869 0.000472366 0.0217731 0.0198163 26 3323 50 6.55708e+06 337540 477104. 1650.88 2.51 0.136235 0.120153 21022 109990 -1 2605 19 1204 3141 191966 45003 5.47906 5.47906 -126.663 -5.47906 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0253699 0.0226094 150 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 9.42 vpr 64.79 MiB -1 -1 0.18 20448 12 0.25 -1 -1 36596 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66340 32 32 274 306 1 206 90 17 17 289 -1 unnamed_device 26.3 MiB 0.31 1304 6321 1255 4617 449 64.8 MiB 0.06 0.00 7.16635 -157.812 -7.16635 7.16635 0.89 0.000588914 0.000539791 0.0223338 0.0202531 26 3817 49 6.55708e+06 313430 477104. 1650.88 5.81 0.238264 0.208701 21022 109990 -1 3145 19 1545 4159 251819 59845 6.4035 6.4035 -162.091 -6.4035 0 0 585099. 2024.56 0.25 0.09 0.10 -1 -1 0.25 0.0296307 0.026522 181 179 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 11.10 vpr 64.38 MiB -1 -1 0.20 20440 12 0.20 -1 -1 36452 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65928 31 32 237 269 1 179 86 17 17 289 -1 unnamed_device 26.0 MiB 0.70 980 5567 1150 4291 126 64.4 MiB 0.05 0.00 7.18658 -144.693 -7.18658 7.18658 0.90 0.000565952 0.000514525 0.0191329 0.0174352 28 3147 34 6.55708e+06 277265 500653. 1732.36 7.12 0.182722 0.15927 21310 115450 -1 2468 29 1178 3073 296477 117738 6.07044 6.07044 -141.421 -6.07044 0 0 612192. 2118.31 0.26 0.12 0.11 -1 -1 0.26 0.0337425 0.0297443 149 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 6.72 vpr 64.24 MiB -1 -1 0.20 20320 10 0.17 -1 -1 36372 -1 -1 22 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65780 29 32 220 252 1 163 83 17 17 289 -1 unnamed_device 25.7 MiB 0.21 1013 6563 1489 4557 517 64.2 MiB 0.05 0.00 5.76546 -121.445 -5.76546 5.76546 0.89 0.000517195 0.000469475 0.0214517 0.0195286 30 2358 16 6.55708e+06 265210 526063. 1820.29 3.28 0.175898 0.153605 21886 126133 -1 2081 16 885 2605 122669 28892 5.20346 5.20346 -117.311 -5.20346 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0220691 0.0199107 137 131 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 7.97 vpr 64.75 MiB -1 -1 0.24 21132 13 0.37 -1 -1 36728 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66304 32 32 315 347 1 239 95 17 17 289 -1 unnamed_device 26.2 MiB 0.30 1488 10247 2366 6979 902 64.8 MiB 0.10 0.00 7.78037 -164.973 -7.78037 7.78037 0.90 0.000704721 0.000635979 0.0385778 0.034882 32 4128 46 6.55708e+06 373705 554710. 1919.41 3.99 0.266158 0.233 22174 131602 -1 3512 16 1530 4876 330660 74130 6.86804 6.86804 -154.58 -6.86804 0 0 701300. 2426.64 0.30 0.11 0.13 -1 -1 0.30 0.0330441 0.0299616 221 220 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 6.02 vpr 64.72 MiB -1 -1 0.24 20924 14 0.40 -1 -1 36620 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 32 32 282 314 1 220 92 17 17 289 -1 unnamed_device 26.4 MiB 0.60 1341 7544 1708 5122 714 64.7 MiB 0.07 0.00 7.48711 -165.315 -7.48711 7.48711 0.90 0.000654151 0.000592667 0.0280969 0.0255674 30 3756 44 6.55708e+06 337540 526063. 1820.29 1.81 0.153203 0.135554 21886 126133 -1 2987 18 1338 3927 186931 44346 6.65518 6.65518 -156.797 -6.65518 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.0303871 0.0273993 191 187 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 7.69 vpr 64.30 MiB -1 -1 0.19 20572 12 0.18 -1 -1 36224 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65848 31 32 241 273 1 189 92 17 17 289 -1 unnamed_device 26.0 MiB 0.27 1061 14582 3956 8171 2455 64.3 MiB 0.10 0.00 7.55424 -147.694 -7.55424 7.55424 0.89 0.000486045 0.000440463 0.0403416 0.0362602 36 2670 17 6.55708e+06 349595 612192. 2118.31 4.14 0.199519 0.173264 22750 144809 -1 2298 15 923 2506 139164 32090 6.4819 6.4819 -138 -6.4819 0 0 782063. 2706.10 0.32 0.06 0.13 -1 -1 0.32 0.0214999 0.0193023 156 148 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 5.77 vpr 65.11 MiB -1 -1 0.24 20636 12 0.33 -1 -1 36568 -1 -1 33 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66676 31 32 307 339 1 235 96 17 17 289 -1 unnamed_device 26.6 MiB 0.51 1440 9951 2153 6171 1627 65.1 MiB 0.09 0.00 7.66392 -155.521 -7.66392 7.66392 0.89 0.000721143 0.00065522 0.0362656 0.0329955 30 3843 35 6.55708e+06 397815 526063. 1820.29 1.72 0.1679 0.14982 21886 126133 -1 3200 21 1554 4521 218190 52222 6.67144 6.67144 -150.22 -6.67144 0 0 666494. 2306.21 0.28 0.09 0.12 -1 -1 0.28 0.0377392 0.033975 218 214 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 5.80 vpr 64.82 MiB -1 -1 0.23 21104 14 0.42 -1 -1 36852 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66380 31 32 293 325 1 224 92 17 17 289 -1 unnamed_device 26.4 MiB 0.36 1368 10442 2445 6848 1149 64.8 MiB 0.10 0.00 8.27333 -162.102 -8.27333 8.27333 0.89 0.00067557 0.000606444 0.0386856 0.035136 30 3476 48 6.55708e+06 349595 526063. 1820.29 1.79 0.179927 0.159918 21886 126133 -1 2944 17 1606 5087 230104 55320 7.34122 7.34122 -156.976 -7.34122 0 0 666494. 2306.21 0.29 0.09 0.12 -1 -1 0.29 0.0318529 0.0287799 202 200 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 5.89 vpr 64.52 MiB -1 -1 0.24 20924 13 0.32 -1 -1 36276 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66068 31 32 276 308 1 223 91 17 17 289 -1 unnamed_device 26.2 MiB 0.43 1406 11311 2955 7221 1135 64.5 MiB 0.10 0.00 7.94497 -159.991 -7.94497 7.94497 0.90 0.000663263 0.00060372 0.0399077 0.0361858 36 3512 22 6.55708e+06 337540 612192. 2118.31 1.85 0.156316 0.137839 22750 144809 -1 3203 18 1469 4134 234682 53499 6.8411 6.8411 -151.707 -6.8411 0 0 782063. 2706.10 0.31 0.08 0.15 -1 -1 0.31 0.0297135 0.0265942 185 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 8.78 vpr 64.52 MiB -1 -1 0.23 20920 13 0.32 -1 -1 36608 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66064 31 32 269 301 1 203 89 17 17 289 -1 unnamed_device 26.0 MiB 0.45 1345 7613 1868 4862 883 64.5 MiB 0.07 0.00 7.08841 -141.492 -7.08841 7.08841 0.90 0.000603212 0.000539013 0.0269313 0.0243664 34 3664 49 6.55708e+06 313430 585099. 2024.56 4.81 0.278093 0.243934 22462 138074 -1 3164 17 1313 4163 244724 55552 5.97978 5.97978 -133.201 -5.97978 0 0 742403. 2568.87 0.29 0.08 0.14 -1 -1 0.29 0.0275263 0.0247646 179 176 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 5.23 vpr 64.62 MiB -1 -1 0.19 20560 12 0.23 -1 -1 36560 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66176 32 32 264 296 1 196 88 17 17 289 -1 unnamed_device 26.2 MiB 0.26 1315 5548 1167 3981 400 64.6 MiB 0.05 0.00 7.00741 -145.329 -7.00741 7.00741 0.90 0.00060048 0.000544707 0.0212606 0.0193414 28 3273 27 6.55708e+06 289320 500653. 1732.36 1.66 0.114027 0.100764 21310 115450 -1 2880 18 1362 4073 243587 55099 6.10198 6.10198 -140.629 -6.10198 0 0 612192. 2118.31 0.27 0.09 0.11 -1 -1 0.27 0.0279141 0.0250507 171 169 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 8.58 vpr 65.35 MiB -1 -1 0.28 21808 14 0.49 -1 -1 36804 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66916 32 32 324 356 1 249 95 17 17 289 -1 unnamed_device 26.7 MiB 0.48 1670 9383 2100 6642 641 65.3 MiB 0.09 0.00 8.23218 -176.173 -8.23218 8.23218 0.91 0.000733629 0.000664825 0.0372289 0.0337247 34 4632 43 6.55708e+06 373705 585099. 2024.56 4.23 0.24471 0.216033 22462 138074 -1 3783 16 1514 4948 301263 67057 7.28976 7.28976 -169.641 -7.28976 0 0 742403. 2568.87 0.30 0.10 0.14 -1 -1 0.30 0.0324296 0.0294075 230 229 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 5.22 vpr 64.46 MiB -1 -1 0.19 20600 11 0.24 -1 -1 36388 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66004 31 32 249 281 1 192 89 17 17 289 -1 unnamed_device 26.0 MiB 0.43 1051 8603 2089 5379 1135 64.5 MiB 0.08 0.00 6.74223 -137.589 -6.74223 6.74223 0.90 0.000593589 0.0005206 0.0286127 0.0260557 30 3212 35 6.55708e+06 313430 526063. 1820.29 1.44 0.129113 0.114281 21886 126133 -1 2521 17 1168 3379 157721 38187 6.06278 6.06278 -136.796 -6.06278 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0249024 0.0223452 163 156 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 6.15 vpr 65.02 MiB -1 -1 0.23 20840 13 0.34 -1 -1 36156 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 31 32 284 316 1 206 91 17 17 289 -1 unnamed_device 26.6 MiB 0.42 1315 7435 1572 5156 707 65.0 MiB 0.07 0.00 8.06447 -154.642 -8.06447 8.06447 0.90 0.000601988 0.00053796 0.0271764 0.0245834 28 3730 45 6.55708e+06 337540 500653. 1732.36 2.20 0.155149 0.13724 21310 115450 -1 2993 18 1246 4009 311549 83022 7.29176 7.29176 -151.859 -7.29176 0 0 612192. 2118.31 0.26 0.11 0.11 -1 -1 0.26 0.0314071 0.0283091 193 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 21.81 vpr 65.11 MiB -1 -1 0.22 20824 12 0.32 -1 -1 36476 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66676 32 32 303 335 1 222 93 17 17 289 -1 unnamed_device 26.6 MiB 0.54 1532 15213 4154 8657 2402 65.1 MiB 0.13 0.00 7.13712 -150.826 -7.13712 7.13712 0.90 0.000704138 0.000629131 0.0546584 0.0493196 36 3865 38 6.55708e+06 349595 612192. 2118.31 17.61 0.334816 0.292518 22750 144809 -1 3379 23 1418 5004 458665 164388 6.19264 6.19264 -141.127 -6.19264 0 0 782063. 2706.10 0.31 0.15 0.15 -1 -1 0.31 0.0378792 0.033838 210 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 4.90 vpr 64.79 MiB -1 -1 0.20 20340 13 0.31 -1 -1 36492 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66340 32 32 272 304 1 203 93 17 17 289 -1 unnamed_device 26.2 MiB 0.31 1350 5133 911 3808 414 64.8 MiB 0.05 0.00 7.54057 -158.305 -7.54057 7.54057 0.88 0.000662323 0.00060256 0.019492 0.0177701 30 3259 22 6.55708e+06 349595 526063. 1820.29 1.20 0.118645 0.105355 21886 126133 -1 2779 18 1243 3580 170868 40631 6.90724 6.90724 -155.01 -6.90724 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.0302657 0.0272399 183 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 8.22 vpr 64.73 MiB -1 -1 0.22 20844 13 0.25 -1 -1 37192 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66284 32 32 271 303 1 212 90 17 17 289 -1 unnamed_device 26.2 MiB 0.35 1371 12351 2891 7373 2087 64.7 MiB 0.10 0.00 7.1188 -155.865 -7.1188 7.1188 0.86 0.000556928 0.000501843 0.0398034 0.0359327 36 3355 27 6.55708e+06 313430 612192. 2118.31 4.48 0.239177 0.208844 22750 144809 -1 2803 15 1125 3397 194744 43752 6.17898 6.17898 -146.024 -6.17898 0 0 782063. 2706.10 0.32 0.07 0.13 -1 -1 0.32 0.0250818 0.0226275 178 176 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 8.52 vpr 64.99 MiB -1 -1 0.23 20716 12 0.30 -1 -1 36540 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 32 32 288 320 1 223 94 17 17 289 -1 unnamed_device 26.6 MiB 0.53 1446 11170 2757 7067 1346 65.0 MiB 0.10 0.00 7.31654 -157.818 -7.31654 7.31654 0.89 0.000667995 0.00060712 0.0386894 0.0350251 38 3284 17 6.55708e+06 361650 638502. 2209.35 4.43 0.250369 0.22001 23326 155178 -1 2853 15 1250 4137 194632 45234 6.26904 6.26904 -147.068 -6.26904 0 0 851065. 2944.86 0.34 0.08 0.15 -1 -1 0.34 0.0289959 0.0263013 197 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 6.97 vpr 65.16 MiB -1 -1 0.23 20960 13 0.36 -1 -1 37064 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 32 32 306 338 1 233 95 17 17 289 -1 unnamed_device 26.6 MiB 0.51 1513 7223 1461 5178 584 65.2 MiB 0.07 0.00 7.58438 -161.714 -7.58438 7.58438 0.91 0.000720195 0.000653342 0.0279684 0.0254265 36 3945 19 6.55708e+06 373705 612192. 2118.31 2.81 0.197032 0.174062 22750 144809 -1 3296 18 1573 4871 256506 58577 6.70864 6.70864 -153.326 -6.70864 0 0 782063. 2706.10 0.31 0.09 0.15 -1 -1 0.31 0.0332142 0.0298137 212 211 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 5.70 vpr 64.63 MiB -1 -1 0.21 20352 14 0.35 -1 -1 36584 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66184 32 32 262 294 1 191 88 17 17 289 -1 unnamed_device 26.1 MiB 0.30 1215 10813 2361 6891 1561 64.6 MiB 0.09 0.00 8.31609 -163.248 -8.31609 8.31609 0.89 0.000603849 0.000548601 0.0368174 0.0333693 30 3273 27 6.55708e+06 289320 526063. 1820.29 1.91 0.137581 0.122306 21886 126133 -1 2720 18 1271 3852 181225 42639 7.1187 7.1187 -154.864 -7.1187 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.028264 0.0253764 168 167 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 6.93 vpr 64.77 MiB -1 -1 0.21 20828 13 0.33 -1 -1 36716 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 32 32 291 323 1 224 94 17 17 289 -1 unnamed_device 26.4 MiB 0.42 1503 5206 957 3956 293 64.8 MiB 0.05 0.00 8.07478 -162.365 -8.07478 8.07478 0.90 0.00067534 0.000612461 0.0204251 0.0186498 28 4195 32 6.55708e+06 361650 500653. 1732.36 3.06 0.134601 0.118935 21310 115450 -1 3466 19 1840 5622 342639 75414 7.0005 7.0005 -158.548 -7.0005 0 0 612192. 2118.31 0.26 0.11 0.11 -1 -1 0.26 0.0326711 0.0293118 198 196 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 6.85 vpr 64.70 MiB -1 -1 0.24 20804 13 0.34 -1 -1 36624 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66256 31 32 302 334 1 235 94 17 17 289 -1 unnamed_device 26.2 MiB 0.32 1405 8401 1949 5780 672 64.7 MiB 0.08 0.00 7.80415 -160.841 -7.80415 7.80415 0.91 0.000680924 0.000608364 0.0310077 0.0280246 34 3777 50 6.55708e+06 373705 585099. 2024.56 2.93 0.2301 0.201938 22462 138074 -1 3251 15 1437 4206 244223 55741 6.8411 6.8411 -155.997 -6.8411 0 0 742403. 2568.87 0.29 0.08 0.14 -1 -1 0.29 0.027592 0.0249137 213 209 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 7.56 vpr 65.00 MiB -1 -1 0.24 20848 12 0.37 -1 -1 36556 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 32 32 308 340 1 238 97 17 17 289 -1 unnamed_device 26.6 MiB 0.33 1438 11641 3058 7283 1300 65.0 MiB 0.10 0.00 7.70272 -159.771 -7.70272 7.70272 0.90 0.000686949 0.000621653 0.0411524 0.0372667 30 3780 27 6.55708e+06 397815 526063. 1820.29 3.62 0.263933 0.231008 21886 126133 -1 2888 18 1519 4182 184934 45916 6.6419 6.6419 -150.702 -6.6419 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.0314899 0.0282856 216 213 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 5.03 vpr 64.02 MiB -1 -1 0.17 20348 11 0.16 -1 -1 36512 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65552 32 32 216 248 1 160 82 17 17 289 -1 unnamed_device 25.5 MiB 0.29 1054 3998 719 2985 294 64.0 MiB 0.04 0.00 6.14869 -128.86 -6.14869 6.14869 0.90 0.000490114 0.000444983 0.0137398 0.0125478 26 2734 30 6.55708e+06 216990 477104. 1650.88 1.61 0.0995431 0.0877328 21022 109990 -1 2325 17 931 2444 150962 34991 5.41032 5.41032 -130.798 -5.41032 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0228773 0.0205964 125 121 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 12.28 vpr 64.75 MiB -1 -1 0.22 20892 13 0.26 -1 -1 36600 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 32 32 254 286 1 194 88 17 17 289 -1 unnamed_device 26.3 MiB 0.42 1266 7888 1808 5375 705 64.7 MiB 0.07 0.00 7.4424 -157.565 -7.4424 7.4424 0.88 0.00059955 0.000544654 0.0277904 0.0252534 28 3615 32 6.55708e+06 289320 500653. 1732.36 8.52 0.224821 0.196889 21310 115450 -1 2988 19 1194 3381 209369 47676 6.62764 6.62764 -152.575 -6.62764 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.0282636 0.0253491 161 159 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 8.46 vpr 65.47 MiB -1 -1 0.25 21508 14 0.55 -1 -1 36756 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67040 32 32 338 370 1 252 97 17 17 289 -1 unnamed_device 27.0 MiB 0.32 1601 9199 2042 6426 731 65.5 MiB 0.09 0.00 8.66873 -176.87 -8.66873 8.66873 0.89 0.000795907 0.000713031 0.0375875 0.0340391 30 4285 34 6.55708e+06 397815 526063. 1820.29 4.33 0.286844 0.252184 21886 126133 -1 3448 17 1855 5819 263765 63459 7.36876 7.36876 -164.684 -7.36876 0 0 666494. 2306.21 0.28 0.09 0.13 -1 -1 0.28 0.0348567 0.0314849 245 243 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 8.50 vpr 64.78 MiB -1 -1 0.20 20652 13 0.34 -1 -1 36508 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 32 32 271 303 1 212 91 17 17 289 -1 unnamed_device 26.5 MiB 0.44 1376 4579 799 3553 227 64.8 MiB 0.05 0.00 8.02278 -172.696 -8.02278 8.02278 0.85 0.000586579 0.000519278 0.0175959 0.0159623 36 3334 17 6.55708e+06 325485 612192. 2118.31 4.69 0.264884 0.231753 22750 144809 -1 2862 16 1170 3389 185657 42603 7.0769 7.0769 -164.702 -7.0769 0 0 782063. 2706.10 0.32 0.07 0.13 -1 -1 0.32 0.0274889 0.0247842 178 176 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 5.90 vpr 64.37 MiB -1 -1 0.19 20580 11 0.20 -1 -1 36292 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65916 30 32 224 256 1 165 85 17 17 289 -1 unnamed_device 25.8 MiB 0.20 1035 10687 2518 6679 1490 64.4 MiB 0.08 0.00 6.59735 -138.464 -6.59735 6.59735 0.88 0.000532214 0.000482862 0.0333559 0.0302268 34 2502 23 6.55708e+06 277265 585099. 2024.56 2.42 0.167549 0.147705 22462 138074 -1 2257 17 992 2850 154109 36061 5.97918 5.97918 -135.235 -5.97918 0 0 742403. 2568.87 0.31 0.06 0.14 -1 -1 0.31 0.0230548 0.020677 139 133 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 9.44 vpr 65.16 MiB -1 -1 0.25 21688 15 0.65 -1 -1 36536 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 32 32 351 383 1 268 98 17 17 289 -1 unnamed_device 27.0 MiB 0.38 1771 9773 2274 6549 950 65.2 MiB 0.10 0.00 9.55013 -184.943 -9.55013 9.55013 0.89 0.000819065 0.000741389 0.040598 0.0367505 36 4458 20 6.55708e+06 409870 612192. 2118.31 5.06 0.326523 0.288033 22750 144809 -1 3874 20 2194 7275 428147 94060 8.24735 8.24735 -174.541 -8.24735 0 0 782063. 2706.10 0.32 0.14 0.14 -1 -1 0.32 0.0446404 0.0403799 257 256 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 7.94 vpr 64.76 MiB -1 -1 0.22 20680 13 0.40 -1 -1 36572 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66316 32 32 297 329 1 215 92 17 17 289 -1 unnamed_device 26.3 MiB 0.36 1402 7958 1933 5289 736 64.8 MiB 0.08 0.00 7.87358 -164.462 -7.87358 7.87358 0.89 0.000674942 0.00061703 0.0310284 0.0281464 34 3536 42 6.55708e+06 337540 585099. 2024.56 3.98 0.279889 0.246112 22462 138074 -1 3048 17 1244 3818 219356 50613 6.73256 6.73256 -154.05 -6.73256 0 0 742403. 2568.87 0.30 0.08 0.14 -1 -1 0.30 0.0312375 0.0282696 203 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 6.96 vpr 64.42 MiB -1 -1 0.17 20228 11 0.16 -1 -1 36392 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65968 32 32 231 263 1 176 86 17 17 289 -1 unnamed_device 25.9 MiB 0.36 1082 11804 3066 7108 1630 64.4 MiB 0.09 0.00 6.28346 -137.062 -6.28346 6.28346 0.88 0.000530045 0.000484201 0.0361037 0.032783 30 2616 26 6.55708e+06 265210 526063. 1820.29 3.38 0.194818 0.169838 21886 126133 -1 2211 13 935 2761 132039 31269 5.40772 5.40772 -129.072 -5.40772 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.018729 0.0168721 141 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 8.44 vpr 65.21 MiB -1 -1 0.23 20724 12 0.38 -1 -1 36780 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66772 32 32 305 337 1 231 94 17 17 289 -1 unnamed_device 26.6 MiB 0.51 1459 6058 1136 4425 497 65.2 MiB 0.06 0.00 7.4882 -153.189 -7.4882 7.4882 0.90 0.000692912 0.000627857 0.0235177 0.0213591 44 3435 19 6.55708e+06 361650 742403. 2568.87 4.23 0.245664 0.214052 24478 177802 -1 2847 19 1287 4255 217902 48692 6.55124 6.55124 -144.192 -6.55124 0 0 937218. 3242.97 0.37 0.08 0.18 -1 -1 0.37 0.0317108 0.0284772 213 210 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 5.39 vpr 64.33 MiB -1 -1 0.18 20140 12 0.24 -1 -1 36176 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65872 32 32 243 275 1 186 90 17 17 289 -1 unnamed_device 25.9 MiB 0.47 1183 11346 2851 6780 1715 64.3 MiB 0.09 0.00 7.37351 -152.427 -7.37351 7.37351 0.89 0.000572281 0.000520883 0.0354258 0.0322593 28 3250 31 6.55708e+06 313430 500653. 1732.36 1.58 0.129092 0.114524 21310 115450 -1 2869 17 1175 3234 203994 49738 6.78964 6.78964 -153.099 -6.78964 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0253731 0.0228536 153 148 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 7.98 vpr 63.87 MiB -1 -1 0.20 20440 12 0.23 -1 -1 36296 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65404 30 32 228 260 1 161 83 17 17 289 -1 unnamed_device 25.3 MiB 0.25 948 9803 2338 5714 1751 63.9 MiB 0.08 0.00 7.00946 -139.977 -7.00946 7.00946 0.88 0.000531295 0.000485113 0.0322534 0.0293289 26 3038 22 6.55708e+06 253155 477104. 1650.88 4.46 0.196373 0.171774 21022 109990 -1 2430 18 989 2837 210876 49947 6.39124 6.39124 -138.781 -6.39124 0 0 585099. 2024.56 0.24 0.07 0.11 -1 -1 0.24 0.0244738 0.0218619 140 137 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 8.94 vpr 64.84 MiB -1 -1 0.23 20780 12 0.33 -1 -1 36540 -1 -1 31 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66396 29 32 275 307 1 206 92 17 17 289 -1 unnamed_device 26.3 MiB 0.29 1279 5474 1033 4128 313 64.8 MiB 0.06 0.00 6.7577 -128.343 -6.7577 6.7577 0.90 0.000675239 0.000612161 0.0213375 0.0194145 34 3454 42 6.55708e+06 373705 585099. 2024.56 5.08 0.277847 0.24313 22462 138074 -1 2959 27 1314 4327 392996 137208 5.94258 5.94258 -127.097 -5.94258 0 0 742403. 2568.87 0.29 0.14 0.14 -1 -1 0.29 0.0395799 0.0352434 191 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 11.31 vpr 65.31 MiB -1 -1 0.23 20992 13 0.43 -1 -1 36252 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66876 32 32 330 362 1 256 97 17 17 289 -1 unnamed_device 26.6 MiB 0.70 1641 6757 1409 4886 462 65.3 MiB 0.07 0.00 8.4108 -177.204 -8.4108 8.4108 0.87 0.000731729 0.000662817 0.0267029 0.0242478 30 4203 45 6.55708e+06 397815 526063. 1820.29 7.00 0.327448 0.286893 21886 126133 -1 3490 18 1679 4703 234223 54847 7.40996 7.40996 -168.236 -7.40996 0 0 666494. 2306.21 0.28 0.09 0.12 -1 -1 0.28 0.0338894 0.0305529 238 235 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 15.11 vpr 64.98 MiB -1 -1 0.23 20892 12 0.29 -1 -1 36480 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66536 32 32 290 322 1 220 96 17 17 289 -1 unnamed_device 26.6 MiB 0.51 1388 15645 4295 9025 2325 65.0 MiB 0.13 0.00 7.61066 -152.509 -7.61066 7.61066 0.87 0.000703439 0.000633325 0.0511261 0.0460452 30 3749 42 6.55708e+06 385760 526063. 1820.29 11.12 0.287018 0.251428 21886 126133 -1 3031 21 1582 4727 228631 54061 6.4819 6.4819 -145.643 -6.4819 0 0 666494. 2306.21 0.28 0.09 0.12 -1 -1 0.28 0.0335513 0.0299628 200 195 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 7.05 vpr 64.16 MiB -1 -1 0.17 20456 12 0.17 -1 -1 36632 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65704 32 32 214 246 1 164 84 17 17 289 -1 unnamed_device 25.7 MiB 0.60 1058 4842 1062 3260 520 64.2 MiB 0.04 0.00 6.82123 -141.643 -6.82123 6.82123 0.85 0.000454885 0.000409615 0.0146888 0.0133098 30 2539 19 6.55708e+06 241100 526063. 1820.29 3.33 0.169663 0.146878 21886 126133 -1 2201 25 907 2587 263239 114464 6.06078 6.06078 -140.148 -6.06078 0 0 666494. 2306.21 0.28 0.11 0.11 -1 -1 0.28 0.0276922 0.024575 126 119 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 5.64 vpr 64.61 MiB -1 -1 0.20 20868 12 0.26 -1 -1 36384 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66160 31 32 244 276 1 182 87 17 17 289 -1 unnamed_device 26.2 MiB 0.33 1176 10455 2348 6392 1715 64.6 MiB 0.08 0.00 7.13387 -142.33 -7.13387 7.13387 0.85 0.000571878 0.000510984 0.0338456 0.0307943 28 3265 32 6.55708e+06 289320 500653. 1732.36 2.00 0.124967 0.110127 21310 115450 -1 2812 19 1179 3692 201624 47628 6.25938 6.25938 -140.101 -6.25938 0 0 612192. 2118.31 0.25 0.08 0.12 -1 -1 0.25 0.0271755 0.0243034 154 151 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 7.74 vpr 64.62 MiB -1 -1 0.21 20836 11 0.23 -1 -1 36576 -1 -1 30 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66176 30 32 276 308 1 210 92 17 17 289 -1 unnamed_device 26.2 MiB 0.18 1196 13547 4241 6931 2375 64.6 MiB 0.11 0.00 6.85121 -131.802 -6.85121 6.85121 0.88 0.000613965 0.000556345 0.0441365 0.0399539 36 3385 32 6.55708e+06 361650 612192. 2118.31 4.14 0.220811 0.195408 22750 144809 -1 2593 14 1189 3659 196963 46529 6.03324 6.03324 -126.201 -6.03324 0 0 782063. 2706.10 0.32 0.07 0.14 -1 -1 0.32 0.0250634 0.0226917 190 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 5.99 vpr 64.23 MiB -1 -1 0.20 20352 11 0.25 -1 -1 36284 -1 -1 27 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65768 28 32 253 285 1 181 87 17 17 289 -1 unnamed_device 25.8 MiB 0.18 1080 10647 2769 6876 1002 64.2 MiB 0.09 0.00 6.62889 -122.091 -6.62889 6.62889 0.89 0.000590882 0.000535785 0.0360437 0.0326779 36 2842 24 6.55708e+06 325485 612192. 2118.31 2.36 0.179362 0.157639 22750 144809 -1 2368 21 1131 4148 217048 49040 6.02298 6.02298 -119.498 -6.02298 0 0 782063. 2706.10 0.31 0.08 0.14 -1 -1 0.31 0.0297093 0.0265353 172 166 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 7.80 vpr 64.60 MiB -1 -1 0.22 20460 13 0.27 -1 -1 36400 -1 -1 25 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66152 30 32 235 267 1 174 87 17 17 289 -1 unnamed_device 26.3 MiB 0.35 1040 5271 1036 3997 238 64.6 MiB 0.05 0.00 7.2482 -136.339 -7.2482 7.2482 0.89 0.000550571 0.000502178 0.0184784 0.0168762 36 2751 18 6.55708e+06 301375 612192. 2118.31 4.05 0.177877 0.155228 22750 144809 -1 2327 21 1020 3176 169142 39267 6.6027 6.6027 -137.49 -6.6027 0 0 782063. 2706.10 0.33 0.07 0.14 -1 -1 0.33 0.0276517 0.024674 148 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 5.97 vpr 64.56 MiB -1 -1 0.22 20628 12 0.24 -1 -1 36652 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66108 32 32 264 296 1 207 92 17 17 289 -1 unnamed_device 26.0 MiB 0.36 1203 11270 2888 6672 1710 64.6 MiB 0.09 0.00 7.39203 -156.297 -7.39203 7.39203 0.88 0.000607091 0.000551832 0.0365191 0.033186 30 3360 45 6.55708e+06 337540 526063. 1820.29 2.23 0.15391 0.136024 21886 126133 -1 2532 16 1227 3301 151329 37939 6.0821 6.0821 -146.499 -6.0821 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0257768 0.0232 174 169 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 7.71 vpr 64.74 MiB -1 -1 0.21 20424 13 0.36 -1 -1 36368 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66296 31 32 278 310 1 202 90 17 17 289 -1 unnamed_device 26.1 MiB 0.35 1314 8130 1959 5459 712 64.7 MiB 0.07 0.00 8.02027 -155.447 -8.02027 8.02027 0.89 0.000662798 0.000603373 0.0301476 0.0274205 30 3005 23 6.55708e+06 325485 526063. 1820.29 3.88 0.278645 0.2444 21886 126133 -1 2567 14 1027 3072 143954 34065 6.97036 6.97036 -146.48 -6.97036 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0259419 0.0235992 187 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 10.87 vpr 64.92 MiB -1 -1 0.23 20748 14 0.33 -1 -1 36804 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66480 32 32 290 322 1 214 92 17 17 289 -1 unnamed_device 26.6 MiB 0.30 1224 14168 3595 8187 2386 64.9 MiB 0.12 0.00 8.42547 -164.88 -8.42547 8.42547 0.88 0.000673266 0.000607418 0.0496133 0.0448462 26 3972 40 6.55708e+06 337540 477104. 1650.88 7.06 0.28826 0.254177 21022 109990 -1 3159 21 1474 4041 259266 58930 7.73136 7.73136 -172.194 -7.73136 0 0 585099. 2024.56 0.25 0.10 0.10 -1 -1 0.25 0.0348857 0.0313158 196 195 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 5.83 vpr 64.70 MiB -1 -1 0.23 20936 14 0.31 -1 -1 36296 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66256 32 32 269 301 1 199 89 17 17 289 -1 unnamed_device 26.2 MiB 0.35 1263 9791 2392 5641 1758 64.7 MiB 0.08 0.00 7.61341 -152.493 -7.61341 7.61341 0.90 0.000596296 0.000538833 0.0341936 0.0310308 30 3316 50 6.55708e+06 301375 526063. 1820.29 1.98 0.171834 0.152397 21886 126133 -1 2650 20 1165 3477 179637 41318 6.66744 6.66744 -146.271 -6.66744 0 0 666494. 2306.21 0.29 0.08 0.12 -1 -1 0.29 0.0319179 0.0286267 175 174 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 12.09 vpr 65.13 MiB -1 -1 0.23 21252 13 0.41 -1 -1 36712 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66696 32 32 296 328 1 221 93 17 17 289 -1 unnamed_device 26.6 MiB 0.36 1335 6813 1455 4737 621 65.1 MiB 0.07 0.00 7.97606 -158.638 -7.97606 7.97606 0.88 0.000699026 0.000635543 0.0262269 0.0238332 28 4023 34 6.55708e+06 349595 500653. 1732.36 8.07 0.293842 0.256097 21310 115450 -1 3244 31 2269 6914 508020 168235 6.97036 6.97036 -153.104 -6.97036 0 0 612192. 2118.31 0.27 0.17 0.11 -1 -1 0.27 0.0467883 0.041642 205 201 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 5.08 vpr 64.37 MiB -1 -1 0.20 20448 13 0.23 -1 -1 36276 -1 -1 24 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65916 30 32 234 266 1 186 86 17 17 289 -1 unnamed_device 26.0 MiB 0.49 1181 4811 970 3437 404 64.4 MiB 0.05 0.00 7.32681 -149.503 -7.32681 7.32681 0.88 0.000541752 0.000488129 0.0171345 0.0156217 28 2943 24 6.55708e+06 289320 500653. 1732.36 1.34 0.103243 0.091222 21310 115450 -1 2632 17 1167 3120 186389 43637 6.26704 6.26704 -144.792 -6.26704 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0249451 0.022457 147 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 8.78 vpr 64.86 MiB -1 -1 0.24 20968 13 0.54 -1 -1 36720 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66420 30 32 291 323 1 232 94 17 17 289 -1 unnamed_device 26.3 MiB 0.41 1409 6058 1135 4495 428 64.9 MiB 0.06 0.00 8.2444 -163.721 -8.2444 8.2444 0.86 0.000643769 0.000571785 0.0238253 0.0215878 36 3519 23 6.55708e+06 385760 612192. 2118.31 4.68 0.24173 0.211929 22750 144809 -1 2977 16 1390 3881 195015 46713 7.28976 7.28976 -154.111 -7.28976 0 0 782063. 2706.10 0.32 0.08 0.13 -1 -1 0.32 0.0293793 0.0265618 203 200 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 13.91 vpr 64.62 MiB -1 -1 0.22 20892 14 0.39 -1 -1 36772 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66176 32 32 274 306 1 210 91 17 17 289 -1 unnamed_device 26.3 MiB 0.57 1264 7231 1520 5560 151 64.6 MiB 0.07 0.00 8.00109 -166.402 -8.00109 8.00109 0.87 0.000648539 0.00058136 0.0272971 0.0247064 30 3743 50 6.55708e+06 325485 526063. 1820.29 9.78 0.25463 0.222225 21886 126133 -1 2880 14 1293 4196 210862 49523 7.0815 7.0815 -162.389 -7.0815 0 0 666494. 2306.21 0.29 0.08 0.13 -1 -1 0.29 0.0268147 0.0243459 181 179 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 6.90 vpr 64.56 MiB -1 -1 0.23 20564 13 0.28 -1 -1 36484 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66108 31 32 266 298 1 204 88 17 17 289 -1 unnamed_device 26.1 MiB 0.35 1305 14323 3915 8229 2179 64.6 MiB 0.11 0.00 7.86768 -158.537 -7.86768 7.86768 0.88 0.000617052 0.000556 0.0487478 0.0440956 38 3237 35 6.55708e+06 301375 638502. 2209.35 3.01 0.213148 0.18743 23326 155178 -1 2664 18 1430 4466 220129 49519 7.0795 7.0795 -153.488 -7.0795 0 0 851065. 2944.86 0.34 0.08 0.15 -1 -1 0.34 0.0287927 0.0257633 175 173 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 15.14 vpr 64.73 MiB -1 -1 0.23 20824 13 0.27 -1 -1 36644 -1 -1 27 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66284 30 32 266 298 1 204 89 17 17 289 -1 unnamed_device 26.2 MiB 0.45 1164 9989 2471 5804 1714 64.7 MiB 0.09 0.00 7.4808 -136.781 -7.4808 7.4808 0.87 0.000625085 0.000567985 0.0348346 0.0315585 28 4049 33 6.55708e+06 325485 500653. 1732.36 11.31 0.267688 0.233402 21310 115450 -1 3203 18 1480 4256 294335 66993 6.8039 6.8039 -143.727 -6.8039 0 0 612192. 2118.31 0.26 0.09 0.12 -1 -1 0.26 0.0277694 0.0248462 178 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 6.60 vpr 64.98 MiB -1 -1 0.23 20680 14 0.44 -1 -1 36432 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 32 32 310 342 1 238 101 17 17 289 -1 unnamed_device 26.4 MiB 0.43 1476 8091 1866 5495 730 65.0 MiB 0.08 0.00 7.88885 -165.953 -7.88885 7.88885 0.88 0.000707654 0.000641316 0.0291757 0.0265574 34 3883 49 6.55708e+06 446035 585099. 2024.56 2.52 0.221417 0.196212 22462 138074 -1 3199 21 1614 4710 258048 60818 7.2781 7.2781 -163.429 -7.2781 0 0 742403. 2568.87 0.31 0.10 0.13 -1 -1 0.31 0.0377464 0.0338046 218 215 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 6.68 vpr 64.68 MiB -1 -1 0.23 20812 11 0.35 -1 -1 36772 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66228 29 32 262 294 1 203 90 17 17 289 -1 unnamed_device 26.2 MiB 0.52 1160 8130 1856 5819 455 64.7 MiB 0.07 0.00 6.86478 -134.007 -6.86478 6.86478 0.90 0.000674793 0.000609406 0.0289909 0.0261793 28 3852 30 6.55708e+06 349595 500653. 1732.36 2.62 0.145692 0.129314 21310 115450 -1 3008 20 1623 4773 300015 69057 6.13918 6.13918 -134.59 -6.13918 0 0 612192. 2118.31 0.28 0.10 0.11 -1 -1 0.28 0.032177 0.0288577 177 173 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 6.37 vpr 64.12 MiB -1 -1 0.19 20208 13 0.19 -1 -1 36276 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65660 32 32 222 254 1 180 88 17 17 289 -1 unnamed_device 25.6 MiB 0.35 1142 8083 2034 5178 871 64.1 MiB 0.06 0.00 7.01052 -158.499 -7.01052 7.01052 0.86 0.000475187 0.000426805 0.0233434 0.0211142 28 3461 48 6.55708e+06 289320 500653. 1732.36 2.84 0.126486 0.111242 21310 115450 -1 2810 19 1169 3029 212550 49762 6.13978 6.13978 -158.3 -6.13978 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0239182 0.0213348 138 127 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 8.50 vpr 64.63 MiB -1 -1 0.22 20716 14 0.30 -1 -1 36564 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66184 32 32 267 299 1 205 92 17 17 289 -1 unnamed_device 26.1 MiB 0.49 1316 5267 941 3849 477 64.6 MiB 0.05 0.00 8.08175 -166.146 -8.08175 8.08175 0.89 0.000629175 0.000568539 0.0184496 0.0167256 36 3344 49 6.55708e+06 337540 612192. 2118.31 4.49 0.196686 0.172242 22750 144809 -1 2858 19 1239 3732 213441 48577 7.1997 7.1997 -158.608 -7.1997 0 0 782063. 2706.10 0.32 0.08 0.14 -1 -1 0.32 0.0296124 0.0266451 179 172 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 7.61 vpr 65.22 MiB -1 -1 0.23 21348 15 0.53 -1 -1 36620 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66784 32 32 334 366 1 263 97 17 17 289 -1 unnamed_device 26.8 MiB 0.34 1738 9421 2028 6135 1258 65.2 MiB 0.09 0.00 9.11118 -191.695 -9.11118 9.11118 0.88 0.0007798 0.000705332 0.0371173 0.0337509 34 4874 38 6.55708e+06 397815 585099. 2024.56 3.47 0.215211 0.190773 22462 138074 -1 4018 16 1790 5405 326327 73180 7.89901 7.89901 -181.681 -7.89901 0 0 742403. 2568.87 0.30 0.10 0.14 -1 -1 0.30 0.033626 0.0305228 241 239 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 5.67 vpr 64.43 MiB -1 -1 0.17 20512 11 0.20 -1 -1 36704 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65980 32 32 220 252 1 157 86 17 17 289 -1 unnamed_device 25.9 MiB 0.43 1015 8213 1831 5887 495 64.4 MiB 0.06 0.00 6.43354 -132.345 -6.43354 6.43354 0.88 0.000551808 0.000491864 0.0251582 0.0227642 26 2795 26 6.55708e+06 265210 477104. 1650.88 2.12 0.112344 0.099665 21022 109990 -1 2458 18 1052 3068 207681 46574 5.66498 5.66498 -136.662 -5.66498 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0231173 0.0206386 129 125 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 7.31 vpr 64.39 MiB -1 -1 0.18 20132 12 0.23 -1 -1 36456 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65936 31 32 244 276 1 193 89 17 17 289 -1 unnamed_device 26.0 MiB 0.31 1181 9395 2257 5715 1423 64.4 MiB 0.07 0.00 7.12111 -149.72 -7.12111 7.12111 0.86 0.000567724 0.000523284 0.0300842 0.0272998 34 3103 20 6.55708e+06 313430 585099. 2024.56 3.68 0.215581 0.187804 22462 138074 -1 2552 15 1140 3181 168184 39239 6.25678 6.25678 -144.527 -6.25678 0 0 742403. 2568.87 0.31 0.07 0.14 -1 -1 0.31 0.0234883 0.0212082 156 151 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 6.00 vpr 65.13 MiB -1 -1 0.22 20596 12 0.37 -1 -1 36680 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66696 32 32 300 332 1 237 96 17 17 289 -1 unnamed_device 26.7 MiB 0.37 1374 9732 2347 6008 1377 65.1 MiB 0.09 0.00 7.22518 -156.32 -7.22518 7.22518 0.86 0.000666203 0.000602886 0.0339281 0.0306793 30 3769 28 6.55708e+06 385760 526063. 1820.29 2.11 0.14269 0.125728 21886 126133 -1 2987 18 1457 4433 208409 50290 6.39384 6.39384 -155.293 -6.39384 0 0 666494. 2306.21 0.27 0.09 0.12 -1 -1 0.27 0.0331844 0.0299012 213 205 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 7.94 vpr 64.51 MiB -1 -1 0.23 20860 12 0.29 -1 -1 36244 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66060 32 32 271 303 1 211 90 17 17 289 -1 unnamed_device 26.0 MiB 0.38 1295 7929 1664 5456 809 64.5 MiB 0.07 0.00 7.52995 -159.234 -7.52995 7.52995 0.87 0.000625373 0.000568114 0.0285355 0.0259745 36 3430 23 6.55708e+06 313430 612192. 2118.31 4.10 0.222351 0.194431 22750 144809 -1 2916 14 1211 3646 201814 45483 6.7621 6.7621 -152.293 -6.7621 0 0 782063. 2706.10 0.31 0.07 0.14 -1 -1 0.31 0.0260086 0.0235668 181 176 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 9.64 vpr 65.47 MiB -1 -1 0.22 21192 14 0.57 -1 -1 36460 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67044 32 32 327 359 1 242 95 17 17 289 -1 unnamed_device 27.1 MiB 0.64 1613 7655 1578 5578 499 65.5 MiB 0.08 0.00 9.00229 -179.771 -9.00229 9.00229 0.88 0.000786157 0.000714409 0.0323257 0.0293521 36 4565 44 6.55708e+06 373705 612192. 2118.31 5.20 0.259284 0.229414 22750 144809 -1 3729 18 1683 5449 299007 67961 7.89841 7.89841 -172.649 -7.89841 0 0 782063. 2706.10 0.32 0.11 0.14 -1 -1 0.32 0.0378147 0.0342861 234 232 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 5.97 vpr 64.61 MiB -1 -1 0.21 20300 12 0.24 -1 -1 36296 -1 -1 25 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66164 30 32 246 278 1 191 87 17 17 289 -1 unnamed_device 26.1 MiB 0.50 1246 9687 2384 6348 955 64.6 MiB 0.08 0.00 7.02918 -135.408 -7.02918 7.02918 0.87 0.000557891 0.000502267 0.0313914 0.0282469 28 3571 33 6.55708e+06 301375 500653. 1732.36 2.22 0.13402 0.118177 21310 115450 -1 2944 17 1197 3745 226727 51186 6.13918 6.13918 -131.372 -6.13918 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0256871 0.0230025 160 155 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 6.53 vpr 64.25 MiB -1 -1 0.20 20308 11 0.23 -1 -1 36300 -1 -1 26 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65792 27 32 219 251 1 163 85 17 17 289 -1 unnamed_device 25.7 MiB 0.35 833 9013 2082 5123 1808 64.2 MiB 0.07 0.00 7.08055 -122.398 -7.08055 7.08055 0.88 0.000516373 0.000469852 0.0277834 0.0252529 28 2481 16 6.55708e+06 313430 500653. 1732.36 2.91 0.159677 0.138726 21310 115450 -1 2181 16 937 2681 144182 35896 6.27104 6.27104 -119.514 -6.27104 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0223589 0.0201219 140 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 18.54 vpr 65.28 MiB -1 -1 0.26 21652 13 0.54 -1 -1 36892 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 32 32 380 412 1 282 104 17 17 289 -1 unnamed_device 27.0 MiB 0.53 1984 9864 2435 6697 732 65.3 MiB 0.10 0.00 7.66038 -164.562 -7.66038 7.66038 0.90 0.000839307 0.00075485 0.0398955 0.036085 36 4924 33 6.55708e+06 482200 612192. 2118.31 14.08 0.423856 0.373157 22750 144809 -1 4244 19 2022 6356 418528 101830 6.62764 6.62764 -158.176 -6.62764 0 0 782063. 2706.10 0.32 0.14 0.14 -1 -1 0.32 0.0442411 0.0400932 286 285 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 10.97 vpr 64.71 MiB -1 -1 0.24 20864 14 0.31 -1 -1 36368 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66264 31 32 277 309 1 210 91 17 17 289 -1 unnamed_device 26.2 MiB 0.26 1315 7027 1431 4957 639 64.7 MiB 0.07 0.00 8.27869 -161.961 -8.27869 8.27869 0.88 0.000641513 0.000584088 0.0257003 0.023399 28 3660 24 6.55708e+06 337540 500653. 1732.36 7.26 0.22373 0.196669 21310 115450 -1 3016 20 1268 3590 214832 51623 7.16956 7.16956 -155.951 -7.16956 0 0 612192. 2118.31 0.27 0.09 0.11 -1 -1 0.27 0.0319534 0.0286827 188 184 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 6.87 vpr 64.23 MiB -1 -1 0.21 20428 12 0.21 -1 -1 36032 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65772 32 32 229 261 1 178 91 17 17 289 -1 unnamed_device 25.7 MiB 0.39 1196 5395 963 4230 202 64.2 MiB 0.05 0.00 7.24055 -154.388 -7.24055 7.24055 0.89 0.000548882 0.000499386 0.0175923 0.0161316 30 2856 20 6.55708e+06 325485 526063. 1820.29 3.21 0.172941 0.150421 21886 126133 -1 2294 15 868 2452 121146 28103 6.19064 6.19064 -145.709 -6.19064 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0213219 0.01919 145 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 7.82 vpr 64.66 MiB -1 -1 0.22 20704 13 0.34 -1 -1 36604 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66208 32 32 263 295 1 201 90 17 17 289 -1 unnamed_device 26.1 MiB 0.52 1201 6321 1371 4614 336 64.7 MiB 0.06 0.00 7.64034 -157.02 -7.64034 7.64034 0.88 0.00061788 0.000561579 0.0242599 0.0220229 30 3256 40 6.55708e+06 313430 526063. 1820.29 3.84 0.248953 0.217347 21886 126133 -1 2579 15 1081 3185 144508 34487 6.6419 6.6419 -144.865 -6.6419 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0254233 0.0229933 169 168 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 7.04 vpr 65.14 MiB -1 -1 0.23 20996 13 0.40 -1 -1 37084 -1 -1 35 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 31 32 321 353 1 256 98 17 17 289 -1 unnamed_device 26.5 MiB 0.33 1537 8423 1899 6115 409 65.1 MiB 0.09 0.00 7.71709 -159.898 -7.71709 7.71709 0.89 0.000780462 0.000708611 0.0320929 0.0290867 36 3879 25 6.55708e+06 421925 612192. 2118.31 2.96 0.212038 0.186587 22750 144809 -1 3339 18 1652 4918 259156 61816 6.7601 6.7601 -150.909 -6.7601 0 0 782063. 2706.10 0.32 0.10 0.14 -1 -1 0.32 0.0348514 0.0314958 233 228 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 6.41 vpr 64.75 MiB -1 -1 0.21 20684 11 0.31 -1 -1 36628 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 30 32 287 319 1 212 93 17 17 289 -1 unnamed_device 26.4 MiB 0.30 1421 8703 2291 5674 738 64.7 MiB 0.08 0.00 6.43018 -129.379 -6.43018 6.43018 0.87 0.000630248 0.000565102 0.0295938 0.0268328 38 3311 27 6.55708e+06 373705 638502. 2209.35 2.61 0.19607 0.172494 23326 155178 -1 2799 17 1264 4462 204067 47300 5.62318 5.62318 -122.284 -5.62318 0 0 851065. 2944.86 0.33 0.08 0.15 -1 -1 0.33 0.0292549 0.0264049 199 196 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 9.04 vpr 64.94 MiB -1 -1 0.24 20664 15 0.44 -1 -1 36216 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66500 32 32 296 328 1 223 93 17 17 289 -1 unnamed_device 26.5 MiB 0.62 1495 8283 1832 5858 593 64.9 MiB 0.08 0.00 9.21891 -185.491 -9.21891 9.21891 0.89 0.000712139 0.00063041 0.0315166 0.0286131 38 3387 17 6.55708e+06 349595 638502. 2209.35 4.70 0.290882 0.254204 23326 155178 -1 2848 14 1200 3863 181857 42467 7.93561 7.93561 -171.681 -7.93561 0 0 851065. 2944.86 0.34 0.07 0.15 -1 -1 0.34 0.0283439 0.0258316 202 201 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 9.02 vpr 64.99 MiB -1 -1 0.23 21208 13 0.41 -1 -1 36584 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 285 317 1 224 94 17 17 289 -1 unnamed_device 26.7 MiB 0.54 1391 6271 1140 4757 374 65.0 MiB 0.06 0.00 8.07023 -173.04 -8.07023 8.07023 0.88 0.000664685 0.000603269 0.0238016 0.0216985 34 3859 36 6.55708e+06 361650 585099. 2024.56 4.87 0.289486 0.255271 22462 138074 -1 3109 17 1469 4457 256820 58431 7.2409 7.2409 -163.193 -7.2409 0 0 742403. 2568.87 0.30 0.09 0.13 -1 -1 0.30 0.031796 0.0287315 194 190 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 7.74 vpr 64.69 MiB -1 -1 0.18 20348 12 0.24 -1 -1 36424 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66240 29 32 239 271 1 189 90 17 17 289 -1 unnamed_device 26.2 MiB 0.50 1116 9738 2558 6406 774 64.7 MiB 0.07 0.00 7.61081 -154.169 -7.61081 7.61081 0.88 0.000524099 0.000475224 0.0287786 0.0260053 34 2924 23 6.55708e+06 349595 585099. 2024.56 3.93 0.225774 0.196444 22462 138074 -1 2524 19 1266 3488 189442 44375 6.7621 6.7621 -146.16 -6.7621 0 0 742403. 2568.87 0.31 0.07 0.13 -1 -1 0.31 0.0260064 0.0231503 157 150 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 5.30 vpr 64.45 MiB -1 -1 0.20 20512 11 0.19 -1 -1 36116 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66000 32 32 235 267 1 176 85 17 17 289 -1 unnamed_device 25.9 MiB 0.25 1023 14221 4533 7413 2275 64.5 MiB 0.10 0.00 6.85492 -138.928 -6.85492 6.85492 0.88 0.000518837 0.000469596 0.0436947 0.0396557 36 2737 18 6.55708e+06 253155 612192. 2118.31 1.70 0.134167 0.118493 22750 144809 -1 2246 16 942 2470 135554 32757 6.07244 6.07244 -134.807 -6.07244 0 0 782063. 2706.10 0.32 0.06 0.14 -1 -1 0.32 0.0226429 0.0203836 145 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 7.90 vpr 64.71 MiB -1 -1 0.22 20692 13 0.40 -1 -1 36424 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66260 31 32 294 326 1 226 92 17 17 289 -1 unnamed_device 26.3 MiB 0.59 1413 7544 1727 4833 984 64.7 MiB 0.07 0.00 7.87899 -160.785 -7.87899 7.87899 0.89 0.000670414 0.000606904 0.0284216 0.0258362 36 4021 32 6.55708e+06 349595 612192. 2118.31 3.63 0.202252 0.177573 22750 144809 -1 3157 19 1672 5284 291593 66424 7.0005 7.0005 -155.01 -7.0005 0 0 782063. 2706.10 0.33 0.10 0.14 -1 -1 0.33 0.0346543 0.0311375 203 201 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 7.89 vpr 64.19 MiB -1 -1 0.20 20500 10 0.21 -1 -1 36728 -1 -1 24 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65728 29 32 219 251 1 164 85 17 17 289 -1 unnamed_device 25.7 MiB 0.22 868 12919 4781 6181 1957 64.2 MiB 0.09 0.00 5.78714 -114.742 -5.78714 5.78714 0.87 0.000519616 0.0004712 0.0383124 0.0346578 36 2361 20 6.55708e+06 289320 612192. 2118.31 4.38 0.230938 0.201012 22750 144809 -1 1801 14 878 2572 124831 31192 5.29412 5.29412 -108.344 -5.29412 0 0 782063. 2706.10 0.31 0.05 0.14 -1 -1 0.31 0.0197202 0.0177025 137 130 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 5.70 vpr 64.54 MiB -1 -1 0.19 20572 14 0.24 -1 -1 36136 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66084 32 32 239 271 1 186 88 17 17 289 -1 unnamed_device 26.0 MiB 0.60 1127 8083 1934 5578 571 64.5 MiB 0.07 0.00 7.89252 -162.804 -7.89252 7.89252 0.89 0.000559199 0.000505552 0.0267051 0.0242996 30 2792 49 6.55708e+06 289320 526063. 1820.29 1.75 0.13497 0.118866 21886 126133 -1 2526 20 1154 3443 174242 40924 7.06583 7.06583 -157.357 -7.06583 0 0 666494. 2306.21 0.29 0.07 0.12 -1 -1 0.29 0.0276382 0.0247606 146 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 5.75 vpr 64.56 MiB -1 -1 0.24 20680 13 0.34 -1 -1 36544 -1 -1 30 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66108 31 32 266 298 1 208 93 17 17 289 -1 unnamed_device 26.0 MiB 0.39 1259 5343 1011 3807 525 64.6 MiB 0.05 0.00 7.51815 -158.387 -7.51815 7.51815 0.88 0.000609419 0.000553325 0.0192791 0.0176231 30 3403 50 6.55708e+06 361650 526063. 1820.29 1.89 0.145432 0.128613 21886 126133 -1 2708 19 1247 3492 163913 39290 6.63024 6.63024 -152.491 -6.63024 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.029387 0.0264145 180 173 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 6.84 vpr 64.36 MiB -1 -1 0.19 20456 12 0.18 -1 -1 36460 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65908 31 32 225 257 1 178 89 17 17 289 -1 unnamed_device 25.8 MiB 0.39 1126 6425 1245 4721 459 64.4 MiB 0.05 0.00 6.61153 -138.873 -6.61153 6.61153 0.88 0.000460151 0.000420192 0.017673 0.0160925 26 3323 44 6.55708e+06 313430 477104. 1650.88 3.30 0.123648 0.109192 21022 109990 -1 2679 18 1132 2915 195041 44469 6.17132 6.17132 -140.754 -6.17132 0 0 585099. 2024.56 0.25 0.07 0.10 -1 -1 0.25 0.0250363 0.0224875 138 132 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 17.03 vpr 64.28 MiB -1 -1 0.21 20976 12 0.24 -1 -1 36712 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65824 32 32 288 320 1 216 90 17 17 289 -1 unnamed_device 25.9 MiB 0.36 1378 9336 2424 5781 1131 64.3 MiB 0.08 0.00 6.98257 -148.375 -6.98257 6.98257 0.88 0.000662498 0.000601482 0.0341615 0.0308915 28 3883 35 6.55708e+06 313430 500653. 1732.36 13.23 0.28231 0.24878 21310 115450 -1 3415 24 1639 5314 510743 142015 6.18298 6.18298 -150.989 -6.18298 0 0 612192. 2118.31 0.26 0.16 0.11 -1 -1 0.26 0.039139 0.0348699 195 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 12.64 vpr 65.06 MiB -1 -1 0.25 21116 13 0.37 -1 -1 36608 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66624 31 32 282 314 1 222 92 17 17 289 -1 unnamed_device 26.6 MiB 0.58 1315 8372 1899 5332 1141 65.1 MiB 0.08 0.00 7.89081 -157.415 -7.89081 7.89081 0.87 0.000655562 0.000597549 0.0303572 0.0275189 30 3625 30 6.55708e+06 349595 526063. 1820.29 8.51 0.221631 0.194217 21886 126133 -1 3073 17 1352 4093 205925 47312 6.8797 6.8797 -151.217 -6.8797 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.0298142 0.0267069 193 189 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 6.92 vpr 64.56 MiB -1 -1 0.20 20384 11 0.21 -1 -1 36224 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66108 32 32 233 265 1 183 89 17 17 289 -1 unnamed_device 26.2 MiB 0.29 1172 8405 1842 5723 840 64.6 MiB 0.07 0.00 6.25963 -142.54 -6.25963 6.25963 0.90 0.000554286 0.000492277 0.0260056 0.0236444 28 3065 24 6.55708e+06 301375 500653. 1732.36 3.33 0.173213 0.151039 21310 115450 -1 2690 15 1100 2962 178308 40669 5.57032 5.57032 -138.049 -5.57032 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0224431 0.0202409 148 138 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 6.86 vpr 64.68 MiB -1 -1 0.20 20516 13 0.27 -1 -1 36304 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66232 32 32 254 286 1 196 88 17 17 289 -1 unnamed_device 26.2 MiB 0.36 1201 7888 1972 5242 674 64.7 MiB 0.07 0.00 7.53481 -156.077 -7.53481 7.53481 0.92 0.000608824 0.000551261 0.0263359 0.0239625 36 3071 27 6.55708e+06 289320 612192. 2118.31 3.01 0.176339 0.155061 22750 144809 -1 2681 15 1095 3271 177755 41392 6.66944 6.66944 -146.621 -6.66944 0 0 782063. 2706.10 0.33 0.07 0.14 -1 -1 0.33 0.023585 0.0211864 164 159 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 9.77 vpr 64.77 MiB -1 -1 0.21 20604 13 0.32 -1 -1 36376 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 32 32 285 317 1 216 92 17 17 289 -1 unnamed_device 26.4 MiB 0.84 1318 8165 2007 5452 706 64.8 MiB 0.07 0.00 7.90343 -168.183 -7.90343 7.90343 0.88 0.000637856 0.000585242 0.0289079 0.0260736 30 3226 19 6.55708e+06 337540 526063. 1820.29 5.46 0.241408 0.211327 21886 126133 -1 2814 20 1363 3853 181964 43791 6.9979 6.9979 -160.968 -6.9979 0 0 666494. 2306.21 0.28 0.08 0.11 -1 -1 0.28 0.0310855 0.0278507 193 190 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 7.77 vpr 64.46 MiB -1 -1 0.22 20748 11 0.23 -1 -1 36264 -1 -1 27 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66008 29 32 243 275 1 185 88 17 17 289 -1 unnamed_device 26.1 MiB 0.22 1119 12568 3466 6955 2147 64.5 MiB 0.09 0.00 6.27069 -123.259 -6.27069 6.27069 0.85 0.000576092 0.000507729 0.0384626 0.0348084 44 2576 19 6.55708e+06 325485 742403. 2568.87 4.06 0.21394 0.186071 24478 177802 -1 2190 12 775 2429 119567 27751 5.50298 5.50298 -115.238 -5.50298 0 0 937218. 3242.97 0.38 0.05 0.18 -1 -1 0.38 0.0207771 0.0188964 160 154 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 7.12 vpr 65.16 MiB -1 -1 0.24 21472 14 0.40 -1 -1 36452 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66720 32 32 318 350 1 251 99 17 17 289 -1 unnamed_device 26.5 MiB 0.42 1606 6711 1323 5111 277 65.2 MiB 0.07 0.00 8.36721 -183.374 -8.36721 8.36721 0.93 0.00074168 0.00066739 0.0262745 0.0238192 34 4307 28 6.55708e+06 421925 585099. 2024.56 3.00 0.206876 0.182711 22462 138074 -1 3744 20 1814 5595 320360 73228 7.48896 7.48896 -175.746 -7.48896 0 0 742403. 2568.87 0.31 0.11 0.14 -1 -1 0.31 0.0378817 0.0341325 224 223 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 6.00 vpr 64.50 MiB -1 -1 0.18 20176 12 0.19 -1 -1 36600 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66048 31 32 222 254 1 184 91 17 17 289 -1 unnamed_device 25.9 MiB 0.34 1117 4987 873 3940 174 64.5 MiB 0.04 0.00 6.95154 -148.876 -6.95154 6.95154 0.89 0.000515315 0.000466629 0.0155203 0.014147 36 2672 44 6.55708e+06 337540 612192. 2118.31 2.32 0.16006 0.140162 22750 144809 -1 2387 13 875 2354 137817 31246 5.97978 5.97978 -139.331 -5.97978 0 0 782063. 2706.10 0.32 0.05 0.14 -1 -1 0.32 0.0199705 0.0180949 138 129 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 18.00 vpr 64.77 MiB -1 -1 0.25 21392 13 0.37 -1 -1 36832 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66324 32 32 282 314 1 218 89 17 17 289 -1 unnamed_device 26.2 MiB 0.51 1370 8603 2025 5470 1108 64.8 MiB 0.08 0.00 7.91043 -160.998 -7.91043 7.91043 0.89 0.000650229 0.000590415 0.0323159 0.0293442 28 4265 49 6.55708e+06 301375 500653. 1732.36 13.96 0.264358 0.231947 21310 115450 -1 3442 17 1520 4590 286136 64967 6.7575 6.7575 -154.136 -6.7575 0 0 612192. 2118.31 0.25 0.10 0.12 -1 -1 0.25 0.0306259 0.0276559 189 187 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 6.83 vpr 64.54 MiB -1 -1 0.21 20532 13 0.22 -1 -1 36300 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66084 32 32 238 270 1 186 90 17 17 289 -1 unnamed_device 26.1 MiB 0.40 1056 8130 1788 5768 574 64.5 MiB 0.07 0.00 7.50778 -157.173 -7.50778 7.50778 0.88 0.000568758 0.000512209 0.0255766 0.0231733 30 2704 18 6.55708e+06 313430 526063. 1820.29 3.13 0.187592 0.163891 21886 126133 -1 2313 16 1098 2983 138610 33886 6.4407 6.4407 -148.047 -6.4407 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0231486 0.0208359 151 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 6.34 vpr 64.82 MiB -1 -1 0.23 20672 12 0.27 -1 -1 36784 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 32 32 269 301 1 199 90 17 17 289 -1 unnamed_device 26.3 MiB 0.31 1163 6723 1513 4783 427 64.8 MiB 0.06 0.00 6.89912 -149.425 -6.89912 6.89912 0.89 0.00063084 0.00056957 0.0246121 0.0222993 28 3528 41 6.55708e+06 313430 500653. 1732.36 2.65 0.141599 0.124861 21310 115450 -1 2778 17 1161 3524 204815 47103 6.14118 6.14118 -144.817 -6.14118 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.0300304 0.0271226 176 174 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 9.28 vpr 65.18 MiB -1 -1 0.25 21416 15 0.61 -1 -1 37108 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 32 32 350 382 1 272 100 17 17 289 -1 unnamed_device 27.0 MiB 0.32 1744 7060 1356 4899 805 65.2 MiB 0.08 0.00 8.47263 -171.112 -8.47263 8.47263 0.91 0.000836552 0.000754199 0.0300136 0.0272017 34 5706 47 6.55708e+06 433980 585099. 2024.56 4.99 0.244609 0.215009 22462 138074 -1 4214 21 2110 6945 423302 93623 7.49096 7.49096 -169.064 -7.49096 0 0 742403. 2568.87 0.32 0.14 0.14 -1 -1 0.32 0.0457901 0.0412921 256 255 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 4.94 vpr 63.49 MiB -1 -1 0.18 20332 10 0.12 -1 -1 36040 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65016 30 32 172 204 1 134 80 17 17 289 -1 unnamed_device 25.0 MiB 0.13 585 9368 2413 5125 1830 63.5 MiB 0.06 0.00 5.46394 -116.249 -5.46394 5.46394 0.89 0.000480365 0.000437018 0.0220217 0.0199058 34 2054 46 6.55708e+06 216990 585099. 2024.56 1.69 0.103112 0.0896721 22462 138074 -1 1479 14 714 1708 96959 25712 5.08126 5.08126 -118.595 -5.08126 0 0 742403. 2568.87 0.31 0.04 0.13 -1 -1 0.31 0.0147178 0.0132184 90 81 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 7.48 vpr 64.24 MiB -1 -1 0.20 20416 13 0.23 -1 -1 36020 -1 -1 25 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65784 30 32 228 260 1 171 87 17 17 289 -1 unnamed_device 25.7 MiB 0.21 1072 8919 2278 5395 1246 64.2 MiB 0.07 0.00 7.24406 -148.604 -7.24406 7.24406 0.89 0.000545054 0.000494827 0.0285666 0.0260537 36 2670 24 6.55708e+06 301375 612192. 2118.31 3.93 0.183933 0.161071 22750 144809 -1 2343 16 922 2630 141884 33368 6.41738 6.41738 -142.598 -6.41738 0 0 782063. 2706.10 0.29 0.06 0.14 -1 -1 0.29 0.0237505 0.0214143 143 137 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 5.23 vpr 64.78 MiB -1 -1 0.20 20352 12 0.24 -1 -1 36416 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 32 32 264 296 1 204 88 17 17 289 -1 unnamed_device 26.3 MiB 0.33 1142 5938 1144 4647 147 64.8 MiB 0.06 0.00 7.66077 -153.727 -7.66077 7.66077 0.89 0.000609029 0.000552189 0.0217998 0.0198391 28 3544 30 6.55708e+06 289320 500653. 1732.36 1.58 0.125859 0.11158 21310 115450 -1 2828 19 1483 4043 231278 55286 6.90984 6.90984 -156.407 -6.90984 0 0 612192. 2118.31 0.27 0.09 0.11 -1 -1 0.27 0.0304137 0.0273699 171 169 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 6.55 vpr 63.76 MiB -1 -1 0.17 20276 9 0.16 -1 -1 36324 -1 -1 22 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65288 25 32 183 215 1 140 79 17 17 289 -1 unnamed_device 25.4 MiB 0.20 820 8191 2009 5395 787 63.8 MiB 0.06 0.00 5.29417 -99.0147 -5.29417 5.29417 0.89 0.000429395 0.000389589 0.0232809 0.0211338 28 2275 34 6.55708e+06 265210 500653. 1732.36 3.21 0.146959 0.12734 21310 115450 -1 1826 18 849 2459 131345 31144 4.7914 4.7914 -98.7253 -4.7914 0 0 612192. 2118.31 0.25 0.05 0.11 -1 -1 0.25 0.0193268 0.0172128 111 102 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 17.94 vpr 64.75 MiB -1 -1 0.23 20692 12 0.33 -1 -1 36524 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 32 32 300 332 1 233 97 17 17 289 -1 unnamed_device 26.3 MiB 0.38 1501 7867 1766 5013 1088 64.7 MiB 0.07 0.00 7.24465 -156.602 -7.24465 7.24465 0.87 0.000647194 0.000584524 0.0272576 0.0247367 36 4232 25 6.55708e+06 397815 612192. 2118.31 13.99 0.319319 0.280068 22750 144809 -1 3544 18 1721 4955 296703 67997 6.47224 6.47224 -152.633 -6.47224 0 0 782063. 2706.10 0.32 0.10 0.14 -1 -1 0.32 0.0336025 0.0304515 212 205 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 5.71 vpr 64.91 MiB -1 -1 0.25 21524 13 0.39 -1 -1 36376 -1 -1 30 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 31 32 290 322 1 226 93 17 17 289 -1 unnamed_device 26.5 MiB 0.36 1408 5343 959 3971 413 64.9 MiB 0.05 0.00 8.27458 -166.489 -8.27458 8.27458 0.90 0.000629898 0.00057368 0.0208921 0.0190079 30 3772 34 6.55708e+06 361650 526063. 1820.29 1.73 0.138158 0.122358 21886 126133 -1 3080 17 1417 4341 206664 49561 7.2801 7.2801 -159.365 -7.2801 0 0 666494. 2306.21 0.29 0.08 0.12 -1 -1 0.29 0.0306908 0.0276673 200 197 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.29 vpr 65.09 MiB -1 -1 0.17 20564 1 0.03 -1 -1 33948 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66656 32 32 354 285 1 202 96 17 17 289 -1 unnamed_device 26.5 MiB 0.26 1124 13017 3784 8461 772 65.1 MiB 0.11 0.00 5.44269 -161.211 -5.44269 5.44269 0.84 0.000485938 0.000436895 0.0325906 0.0297322 32 2442 21 6.64007e+06 401856 554710. 1919.41 0.94 0.0968539 0.0854191 22834 132086 -1 2197 22 1375 2183 153641 35574 4.17168 4.17168 -144.286 -4.17168 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0232293 0.0204671 154 47 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.40 vpr 65.08 MiB -1 -1 0.18 20484 1 0.03 -1 -1 33820 -1 -1 24 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 30 32 363 293 1 194 86 17 17 289 -1 unnamed_device 26.3 MiB 0.22 1017 14639 5117 7505 2017 65.1 MiB 0.13 0.00 4.98742 -150.865 -4.98742 4.98742 0.88 0.000511902 0.000465459 0.0417982 0.0381293 32 2368 24 6.64007e+06 301392 554710. 1919.41 1.00 0.108828 0.09607 22834 132086 -1 2072 21 1726 2597 175792 40973 4.22388 4.22388 -142.728 -4.22388 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0242675 0.0214544 139 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.65 vpr 64.73 MiB -1 -1 0.15 20132 1 0.03 -1 -1 33968 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66280 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 26.3 MiB 0.25 982 7575 1808 5319 448 64.7 MiB 0.07 0.00 4.35696 -123.732 -4.35696 4.35696 0.89 0.000478407 0.0004272 0.0202582 0.0185333 26 2567 31 6.64007e+06 288834 477104. 1650.88 1.40 0.0948574 0.0837349 21682 110474 -1 2183 21 1344 1867 149309 34880 3.78583 3.78583 -126.34 -3.78583 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0216394 0.0192231 126 26 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.13 vpr 64.73 MiB -1 -1 0.16 20108 1 0.03 -1 -1 33796 -1 -1 27 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66284 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 26.4 MiB 0.06 985 10228 2796 6251 1181 64.7 MiB 0.09 0.00 4.65835 -126.219 -4.65835 4.65835 0.89 0.000458981 0.000418632 0.0263532 0.0240692 32 2212 23 6.64007e+06 339066 554710. 1919.41 0.98 0.0868776 0.0764994 22834 132086 -1 1983 21 1477 2736 183594 40068 3.57863 3.57863 -119.515 -3.57863 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0215601 0.0190947 126 25 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.13 vpr 64.70 MiB -1 -1 0.14 20276 1 0.03 -1 -1 33612 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66256 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 26.3 MiB 0.07 1007 9687 2297 6508 882 64.7 MiB 0.09 0.00 4.57112 -133.029 -4.57112 4.57112 0.88 0.000504793 0.000453154 0.0279566 0.0255594 30 2231 22 6.64007e+06 288834 526063. 1820.29 1.00 0.0946938 0.0835274 22546 126617 -1 2005 18 1146 2272 118837 28404 3.55723 3.55723 -127.325 -3.55723 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0208788 0.0185571 130 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.71 vpr 65.14 MiB -1 -1 0.14 20424 1 0.03 -1 -1 33644 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66708 32 32 366 295 1 189 98 17 17 289 -1 unnamed_device 26.4 MiB 0.10 1031 10673 2804 7227 642 65.1 MiB 0.09 0.00 3.47522 -121.603 -3.47522 3.47522 0.89 0.000490954 0.000449366 0.0257828 0.0233939 26 2825 19 6.64007e+06 426972 477104. 1650.88 1.57 0.0990001 0.0872567 21682 110474 -1 2327 20 1354 2211 164800 38038 3.00717 3.00717 -119.334 -3.00717 0 0 585099. 2024.56 0.25 0.07 0.10 -1 -1 0.25 0.022964 0.0203201 142 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.07 vpr 64.32 MiB -1 -1 0.15 20108 1 0.03 -1 -1 34012 -1 -1 19 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65864 27 32 259 221 1 130 78 17 17 289 -1 unnamed_device 25.9 MiB 0.09 589 11532 3345 7374 813 64.3 MiB 0.08 0.00 4.00878 -100.807 -4.00878 4.00878 0.90 0.000399371 0.000364347 0.0299262 0.027308 32 1498 22 6.64007e+06 238602 554710. 1919.41 0.93 0.0811583 0.0714212 22834 132086 -1 1201 19 858 1449 89869 22288 2.83977 2.83977 -92.5512 -2.83977 0 0 701300. 2426.64 0.29 0.04 0.13 -1 -1 0.29 0.0172864 0.015312 93 26 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.08 vpr 64.57 MiB -1 -1 0.15 20216 1 0.03 -1 -1 33544 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66116 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 26.0 MiB 0.07 892 10318 2381 7361 576 64.6 MiB 0.09 0.00 3.4251 -99.9264 -3.4251 3.4251 0.90 0.000442638 0.000404854 0.0230449 0.0209374 28 2086 21 6.64007e+06 389298 500653. 1732.36 0.97 0.0807499 0.0710863 21970 115934 -1 1808 19 967 1802 110205 25769 2.73877 2.73877 -95.7999 -2.73877 0 0 612192. 2118.31 0.27 0.05 0.11 -1 -1 0.27 0.0185954 0.0165029 115 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.19 vpr 64.75 MiB -1 -1 0.16 20716 1 0.03 -1 -1 33964 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 31 32 317 271 1 167 83 17 17 289 -1 unnamed_device 26.4 MiB 0.21 960 9623 2754 6116 753 64.7 MiB 0.08 0.00 3.62801 -120.96 -3.62801 3.62801 0.91 0.000474116 0.000432052 0.0269613 0.024659 28 2163 20 6.64007e+06 251160 500653. 1732.36 0.92 0.0843278 0.0741694 21970 115934 -1 1910 18 1014 1444 99492 23284 3.14783 3.14783 -117.396 -3.14783 0 0 612192. 2118.31 0.25 0.05 0.12 -1 -1 0.25 0.0192463 0.0170868 111 60 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.22 vpr 64.48 MiB -1 -1 0.15 20416 1 0.03 -1 -1 33608 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66032 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 25.9 MiB 0.15 841 12506 4273 6237 1996 64.5 MiB 0.10 0.00 3.87558 -126.558 -3.87558 3.87558 0.90 0.000455409 0.000413221 0.034838 0.0317699 28 1979 19 6.64007e+06 213486 500653. 1732.36 0.97 0.0910656 0.0804561 21970 115934 -1 1831 18 1137 1856 132799 29714 2.85977 2.85977 -117.521 -2.85977 0 0 612192. 2118.31 0.27 0.06 0.12 -1 -1 0.27 0.0189201 0.016782 112 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.15 vpr 64.51 MiB -1 -1 0.15 20240 1 0.03 -1 -1 33444 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66060 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 26.0 MiB 0.12 796 12078 3517 6936 1625 64.5 MiB 0.09 0.00 4.09995 -113.228 -4.09995 4.09995 0.92 0.00044763 0.000407704 0.0339461 0.031026 32 1650 18 6.64007e+06 213486 554710. 1919.41 0.92 0.0873572 0.0770956 22834 132086 -1 1526 18 834 1316 89472 20060 2.80076 2.80076 -103.785 -2.80076 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.018787 0.0166804 98 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.25 vpr 64.58 MiB -1 -1 0.14 20252 1 0.03 -1 -1 33744 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66132 32 32 276 237 1 166 82 17 17 289 -1 unnamed_device 26.0 MiB 0.25 811 8448 2011 5971 466 64.6 MiB 0.07 0.00 3.76138 -119.223 -3.76138 3.76138 0.90 0.000432217 0.000396398 0.0224878 0.0205316 32 2052 21 6.64007e+06 226044 554710. 1919.41 0.95 0.0780662 0.0685083 22834 132086 -1 1782 17 1005 1343 92897 22236 2.94117 2.94117 -111.84 -2.94117 0 0 701300. 2426.64 0.31 0.05 0.13 -1 -1 0.31 0.0177974 0.0158612 109 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.41 vpr 64.91 MiB -1 -1 0.16 20792 1 0.03 -1 -1 33988 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66468 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 26.4 MiB 0.25 1094 10228 2675 6918 635 64.9 MiB 0.10 0.00 4.45106 -144.281 -4.45106 4.45106 0.89 0.000526938 0.00047914 0.0290399 0.0265763 28 2647 19 6.64007e+06 301392 500653. 1732.36 1.06 0.0970592 0.0858121 21970 115934 -1 2302 21 1517 2276 157265 35537 3.39957 3.39957 -130.65 -3.39957 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0249662 0.0221948 139 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.63 vpr 65.08 MiB -1 -1 0.15 20452 1 0.03 -1 -1 33752 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 26.6 MiB 0.15 940 8735 2013 6355 367 65.1 MiB 0.09 0.00 5.05578 -142.31 -5.05578 5.05578 0.90 0.000519762 0.000473852 0.0236687 0.0216606 26 2673 31 6.64007e+06 389298 477104. 1650.88 1.43 0.112784 0.0999837 21682 110474 -1 2369 24 1700 2809 252365 57579 4.10303 4.10303 -143.708 -4.10303 0 0 585099. 2024.56 0.25 0.09 0.11 -1 -1 0.25 0.0274942 0.0242351 134 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.97 vpr 64.23 MiB -1 -1 0.14 20212 1 0.03 -1 -1 33732 -1 -1 21 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65772 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 25.8 MiB 0.09 637 6668 1590 4651 427 64.2 MiB 0.05 0.00 3.28519 -90.5035 -3.28519 3.28519 0.92 0.000410293 0.000373504 0.0166108 0.0151957 28 1662 22 6.64007e+06 263718 500653. 1732.36 0.91 0.0671077 0.0587603 21970 115934 -1 1542 18 837 1409 97266 22395 2.87917 2.87917 -91.5222 -2.87917 0 0 612192. 2118.31 0.26 0.05 0.12 -1 -1 0.26 0.0164128 0.0145382 98 21 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.05 vpr 64.77 MiB -1 -1 0.14 20536 1 0.03 -1 -1 34008 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66320 32 32 370 297 1 183 86 17 17 289 -1 unnamed_device 26.3 MiB 0.13 961 6890 1523 4904 463 64.8 MiB 0.07 0.00 4.06512 -124.686 -4.06512 4.06512 0.86 0.000487713 0.000440968 0.0208235 0.0189791 32 2268 21 6.64007e+06 276276 554710. 1919.41 0.93 0.0850328 0.0743124 22834 132086 -1 2137 19 1378 2491 165441 37726 3.26157 3.26157 -120.084 -3.26157 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0230284 0.0203988 133 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.40 vpr 64.68 MiB -1 -1 0.14 20392 1 0.03 -1 -1 33936 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66232 32 32 338 269 1 196 87 17 17 289 -1 unnamed_device 26.2 MiB 0.24 1114 15447 4373 9239 1835 64.7 MiB 0.14 0.00 4.49004 -144.522 -4.49004 4.49004 0.88 0.000508988 0.000458954 0.0432068 0.0394891 30 2367 22 6.64007e+06 288834 526063. 1820.29 1.04 0.113121 0.100561 22546 126617 -1 2082 22 1283 1774 106684 24449 3.52743 3.52743 -132.363 -3.52743 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0246663 0.0218447 138 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.17 vpr 64.77 MiB -1 -1 0.15 20328 1 0.03 -1 -1 33632 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 26.2 MiB 0.11 723 8493 1892 6266 335 64.8 MiB 0.08 0.00 2.85064 -99.9956 -2.85064 2.85064 0.87 0.00049609 0.000450993 0.0213282 0.0194464 26 1971 23 6.64007e+06 364182 477104. 1650.88 1.07 0.0887986 0.0782333 21682 110474 -1 1682 23 1157 1829 133991 31802 2.16631 2.16631 -95.695 -2.16631 0 0 585099. 2024.56 0.26 0.06 0.10 -1 -1 0.26 0.0238253 0.0210597 110 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.93 vpr 63.73 MiB -1 -1 0.15 20620 1 0.03 -1 -1 33852 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65264 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 25.3 MiB 0.06 681 12139 4399 6260 1480 63.7 MiB 0.08 0.00 2.38033 -81.64 -2.38033 2.38033 0.88 0.000354102 0.000323468 0.0281724 0.0257314 32 1405 20 6.64007e+06 188370 554710. 1919.41 0.88 0.0717183 0.0630653 22834 132086 -1 1332 19 687 974 77488 17623 2.11131 2.11131 -84.6627 -2.11131 0 0 701300. 2426.64 0.29 0.04 0.13 -1 -1 0.29 0.0153282 0.0135058 81 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 5.24 vpr 64.62 MiB -1 -1 0.15 20568 1 0.03 -1 -1 33960 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66176 31 32 291 243 1 171 83 17 17 289 -1 unnamed_device 26.2 MiB 0.22 706 14123 4873 6572 2678 64.6 MiB 0.10 0.00 4.95769 -142.332 -4.95769 4.95769 0.89 0.00043877 0.000398568 0.0372408 0.0339624 36 1838 20 6.64007e+06 251160 612192. 2118.31 1.90 0.134987 0.118448 23410 145293 -1 1478 17 801 1099 85912 22741 3.70143 3.70143 -127.634 -3.70143 0 0 782063. 2706.10 0.31 0.05 0.14 -1 -1 0.31 0.0184859 0.0164687 128 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.11 vpr 64.59 MiB -1 -1 0.16 20560 1 0.03 -1 -1 34064 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66136 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 26.1 MiB 0.06 905 8735 1899 5951 885 64.6 MiB 0.08 0.00 4.18572 -129.145 -4.18572 4.18572 0.89 0.000512718 0.000469161 0.0232024 0.0212275 30 2116 22 6.64007e+06 389298 526063. 1820.29 0.99 0.0879887 0.0773103 22546 126617 -1 1860 21 1144 1874 106775 25052 3.51643 3.51643 -123.572 -3.51643 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0228636 0.0202427 135 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 5.47 vpr 65.14 MiB -1 -1 0.16 20520 1 0.03 -1 -1 33912 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 32 32 372 300 1 204 89 17 17 289 -1 unnamed_device 26.4 MiB 0.27 1203 12167 3358 7515 1294 65.1 MiB 0.12 0.00 4.64616 -143.706 -4.64616 4.64616 0.88 0.000548139 0.000500918 0.0360826 0.0329529 26 3212 23 6.64007e+06 313950 477104. 1650.88 2.10 0.114111 0.100968 21682 110474 -1 2759 22 1650 2668 239641 52048 4.42528 4.42528 -144.001 -4.42528 0 0 585099. 2024.56 0.25 0.09 0.11 -1 -1 0.25 0.0265663 0.0235179 144 59 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.95 vpr 63.82 MiB -1 -1 0.13 20052 1 0.02 -1 -1 34124 -1 -1 18 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65352 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 25.4 MiB 0.15 410 10636 4183 5187 1266 63.8 MiB 0.06 0.00 2.43955 -66.7065 -2.43955 2.43955 0.88 0.000342124 0.000314802 0.0220671 0.0201461 26 1192 25 6.64007e+06 226044 477104. 1650.88 0.92 0.064298 0.056493 21682 110474 -1 933 19 592 836 60371 15069 1.93811 1.93811 -66.8476 -1.93811 0 0 585099. 2024.56 0.25 0.04 0.11 -1 -1 0.25 0.0137048 0.0121143 77 21 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.99 vpr 64.33 MiB -1 -1 0.15 20204 1 0.03 -1 -1 33844 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65872 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 26.0 MiB 0.05 995 7897 1725 4978 1194 64.3 MiB 0.07 0.00 5.05066 -128.356 -5.05066 5.05066 0.90 0.000437717 0.000399808 0.0209425 0.0191592 28 2296 20 6.64007e+06 263718 500653. 1732.36 0.93 0.0769377 0.0676926 21970 115934 -1 2002 19 1149 2144 141277 31796 3.76362 3.76362 -124.406 -3.76362 0 0 612192. 2118.31 0.25 0.06 0.11 -1 -1 0.25 0.0194558 0.0172148 118 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.82 vpr 63.99 MiB -1 -1 0.14 19840 1 0.03 -1 -1 33240 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65524 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 25.6 MiB 0.05 661 11200 3826 5626 1748 64.0 MiB 0.06 0.00 2.56853 -79.0193 -2.56853 2.56853 0.89 0.000299883 0.000274295 0.0216434 0.0197133 28 1267 14 6.64007e+06 175812 500653. 1732.36 0.86 0.0568021 0.0501349 21970 115934 -1 1189 14 407 458 37605 8621 2.02211 2.02211 -77.5953 -2.02211 0 0 612192. 2118.31 0.25 0.03 0.12 -1 -1 0.25 0.00996251 0.00889143 79 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.92 vpr 64.54 MiB -1 -1 0.13 20428 1 0.03 -1 -1 33856 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66088 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 26.2 MiB 0.05 831 10318 2723 6880 715 64.5 MiB 0.08 0.00 4.58015 -125.342 -4.58015 4.58015 0.87 0.000419215 0.000382022 0.0231821 0.0210537 28 2131 21 6.64007e+06 376740 500653. 1732.36 0.94 0.0795435 0.0696537 21970 115934 -1 1845 18 1048 1710 106719 26161 3.57362 3.57362 -117.035 -3.57362 0 0 612192. 2118.31 0.26 0.05 0.10 -1 -1 0.26 0.0184269 0.0162798 123 21 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.07 vpr 64.54 MiB -1 -1 0.15 20116 1 0.03 -1 -1 33796 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66084 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 26.2 MiB 0.05 850 7439 1494 5462 483 64.5 MiB 0.07 0.00 3.82887 -106.637 -3.82887 3.82887 0.89 0.000470159 0.000429446 0.0183052 0.016727 28 2324 24 6.64007e+06 389298 500653. 1732.36 0.98 0.080586 0.0707612 21970 115934 -1 1818 19 1113 2008 106218 27824 2.96817 2.96817 -107.142 -2.96817 0 0 612192. 2118.31 0.27 0.05 0.11 -1 -1 0.27 0.0208819 0.0186408 128 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.89 vpr 64.82 MiB -1 -1 0.15 20660 1 0.03 -1 -1 33840 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 32 32 338 277 1 179 91 17 17 289 -1 unnamed_device 26.4 MiB 0.12 906 17635 6157 8662 2816 64.8 MiB 0.15 0.00 4.78135 -133.838 -4.78135 4.78135 0.89 0.000516909 0.000470984 0.0460085 0.0419768 28 2693 30 6.64007e+06 339066 500653. 1732.36 1.66 0.129582 0.115266 21970 115934 -1 2068 18 1181 2011 163906 36763 3.79863 3.79863 -128.222 -3.79863 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0215354 0.0191616 126 47 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.94 vpr 64.02 MiB -1 -1 0.15 20180 1 0.03 -1 -1 33696 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65552 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 25.5 MiB 0.07 735 5928 1206 4471 251 64.0 MiB 0.05 0.00 3.02179 -99.7239 -3.02179 3.02179 0.87 0.000440606 0.000401448 0.0170288 0.0155812 26 2048 22 6.64007e+06 200928 477104. 1650.88 0.94 0.0760971 0.0667886 21682 110474 -1 1729 20 1095 1740 122619 28865 3.06837 3.06837 -113.451 -3.06837 0 0 585099. 2024.56 0.24 0.05 0.11 -1 -1 0.24 0.0191608 0.0169927 101 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.10 vpr 64.09 MiB -1 -1 0.14 20244 1 0.03 -1 -1 33748 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65624 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 25.7 MiB 0.07 661 11617 2521 8405 691 64.1 MiB 0.08 0.00 3.24119 -97.0143 -3.24119 3.24119 0.89 0.000393135 0.000359162 0.0277408 0.025326 28 1701 20 6.64007e+06 288834 500653. 1732.36 1.01 0.0799748 0.0704787 21970 115934 -1 1547 17 853 1296 94316 21406 2.79497 2.79497 -96.8 -2.79497 0 0 612192. 2118.31 0.27 0.05 0.12 -1 -1 0.27 0.0167073 0.0148046 97 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.22 vpr 64.28 MiB -1 -1 0.15 20292 1 0.03 -1 -1 33832 -1 -1 23 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65824 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 25.8 MiB 0.05 583 14123 3845 8834 1444 64.3 MiB 0.09 0.00 3.43604 -94.4648 -3.43604 3.43604 0.88 0.000369679 0.000335897 0.0315777 0.0287068 28 1800 26 6.64007e+06 288834 500653. 1732.36 1.08 0.0896892 0.0789453 21970 115934 -1 1566 20 916 1539 109893 29879 2.74177 2.74177 -95.1293 -2.74177 0 0 612192. 2118.31 0.25 0.05 0.11 -1 -1 0.25 0.0182793 0.0161632 98 27 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 5.89 vpr 64.34 MiB -1 -1 0.13 20096 1 0.03 -1 -1 33732 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65880 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 25.9 MiB 0.05 702 4763 881 3747 135 64.3 MiB 0.04 0.00 3.98575 -113.461 -3.98575 3.98575 0.87 0.000390365 0.00035526 0.0120982 0.0110781 26 2390 34 6.64007e+06 238602 477104. 1650.88 2.92 0.132224 0.114964 21682 110474 -1 1814 22 1363 2192 166936 41393 3.11217 3.11217 -116.399 -3.11217 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0203613 0.0180514 110 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.17 vpr 64.58 MiB -1 -1 0.16 20560 1 0.03 -1 -1 33384 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66128 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 26.1 MiB 0.05 705 6924 1381 5320 223 64.6 MiB 0.06 0.00 3.56847 -102.973 -3.56847 3.56847 0.89 0.000423852 0.000387018 0.0164957 0.0150612 26 2212 43 6.64007e+06 339066 477104. 1650.88 1.15 0.0887873 0.0774617 21682 110474 -1 1683 19 1008 1700 120423 28387 2.97797 2.97797 -105.892 -2.97797 0 0 585099. 2024.56 0.26 0.05 0.11 -1 -1 0.26 0.0181919 0.0160751 103 26 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.04 vpr 64.61 MiB -1 -1 0.16 20544 1 0.03 -1 -1 33604 -1 -1 26 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66156 29 32 291 250 1 153 87 17 17 289 -1 unnamed_device 26.1 MiB 0.13 800 11799 3784 6073 1942 64.6 MiB 0.05 0.00 3.4791 -109.298 -3.4791 3.4791 0.87 0.00025032 0.000227888 0.0175455 0.0160331 28 1940 18 6.64007e+06 326508 500653. 1732.36 0.91 0.0701812 0.0615429 21970 115934 -1 1709 19 961 1369 109961 25852 2.36297 2.36297 -96.7073 -2.36297 0 0 612192. 2118.31 0.26 0.05 0.12 -1 -1 0.26 0.0191146 0.0169247 105 48 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.27 vpr 65.17 MiB -1 -1 0.16 20556 1 0.03 -1 -1 33372 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66736 32 32 367 282 1 201 102 17 17 289 -1 unnamed_device 26.8 MiB 0.14 1109 16524 4269 9768 2487 65.2 MiB 0.13 0.00 4.35696 -124.032 -4.35696 4.35696 0.88 0.000548371 0.000493613 0.0397782 0.0362302 32 2645 21 6.64007e+06 477204 554710. 1919.41 0.97 0.108211 0.0954535 22834 132086 -1 2264 17 1243 2131 135685 30613 3.93102 3.93102 -119.547 -3.93102 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0206939 0.0184588 151 26 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.16 vpr 65.14 MiB -1 -1 0.14 20544 1 0.03 -1 -1 33920 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66700 32 32 391 311 1 192 101 17 17 289 -1 unnamed_device 26.6 MiB 0.13 1062 10676 2654 7216 806 65.1 MiB 0.10 0.00 3.87558 -130.413 -3.87558 3.87558 0.87 0.000558197 0.000503877 0.026619 0.0240739 26 2503 24 6.64007e+06 464646 477104. 1650.88 1.07 0.103457 0.0909526 21682 110474 -1 2074 19 1563 2519 178447 39029 2.95717 2.95717 -121.371 -2.95717 0 0 585099. 2024.56 0.25 0.07 0.10 -1 -1 0.25 0.0233644 0.0206916 147 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.21 vpr 64.45 MiB -1 -1 0.14 20312 1 0.03 -1 -1 33400 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65996 31 32 279 237 1 161 82 17 17 289 -1 unnamed_device 25.9 MiB 0.23 894 10228 3268 4917 2043 64.4 MiB 0.08 0.00 4.39381 -127.308 -4.39381 4.39381 0.88 0.000455098 0.000418388 0.0274214 0.0251687 32 2018 21 6.64007e+06 238602 554710. 1919.41 0.94 0.082651 0.0730412 22834 132086 -1 1748 19 1015 1433 93274 21875 3.15083 3.15083 -111.221 -3.15083 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0189528 0.0168678 112 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.25 vpr 65.09 MiB -1 -1 0.17 20520 1 0.03 -1 -1 33716 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66648 31 32 370 297 1 186 88 17 17 289 -1 unnamed_device 26.5 MiB 0.13 1026 15298 5172 7552 2574 65.1 MiB 0.13 0.00 4.30797 -133.38 -4.30797 4.30797 0.89 0.0004931 0.000447439 0.0424328 0.0385686 32 2288 22 6.64007e+06 313950 554710. 1919.41 0.96 0.109709 0.0967233 22834 132086 -1 1951 22 1450 2591 173643 38508 2.89797 2.89797 -112.425 -2.89797 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0241763 0.021301 138 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.61 vpr 65.03 MiB -1 -1 0.17 20492 1 0.03 -1 -1 33540 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66588 31 32 377 302 1 233 92 17 17 289 -1 unnamed_device 26.8 MiB 0.40 1296 14996 4340 8343 2313 65.0 MiB 0.14 0.00 5.87616 -177.472 -5.87616 5.87616 0.89 0.00054626 0.000496363 0.0409653 0.0373834 32 3094 21 6.64007e+06 364182 554710. 1919.41 1.02 0.110007 0.0972575 22834 132086 -1 2524 19 1742 2613 176076 40477 4.74615 4.74615 -163.707 -4.74615 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0241597 0.0215074 172 60 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.58 vpr 65.02 MiB -1 -1 0.15 20604 1 0.03 -1 -1 33752 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 31 32 383 305 1 209 90 17 17 289 -1 unnamed_device 26.5 MiB 0.38 1150 16974 4810 10660 1504 65.0 MiB 0.15 0.00 5.08852 -153.875 -5.08852 5.08852 0.88 0.00047263 0.000431891 0.0485684 0.044197 28 3077 19 6.64007e+06 339066 500653. 1732.36 1.04 0.118163 0.104639 21970 115934 -1 2547 20 1680 2607 189567 42842 4.56048 4.56048 -155.741 -4.56048 0 0 612192. 2118.31 0.27 0.07 0.12 -1 -1 0.27 0.0253092 0.0224673 164 60 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.18 vpr 65.04 MiB -1 -1 0.16 20508 1 0.03 -1 -1 33848 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66604 31 32 352 285 1 184 94 17 17 289 -1 unnamed_device 26.5 MiB 0.13 1075 13513 3858 8482 1173 65.0 MiB 0.12 0.00 4.68524 -137.744 -4.68524 4.68524 0.89 0.000526159 0.000485053 0.0345771 0.0314989 30 2366 21 6.64007e+06 389298 526063. 1820.29 0.93 0.0989639 0.0872754 22546 126617 -1 1961 15 884 1464 71687 17433 3.23063 3.23063 -121.351 -3.23063 0 0 666494. 2306.21 0.28 0.05 0.13 -1 -1 0.28 0.0196416 0.0176696 135 51 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 4.53 vpr 64.73 MiB -1 -1 0.15 20272 1 0.03 -1 -1 33920 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66288 32 32 291 242 1 179 87 17 17 289 -1 unnamed_device 26.4 MiB 0.22 975 7767 1720 5470 577 64.7 MiB 0.07 0.00 4.38513 -117.551 -4.38513 4.38513 0.88 0.000429156 0.000390203 0.0202506 0.0184913 26 2701 24 6.64007e+06 288834 477104. 1650.88 1.32 0.0842826 0.0740391 21682 110474 -1 2166 19 1317 1939 167610 36546 3.68463 3.68463 -121.244 -3.68463 0 0 585099. 2024.56 0.26 0.06 0.11 -1 -1 0.26 0.0198718 0.0176958 119 24 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.56 vpr 65.29 MiB -1 -1 0.17 20868 1 0.03 -1 -1 34004 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66860 32 32 457 356 1 223 104 17 17 289 -1 unnamed_device 26.9 MiB 0.19 1225 15720 4488 9844 1388 65.3 MiB 0.14 0.00 5.18355 -167.471 -5.18355 5.18355 0.88 0.000600229 0.000545501 0.0419975 0.0382061 26 3193 18 6.64007e+06 502320 477104. 1650.88 1.21 0.123926 0.109557 21682 110474 -1 2728 17 1590 2477 169182 38780 4.27989 4.27989 -152.775 -4.27989 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0257696 0.0229756 174 84 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.10 vpr 64.18 MiB -1 -1 0.15 20228 1 0.03 -1 -1 33420 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65720 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 25.8 MiB 0.08 755 11064 4559 5783 722 64.2 MiB 0.07 0.00 3.8227 -103.618 -3.8227 3.8227 0.88 0.000417739 0.000380753 0.026839 0.0244642 30 1736 20 6.64007e+06 263718 526063. 1820.29 1.01 0.0797708 0.0703244 22546 126617 -1 1480 21 908 1504 89570 21574 2.79977 2.79977 -98.5206 -2.79977 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0192969 0.0170289 101 24 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.57 vpr 64.71 MiB -1 -1 0.16 20352 1 0.03 -1 -1 33820 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66264 31 32 337 267 1 205 88 17 17 289 -1 unnamed_device 26.0 MiB 0.25 1189 14518 4594 8025 1899 64.7 MiB 0.14 0.00 5.24081 -156.256 -5.24081 5.24081 0.89 0.000507393 0.00046225 0.0395191 0.036089 28 3102 25 6.64007e+06 313950 500653. 1732.36 1.19 0.109945 0.0971693 21970 115934 -1 2470 20 1224 1701 126371 27807 4.70968 4.70968 -150.995 -4.70968 0 0 612192. 2118.31 0.26 0.06 0.12 -1 -1 0.26 0.0217173 0.0193231 144 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 9.53 vpr 64.92 MiB -1 -1 0.15 20856 1 0.03 -1 -1 33884 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66476 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 26.4 MiB 0.13 1030 10531 2414 7661 456 64.9 MiB 0.11 0.00 4.0171 -121.213 -4.0171 4.0171 0.89 0.000535276 0.000489907 0.0266968 0.0243479 26 3025 43 6.64007e+06 414414 477104. 1650.88 6.35 0.213801 0.186711 21682 110474 -1 2292 14 1163 2099 151082 34983 3.08816 3.08816 -118 -3.08816 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0191523 0.0171419 131 50 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.09 vpr 64.31 MiB -1 -1 0.14 20300 1 0.03 -1 -1 33956 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65852 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 26.0 MiB 0.05 891 13153 4464 6066 2623 64.3 MiB 0.10 0.00 4.20356 -126.138 -4.20356 4.20356 0.89 0.000435639 0.000398581 0.0325848 0.0297661 32 2178 21 6.64007e+06 301392 554710. 1919.41 0.97 0.0917992 0.0811164 22834 132086 -1 1719 21 1074 2024 133293 30707 3.82482 3.82482 -119.413 -3.82482 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0216249 0.0191769 123 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 5.05 vpr 64.98 MiB -1 -1 0.15 20708 1 0.03 -1 -1 33628 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66544 32 32 353 287 1 198 88 17 17 289 -1 unnamed_device 26.5 MiB 0.28 1089 13933 3596 8128 2209 65.0 MiB 0.11 0.00 4.81394 -142.313 -4.81394 4.81394 0.88 0.000464398 0.000421499 0.0368163 0.033428 26 2775 32 6.64007e+06 301392 477104. 1650.88 1.74 0.118046 0.104012 21682 110474 -1 2352 18 1152 1596 116971 26606 3.51742 3.51742 -126.978 -3.51742 0 0 585099. 2024.56 0.25 0.05 0.10 -1 -1 0.25 0.0211326 0.0187946 138 52 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.21 vpr 64.83 MiB -1 -1 0.16 20508 1 0.03 -1 -1 33904 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66384 32 32 361 291 1 185 96 17 17 289 -1 unnamed_device 26.3 MiB 0.14 935 7980 1596 5688 696 64.8 MiB 0.07 0.00 3.76946 -120.7 -3.76946 3.76946 0.89 0.000495061 0.000451828 0.0210958 0.019222 30 2198 19 6.64007e+06 401856 526063. 1820.29 1.00 0.0885233 0.0776243 22546 126617 -1 1948 17 1065 1931 93576 23283 3.10117 3.10117 -113.819 -3.10117 0 0 666494. 2306.21 0.27 0.05 0.13 -1 -1 0.27 0.0214559 0.0190837 133 52 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.24 vpr 65.04 MiB -1 -1 0.16 20476 1 0.03 -1 -1 33880 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66604 32 32 382 305 1 192 101 17 17 289 -1 unnamed_device 26.5 MiB 0.14 901 8796 1803 6364 629 65.0 MiB 0.09 0.00 4.787 -140.677 -4.787 4.787 0.89 0.000525948 0.000478637 0.02249 0.0205062 32 2513 22 6.64007e+06 464646 554710. 1919.41 0.95 0.09006 0.0789917 22834 132086 -1 1954 18 1106 1629 93353 23736 3.48203 3.48203 -125.684 -3.48203 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0225167 0.0199919 145 59 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.10 vpr 64.77 MiB -1 -1 0.14 20140 1 0.03 -1 -1 33504 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66320 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 26.4 MiB 0.06 902 12903 3419 8175 1309 64.8 MiB 0.10 0.00 4.24273 -122.494 -4.24273 4.24273 0.89 0.000453487 0.000415183 0.0305077 0.0278021 32 1909 19 6.64007e+06 364182 554710. 1919.41 0.93 0.0887278 0.0781368 22834 132086 -1 1739 19 1143 1869 117063 27589 3.64463 3.64463 -118.883 -3.64463 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0206899 0.0184067 122 21 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.29 vpr 64.88 MiB -1 -1 0.16 20740 1 0.03 -1 -1 33716 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66432 32 32 319 257 1 198 88 17 17 289 -1 unnamed_device 26.5 MiB 0.25 983 6913 1568 4936 409 64.9 MiB 0.07 0.00 5.07997 -139.694 -5.07997 5.07997 0.89 0.000480504 0.000436415 0.0195429 0.0178759 32 2406 21 6.64007e+06 301392 554710. 1919.41 0.96 0.0801799 0.0703931 22834 132086 -1 2179 20 1491 2098 133320 32792 3.85003 3.85003 -128.971 -3.85003 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.022478 0.0199478 133 26 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 5.98 vpr 65.16 MiB -1 -1 0.17 20472 1 0.03 -1 -1 33852 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66720 31 32 373 299 1 202 88 17 17 289 -1 unnamed_device 26.7 MiB 0.29 1148 9058 2364 5808 886 65.2 MiB 0.09 0.00 5.0113 -149.211 -5.0113 5.0113 0.90 0.00053096 0.000482227 0.0265604 0.0242384 26 3407 45 6.64007e+06 313950 477104. 1650.88 2.54 0.125049 0.109973 21682 110474 -1 2639 24 1898 3099 233977 51589 4.31263 4.31263 -142.786 -4.31263 0 0 585099. 2024.56 0.26 0.09 0.11 -1 -1 0.26 0.0288628 0.0255103 148 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.38 vpr 64.72 MiB -1 -1 0.16 20620 1 0.03 -1 -1 33896 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66272 32 32 387 315 1 189 86 17 17 289 -1 unnamed_device 26.2 MiB 0.16 977 15962 5144 8098 2720 64.7 MiB 0.14 0.00 4.21776 -130.397 -4.21776 4.21776 0.89 0.000549674 0.000501539 0.047722 0.0433563 32 2870 23 6.64007e+06 276276 554710. 1919.41 1.04 0.122245 0.107868 22834 132086 -1 2220 15 1299 2324 157370 35871 3.78082 3.78082 -127.954 -3.78082 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0213396 0.0191242 136 74 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 4.06 vpr 64.36 MiB -1 -1 0.14 20472 1 0.03 -1 -1 33732 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65904 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 25.9 MiB 0.05 763 11398 3223 7297 878 64.4 MiB 0.08 0.00 3.46744 -102.907 -3.46744 3.46744 0.89 0.000418139 0.000382862 0.024185 0.0220491 26 1977 28 6.64007e+06 301392 477104. 1650.88 1.03 0.084143 0.074091 21682 110474 -1 1674 20 804 1237 85402 19533 2.71977 2.71977 -98.3296 -2.71977 0 0 585099. 2024.56 0.26 0.05 0.11 -1 -1 0.26 0.0184654 0.0163905 97 20 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.31 vpr 65.02 MiB -1 -1 0.15 20636 1 0.03 -1 -1 33696 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 32 32 341 285 1 187 86 17 17 289 -1 unnamed_device 26.6 MiB 0.24 982 8969 2347 6212 410 65.0 MiB 0.09 0.00 4.05536 -139.886 -4.05536 4.05536 0.93 0.000473643 0.000428377 0.0258267 0.0235492 30 2184 22 6.64007e+06 276276 526063. 1820.29 0.97 0.0896666 0.0787377 22546 126617 -1 1875 19 1272 1814 105981 24118 3.03143 3.03143 -122.855 -3.03143 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0212781 0.0188808 127 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.93 vpr 64.83 MiB -1 -1 0.15 20676 1 0.03 -1 -1 34068 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66384 32 32 387 293 1 234 93 17 17 289 -1 unnamed_device 26.6 MiB 0.25 1389 7443 1662 5262 519 64.8 MiB 0.09 0.00 5.61123 -170.011 -5.61123 5.61123 0.90 0.000563899 0.000513939 0.0227089 0.0207808 28 3624 25 6.64007e+06 364182 500653. 1732.36 1.55 0.112985 0.100228 21970 115934 -1 2961 21 1866 2993 218466 47396 4.65768 4.65768 -159.09 -4.65768 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.0280755 0.025097 169 28 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.10 vpr 64.86 MiB -1 -1 0.15 20736 1 0.03 -1 -1 33660 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66412 32 32 340 270 1 181 96 17 17 289 -1 unnamed_device 26.5 MiB 0.11 962 14988 4939 7718 2331 64.9 MiB 0.12 0.00 4.60549 -136.553 -4.60549 4.60549 0.88 0.000521117 0.000472987 0.0356532 0.0324121 30 2140 21 6.64007e+06 401856 526063. 1820.29 0.94 0.0981381 0.0864743 22546 126617 -1 1783 17 1010 1711 104239 23066 2.88497 2.88497 -112.713 -2.88497 0 0 666494. 2306.21 0.29 0.05 0.11 -1 -1 0.29 0.019318 0.0172411 133 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.98 vpr 64.47 MiB -1 -1 0.16 20180 1 0.03 -1 -1 33556 -1 -1 26 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66020 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 26.0 MiB 0.05 702 10423 3012 6489 922 64.5 MiB 0.08 0.00 3.51327 -104.848 -3.51327 3.51327 0.89 0.000419685 0.000380459 0.0241922 0.0220516 28 1807 22 6.64007e+06 326508 500653. 1732.36 0.90 0.0788565 0.0692779 21970 115934 -1 1568 22 1108 1754 103440 24891 2.72357 2.72357 -100.219 -2.72357 0 0 612192. 2118.31 0.26 0.05 0.12 -1 -1 0.26 0.0208774 0.0184844 104 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.71 vpr 65.13 MiB -1 -1 0.18 20940 1 0.03 -1 -1 34056 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 32 32 431 332 1 235 91 17 17 289 -1 unnamed_device 27.0 MiB 0.33 1216 15187 4686 7965 2536 65.1 MiB 0.15 0.00 6.49087 -185.665 -6.49087 6.49087 0.89 0.000628297 0.000576265 0.0484064 0.0441669 30 3247 27 6.64007e+06 339066 526063. 1820.29 1.14 0.137346 0.121677 22546 126617 -1 2515 22 1992 2989 190825 42741 4.92734 4.92734 -165.423 -4.92734 0 0 666494. 2306.21 0.29 0.08 0.12 -1 -1 0.29 0.0309693 0.0274765 170 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.45 vpr 64.69 MiB -1 -1 0.16 20448 1 0.03 -1 -1 33980 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66244 32 32 336 268 1 174 97 17 17 289 -1 unnamed_device 26.2 MiB 0.14 903 6979 1333 5401 245 64.7 MiB 0.07 0.00 4.64606 -138.337 -4.64606 4.64606 0.90 0.000493516 0.000450105 0.0182104 0.0166845 26 2639 42 6.64007e+06 414414 477104. 1650.88 1.27 0.103007 0.090034 21682 110474 -1 2098 19 1524 2359 164433 38859 3.75183 3.75183 -134.746 -3.75183 0 0 585099. 2024.56 0.26 0.06 0.11 -1 -1 0.26 0.0217608 0.0192677 130 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.98 vpr 64.26 MiB -1 -1 0.14 20048 1 0.03 -1 -1 33552 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65804 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 25.9 MiB 0.07 832 12375 4208 6622 1545 64.3 MiB 0.09 0.00 3.58247 -103.673 -3.58247 3.58247 0.88 0.000400032 0.000365973 0.0269492 0.0246163 28 2023 24 6.64007e+06 288834 500653. 1732.36 0.92 0.0783567 0.0689434 21970 115934 -1 1729 19 808 1414 115942 25349 2.89797 2.89797 -102.799 -2.89797 0 0 612192. 2118.31 0.27 0.05 0.12 -1 -1 0.27 0.0168365 0.0149259 100 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 6.36 vpr 65.07 MiB -1 -1 0.16 20372 1 0.03 -1 -1 33692 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66636 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 26.4 MiB 0.10 993 9098 1971 6187 940 65.1 MiB 0.08 0.00 5.56744 -134.001 -5.56744 5.56744 0.89 0.000500265 0.000455166 0.023119 0.021127 28 2715 23 6.64007e+06 426972 500653. 1732.36 3.22 0.173965 0.151975 21970 115934 -1 2155 22 1488 2892 193907 44774 4.78768 4.78768 -137.22 -4.78768 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.0256112 0.022697 139 26 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.95 vpr 64.31 MiB -1 -1 0.14 20296 1 0.03 -1 -1 33864 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65856 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 25.9 MiB 0.05 822 7770 1860 5212 698 64.3 MiB 0.06 0.00 3.4291 -106.218 -3.4291 3.4291 0.89 0.000402357 0.000366948 0.0189894 0.0173358 26 1966 20 6.64007e+06 251160 477104. 1650.88 0.91 0.0717967 0.0630973 21682 110474 -1 1794 20 1189 2015 145791 32533 2.96717 2.96717 -110.105 -2.96717 0 0 585099. 2024.56 0.26 0.06 0.11 -1 -1 0.26 0.018745 0.0166169 104 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.22 vpr 64.26 MiB -1 -1 0.14 20188 1 0.03 -1 -1 33732 -1 -1 33 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65800 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 25.7 MiB 0.11 857 12839 3557 7998 1284 64.3 MiB 0.10 0.00 4.12483 -113.809 -4.12483 4.12483 0.90 0.000387975 0.000348945 0.0276919 0.025242 26 1933 22 6.64007e+06 414414 477104. 1650.88 1.06 0.0853952 0.0751953 21682 110474 -1 1626 17 791 1503 98783 21815 2.81177 2.81177 -102.96 -2.81177 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.0166491 0.0147267 105 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.40 vpr 65.09 MiB -1 -1 0.17 20620 1 0.03 -1 -1 33976 -1 -1 26 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66652 29 32 355 287 1 198 87 17 17 289 -1 unnamed_device 26.4 MiB 0.30 1104 17175 4885 10433 1857 65.1 MiB 0.15 0.00 4.60024 -135.427 -4.60024 4.60024 0.86 0.000496929 0.000455283 0.0479374 0.0437754 28 2667 21 6.64007e+06 326508 500653. 1732.36 0.97 0.114975 0.10179 21970 115934 -1 2393 25 1500 2282 138739 32634 4.10842 4.10842 -132.907 -4.10842 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0278142 0.0246166 139 56 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.22 vpr 64.73 MiB -1 -1 0.15 20548 1 0.03 -1 -1 33952 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66284 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 26.3 MiB 0.12 772 4768 876 3724 168 64.7 MiB 0.05 0.00 4.51224 -132.005 -4.51224 4.51224 0.92 0.000520133 0.000472466 0.015224 0.0139356 32 2190 25 6.64007e+06 301392 554710. 1919.41 1.01 0.0856509 0.0748587 22834 132086 -1 1821 22 1657 2534 173073 42172 3.74782 3.74782 -128.311 -3.74782 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0254961 0.022607 130 51 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.15 vpr 64.51 MiB -1 -1 0.16 20464 1 0.03 -1 -1 33860 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66056 32 32 353 285 1 181 92 17 17 289 -1 unnamed_device 26.0 MiB 0.12 1030 11891 3350 7362 1179 64.5 MiB 0.10 0.00 4.72138 -141.993 -4.72138 4.72138 0.90 0.000479495 0.000437429 0.0300112 0.0272721 32 2311 18 6.64007e+06 351624 554710. 1919.41 0.93 0.0901741 0.0791367 22834 132086 -1 2022 18 1159 1995 135404 30180 3.52623 3.52623 -131.325 -3.52623 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0210134 0.0186497 133 48 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.30 vpr 64.33 MiB -1 -1 0.15 20108 1 0.03 -1 -1 33480 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65876 32 32 276 237 1 159 81 17 17 289 -1 unnamed_device 25.8 MiB 0.26 799 9356 2375 6010 971 64.3 MiB 0.08 0.00 4.79432 -131.982 -4.79432 4.79432 0.88 0.000401927 0.000368659 0.0244077 0.0223246 26 2160 21 6.64007e+06 213486 477104. 1650.88 1.08 0.0854385 0.0755299 21682 110474 -1 1917 20 1110 1536 115013 27360 3.25803 3.25803 -118.562 -3.25803 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0202233 0.0179562 105 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.28 vpr 64.81 MiB -1 -1 0.17 20520 1 0.03 -1 -1 33996 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66364 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 26.4 MiB 0.24 899 12898 4205 6789 1904 64.8 MiB 0.10 0.00 3.96736 -127.03 -3.96736 3.96736 0.88 0.00045545 0.000413823 0.035729 0.0326002 32 2035 18 6.64007e+06 238602 554710. 1919.41 0.92 0.0923315 0.081596 22834 132086 -1 1836 19 1223 1799 123742 27820 3.01863 3.01863 -117.895 -3.01863 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0211877 0.0187883 113 60 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.81 vpr 64.64 MiB -1 -1 0.16 20164 1 0.03 -1 -1 33688 -1 -1 33 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66196 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 26.3 MiB 0.12 857 8087 1703 5875 509 64.6 MiB 0.07 0.00 3.59243 -98.9543 -3.59243 3.59243 0.91 0.000480078 0.000438295 0.0201024 0.0183717 26 2500 27 6.64007e+06 414414 477104. 1650.88 1.64 0.0917369 0.0805631 21682 110474 -1 1945 19 1161 2050 166589 39629 2.76177 2.76177 -99.6151 -2.76177 0 0 585099. 2024.56 0.26 0.06 0.11 -1 -1 0.26 0.021541 0.0191671 123 52 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.06 vpr 64.72 MiB -1 -1 0.15 20276 1 0.03 -1 -1 33712 -1 -1 35 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 26.1 MiB 0.09 873 14567 3705 9538 1324 64.7 MiB 0.10 0.00 4.33724 -105.319 -4.33724 4.33724 0.90 0.000412129 0.000374095 0.0309832 0.0282679 26 2165 27 6.64007e+06 439530 477104. 1650.88 0.94 0.0914894 0.0805545 21682 110474 -1 1828 19 946 1883 134782 28404 3.80183 3.80183 -107.35 -3.80183 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.018869 0.0167584 115 20 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.21 vpr 64.62 MiB -1 -1 0.16 20428 1 0.03 -1 -1 33676 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66168 30 32 317 269 1 152 80 17 17 289 -1 unnamed_device 26.1 MiB 0.13 857 12980 4441 6366 2173 64.6 MiB 0.10 0.00 4.19523 -120.389 -4.19523 4.19523 0.89 0.000471815 0.000428917 0.0351458 0.0320921 32 1926 20 6.64007e+06 226044 554710. 1919.41 0.98 0.0924843 0.0816125 22834 132086 -1 1769 19 1175 1932 148827 32317 3.06217 3.06217 -111.242 -3.06217 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0201697 0.0178706 108 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.27 vpr 64.87 MiB -1 -1 0.16 20768 1 0.03 -1 -1 33760 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66428 32 32 335 282 1 184 85 17 17 289 -1 unnamed_device 26.4 MiB 0.23 1011 9385 2419 5667 1299 64.9 MiB 0.09 0.00 4.0237 -135.679 -4.0237 4.0237 0.89 0.000481476 0.000438389 0.026587 0.0242964 32 2261 23 6.64007e+06 263718 554710. 1919.41 0.95 0.0894937 0.0786613 22834 132086 -1 2018 18 1093 1588 111076 24869 3.32603 3.32603 -130.745 -3.32603 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0203445 0.0180598 121 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 6.29 vpr 64.73 MiB -1 -1 0.16 20244 1 0.03 -1 -1 34000 -1 -1 32 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66288 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 26.3 MiB 0.05 926 9383 1965 6366 1052 64.7 MiB 0.07 0.00 4.61041 -129.144 -4.61041 4.61041 0.90 0.000469823 0.000428997 0.0220688 0.0201389 28 2322 28 6.64007e+06 401856 500653. 1732.36 3.17 0.157453 0.137079 21970 115934 -1 1918 20 1309 2325 142579 33944 3.84183 3.84183 -122.709 -3.84183 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0215806 0.0192019 127 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.47 vpr 64.98 MiB -1 -1 0.15 20600 1 0.03 -1 -1 33984 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 32 32 350 275 1 209 88 17 17 289 -1 unnamed_device 26.2 MiB 0.28 1230 14128 4435 7821 1872 65.0 MiB 0.14 0.00 5.3267 -167.408 -5.3267 5.3267 0.90 0.000509993 0.000463533 0.0401436 0.036664 32 3153 21 6.64007e+06 301392 554710. 1919.41 1.02 0.106686 0.0942991 22834 132086 -1 2670 20 1471 2127 203069 40274 4.46509 4.46509 -159.817 -4.46509 0 0 701300. 2426.64 0.30 0.07 0.12 -1 -1 0.30 0.0238807 0.0212647 146 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.46 vpr 64.88 MiB -1 -1 0.16 20688 1 0.03 -1 -1 33744 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66436 32 32 385 308 1 185 98 17 17 289 -1 unnamed_device 26.3 MiB 0.19 846 12473 3077 8180 1216 64.9 MiB 0.11 0.00 5.24026 -142.21 -5.24026 5.24026 0.89 0.000541091 0.000490878 0.0333525 0.0304373 30 2493 25 6.64007e+06 426972 526063. 1820.29 1.14 0.115402 0.102309 22546 126617 -1 1863 20 1088 2106 109487 27680 3.81508 3.81508 -134.95 -3.81508 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.024756 0.021999 144 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 4.42 vpr 64.89 MiB -1 -1 0.15 20396 1 0.03 -1 -1 33716 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66452 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 26.3 MiB 0.12 1088 19136 5971 10565 2600 64.9 MiB 0.15 0.00 4.47484 -142.459 -4.47484 4.47484 0.88 0.000541063 0.000490969 0.0446296 0.0403409 28 2720 22 6.64007e+06 464646 500653. 1732.36 1.23 0.121668 0.107413 21970 115934 -1 2387 19 1473 2617 177636 39843 3.70543 3.70543 -136.956 -3.70543 0 0 612192. 2118.31 0.27 0.07 0.10 -1 -1 0.27 0.0229289 0.0203061 140 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.05 vpr 64.27 MiB -1 -1 0.16 20472 1 0.03 -1 -1 33548 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65808 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 25.8 MiB 0.10 810 10756 3573 5296 1887 64.3 MiB 0.08 0.00 3.86158 -115.559 -3.86158 3.86158 0.88 0.000416137 0.000378282 0.027428 0.0249951 28 2024 20 6.64007e+06 238602 500653. 1732.36 0.92 0.0796977 0.0701591 21970 115934 -1 1812 24 1223 2130 161484 35053 2.85977 2.85977 -104.747 -2.85977 0 0 612192. 2118.31 0.27 0.07 0.12 -1 -1 0.27 0.0219755 0.0193389 104 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.30 vpr 65.10 MiB -1 -1 0.16 20616 1 0.03 -1 -1 33904 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66664 30 32 375 299 1 187 85 17 17 289 -1 unnamed_device 26.6 MiB 0.15 996 11989 3165 6999 1825 65.1 MiB 0.11 0.00 4.82523 -141.177 -4.82523 4.82523 0.89 0.00053894 0.000494687 0.0365319 0.0333474 32 2408 19 6.64007e+06 288834 554710. 1919.41 1.00 0.103819 0.0917681 22834 132086 -1 1994 21 1700 2635 168605 39469 3.73163 3.73163 -133.479 -3.73163 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0255579 0.0227132 138 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.75 vpr 65.07 MiB -1 -1 0.16 20796 1 0.03 -1 -1 33792 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 32 32 340 270 1 200 90 17 17 289 -1 unnamed_device 26.5 MiB 0.25 1103 10743 2816 7025 902 65.1 MiB 0.10 0.00 5.45357 -158.764 -5.45357 5.45357 0.90 0.0005092 0.000464202 0.0296747 0.0271066 26 2972 34 6.64007e+06 326508 477104. 1650.88 1.37 0.110625 0.0974396 21682 110474 -1 2568 22 1724 2771 237679 51373 4.19368 4.19368 -144.555 -4.19368 0 0 585099. 2024.56 0.25 0.08 0.11 -1 -1 0.25 0.0243351 0.0215715 140 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.53 vpr 64.72 MiB -1 -1 0.17 20436 1 0.03 -1 -1 33656 -1 -1 30 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 31 32 340 275 1 195 93 17 17 289 -1 unnamed_device 26.3 MiB 0.28 1102 15423 4945 8075 2403 64.7 MiB 0.13 0.00 5.30601 -154.372 -5.30601 5.30601 0.89 0.000509603 0.000464963 0.0394947 0.0360395 28 3024 19 6.64007e+06 376740 500653. 1732.36 1.13 0.108238 0.0960729 21970 115934 -1 2450 20 1449 2163 173727 36410 4.47448 4.47448 -149.944 -4.47448 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0230322 0.020483 148 43 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.31 vpr 64.83 MiB -1 -1 0.17 20864 1 0.03 -1 -1 33576 -1 -1 33 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66384 30 32 377 310 1 177 95 17 17 289 -1 unnamed_device 26.3 MiB 0.22 960 11975 3127 7423 1425 64.8 MiB 0.11 0.00 4.52304 -132.575 -4.52304 4.52304 0.89 0.000530984 0.000485274 0.0323188 0.0295126 32 2201 21 6.64007e+06 414414 554710. 1919.41 0.96 0.100228 0.0883685 22834 132086 -1 1847 18 942 1594 100135 23271 3.03543 3.03543 -114.645 -3.03543 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0226851 0.0201809 135 78 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.29 vpr 64.98 MiB -1 -1 0.16 20528 1 0.03 -1 -1 33928 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 32 32 365 294 1 185 85 17 17 289 -1 unnamed_device 26.5 MiB 0.12 891 9571 2183 6911 477 65.0 MiB 0.10 0.00 5.02278 -140.291 -5.02278 5.02278 0.91 0.000530078 0.000482029 0.0300516 0.0274311 30 2581 25 6.64007e+06 263718 526063. 1820.29 1.06 0.10466 0.0921333 22546 126617 -1 2011 22 1227 2238 124501 30320 3.82963 3.82963 -134.319 -3.82963 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0254835 0.0225891 134 54 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.25 vpr 64.83 MiB -1 -1 0.17 20536 1 0.03 -1 -1 33960 -1 -1 31 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66384 29 32 378 310 1 177 92 17 17 289 -1 unnamed_device 26.3 MiB 0.15 875 11270 2503 8088 679 64.8 MiB 0.10 0.00 4.91881 -136.338 -4.91881 4.91881 0.89 0.00053174 0.000484901 0.031223 0.0284502 32 2070 20 6.64007e+06 389298 554710. 1919.41 0.94 0.0970308 0.0852794 22834 132086 -1 1833 21 1140 1867 115580 27353 3.65943 3.65943 -125.768 -3.65943 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0253765 0.0224447 132 79 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.91 vpr 64.36 MiB -1 -1 0.13 20220 1 0.03 -1 -1 34024 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65908 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 26.0 MiB 0.04 680 10219 2541 6421 1257 64.4 MiB 0.08 0.00 3.88758 -112.502 -3.88758 3.88758 0.89 0.00039476 0.000355168 0.0258355 0.0236554 28 1667 19 6.64007e+06 188370 500653. 1732.36 0.88 0.0751647 0.0664184 21970 115934 -1 1566 19 853 1297 89732 21195 2.92697 2.92697 -106.606 -2.92697 0 0 612192. 2118.31 0.27 0.05 0.11 -1 -1 0.27 0.0179086 0.0159463 96 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.61 vpr 64.99 MiB -1 -1 0.16 20444 1 0.03 -1 -1 33876 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 373 302 1 176 96 17 17 289 -1 unnamed_device 26.5 MiB 0.22 1003 15426 4168 9105 2153 65.0 MiB 0.13 0.00 4.65236 -140.168 -4.65236 4.65236 0.90 0.000532856 0.000486504 0.0401894 0.0366914 28 2185 20 6.64007e+06 401856 500653. 1732.36 1.27 0.116898 0.104025 21970 115934 -1 1998 20 1322 2197 140567 32453 3.84903 3.84903 -133.976 -3.84903 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0242349 0.0215153 132 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.41 vpr 65.11 MiB -1 -1 0.17 20384 1 0.03 -1 -1 33920 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66668 32 32 397 314 1 196 86 17 17 289 -1 unnamed_device 26.6 MiB 0.15 1074 11237 2615 7354 1268 65.1 MiB 0.11 0.00 4.84723 -152.835 -4.84723 4.84723 0.91 0.000585534 0.000533424 0.0366865 0.0334925 32 2517 24 6.64007e+06 276276 554710. 1919.41 1.07 0.114333 0.10094 22834 132086 -1 2165 24 1914 3076 222092 49372 3.86183 3.86183 -143.393 -3.86183 0 0 701300. 2426.64 0.30 0.09 0.13 -1 -1 0.30 0.0301433 0.0267128 148 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.31 vpr 64.43 MiB -1 -1 0.14 20204 1 0.03 -1 -1 33872 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65976 32 32 269 231 1 170 84 17 17 289 -1 unnamed_device 25.9 MiB 0.24 745 8136 1743 5584 809 64.4 MiB 0.06 0.00 4.31784 -119.848 -4.31784 4.31784 0.88 0.000404661 0.000373878 0.0190128 0.017294 28 2436 31 6.64007e+06 251160 500653. 1732.36 1.16 0.082231 0.0719421 21970 115934 -1 1890 21 1141 1486 118566 29283 3.66597 3.66597 -125.385 -3.66597 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0192044 0.0170028 109 26 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.97 vpr 64.47 MiB -1 -1 0.14 20312 1 0.03 -1 -1 33688 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66016 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 26.0 MiB 0.05 720 11430 2918 7192 1320 64.5 MiB 0.09 0.00 3.81035 -108.914 -3.81035 3.81035 0.89 0.000415854 0.000371977 0.0269856 0.0246309 26 2000 23 6.64007e+06 263718 477104. 1650.88 0.94 0.0813124 0.0716699 21682 110474 -1 1806 19 1161 1910 131605 30533 2.89397 2.89397 -108.713 -2.89397 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.0173909 0.0154067 106 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.95 vpr 64.99 MiB -1 -1 0.16 20516 1 0.03 -1 -1 33716 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 348 274 1 211 90 17 17 289 -1 unnamed_device 26.5 MiB 0.23 1132 12753 3748 7734 1271 65.0 MiB 0.11 0.00 5.06147 -160.912 -5.06147 5.06147 0.87 0.000502682 0.000458073 0.0348079 0.0317668 26 3087 40 6.64007e+06 326508 477104. 1650.88 1.65 0.122632 0.107896 21682 110474 -1 2355 20 1868 2497 190002 41388 3.92229 3.92229 -146.247 -3.92229 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0240719 0.0214256 144 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.40 vpr 64.88 MiB -1 -1 0.16 20832 1 0.03 -1 -1 33656 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66432 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 26.1 MiB 0.23 1035 16893 5570 8364 2959 64.9 MiB 0.14 0.00 5.02458 -149.361 -5.02458 5.02458 0.89 0.000501523 0.0004589 0.0437494 0.0399435 32 2745 25 6.64007e+06 364182 554710. 1919.41 1.01 0.113701 0.100652 22834 132086 -1 2253 20 1492 2370 153128 36800 4.34809 4.34809 -142.117 -4.34809 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.023764 0.0211335 155 53 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.84 vpr 65.10 MiB -1 -1 0.17 20424 1 0.03 -1 -1 33488 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66664 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 26.8 MiB 0.08 1057 12164 2729 8794 641 65.1 MiB 0.11 0.00 5.48474 -146.154 -5.48474 5.48474 0.89 0.000530546 0.000480356 0.0308256 0.0280049 28 3239 24 6.64007e+06 452088 500653. 1732.36 1.62 0.107667 0.0951347 21970 115934 -1 2648 20 1616 2857 269688 60325 4.87389 4.87389 -152.412 -4.87389 0 0 612192. 2118.31 0.25 0.09 0.12 -1 -1 0.25 0.0237558 0.0210791 153 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.00 vpr 64.78 MiB -1 -1 0.15 20500 1 0.03 -1 -1 33784 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 30 32 316 264 1 162 94 17 17 289 -1 unnamed_device 26.4 MiB 0.12 890 11170 2805 7440 925 64.8 MiB 0.09 0.00 3.51924 -105.227 -3.51924 3.51924 0.85 0.000476787 0.000433992 0.0271153 0.0247181 26 2070 19 6.64007e+06 401856 477104. 1650.88 0.90 0.0864753 0.0758994 21682 110474 -1 1811 19 1221 2143 148491 33695 2.80477 2.80477 -101.447 -2.80477 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0192165 0.0169975 121 47 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.94 vpr 64.30 MiB -1 -1 0.15 20288 1 0.03 -1 -1 34184 -1 -1 21 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65840 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 25.9 MiB 0.05 645 11948 3714 6556 1678 64.3 MiB 0.08 0.00 3.4543 -94.7001 -3.4543 3.4543 0.89 0.00037526 0.00034237 0.0290315 0.0265073 26 1652 20 6.64007e+06 263718 477104. 1650.88 0.91 0.0807053 0.0712072 21682 110474 -1 1462 20 950 1369 109801 25165 2.92817 2.92817 -95.5092 -2.92817 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.0180634 0.015933 97 26 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.51 vpr 64.95 MiB -1 -1 0.17 20504 1 0.03 -1 -1 33992 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66504 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 26.7 MiB 0.24 1270 10743 2480 7803 460 64.9 MiB 0.11 0.00 4.37195 -138.919 -4.37195 4.37195 0.89 0.00059496 0.000543531 0.0345427 0.0315779 32 3375 24 6.64007e+06 326508 554710. 1919.41 1.07 0.116423 0.102882 22834 132086 -1 2791 23 2060 3365 248010 55326 3.84783 3.84783 -138.713 -3.84783 0 0 701300. 2426.64 0.29 0.09 0.13 -1 -1 0.29 0.0310088 0.0274958 170 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.40 vpr 64.95 MiB -1 -1 0.17 20540 1 0.03 -1 -1 33896 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 31 32 365 296 1 193 86 17 17 289 -1 unnamed_device 26.5 MiB 0.31 989 14828 4611 8220 1997 65.0 MiB 0.12 0.00 5.41669 -159.225 -5.41669 5.41669 0.89 0.000497213 0.000452505 0.0420188 0.0383493 28 2481 23 6.64007e+06 288834 500653. 1732.36 0.97 0.11023 0.0974299 21970 115934 -1 2153 20 1535 2472 159921 37576 4.54748 4.54748 -151.702 -4.54748 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0248391 0.0221078 152 60 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.34 vpr 64.82 MiB -1 -1 0.17 20520 1 0.03 -1 -1 34008 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66380 32 32 331 280 1 174 83 17 17 289 -1 unnamed_device 26.5 MiB 0.30 825 13583 3778 7563 2242 64.8 MiB 0.12 0.00 4.65475 -131.833 -4.65475 4.65475 0.88 0.000490084 0.000445476 0.0388354 0.0354176 30 1948 20 6.64007e+06 238602 526063. 1820.29 0.95 0.0983101 0.0867608 22546 126617 -1 1626 18 802 1237 72373 16961 3.52843 3.52843 -124.473 -3.52843 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0205512 0.0182974 128 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.62 vpr 64.76 MiB -1 -1 0.16 20228 1 0.03 -1 -1 33980 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66316 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 26.3 MiB 0.06 911 16708 5166 8976 2566 64.8 MiB 0.12 0.00 5.41998 -135.015 -5.41998 5.41998 0.88 0.000490416 0.000445419 0.0392955 0.0357237 28 2820 28 6.64007e+06 376740 500653. 1732.36 1.46 0.114999 0.101752 21970 115934 -1 2215 20 1177 1920 157877 36958 3.85082 3.85082 -126.566 -3.85082 0 0 612192. 2118.31 0.26 0.06 0.12 -1 -1 0.26 0.0218738 0.01936 126 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.79 vpr 65.02 MiB -1 -1 0.18 20304 1 0.03 -1 -1 33872 -1 -1 34 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 31 32 373 294 1 196 97 17 17 289 -1 unnamed_device 26.5 MiB 0.14 1048 7423 1517 5297 609 65.0 MiB 0.08 0.00 5.01701 -136.816 -5.01701 5.01701 0.89 0.000522939 0.000472941 0.0192557 0.0174744 26 2859 33 6.64007e+06 426972 477104. 1650.88 1.60 0.106321 0.0932312 21682 110474 -1 2296 20 1422 2465 203490 44242 3.76082 3.76082 -129.287 -3.76082 0 0 585099. 2024.56 0.25 0.07 0.10 -1 -1 0.25 0.0235864 0.0208883 145 46 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.21 vpr 64.58 MiB -1 -1 0.15 20416 1 0.03 -1 -1 33968 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66132 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 26.2 MiB 0.13 829 7233 1598 5117 518 64.6 MiB 0.07 0.00 3.67989 -107.648 -3.67989 3.67989 0.88 0.000496119 0.000451257 0.0190422 0.0173614 30 2144 22 6.64007e+06 389298 526063. 1820.29 1.04 0.0845305 0.0741047 22546 126617 -1 1628 20 1009 1796 99734 24777 2.92597 2.92597 -101.5 -2.92597 0 0 666494. 2306.21 0.28 0.05 0.13 -1 -1 0.28 0.0219041 0.0193453 124 46 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 8.24 vpr 65.24 MiB -1 -1 0.16 20508 1 0.03 -1 -1 33768 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66804 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 26.7 MiB 0.27 1174 10979 2913 7012 1054 65.2 MiB 0.11 0.00 5.12747 -161.736 -5.12747 5.12747 0.91 0.000536086 0.000489276 0.0316273 0.0288983 26 3490 36 6.64007e+06 313950 477104. 1650.88 4.86 0.194304 0.169992 21682 110474 -1 2650 20 1925 2965 218244 49499 4.12068 4.12068 -148.064 -4.12068 0 0 585099. 2024.56 0.25 0.08 0.11 -1 -1 0.25 0.0243836 0.0217119 148 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.38 vpr 64.94 MiB -1 -1 0.16 20460 1 0.03 -1 -1 33936 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66500 32 32 386 307 1 195 100 17 17 289 -1 unnamed_device 26.4 MiB 0.19 1093 17036 4934 9564 2538 64.9 MiB 0.14 0.00 4.75546 -148.188 -4.75546 4.75546 0.88 0.000516193 0.000468845 0.0426129 0.0388278 28 2591 20 6.64007e+06 452088 500653. 1732.36 1.06 0.11748 0.104123 21970 115934 -1 2227 17 1227 1962 128843 29850 3.51922 3.51922 -129.458 -3.51922 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.022904 0.0204555 144 59 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.95 vpr 64.24 MiB -1 -1 0.15 20620 1 0.03 -1 -1 33984 -1 -1 17 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65780 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 25.8 MiB 0.08 731 10536 4018 5581 937 64.2 MiB 0.07 0.00 3.74538 -111.28 -3.74538 3.74538 0.89 0.000397225 0.000361252 0.0278234 0.0254163 30 1443 17 6.64007e+06 213486 526063. 1820.29 0.87 0.0745341 0.0658323 22546 126617 -1 1262 17 750 1088 62961 14826 2.68977 2.68977 -98.4877 -2.68977 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0168795 0.0150115 91 28 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.38 vpr 64.72 MiB -1 -1 0.16 20492 1 0.03 -1 -1 33840 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66272 32 32 310 266 1 175 85 17 17 289 -1 unnamed_device 26.3 MiB 0.20 882 13849 5109 6856 1884 64.7 MiB 0.10 0.00 4.03956 -127.808 -4.03956 4.03956 0.90 0.000469064 0.000426126 0.0354675 0.032334 28 2218 24 6.64007e+06 263718 500653. 1732.36 1.03 0.0972248 0.0857064 21970 115934 -1 1895 23 1297 1769 147915 33084 3.22483 3.22483 -120.552 -3.22483 0 0 612192. 2118.31 0.26 0.06 0.12 -1 -1 0.26 0.0226422 0.0199606 117 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.10 vpr 64.94 MiB -1 -1 0.16 20324 1 0.03 -1 -1 33392 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66500 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 26.5 MiB 0.07 954 14020 3601 8035 2384 64.9 MiB 0.11 0.00 4.80044 -128.284 -4.80044 4.80044 0.88 0.000482616 0.000438462 0.0318425 0.028967 32 2139 23 6.64007e+06 464646 554710. 1919.41 0.96 0.0903567 0.0793056 22834 132086 -1 2014 21 1419 2451 173087 38123 3.85382 3.85382 -125.331 -3.85382 0 0 701300. 2426.64 0.28 0.06 0.12 -1 -1 0.28 0.0210214 0.0185965 129 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.37 vpr 64.21 MiB -1 -1 0.15 20284 1 0.03 -1 -1 33696 -1 -1 22 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65748 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 25.7 MiB 0.25 763 7103 1547 5010 546 64.2 MiB 0.06 0.00 4.32884 -114.709 -4.32884 4.32884 0.90 0.000399024 0.000365751 0.0178774 0.0163699 26 2139 24 6.64007e+06 276276 477104. 1650.88 1.13 0.0786062 0.0692697 21682 110474 -1 1766 20 1098 1421 93712 22469 3.56143 3.56143 -115.197 -3.56143 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.0188171 0.0166968 109 25 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.14 vpr 64.50 MiB -1 -1 0.14 20296 1 0.03 -1 -1 33804 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66048 32 32 278 238 1 149 81 17 17 289 -1 unnamed_device 26.0 MiB 0.13 634 12856 3328 7254 2274 64.5 MiB 0.10 0.00 3.90075 -115.478 -3.90075 3.90075 0.88 0.000429466 0.000392232 0.0335093 0.0305491 28 2041 24 6.64007e+06 213486 500653. 1732.36 0.95 0.0899676 0.079157 21970 115934 -1 1792 22 1362 2294 161189 38138 3.12337 3.12337 -112.776 -3.12337 0 0 612192. 2118.31 0.28 0.07 0.11 -1 -1 0.28 0.0214895 0.0189637 108 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.25 vpr 65.02 MiB -1 -1 0.17 20684 1 0.03 -1 -1 33884 -1 -1 36 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 31 32 373 300 1 181 99 17 17 289 -1 unnamed_device 26.5 MiB 0.12 1014 15147 3968 9710 1469 65.0 MiB 0.12 0.00 4.15695 -125.813 -4.15695 4.15695 0.92 0.000535621 0.000487907 0.0384199 0.0348758 32 1987 18 6.64007e+06 452088 554710. 1919.41 0.98 0.103657 0.0913404 22834 132086 -1 1806 17 1104 1789 117607 26569 2.98336 2.98336 -111.526 -2.98336 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0214164 0.0191208 136 60 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.17 vpr 64.40 MiB -1 -1 0.16 20236 1 0.03 -1 -1 34004 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65944 31 32 265 230 1 162 83 17 17 289 -1 unnamed_device 25.8 MiB 0.21 920 10163 2724 6503 936 64.4 MiB 0.08 0.00 4.05252 -124.711 -4.05252 4.05252 0.89 0.000422718 0.000388545 0.0257611 0.0235774 30 1979 19 6.64007e+06 251160 526063. 1820.29 0.92 0.0772277 0.0680608 22546 126617 -1 1733 20 812 1183 75670 17017 2.96343 2.96343 -112.059 -2.96343 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0186859 0.0165918 107 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 4.33 vpr 64.86 MiB -1 -1 0.15 20648 1 0.03 -1 -1 33944 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66416 32 32 349 286 1 171 96 17 17 289 -1 unnamed_device 26.3 MiB 0.12 987 10827 2770 6959 1098 64.9 MiB 0.09 0.00 3.75038 -118.864 -3.75038 3.75038 0.88 0.000511331 0.00046486 0.0269971 0.0246087 26 2424 21 6.64007e+06 401856 477104. 1650.88 1.15 0.0981164 0.0866138 21682 110474 -1 2057 21 1289 2282 165102 37170 2.73977 2.73977 -108.013 -2.73977 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0243696 0.0216412 127 54 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.45 vpr 64.80 MiB -1 -1 0.17 20548 1 0.03 -1 -1 33704 -1 -1 32 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66356 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 26.3 MiB 0.28 927 10247 2394 7169 684 64.8 MiB 0.10 0.00 4.34696 -134.379 -4.34696 4.34696 0.90 0.000564886 0.000516479 0.0294089 0.0268335 32 2248 20 6.64007e+06 401856 554710. 1919.41 0.95 0.0995628 0.0877631 22834 132086 -1 1950 20 1313 1831 120295 29232 3.33903 3.33903 -128.306 -3.33903 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0253328 0.0224341 138 87 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.17 vpr 64.62 MiB -1 -1 0.15 20352 1 0.03 -1 -1 33412 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66168 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 26.1 MiB 0.16 835 12681 3362 7951 1368 64.6 MiB 0.09 0.00 3.3851 -106.107 -3.3851 3.3851 0.90 0.00045576 0.000417227 0.0343093 0.0312464 26 2103 18 6.64007e+06 213486 477104. 1650.88 0.97 0.0918568 0.0812154 21682 110474 -1 1822 21 1002 1582 127645 28263 2.76677 2.76677 -106.335 -2.76677 0 0 585099. 2024.56 0.26 0.06 0.11 -1 -1 0.26 0.0205871 0.0181994 104 54 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.24 vpr 64.82 MiB -1 -1 0.14 20192 1 0.03 -1 -1 33660 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 32 32 290 244 1 175 85 17 17 289 -1 unnamed_device 26.4 MiB 0.23 876 14407 4775 7452 2180 64.8 MiB 0.11 0.00 4.41384 -136.056 -4.41384 4.41384 0.92 0.000392533 0.000355633 0.0339565 0.030795 30 2137 20 6.64007e+06 263718 526063. 1820.29 0.94 0.0867564 0.0762115 22546 126617 -1 1844 19 1079 1610 102910 23440 3.19163 3.19163 -119.952 -3.19163 0 0 666494. 2306.21 0.28 0.05 0.13 -1 -1 0.28 0.0191075 0.0169245 117 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.24 vpr 64.90 MiB -1 -1 0.16 20708 1 0.03 -1 -1 33720 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66460 32 32 318 257 1 194 87 17 17 289 -1 unnamed_device 26.4 MiB 0.21 1070 9111 2300 6161 650 64.9 MiB 0.08 0.00 4.68344 -140.114 -4.68344 4.68344 0.89 0.000485914 0.000446096 0.0253387 0.0231762 32 2486 17 6.64007e+06 288834 554710. 1919.41 0.95 0.0853762 0.0754192 22834 132086 -1 2124 20 1344 1810 132646 30744 3.78882 3.78882 -132.22 -3.78882 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.022406 0.019948 130 27 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.20 vpr 64.84 MiB -1 -1 0.16 20528 1 0.03 -1 -1 33924 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66400 29 32 324 268 1 168 90 17 17 289 -1 unnamed_device 26.4 MiB 0.19 969 13959 4223 8147 1589 64.8 MiB 0.11 0.00 4.71146 -123.714 -4.71146 4.71146 0.88 0.000492873 0.000451125 0.03498 0.0319118 32 1988 20 6.64007e+06 364182 554710. 1919.41 0.92 0.0933108 0.0824136 22834 132086 -1 1799 14 777 1319 84447 19201 3.07743 3.07743 -106.617 -3.07743 0 0 701300. 2426.64 0.29 0.04 0.14 -1 -1 0.29 0.0177797 0.0159802 122 49 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.53 vpr 65.32 MiB -1 -1 0.16 20820 1 0.03 -1 -1 33612 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66892 32 32 393 312 1 213 88 17 17 289 -1 unnamed_device 26.8 MiB 0.28 1164 12568 3311 8092 1165 65.3 MiB 0.13 0.00 5.44678 -170.492 -5.44678 5.44678 0.90 0.000577259 0.000527477 0.0385692 0.0352443 28 3017 24 6.64007e+06 301392 500653. 1732.36 1.10 0.116091 0.102523 21970 115934 -1 2587 19 1713 2544 209427 46081 4.52369 4.52369 -158.217 -4.52369 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.0252171 0.0224224 154 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.99 vpr 64.49 MiB -1 -1 0.15 20352 1 0.03 -1 -1 33800 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66036 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 26.1 MiB 0.05 802 9356 2223 6300 833 64.5 MiB 0.07 0.00 3.65167 -102.287 -3.65167 3.65167 0.88 0.000384361 0.000344033 0.0229451 0.0210703 32 1738 16 6.64007e+06 226044 554710. 1919.41 0.90 0.0685178 0.0603631 22834 132086 -1 1550 18 717 1200 83961 19380 2.89017 2.89017 -97.9917 -2.89017 0 0 701300. 2426.64 0.31 0.04 0.13 -1 -1 0.31 0.0165378 0.0146879 96 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.42 vpr 65.07 MiB -1 -1 0.16 20624 1 0.03 -1 -1 33536 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66628 32 32 412 334 1 190 98 17 17 289 -1 unnamed_device 26.4 MiB 0.14 1014 15173 4325 8191 2657 65.1 MiB 0.13 0.00 4.24115 -141.749 -4.24115 4.24115 0.90 0.000557445 0.000507325 0.041753 0.0381099 32 2563 27 6.64007e+06 426972 554710. 1919.41 1.05 0.122162 0.10811 22834 132086 -1 2184 19 1571 2371 170912 38410 3.72983 3.72983 -138.118 -3.72983 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0256507 0.0228303 145 87 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.16 vpr 64.60 MiB -1 -1 0.15 20664 1 0.03 -1 -1 33840 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66148 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 26.3 MiB 0.23 854 11456 4252 5499 1705 64.6 MiB 0.09 0.00 3.5233 -125.693 -3.5233 3.5233 0.86 0.00047995 0.000438768 0.0347494 0.0317081 32 1976 23 6.64007e+06 213486 554710. 1919.41 0.93 0.0988327 0.0869689 22834 132086 -1 1747 19 1250 1820 139253 29466 2.95177 2.95177 -122.552 -2.95177 0 0 701300. 2426.64 0.28 0.06 0.12 -1 -1 0.28 0.0220966 0.019502 114 93 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.39 vpr 65.00 MiB -1 -1 0.15 20428 1 0.03 -1 -1 33640 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66556 32 32 360 293 1 179 96 17 17 289 -1 unnamed_device 26.5 MiB 0.13 993 15864 4238 9461 2165 65.0 MiB 0.12 0.00 4.43584 -134.986 -4.43584 4.43584 0.88 0.000448359 0.000409184 0.0374467 0.0341228 26 2557 24 6.64007e+06 401856 477104. 1650.88 1.20 0.11343 0.100213 21682 110474 -1 2081 15 926 1423 96949 22387 3.21363 3.21363 -116.31 -3.21363 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.0196742 0.0175592 131 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 4.80 vpr 64.91 MiB -1 -1 0.17 20580 1 0.03 -1 -1 34008 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66464 32 32 396 299 1 236 91 17 17 289 -1 unnamed_device 26.6 MiB 0.33 1309 17635 5897 9510 2228 64.9 MiB 0.18 0.00 6.39084 -191.431 -6.39084 6.39084 0.90 0.000534152 0.000488152 0.0532702 0.0485501 28 3357 19 6.64007e+06 339066 500653. 1732.36 1.23 0.13339 0.118662 21970 115934 -1 2809 20 1792 2549 197016 42830 5.36314 5.36314 -177.542 -5.36314 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.0274252 0.0244253 170 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.07 vpr 64.43 MiB -1 -1 0.15 20360 1 0.03 -1 -1 33648 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65976 30 32 224 207 1 137 80 17 17 289 -1 unnamed_device 26.1 MiB 0.17 697 8680 1945 6222 513 64.4 MiB 0.06 0.00 3.31307 -102.387 -3.31307 3.31307 0.89 0.000373143 0.000341638 0.0197998 0.0181044 28 1666 19 6.64007e+06 226044 500653. 1732.36 0.93 0.0669346 0.0588789 21970 115934 -1 1432 14 605 760 77617 18525 2.39717 2.39717 -94.9129 -2.39717 0 0 612192. 2118.31 0.27 0.04 0.11 -1 -1 0.27 0.0134126 0.0119902 87 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.00 vpr 64.55 MiB -1 -1 0.14 20216 1 0.03 -1 -1 33696 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66100 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 26.1 MiB 0.10 791 11864 3247 7177 1440 64.6 MiB 0.08 0.00 4.38638 -124.628 -4.38638 4.38638 0.90 0.000397452 0.00036378 0.031206 0.0283761 32 1680 15 6.64007e+06 200928 554710. 1919.41 0.89 0.0799447 0.0703516 22834 132086 -1 1479 22 920 1506 118207 25985 3.18337 3.18337 -111.753 -3.18337 0 0 701300. 2426.64 0.30 0.05 0.12 -1 -1 0.30 0.0200545 0.0176547 92 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.04 vpr 64.39 MiB -1 -1 0.14 20152 1 0.03 -1 -1 33872 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65940 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 25.8 MiB 0.08 807 14407 3847 9113 1447 64.4 MiB 0.11 0.00 3.46104 -112.673 -3.46104 3.46104 0.89 0.000445835 0.000404834 0.0364534 0.0332512 28 2067 23 6.64007e+06 263718 500653. 1732.36 0.92 0.0954167 0.0841169 21970 115934 -1 1884 21 1265 2247 152707 35374 2.75777 2.75777 -107.934 -2.75777 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0210398 0.0186262 115 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.98 vpr 64.13 MiB -1 -1 0.14 20120 1 0.03 -1 -1 33736 -1 -1 27 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65668 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 25.7 MiB 0.05 469 9234 3273 3848 2113 64.1 MiB 0.05 0.00 3.37029 -77.6943 -3.37029 3.37029 0.88 0.000297241 0.000269513 0.0180186 0.0163648 30 1496 25 6.64007e+06 339066 526063. 1820.29 0.96 0.0647251 0.0563744 22546 126617 -1 1146 17 610 1009 61629 15763 2.92917 2.92917 -76.4452 -2.92917 0 0 666494. 2306.21 0.30 0.04 0.12 -1 -1 0.30 0.0141731 0.0125867 89 19 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.22 vpr 65.00 MiB -1 -1 0.15 20592 1 0.03 -1 -1 33632 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66556 32 32 376 307 1 185 85 17 17 289 -1 unnamed_device 26.5 MiB 0.16 937 9571 2534 6630 407 65.0 MiB 0.09 0.00 4.28889 -129.632 -4.28889 4.28889 0.90 0.00054113 0.000492869 0.0299642 0.0273839 30 2291 20 6.64007e+06 263718 526063. 1820.29 0.97 0.099106 0.0874281 22546 126617 -1 1909 19 1147 2018 101105 24783 3.56243 3.56243 -125.04 -3.56243 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0233231 0.0207226 136 69 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.31 vpr 65.38 MiB -1 -1 0.18 20428 1 0.03 -1 -1 33752 -1 -1 35 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66944 31 32 409 331 1 191 98 17 17 289 -1 unnamed_device 26.7 MiB 0.18 1018 17423 5293 9473 2657 65.4 MiB 0.15 0.00 4.47881 -144.552 -4.47881 4.47881 0.88 0.000583811 0.000530037 0.0465214 0.0423737 32 2355 20 6.64007e+06 439530 554710. 1919.41 0.97 0.116505 0.102795 22834 132086 -1 1953 21 1310 2040 144978 31263 3.34137 3.34137 -129.49 -3.34137 0 0 701300. 2426.64 0.28 0.07 0.12 -1 -1 0.28 0.0261469 0.0230995 143 86 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.60 vpr 64.36 MiB -1 -1 0.15 20440 1 0.03 -1 -1 34032 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65900 32 32 354 285 1 202 94 17 17 289 -1 unnamed_device 26.0 MiB 0.38 962 17134 5020 8898 3216 64.4 MiB 0.13 0.00 5.27972 -153.369 -5.27972 5.27972 0.88 0.000513206 0.000467221 0.0428108 0.038965 32 2793 32 6.65987e+06 380340 554710. 1919.41 1.07 0.119854 0.105947 22834 132086 -1 2266 23 1794 2718 200976 48039 4.74857 4.74857 -148.259 -4.74857 0 0 701300. 2426.64 0.28 0.08 0.13 -1 -1 0.28 0.0267605 0.023777 152 47 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.47 vpr 64.67 MiB -1 -1 0.16 20496 1 0.03 -1 -1 33840 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66220 30 32 363 293 1 194 85 17 17 289 -1 unnamed_device 26.2 MiB 0.30 1040 12361 3404 6762 2195 64.7 MiB 0.11 0.00 4.63676 -143.523 -4.63676 4.63676 0.90 0.000519162 0.000473046 0.0377942 0.0345234 32 2391 26 6.65987e+06 291594 554710. 1919.41 1.01 0.109508 0.0966938 22834 132086 -1 2137 22 1808 2733 205071 46641 4.06963 4.06963 -142.287 -4.06963 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0252415 0.0223497 138 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.74 vpr 64.40 MiB -1 -1 0.15 20628 1 0.03 -1 -1 33924 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65948 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 25.9 MiB 0.11 1057 9111 2109 6460 542 64.4 MiB 0.08 0.00 4.05544 -117.725 -4.05544 4.05544 0.90 0.000455451 0.000407493 0.0236738 0.0216507 26 2909 26 6.65987e+06 291594 477104. 1650.88 1.60 0.0968882 0.0858659 21682 110474 -1 2304 21 1445 2010 175906 39220 3.52151 3.52151 -120.603 -3.52151 0 0 585099. 2024.56 0.24 0.07 0.11 -1 -1 0.24 0.0228223 0.0203394 126 26 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.22 vpr 64.55 MiB -1 -1 0.15 20360 1 0.03 -1 -1 33944 -1 -1 27 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66100 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 26.1 MiB 0.09 995 11593 2944 7290 1359 64.6 MiB 0.10 0.00 4.34155 -118.133 -4.34155 4.34155 0.89 0.000483718 0.000433673 0.0301451 0.0274365 32 2314 24 6.65987e+06 342306 554710. 1919.41 0.98 0.0920624 0.0809955 22834 132086 -1 2116 20 1335 2441 194474 43071 3.76777 3.76777 -117.12 -3.76777 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0220079 0.0195499 126 25 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 6.62 vpr 64.77 MiB -1 -1 0.15 20644 1 0.03 -1 -1 33764 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 26.3 MiB 0.11 1007 8919 2464 5628 827 64.8 MiB 0.09 0.00 4.36781 -127.596 -4.36781 4.36781 0.91 0.000502346 0.000459761 0.025551 0.0233173 34 2558 26 6.65987e+06 291594 585099. 2024.56 3.35 0.168716 0.146812 23122 138558 -1 2077 21 1475 2816 191677 44850 3.43891 3.43891 -123.186 -3.43891 0 0 742403. 2568.87 0.31 0.07 0.14 -1 -1 0.31 0.0228129 0.0201426 130 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.31 vpr 64.63 MiB -1 -1 0.17 20724 1 0.03 -1 -1 33916 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66184 32 32 366 295 1 189 97 17 17 289 -1 unnamed_device 26.0 MiB 0.15 1045 18079 5207 10774 2098 64.6 MiB 0.16 0.00 3.41904 -120.465 -3.41904 3.41904 0.91 0.000522474 0.000468502 0.0458245 0.0417646 30 2159 22 6.65987e+06 418374 526063. 1820.29 0.94 0.114674 0.101303 22546 126617 -1 1847 19 1124 1809 96785 23008 2.73771 2.73771 -111.043 -2.73771 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0232095 0.0206184 141 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.05 vpr 64.25 MiB -1 -1 0.15 20264 1 0.03 -1 -1 34032 -1 -1 18 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65792 27 32 259 221 1 130 77 17 17 289 -1 unnamed_device 25.8 MiB 0.17 496 10509 2613 7281 615 64.2 MiB 0.07 0.00 3.88752 -95.8054 -3.88752 3.88752 0.89 0.000362665 0.000327904 0.0262117 0.0238836 30 1262 24 6.65987e+06 228204 526063. 1820.29 0.88 0.0758851 0.0663742 22546 126617 -1 1045 21 680 1162 59254 15105 2.61651 2.61651 -82.9205 -2.61651 0 0 666494. 2306.21 0.29 0.04 0.11 -1 -1 0.29 0.0178613 0.015798 94 26 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 3.99 vpr 64.57 MiB -1 -1 0.15 20260 1 0.03 -1 -1 33740 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66124 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 26.2 MiB 0.05 903 9466 2130 6738 598 64.6 MiB 0.08 0.00 3.22661 -96.4595 -3.22661 3.22661 0.89 0.000429365 0.000388346 0.0211244 0.0192301 30 1887 19 6.65987e+06 393018 526063. 1820.29 0.90 0.0744419 0.0651676 22546 126617 -1 1660 17 761 1366 74007 17618 2.51331 2.51331 -91.8345 -2.51331 0 0 666494. 2306.21 0.28 0.04 0.13 -1 -1 0.28 0.0179516 0.0160126 115 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.21 vpr 64.70 MiB -1 -1 0.16 20612 1 0.03 -1 -1 33740 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66248 31 32 317 271 1 168 82 17 17 289 -1 unnamed_device 26.3 MiB 0.16 765 13788 3701 7917 2170 64.7 MiB 0.10 0.00 3.4209 -112.776 -3.4209 3.4209 0.90 0.000460016 0.000420772 0.0380082 0.0347321 32 2114 22 6.65987e+06 240882 554710. 1919.41 0.95 0.0990249 0.0876232 22834 132086 -1 1728 17 1058 1542 110918 26906 2.81811 2.81811 -106.836 -2.81811 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0196929 0.0176011 111 60 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.34 vpr 64.21 MiB -1 -1 0.15 20332 1 0.03 -1 -1 33572 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65748 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 25.6 MiB 0.27 876 13906 4295 8097 1514 64.2 MiB 0.11 0.00 3.72312 -122.883 -3.72312 3.72312 0.90 0.000453574 0.000414194 0.0380594 0.0347391 32 2018 21 6.65987e+06 215526 554710. 1919.41 0.96 0.0969898 0.0859123 22834 132086 -1 1742 20 1225 1923 138608 31820 2.76451 2.76451 -111.5 -2.76451 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0211088 0.0187818 113 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.19 vpr 64.52 MiB -1 -1 0.16 20632 1 0.03 -1 -1 33464 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66072 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 26.0 MiB 0.27 696 7008 1825 4747 436 64.5 MiB 0.06 0.00 4.00989 -109.174 -4.00989 4.00989 0.87 0.000454652 0.000414532 0.0209532 0.0191995 30 1525 18 6.65987e+06 215526 526063. 1820.29 0.92 0.0765163 0.0673374 22546 126617 -1 1365 17 574 884 51942 12389 2.68271 2.68271 -96.6812 -2.68271 0 0 666494. 2306.21 0.29 0.04 0.13 -1 -1 0.29 0.0184319 0.0164982 98 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.27 vpr 64.32 MiB -1 -1 0.14 20388 1 0.03 -1 -1 33548 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65864 32 32 276 237 1 166 81 17 17 289 -1 unnamed_device 26.0 MiB 0.25 721 6381 1297 4466 618 64.3 MiB 0.05 0.00 3.89466 -119.961 -3.89466 3.89466 0.91 0.000413054 0.000376173 0.0173536 0.0158444 32 2079 21 6.65987e+06 215526 554710. 1919.41 0.98 0.0744001 0.0652788 22834 132086 -1 1739 22 1249 1676 130638 32083 2.71505 2.71505 -108.626 -2.71505 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0210228 0.018583 106 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.42 vpr 64.66 MiB -1 -1 0.15 20512 1 0.03 -1 -1 33960 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66216 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 26.3 MiB 0.24 1056 16468 6105 8420 1943 64.7 MiB 0.15 0.00 4.37712 -140.294 -4.37712 4.37712 0.89 0.000519333 0.00047337 0.0462399 0.0421491 32 2620 22 6.65987e+06 304272 554710. 1919.41 1.01 0.115455 0.102327 22834 132086 -1 2184 21 1699 2549 188889 42181 3.20051 3.20051 -125.325 -3.20051 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0246912 0.0219578 139 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.30 vpr 64.91 MiB -1 -1 0.15 20420 1 0.03 -1 -1 33956 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66468 32 32 363 295 1 181 94 17 17 289 -1 unnamed_device 26.4 MiB 0.20 951 14365 3991 8802 1572 64.9 MiB 0.13 0.00 4.63803 -131.953 -4.63803 4.63803 0.89 0.000530724 0.000483331 0.0379137 0.0346529 28 2495 26 6.65987e+06 380340 500653. 1732.36 0.99 0.111182 0.0983072 21970 115934 -1 2246 23 1604 2513 195977 44240 3.75925 3.75925 -131.777 -3.75925 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0245653 0.0217243 133 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.99 vpr 64.37 MiB -1 -1 0.14 20532 1 0.03 -1 -1 33616 -1 -1 21 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65916 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 25.9 MiB 0.14 640 7914 1978 5337 599 64.4 MiB 0.06 0.00 3.16393 -88.5429 -3.16393 3.16393 0.91 0.000377546 0.000343413 0.0190271 0.0173631 28 1656 19 6.65987e+06 266238 500653. 1732.36 0.87 0.0653047 0.0572095 21970 115934 -1 1539 18 815 1389 99319 23560 2.82385 2.82385 -89.4422 -2.82385 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0161632 0.0142953 98 21 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.58 vpr 64.87 MiB -1 -1 0.15 20332 1 0.03 -1 -1 33824 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66424 32 32 370 297 1 183 85 17 17 289 -1 unnamed_device 26.3 MiB 0.43 1044 14035 4479 7571 1985 64.9 MiB 0.12 0.00 3.91387 -124.268 -3.91387 3.91387 0.89 0.000534047 0.000485047 0.0424307 0.0386412 32 2474 22 6.65987e+06 266238 554710. 1919.41 0.98 0.110813 0.0978306 22834 132086 -1 2152 20 1401 2504 176126 40482 3.25057 3.25057 -119.253 -3.25057 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0257132 0.0228624 132 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.57 vpr 64.75 MiB -1 -1 0.15 20600 1 0.03 -1 -1 34048 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66304 32 32 338 269 1 196 85 17 17 289 -1 unnamed_device 26.1 MiB 0.22 1069 12919 3925 6776 2218 64.8 MiB 0.11 0.00 4.31458 -139.268 -4.31458 4.31458 0.91 0.000512184 0.000460118 0.0378025 0.0344828 28 2604 25 6.65987e+06 266238 500653. 1732.36 1.21 0.109347 0.0966309 21970 115934 -1 2350 23 1620 2389 184014 41533 3.34617 3.34617 -124.198 -3.34617 0 0 612192. 2118.31 0.25 0.07 0.11 -1 -1 0.25 0.0252579 0.0223606 137 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.16 vpr 64.53 MiB -1 -1 0.15 20288 1 0.03 -1 -1 33696 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66080 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 26.2 MiB 0.22 695 9543 2025 7276 242 64.5 MiB 0.08 0.00 2.85064 -99.0938 -2.85064 2.85064 0.89 0.000472073 0.000430698 0.0239719 0.0218568 30 1712 20 6.65987e+06 367662 526063. 1820.29 0.92 0.0834493 0.0733254 22546 126617 -1 1441 15 777 1258 62201 16037 2.15051 2.15051 -92.0519 -2.15051 0 0 666494. 2306.21 0.28 0.04 0.12 -1 -1 0.28 0.0177321 0.0158835 110 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.81 vpr 63.86 MiB -1 -1 0.14 20248 1 0.03 -1 -1 33724 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65388 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 25.3 MiB 0.12 717 11976 4624 5984 1368 63.9 MiB 0.07 0.00 2.25907 -80.296 -2.25907 2.25907 0.88 0.000316513 0.000285981 0.0261614 0.0237841 26 1528 21 6.65987e+06 190170 477104. 1650.88 0.78 0.0692514 0.0607233 21682 110474 -1 1374 17 625 877 65267 15370 1.85605 1.85605 -80.6905 -1.85605 0 0 585099. 2024.56 0.25 0.04 0.10 -1 -1 0.25 0.0137921 0.0122085 81 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.43 vpr 64.33 MiB -1 -1 0.14 20328 1 0.03 -1 -1 34044 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65876 31 32 291 243 1 171 82 17 17 289 -1 unnamed_device 25.9 MiB 0.36 848 12008 3931 5654 2423 64.3 MiB 0.10 0.00 4.81535 -141.646 -4.81535 4.81535 0.90 0.000431036 0.000392403 0.0322118 0.0294667 32 2106 20 6.65987e+06 240882 554710. 1919.41 0.97 0.0898587 0.0795433 22834 132086 -1 1880 20 1338 1882 162953 37212 3.56017 3.56017 -127.18 -3.56017 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0207858 0.018518 127 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.14 vpr 64.68 MiB -1 -1 0.16 20448 1 0.03 -1 -1 33912 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66236 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 26.2 MiB 0.05 910 8087 1796 5473 818 64.7 MiB 0.07 0.00 4.13176 -127.852 -4.13176 4.13176 0.88 0.000523894 0.00047631 0.0207476 0.0189572 28 2425 21 6.65987e+06 393018 500653. 1732.36 1.04 0.0904762 0.079705 21970 115934 -1 2103 20 1357 2130 169483 37977 3.47643 3.47643 -125.531 -3.47643 0 0 612192. 2118.31 0.27 0.07 0.12 -1 -1 0.27 0.0241289 0.0214901 135 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.36 vpr 64.95 MiB -1 -1 0.16 20700 1 0.03 -1 -1 33848 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66508 32 32 372 300 1 204 87 17 17 289 -1 unnamed_device 26.4 MiB 0.24 1181 9303 2469 6067 767 64.9 MiB 0.09 0.00 4.32644 -135.633 -4.32644 4.32644 0.92 0.000554175 0.000505083 0.0281369 0.0256612 30 2631 22 6.65987e+06 291594 526063. 1820.29 1.00 0.0987668 0.0865017 22546 126617 -1 2153 23 1289 2094 130332 28525 3.28937 3.28937 -120.165 -3.28937 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.027021 0.0239546 142 59 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 6.00 vpr 63.65 MiB -1 -1 0.14 20000 1 0.03 -1 -1 34012 -1 -1 18 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65180 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 25.2 MiB 0.27 356 10636 3977 4816 1843 63.7 MiB 0.06 0.00 2.4343 -65.7683 -2.4343 2.4343 0.91 0.000287835 0.0002612 0.0220865 0.0201466 30 997 16 6.65987e+06 228204 526063. 1820.29 2.74 0.0951645 0.0826135 22546 126617 -1 741 16 447 580 26686 7955 2.19451 2.19451 -64.9642 -2.19451 0 0 666494. 2306.21 0.29 0.03 0.12 -1 -1 0.29 0.0120818 0.0107465 77 21 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.25 vpr 64.60 MiB -1 -1 0.14 20176 1 0.03 -1 -1 33736 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66148 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 26.2 MiB 0.10 978 9571 2391 5607 1573 64.6 MiB 0.08 0.00 4.9364 -125.004 -4.9364 4.9364 0.91 0.000443787 0.000404395 0.024645 0.0225166 32 2187 34 6.65987e+06 266238 554710. 1919.41 1.04 0.09275 0.0814807 22834 132086 -1 1928 19 1077 2024 137083 32628 3.70177 3.70177 -117.838 -3.70177 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0203388 0.0181079 118 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.90 vpr 63.62 MiB -1 -1 0.13 19824 1 0.03 -1 -1 33664 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65148 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 25.1 MiB 0.07 681 11200 3514 6177 1509 63.6 MiB 0.06 0.00 2.44727 -77.3331 -2.44727 2.44727 0.92 0.000300717 0.000274266 0.0218899 0.0199763 26 1411 15 6.65987e+06 177492 477104. 1650.88 0.86 0.0586952 0.0518058 21682 110474 -1 1284 15 508 576 57479 12943 1.93211 1.93211 -77.6137 -1.93211 0 0 585099. 2024.56 0.25 0.03 0.11 -1 -1 0.25 0.011732 0.0104938 79 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.20 vpr 64.54 MiB -1 -1 0.15 20264 1 0.03 -1 -1 33864 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66084 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 26.1 MiB 0.08 819 10531 2694 7192 645 64.5 MiB 0.09 0.00 4.34174 -119.601 -4.34174 4.34174 0.92 0.000448484 0.000408457 0.0253699 0.0231817 32 2048 22 6.65987e+06 380340 554710. 1919.41 0.96 0.0837697 0.0736803 22834 132086 -1 1821 18 1090 1817 127223 31545 3.42805 3.42805 -113.683 -3.42805 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0198513 0.0177402 123 21 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.40 vpr 64.66 MiB -1 -1 0.15 20144 1 0.03 -1 -1 34084 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66208 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 26.2 MiB 0.10 841 8087 1664 5850 573 64.7 MiB 0.07 0.00 3.58635 -102.903 -3.58635 3.58635 0.89 0.000459214 0.000420228 0.0194523 0.0177408 28 2267 21 6.65987e+06 393018 500653. 1732.36 1.29 0.0875723 0.0774438 21970 115934 -1 2021 19 1195 2217 144338 35484 2.86871 2.86871 -103.513 -2.86871 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0215595 0.0192402 128 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.23 vpr 64.53 MiB -1 -1 0.15 20544 1 0.03 -1 -1 33904 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66080 32 32 338 277 1 179 90 17 17 289 -1 unnamed_device 25.9 MiB 0.12 1047 15165 4413 8666 2086 64.5 MiB 0.12 0.00 4.3944 -130.237 -4.3944 4.3944 0.89 0.000447519 0.000408357 0.0376057 0.0341624 32 2492 25 6.65987e+06 329628 554710. 1919.41 0.98 0.101016 0.0888005 22834 132086 -1 2137 19 1363 2369 169359 39834 3.31885 3.31885 -121.57 -3.31885 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0226472 0.0201384 125 47 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.05 vpr 64.19 MiB -1 -1 0.13 20136 1 0.03 -1 -1 33552 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65732 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 25.7 MiB 0.05 780 6100 1392 4485 223 64.2 MiB 0.06 0.00 2.90053 -100.349 -2.90053 2.90053 0.91 0.000438569 0.000391864 0.0176367 0.0161768 32 1965 19 6.65987e+06 202848 554710. 1919.41 0.94 0.0721118 0.0634464 22834 132086 -1 1697 21 1091 1759 139787 33032 2.67165 2.67165 -101.934 -2.67165 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0205575 0.0181807 101 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.07 vpr 64.04 MiB -1 -1 0.15 20300 1 0.03 -1 -1 33572 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65576 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 25.6 MiB 0.09 630 9199 2049 6385 765 64.0 MiB 0.06 0.00 2.99867 -92.259 -2.99867 2.99867 0.90 0.000415388 0.000379384 0.022297 0.0204063 32 1813 20 6.65987e+06 291594 554710. 1919.41 0.93 0.0737735 0.0649683 22834 132086 -1 1461 21 1012 1572 113500 26995 2.90791 2.90791 -95.8313 -2.90791 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0191766 0.0169727 97 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.07 vpr 64.30 MiB -1 -1 0.15 20404 1 0.03 -1 -1 33332 -1 -1 23 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65848 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 25.8 MiB 0.04 575 14123 3775 8918 1430 64.3 MiB 0.09 0.00 3.31478 -91.535 -3.31478 3.31478 0.89 0.000407507 0.000372494 0.0332638 0.0302417 32 1755 23 6.65987e+06 291594 554710. 1919.41 0.94 0.0851337 0.0749232 22834 132086 -1 1402 21 1087 1837 130276 32833 2.67565 2.67565 -90.39 -2.67565 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0192401 0.0170005 98 27 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.19 vpr 64.30 MiB -1 -1 0.14 20224 1 0.03 -1 -1 33716 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65848 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 25.8 MiB 0.10 714 4763 885 3714 164 64.3 MiB 0.04 0.00 3.74323 -109.194 -3.74323 3.74323 0.91 0.000398567 0.000362658 0.0124216 0.0113878 30 1851 22 6.65987e+06 240882 526063. 1820.29 1.05 0.069857 0.0614172 22546 126617 -1 1562 20 1047 1749 98103 23919 2.62751 2.62751 -102.66 -2.62751 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0186633 0.0165819 110 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.09 vpr 64.52 MiB -1 -1 0.15 20444 1 0.03 -1 -1 33428 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66072 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 25.9 MiB 0.10 740 8130 1715 6151 264 64.5 MiB 0.07 0.00 3.32595 -98.9982 -3.32595 3.32595 0.89 0.000423031 0.000385436 0.0192537 0.0175834 32 1842 22 6.65987e+06 342306 554710. 1919.41 0.94 0.0742053 0.0650159 22834 132086 -1 1570 20 1022 1665 112884 27377 2.72051 2.72051 -99.0807 -2.72051 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0200849 0.017337 103 26 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.26 vpr 64.52 MiB -1 -1 0.17 20108 1 0.03 -1 -1 33632 -1 -1 25 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66064 29 32 291 250 1 153 86 17 17 289 -1 unnamed_device 26.2 MiB 0.24 874 10103 2597 6479 1027 64.5 MiB 0.08 0.00 3.27578 -104.365 -3.27578 3.27578 0.90 0.000444799 0.000406176 0.0253026 0.0231333 32 1837 16 6.65987e+06 316950 554710. 1919.41 0.92 0.0772704 0.0680926 22834 132086 -1 1643 19 1041 1556 109533 25783 2.40005 2.40005 -98.5579 -2.40005 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0194287 0.0172528 105 48 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.29 vpr 64.56 MiB -1 -1 0.15 20432 1 0.03 -1 -1 33700 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66108 32 32 367 282 1 201 101 17 17 289 -1 unnamed_device 26.0 MiB 0.27 1205 9971 2413 6766 792 64.6 MiB 0.09 0.00 4.35696 -124.779 -4.35696 4.35696 0.89 0.000574687 0.000529817 0.0259757 0.0237278 30 2470 20 6.65987e+06 469086 526063. 1820.29 0.91 0.0933104 0.0819482 22546 126617 -1 2143 21 987 1859 103605 23151 3.67963 3.67963 -120.47 -3.67963 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0257007 0.0229055 150 26 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.59 vpr 65.09 MiB -1 -1 0.16 20376 1 0.03 -1 -1 33932 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66652 32 32 391 311 1 192 100 17 17 289 -1 unnamed_device 26.7 MiB 0.27 1009 12860 3291 8398 1171 65.1 MiB 0.12 0.00 3.75432 -126.947 -3.75432 3.75432 0.90 0.000585413 0.000536026 0.0343654 0.0314004 26 2525 36 6.65987e+06 456408 477104. 1650.88 1.19 0.12982 0.115072 21682 110474 -1 2140 19 1553 2391 155367 36688 2.97837 2.97837 -123.475 -2.97837 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0254991 0.0227746 146 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 6.62 vpr 63.92 MiB -1 -1 0.16 20248 1 0.03 -1 -1 33764 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65456 31 32 279 237 1 161 80 17 17 289 -1 unnamed_device 25.6 MiB 0.27 731 8852 2206 5531 1115 63.9 MiB 0.08 0.00 4.21752 -119.384 -4.21752 4.21752 0.88 0.000436539 0.000397667 0.023835 0.0217745 28 2061 26 6.65987e+06 215526 500653. 1732.36 3.32 0.140315 0.122065 21970 115934 -1 1827 20 1090 1500 104657 25299 3.14271 3.14271 -113.213 -3.14271 0 0 612192. 2118.31 0.27 0.05 0.11 -1 -1 0.27 0.0198102 0.0175781 109 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.46 vpr 64.87 MiB -1 -1 0.16 20636 1 0.03 -1 -1 33864 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66428 31 32 370 297 1 186 87 17 17 289 -1 unnamed_device 26.3 MiB 0.26 838 9687 2447 6341 899 64.9 MiB 0.09 0.00 4.30117 -127.913 -4.30117 4.30117 0.89 0.000560435 0.00051195 0.0276231 0.0252748 28 2472 25 6.65987e+06 304272 500653. 1732.36 1.12 0.107815 0.0953649 21970 115934 -1 2020 21 1371 2445 169274 40806 3.06817 3.06817 -116.785 -3.06817 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0261627 0.0232785 137 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.62 vpr 64.66 MiB -1 -1 0.16 20348 1 0.03 -1 -1 33936 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66208 31 32 377 302 1 233 90 17 17 289 -1 unnamed_device 26.7 MiB 0.36 1313 13758 3781 7541 2436 64.7 MiB 0.13 0.00 5.77198 -171.36 -5.77198 5.77198 0.89 0.000549411 0.000502245 0.0401228 0.0366608 32 3132 21 6.65987e+06 342306 554710. 1919.41 1.04 0.113516 0.100579 22834 132086 -1 2551 22 2197 3203 211784 51203 4.70894 4.70894 -163.62 -4.70894 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0273722 0.0243277 170 60 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 6.18 vpr 65.10 MiB -1 -1 0.17 20512 1 0.03 -1 -1 33904 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 31 32 383 305 1 210 88 17 17 289 -1 unnamed_device 26.5 MiB 1.34 956 15103 4666 7688 2749 65.1 MiB 0.14 0.00 4.78629 -143.571 -4.78629 4.78629 0.90 0.000539324 0.000491425 0.0443975 0.0404311 32 2967 29 6.65987e+06 316950 554710. 1919.41 1.62 0.15017 0.132532 22834 132086 -1 2196 20 1644 2482 193336 43970 3.98337 3.98337 -138.614 -3.98337 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0259119 0.023074 162 60 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.63 vpr 64.68 MiB -1 -1 0.16 20736 1 0.03 -1 -1 33816 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66236 31 32 352 285 1 184 92 17 17 289 -1 unnamed_device 26.1 MiB 0.22 864 6095 1129 4612 354 64.7 MiB 0.07 0.00 4.47092 -130.094 -4.47092 4.47092 0.88 0.00050271 0.000458357 0.0181339 0.0166014 28 2546 32 6.65987e+06 367662 500653. 1732.36 1.36 0.0989388 0.0869937 21970 115934 -1 2020 21 1236 1940 117144 30484 3.23625 3.23625 -120.221 -3.23625 0 0 612192. 2118.31 0.27 0.06 0.12 -1 -1 0.27 0.0249655 0.0222158 133 51 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 6.21 vpr 64.60 MiB -1 -1 0.15 20256 1 0.03 -1 -1 33956 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66152 32 32 291 242 1 179 86 17 17 289 -1 unnamed_device 26.0 MiB 0.17 918 12371 3407 6390 2574 64.6 MiB 0.09 0.00 4.0455 -110.07 -4.0455 4.0455 0.89 0.000402307 0.000362768 0.0303272 0.0275857 28 2605 20 6.65987e+06 278916 500653. 1732.36 3.04 0.153001 0.13279 21970 115934 -1 2180 19 1317 1949 158383 36532 3.51625 3.51625 -115.535 -3.51625 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0200713 0.0178565 118 24 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 5.46 vpr 64.89 MiB -1 -1 0.16 20840 1 0.03 -1 -1 34000 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66448 32 32 457 356 1 223 102 17 17 289 -1 unnamed_device 26.8 MiB 0.29 1184 10336 2301 7496 539 64.9 MiB 0.11 0.00 5.18869 -164.242 -5.18869 5.18869 0.89 0.000645589 0.000590108 0.0305839 0.027916 26 3457 39 6.65987e+06 481764 477104. 1650.88 1.95 0.1363 0.119956 21682 110474 -1 2828 25 2036 3190 320818 89509 4.52437 4.52437 -157.469 -4.52437 0 0 585099. 2024.56 0.26 0.12 0.11 -1 -1 0.26 0.0359786 0.0320082 172 84 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.17 vpr 64.48 MiB -1 -1 0.15 20436 1 0.03 -1 -1 33688 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66024 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 26.0 MiB 0.12 660 11064 4480 5786 798 64.5 MiB 0.07 0.00 3.61218 -99.209 -3.61218 3.61218 0.90 0.000405597 0.000368173 0.0268362 0.0244644 32 1891 29 6.65987e+06 266238 554710. 1919.41 0.98 0.0847252 0.0743362 22834 132086 -1 1581 22 1137 1828 142459 35231 2.90705 2.90705 -99.775 -2.90705 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0200184 0.0176742 101 24 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.97 vpr 64.88 MiB -1 -1 0.17 20544 1 0.03 -1 -1 33540 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66440 31 32 337 267 1 205 86 17 17 289 -1 unnamed_device 26.3 MiB 0.24 1031 5756 1118 4418 220 64.9 MiB 0.07 0.00 5.03726 -146.602 -5.03726 5.03726 0.90 0.000523476 0.000479934 0.0182111 0.0167354 28 2854 46 6.65987e+06 291594 500653. 1732.36 1.65 0.10905 0.0956002 21970 115934 -1 2278 23 1392 1970 136323 32335 4.47728 4.47728 -144.286 -4.47728 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0259381 0.0230267 142 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.69 vpr 64.69 MiB -1 -1 0.16 20672 1 0.03 -1 -1 33768 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66244 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 26.1 MiB 0.15 975 10087 2133 7508 446 64.7 MiB 0.10 0.00 3.91407 -118.639 -3.91407 3.91407 0.89 0.000500736 0.000457444 0.0258652 0.0236547 28 2750 43 6.65987e+06 418374 500653. 1732.36 1.43 0.119147 0.105115 21970 115934 -1 2171 17 1119 1988 146167 33613 3.02611 3.02611 -112.426 -3.02611 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0219896 0.0196816 131 50 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.45 vpr 64.52 MiB -1 -1 0.14 20080 1 0.03 -1 -1 33760 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66072 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 26.1 MiB 0.10 889 13153 5130 6680 1343 64.5 MiB 0.11 0.00 4.00941 -121.212 -4.00941 4.00941 0.88 0.000443302 0.000403657 0.0331071 0.0302394 32 2460 38 6.65987e+06 304272 554710. 1919.41 1.20 0.108577 0.0960193 22834 132086 -1 1936 29 1457 2672 381718 164248 3.53945 3.53945 -118.826 -3.53945 0 0 701300. 2426.64 0.29 0.14 0.13 -1 -1 0.29 0.0295228 0.0261526 123 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.62 vpr 64.65 MiB -1 -1 0.16 20712 1 0.03 -1 -1 33968 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66204 32 32 353 287 1 198 86 17 17 289 -1 unnamed_device 26.4 MiB 0.37 1135 8213 1899 5522 792 64.7 MiB 0.08 0.00 4.53182 -135.539 -4.53182 4.53182 0.91 0.000533613 0.000487489 0.0253982 0.0232906 26 2769 24 6.65987e+06 278916 477104. 1650.88 1.19 0.103169 0.0914738 21682 110474 -1 2364 24 1365 1922 145357 33034 3.40711 3.40711 -122.846 -3.40711 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.027353 0.0242018 136 52 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.77 vpr 65.00 MiB -1 -1 0.15 20440 1 0.03 -1 -1 33904 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 32 32 361 291 1 185 95 17 17 289 -1 unnamed_device 26.2 MiB 0.41 1054 11759 3077 7738 944 65.0 MiB 0.10 0.00 3.70469 -122.012 -3.70469 3.70469 0.89 0.000528201 0.000481455 0.030574 0.0278965 26 2570 22 6.65987e+06 393018 477104. 1650.88 1.25 0.102021 0.0901423 21682 110474 -1 2258 22 1408 2255 183580 40530 3.17031 3.17031 -120.881 -3.17031 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0254234 0.0224809 132 52 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.63 vpr 64.78 MiB -1 -1 0.16 20756 1 0.03 -1 -1 33672 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 32 32 382 305 1 192 100 17 17 289 -1 unnamed_device 26.4 MiB 0.36 1080 10772 2746 7404 622 64.8 MiB 0.11 0.00 4.49669 -137.938 -4.49669 4.49669 0.89 0.000553612 0.000507191 0.028252 0.0257699 26 2751 23 6.65987e+06 456408 477104. 1650.88 1.18 0.103415 0.090858 21682 110474 -1 2424 22 1401 2036 158685 36651 3.54111 3.54111 -130.601 -3.54111 0 0 585099. 2024.56 0.26 0.07 0.10 -1 -1 0.26 0.0274359 0.024338 144 59 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.17 vpr 64.63 MiB -1 -1 0.15 20260 1 0.03 -1 -1 33400 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66184 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 26.2 MiB 0.10 888 10593 2829 7083 681 64.6 MiB 0.09 0.00 3.98836 -118.206 -3.98836 3.98836 0.92 0.000483479 0.000440596 0.0260979 0.0237732 32 2021 22 6.65987e+06 367662 554710. 1919.41 0.95 0.0852225 0.0749632 22834 132086 -1 1760 21 1196 1953 123809 29858 3.27785 3.27785 -112.011 -3.27785 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.022454 0.019875 122 21 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.19 vpr 64.59 MiB -1 -1 0.14 20224 1 0.03 -1 -1 33764 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66136 32 32 319 257 1 198 87 17 17 289 -1 unnamed_device 26.1 MiB 0.12 1026 6999 1560 5055 384 64.6 MiB 0.07 0.00 4.76946 -136.875 -4.76946 4.76946 0.89 0.00043454 0.000394214 0.0192264 0.0175371 32 2525 24 6.65987e+06 291594 554710. 1919.41 0.95 0.0809449 0.0708995 22834 132086 -1 2194 21 1650 2343 161923 39181 3.74371 3.74371 -130.276 -3.74371 0 0 701300. 2426.64 0.30 0.06 0.12 -1 -1 0.30 0.0221563 0.0196403 133 26 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.62 vpr 65.22 MiB -1 -1 0.17 20436 1 0.03 -1 -1 33800 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66784 31 32 373 299 1 202 86 17 17 289 -1 unnamed_device 26.7 MiB 0.31 1149 15584 5177 7856 2551 65.2 MiB 0.15 0.00 4.99307 -147.134 -4.99307 4.99307 0.90 0.000527727 0.000480422 0.0467253 0.0425986 32 3017 27 6.65987e+06 291594 554710. 1919.41 1.08 0.122405 0.108323 22834 132086 -1 2440 19 1556 2391 183308 41041 3.88823 3.88823 -134.888 -3.88823 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0241244 0.0215369 146 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.39 vpr 64.91 MiB -1 -1 0.17 20620 1 0.03 -1 -1 33920 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66468 32 32 387 315 1 189 85 17 17 289 -1 unnamed_device 26.3 MiB 0.17 1089 11245 3394 6770 1081 64.9 MiB 0.11 0.00 3.85398 -125.73 -3.85398 3.85398 0.90 0.000560753 0.000512203 0.0364143 0.0333339 32 2804 22 6.65987e+06 266238 554710. 1919.41 1.03 0.111337 0.09849 22834 132086 -1 2365 24 1758 3197 231748 53117 3.42705 3.42705 -123.815 -3.42705 0 0 701300. 2426.64 0.30 0.09 0.13 -1 -1 0.30 0.0298583 0.0265108 135 74 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 6.04 vpr 64.14 MiB -1 -1 0.15 20428 1 0.03 -1 -1 33656 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65676 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 25.7 MiB 0.09 769 15493 4232 9363 1898 64.1 MiB 0.11 0.00 3.34618 -101.012 -3.34618 3.34618 0.91 0.000389925 0.000354505 0.0335736 0.0306351 30 1787 28 6.65987e+06 304272 526063. 1820.29 2.90 0.144643 0.126217 22546 126617 -1 1499 16 624 950 65432 14963 2.40711 2.40711 -90.0172 -2.40711 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0156825 0.0140277 97 20 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 6.18 vpr 64.82 MiB -1 -1 0.16 20396 1 0.03 -1 -1 33484 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66376 32 32 341 285 1 187 84 17 17 289 -1 unnamed_device 26.3 MiB 0.14 904 12345 3635 7531 1179 64.8 MiB 0.11 0.00 3.9733 -136.305 -3.9733 3.9733 0.89 0.000490244 0.000446661 0.0352752 0.0321901 28 2501 21 6.65987e+06 253560 500653. 1732.36 2.96 0.173278 0.151262 21970 115934 -1 2099 21 1493 2105 171768 38779 3.41097 3.41097 -132.539 -3.41097 0 0 612192. 2118.31 0.25 0.07 0.11 -1 -1 0.25 0.0219487 0.019375 125 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.49 vpr 64.76 MiB -1 -1 0.16 20352 1 0.03 -1 -1 33844 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66312 32 32 387 293 1 234 92 17 17 289 -1 unnamed_device 26.7 MiB 0.18 1234 10649 2580 7238 831 64.8 MiB 0.12 0.00 5.507 -161.149 -5.507 5.507 0.89 0.000599102 0.000547675 0.0328731 0.0301295 32 3101 24 6.65987e+06 354984 554710. 1919.41 1.10 0.110833 0.0980186 22834 132086 -1 2718 20 2087 3366 237751 56336 4.94897 4.94897 -152.371 -4.94897 0 0 701300. 2426.64 0.30 0.09 0.13 -1 -1 0.30 0.0272396 0.0243592 168 28 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.27 vpr 64.82 MiB -1 -1 0.16 20580 1 0.03 -1 -1 33604 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66380 32 32 340 270 1 181 95 17 17 289 -1 unnamed_device 26.3 MiB 0.26 868 6791 1309 5265 217 64.8 MiB 0.06 0.00 4.3812 -128.187 -4.3812 4.3812 0.92 0.000518168 0.000471447 0.0185 0.0169132 30 2033 20 6.65987e+06 393018 526063. 1820.29 0.93 0.0826533 0.0725574 22546 126617 -1 1762 20 952 1627 85645 20883 2.86291 2.86291 -109.937 -2.86291 0 0 666494. 2306.21 0.27 0.05 0.12 -1 -1 0.27 0.0224426 0.019927 133 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 5.68 vpr 64.26 MiB -1 -1 0.14 20296 1 0.03 -1 -1 33636 -1 -1 26 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65800 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 25.7 MiB 0.05 691 10228 2870 6479 879 64.3 MiB 0.09 0.00 3.33678 -100.638 -3.33678 3.33678 0.90 0.000432615 0.000393507 0.0246924 0.0226163 26 1949 23 6.65987e+06 329628 477104. 1650.88 2.60 0.142358 0.124129 21682 110474 -1 1713 22 1236 2017 169711 40616 2.71771 2.71771 -101.15 -2.71771 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0212924 0.0187952 104 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.95 vpr 64.87 MiB -1 -1 0.16 20876 1 0.03 -1 -1 34008 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66424 32 32 431 332 1 235 89 17 17 289 -1 unnamed_device 26.7 MiB 0.36 1262 6623 1301 4680 642 64.9 MiB 0.08 0.00 6.41663 -184.149 -6.41663 6.41663 0.91 0.000567608 0.000518878 0.023864 0.0218601 30 3204 25 6.65987e+06 316950 526063. 1820.29 1.43 0.112521 0.0993179 22546 126617 -1 2549 21 1554 2249 144381 31759 4.98034 4.98034 -166.106 -4.98034 0 0 666494. 2306.21 0.27 0.07 0.12 -1 -1 0.27 0.0289696 0.0258286 168 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.40 vpr 64.38 MiB -1 -1 0.16 20456 1 0.03 -1 -1 33384 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65924 32 32 336 268 1 174 96 17 17 289 -1 unnamed_device 25.9 MiB 0.28 921 16959 4303 11211 1445 64.4 MiB 0.14 0.00 4.44175 -133.512 -4.44175 4.44175 0.90 0.000495156 0.000452781 0.0405047 0.0369281 26 2186 24 6.65987e+06 405696 477104. 1650.88 1.02 0.111172 0.098347 21682 110474 -1 1832 22 1113 1842 133668 30945 3.44211 3.44211 -120.204 -3.44211 0 0 585099. 2024.56 0.26 0.06 0.11 -1 -1 0.26 0.0247484 0.0219269 130 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.97 vpr 64.01 MiB -1 -1 0.14 20140 1 0.03 -1 -1 33508 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65544 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 25.6 MiB 0.04 793 12375 3802 6579 1994 64.0 MiB 0.09 0.00 3.21869 -96.935 -3.21869 3.21869 0.90 0.000371409 0.000340189 0.0268186 0.0245325 30 1766 15 6.65987e+06 291594 526063. 1820.29 0.93 0.0735292 0.0650973 22546 126617 -1 1544 16 659 1107 76228 16685 2.40211 2.40211 -91.256 -2.40211 0 0 666494. 2306.21 0.28 0.04 0.12 -1 -1 0.28 0.0152761 0.013632 100 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 6.30 vpr 64.64 MiB -1 -1 0.16 20564 1 0.03 -1 -1 33904 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66192 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 26.4 MiB 0.13 997 10448 2232 7093 1123 64.6 MiB 0.08 0.00 5.44618 -130.736 -5.44618 5.44618 0.87 0.000486278 0.000447008 0.0245751 0.0223083 30 2483 23 6.65987e+06 431052 526063. 1820.29 3.14 0.174467 0.151459 22546 126617 -1 1969 22 1092 2125 114624 28201 4.42602 4.42602 -126.911 -4.42602 0 0 666494. 2306.21 0.27 0.06 0.13 -1 -1 0.27 0.0235252 0.0208675 139 26 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.11 vpr 64.27 MiB -1 -1 0.14 20244 1 0.03 -1 -1 34008 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65812 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 25.8 MiB 0.09 805 9600 2394 6142 1064 64.3 MiB 0.08 0.00 3.39504 -104.25 -3.39504 3.39504 0.88 0.000396485 0.000359623 0.0232452 0.0212319 30 1773 21 6.65987e+06 253560 526063. 1820.29 1.01 0.0760957 0.067057 22546 126617 -1 1584 19 861 1470 82710 19276 2.61951 2.61951 -101.603 -2.61951 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0180862 0.0161127 104 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.26 vpr 64.56 MiB -1 -1 0.15 20216 1 0.03 -1 -1 33696 -1 -1 33 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66112 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 26.0 MiB 0.15 870 16295 4607 9720 1968 64.6 MiB 0.11 0.00 3.88231 -108.178 -3.88231 3.88231 0.89 0.000425114 0.000388714 0.0336782 0.0307451 26 1911 26 6.65987e+06 418374 477104. 1650.88 1.10 0.0972791 0.086103 21682 110474 -1 1673 16 662 1152 76214 17335 2.61725 2.61725 -99.6073 -2.61725 0 0 585099. 2024.56 0.25 0.04 0.11 -1 -1 0.25 0.0169821 0.0151888 105 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 6.49 vpr 65.14 MiB -1 -1 0.17 20556 1 0.03 -1 -1 33604 -1 -1 24 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 29 32 355 287 1 198 85 17 17 289 -1 unnamed_device 26.6 MiB 0.27 1186 15151 5050 8219 1882 65.1 MiB 0.14 0.00 4.37661 -129.138 -4.37661 4.37661 0.87 0.000513222 0.000466665 0.0438425 0.0400178 28 2757 20 6.65987e+06 304272 500653. 1732.36 3.12 0.180295 0.157349 21970 115934 -1 2326 20 1558 2342 169332 38302 3.29317 3.29317 -116.352 -3.29317 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0241406 0.0214446 138 56 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.22 vpr 64.90 MiB -1 -1 0.15 20640 1 0.03 -1 -1 33712 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66456 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 26.4 MiB 0.17 884 5548 1103 3958 487 64.9 MiB 0.06 0.00 4.37207 -129.772 -4.37207 4.37207 0.90 0.000521368 0.000475022 0.0174358 0.0159769 32 2141 21 6.65987e+06 304272 554710. 1919.41 0.94 0.0836828 0.0731978 22834 132086 -1 1854 20 1282 1951 132992 31888 3.70757 3.70757 -130.332 -3.70757 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0240226 0.021298 130 51 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.35 vpr 64.73 MiB -1 -1 0.16 20516 1 0.03 -1 -1 33860 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66284 32 32 353 285 1 181 91 17 17 289 -1 unnamed_device 26.2 MiB 0.21 1040 15391 4199 8930 2262 64.7 MiB 0.14 0.00 4.54089 -136.701 -4.54089 4.54089 0.90 0.000518634 0.000473431 0.0419063 0.0382912 32 2316 24 6.65987e+06 342306 554710. 1919.41 0.98 0.111378 0.0986247 22834 132086 -1 2093 18 1106 1900 131883 30619 3.67131 3.67131 -128.131 -3.67131 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0226257 0.0201913 132 48 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.19 vpr 64.54 MiB -1 -1 0.12 20072 1 0.03 -1 -1 33792 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66092 32 32 276 237 1 159 80 17 17 289 -1 unnamed_device 26.2 MiB 0.27 821 7476 1923 4958 595 64.5 MiB 0.07 0.00 4.66411 -131.468 -4.66411 4.66411 0.90 0.000444719 0.000407156 0.0206189 0.0189039 30 1841 19 6.65987e+06 202848 526063. 1820.29 0.88 0.0716597 0.0629998 22546 126617 -1 1650 18 685 936 56545 13237 3.08625 3.08625 -110.111 -3.08625 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.018296 0.0162905 103 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.19 vpr 64.28 MiB -1 -1 0.16 20636 1 0.03 -1 -1 33732 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65824 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 25.9 MiB 0.22 768 7736 1918 4969 849 64.3 MiB 0.08 0.00 3.69598 -115.422 -3.69598 3.69598 0.90 0.000456646 0.00041652 0.0226453 0.0207308 30 1988 17 6.65987e+06 240882 526063. 1820.29 0.92 0.0793065 0.0697842 22546 126617 -1 1656 20 991 1482 85033 20146 2.94771 2.94771 -106.549 -2.94771 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.021421 0.0190272 111 60 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.67 vpr 64.10 MiB -1 -1 0.16 20324 1 0.03 -1 -1 33720 -1 -1 33 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65640 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 25.7 MiB 0.22 822 9815 2052 6788 975 64.1 MiB 0.08 0.00 3.34001 -95.394 -3.34001 3.34001 0.88 0.000462003 0.00042156 0.0242751 0.0221528 28 2190 24 6.65987e+06 418374 500653. 1732.36 1.40 0.0925367 0.0814287 21970 115934 -1 1852 15 1072 1834 124485 30633 2.76159 2.76159 -95.2544 -2.76159 0 0 612192. 2118.31 0.28 0.05 0.12 -1 -1 0.28 0.0181479 0.0161788 123 52 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.69 vpr 64.36 MiB -1 -1 0.16 20512 1 0.03 -1 -1 34080 -1 -1 35 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65900 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 26.0 MiB 0.13 864 12623 3003 8699 921 64.4 MiB 0.08 0.00 4.17801 -101.983 -4.17801 4.17801 0.90 0.000385859 0.000346511 0.0260256 0.0237816 26 2268 22 6.65987e+06 443730 477104. 1650.88 1.54 0.0886628 0.0782281 21682 110474 -1 1937 20 1051 2141 185449 39228 3.47031 3.47031 -104.035 -3.47031 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0199441 0.0176419 115 20 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.31 vpr 64.36 MiB -1 -1 0.15 20128 1 0.03 -1 -1 33476 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65900 30 32 317 269 1 152 79 17 17 289 -1 unnamed_device 25.8 MiB 0.24 739 8360 2842 3913 1605 64.4 MiB 0.07 0.00 4.07397 -113.958 -4.07397 4.07397 0.89 0.000459131 0.000419515 0.0252193 0.0231006 32 2126 22 6.65987e+06 215526 554710. 1919.41 0.99 0.086649 0.0763908 22834 132086 -1 1845 20 1326 2233 191342 43480 3.06691 3.06691 -111.388 -3.06691 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0209474 0.0184727 108 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.36 vpr 64.62 MiB -1 -1 0.15 20788 1 0.03 -1 -1 33692 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66176 32 32 335 282 1 184 84 17 17 289 -1 unnamed_device 26.2 MiB 0.17 854 4110 634 3368 108 64.6 MiB 0.04 0.00 3.78604 -125.597 -3.78604 3.78604 0.84 0.00042341 0.000387235 0.0115685 0.0106187 26 2393 26 6.65987e+06 253560 477104. 1650.88 1.33 0.0774239 0.0674809 21682 110474 -1 1995 20 1275 1873 148398 35276 3.03351 3.03351 -122.493 -3.03351 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0222654 0.019744 120 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.15 vpr 64.33 MiB -1 -1 0.15 20264 1 0.03 -1 -1 33776 -1 -1 32 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65876 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 25.8 MiB 0.09 847 5711 1070 3973 668 64.3 MiB 0.05 0.00 4.49904 -123.598 -4.49904 4.49904 0.88 0.000445687 0.000405707 0.0140767 0.0128703 30 2337 22 6.65987e+06 405696 526063. 1820.29 1.06 0.0762809 0.0670238 22546 126617 -1 1888 24 1168 2212 131068 32744 3.69257 3.69257 -118.678 -3.69257 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0234009 0.0206924 127 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.47 vpr 65.13 MiB -1 -1 0.16 20484 1 0.03 -1 -1 33740 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 32 32 350 275 1 209 86 17 17 289 -1 unnamed_device 26.6 MiB 0.28 1096 14639 4278 7910 2451 65.1 MiB 0.14 0.00 5.13815 -159.632 -5.13815 5.13815 0.89 0.000514822 0.000470594 0.0426908 0.0389925 32 3087 25 6.65987e+06 278916 554710. 1919.41 1.03 0.11727 0.10407 22834 132086 -1 2460 21 1795 2659 205239 47320 4.22151 4.22151 -146.209 -4.22151 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0257404 0.0229204 144 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.60 vpr 64.86 MiB -1 -1 0.16 20428 1 0.03 -1 -1 33880 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66420 32 32 385 308 1 185 96 17 17 289 -1 unnamed_device 26.6 MiB 0.33 1097 14331 4044 8499 1788 64.9 MiB 0.13 0.00 4.9662 -142.984 -4.9662 4.9662 0.90 0.000553247 0.000497872 0.0388271 0.035368 28 2572 22 6.65987e+06 405696 500653. 1732.36 1.14 0.116643 0.103298 21970 115934 -1 2172 17 1073 1895 133148 29668 3.78603 3.78603 -131.107 -3.78603 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0228357 0.0204145 142 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 6.48 vpr 65.05 MiB -1 -1 0.15 20452 1 0.03 -1 -1 34040 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66612 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 26.7 MiB 0.26 1087 19136 6054 10420 2662 65.1 MiB 0.15 0.00 4.23232 -136.463 -4.23232 4.23232 0.87 0.000492589 0.00044499 0.0445248 0.0403682 28 2899 28 6.65987e+06 469086 500653. 1732.36 3.16 0.198867 0.173296 21970 115934 -1 2417 25 1675 2949 230320 50849 3.47891 3.47891 -134.175 -3.47891 0 0 612192. 2118.31 0.26 0.08 0.10 -1 -1 0.26 0.0283216 0.0249 140 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.30 vpr 64.31 MiB -1 -1 0.16 20340 1 0.03 -1 -1 33952 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65856 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 25.8 MiB 0.23 753 14081 4985 6810 2286 64.3 MiB 0.10 0.00 3.61906 -107.365 -3.61906 3.61906 0.88 0.000368692 0.000336239 0.0337314 0.0307378 32 1967 21 6.65987e+06 240882 554710. 1919.41 0.97 0.0874367 0.0772454 22834 132086 -1 1733 22 1136 1898 162835 35973 2.77265 2.77265 -98.3726 -2.77265 0 0 701300. 2426.64 0.31 0.07 0.14 -1 -1 0.31 0.021309 0.0188706 105 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.41 vpr 65.11 MiB -1 -1 0.16 20540 1 0.03 -1 -1 33632 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66672 30 32 375 299 1 187 83 17 17 289 -1 unnamed_device 26.4 MiB 0.25 993 13583 3880 7603 2100 65.1 MiB 0.12 0.00 4.75724 -141.541 -4.75724 4.75724 0.92 0.00054277 0.000495666 0.0435105 0.039776 32 2250 20 6.65987e+06 266238 554710. 1919.41 0.99 0.111706 0.0989843 22834 132086 -1 2011 20 1613 2556 171997 40019 3.57237 3.57237 -133.43 -3.57237 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0244834 0.0216877 137 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.55 vpr 64.64 MiB -1 -1 0.16 20520 1 0.03 -1 -1 33756 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66188 32 32 340 270 1 200 88 17 17 289 -1 unnamed_device 26.1 MiB 0.30 984 6328 1212 4906 210 64.6 MiB 0.06 0.00 5.08874 -146.537 -5.08874 5.08874 0.88 0.000513575 0.000467543 0.0181569 0.0165713 30 2772 46 6.65987e+06 304272 526063. 1820.29 1.19 0.106453 0.0931788 22546 126617 -1 2211 20 1228 1907 136054 30889 3.73165 3.73165 -133.157 -3.73165 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0234701 0.020982 138 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.56 vpr 64.82 MiB -1 -1 0.16 20436 1 0.03 -1 -1 33668 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 31 32 340 275 1 195 91 17 17 289 -1 unnamed_device 26.5 MiB 0.38 1115 15391 3929 9868 1594 64.8 MiB 0.13 0.00 5.2191 -153.261 -5.2191 5.2191 0.90 0.000508089 0.00046398 0.0407386 0.0372349 32 2703 22 6.65987e+06 354984 554710. 1919.41 0.99 0.10849 0.0960822 22834 132086 -1 2398 21 1413 2244 171506 39576 4.49237 4.49237 -149.522 -4.49237 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0248821 0.0221898 146 43 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 5.14 vpr 64.38 MiB -1 -1 0.17 20492 1 0.03 -1 -1 33928 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65928 30 32 377 310 1 177 93 17 17 289 -1 unnamed_device 25.8 MiB 1.07 822 9963 2514 6047 1402 64.4 MiB 0.10 0.00 4.35758 -125.649 -4.35758 4.35758 0.90 0.000533471 0.000487221 0.0285301 0.0261152 30 1914 20 6.65987e+06 393018 526063. 1820.29 0.96 0.0957805 0.0844227 22546 126617 -1 1609 18 981 1672 88324 22522 2.81791 2.81791 -106.668 -2.81791 0 0 666494. 2306.21 0.27 0.05 0.12 -1 -1 0.27 0.022143 0.0197663 133 78 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.31 vpr 64.74 MiB -1 -1 0.17 20540 1 0.03 -1 -1 33864 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66296 32 32 365 294 1 185 84 17 17 289 -1 unnamed_device 26.3 MiB 0.20 1042 15822 5317 8613 1892 64.7 MiB 0.15 0.00 4.76549 -137.992 -4.76549 4.76549 0.89 0.000531596 0.000483537 0.0488004 0.0444594 30 2491 20 6.65987e+06 253560 526063. 1820.29 1.01 0.113819 0.100551 22546 126617 -1 2119 19 1152 2004 130735 29222 3.60711 3.60711 -129.356 -3.60711 0 0 666494. 2306.21 0.26 0.05 0.11 -1 -1 0.26 0.0208829 0.0186015 133 54 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 5.02 vpr 64.74 MiB -1 -1 0.16 20464 1 0.03 -1 -1 33652 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66296 29 32 378 310 1 177 90 17 17 289 -1 unnamed_device 26.0 MiB 0.39 913 8934 2134 6274 526 64.7 MiB 0.08 0.00 4.51892 -126.294 -4.51892 4.51892 0.87 0.000524397 0.000476082 0.0260688 0.0237759 26 2602 20 6.65987e+06 367662 477104. 1650.88 1.58 0.101128 0.0892161 21682 110474 -1 2145 20 1380 2178 169956 39900 3.37797 3.37797 -123.439 -3.37797 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0251311 0.0223296 131 79 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.93 vpr 64.09 MiB -1 -1 0.13 20248 1 0.03 -1 -1 34104 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65624 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 25.7 MiB 0.09 724 12416 3530 7132 1754 64.1 MiB 0.08 0.00 3.74649 -112.139 -3.74649 3.74649 0.88 0.000386134 0.00035357 0.0296708 0.0269823 32 1726 22 6.65987e+06 190170 554710. 1919.41 0.89 0.0771166 0.0679691 22834 132086 -1 1519 18 897 1350 107597 25022 2.71465 2.71465 -102.628 -2.71465 0 0 701300. 2426.64 0.29 0.04 0.12 -1 -1 0.29 0.0160529 0.0142893 96 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.45 vpr 64.70 MiB -1 -1 0.17 20416 1 0.03 -1 -1 33420 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66256 32 32 373 302 1 176 94 17 17 289 -1 unnamed_device 26.2 MiB 0.28 989 15430 4612 8155 2663 64.7 MiB 0.13 0.00 4.41154 -133.367 -4.41154 4.41154 0.88 0.00052096 0.000473609 0.0412009 0.0375574 32 2429 22 6.65987e+06 380340 554710. 1919.41 1.01 0.109069 0.0964279 22834 132086 -1 2063 21 1487 2519 184259 42773 3.84791 3.84791 -129.508 -3.84791 0 0 701300. 2426.64 0.31 0.07 0.13 -1 -1 0.31 0.0264848 0.0235727 130 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.49 vpr 64.86 MiB -1 -1 0.16 20464 1 0.03 -1 -1 33904 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66412 32 32 397 314 1 196 84 17 17 289 -1 unnamed_device 26.5 MiB 0.29 902 8685 2007 6399 279 64.9 MiB 0.10 0.00 4.76517 -143.598 -4.76517 4.76517 0.89 0.000571076 0.000521455 0.0300493 0.0274757 32 2497 24 6.65987e+06 253560 554710. 1919.41 1.04 0.107497 0.0949249 22834 132086 -1 2183 21 1883 2973 209659 50687 3.93397 3.93397 -140.255 -3.93397 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0284611 0.0253925 147 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.86 vpr 64.17 MiB -1 -1 0.14 20244 1 0.03 -1 -1 33928 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65712 32 32 269 231 1 170 83 17 17 289 -1 unnamed_device 25.8 MiB 0.22 946 12143 3182 7420 1541 64.2 MiB 0.09 0.00 4.15372 -120.605 -4.15372 4.15372 0.90 0.000427065 0.000390109 0.0306759 0.0280289 26 2395 43 6.65987e+06 240882 477104. 1650.88 1.60 0.110401 0.0976876 21682 110474 -1 2067 28 1364 1766 225074 80275 3.06105 3.06105 -114.874 -3.06105 0 0 585099. 2024.56 0.25 0.09 0.11 -1 -1 0.25 0.0248296 0.0219021 111 26 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.03 vpr 64.37 MiB -1 -1 0.13 20316 1 0.03 -1 -1 33792 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65916 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 25.8 MiB 0.10 732 8685 2467 5468 750 64.4 MiB 0.07 0.00 3.75938 -108.757 -3.75938 3.75938 0.89 0.000400444 0.000366713 0.0209799 0.0191907 30 1655 19 6.65987e+06 266238 526063. 1820.29 0.91 0.0695418 0.0611845 22546 126617 -1 1544 21 996 1668 101042 23801 2.51311 2.51311 -96.4545 -2.51311 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0190289 0.0168562 106 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.56 vpr 64.89 MiB -1 -1 0.17 20848 1 0.03 -1 -1 33792 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66448 32 32 348 274 1 211 89 17 17 289 -1 unnamed_device 26.3 MiB 0.15 1015 15533 4784 8284 2465 64.9 MiB 0.14 0.00 4.92983 -152.714 -4.92983 4.92983 0.89 0.000494647 0.000449561 0.0433768 0.0396963 28 3244 30 6.65987e+06 316950 500653. 1732.36 1.29 0.121748 0.107739 21970 115934 -1 2307 22 1749 2275 179013 42202 4.61143 4.61143 -159.431 -4.61143 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0249671 0.0221027 144 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.90 vpr 64.67 MiB -1 -1 0.15 20524 1 0.03 -1 -1 33936 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66220 32 32 356 289 1 202 92 17 17 289 -1 unnamed_device 26.3 MiB 0.44 1191 12305 3278 8039 988 64.7 MiB 0.11 0.00 4.93544 -150.743 -4.93544 4.93544 0.88 0.000521208 0.00047551 0.03329 0.030404 26 3110 25 6.65987e+06 354984 477104. 1650.88 1.34 0.109232 0.096318 21682 110474 -1 2621 25 1874 2959 275210 79170 4.19577 4.19577 -144.583 -4.19577 0 0 585099. 2024.56 0.26 0.10 0.11 -1 -1 0.26 0.0288836 0.0255347 151 53 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 9.12 vpr 64.90 MiB -1 -1 0.14 20416 1 0.03 -1 -1 33752 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66456 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 26.5 MiB 0.06 1117 11004 2566 7834 604 64.9 MiB 0.11 0.00 5.28255 -141.369 -5.28255 5.28255 0.90 0.000549976 0.000503935 0.0282797 0.025824 26 3370 49 6.65987e+06 456408 477104. 1650.88 5.96 0.21369 0.187565 21682 110474 -1 2670 20 1658 2923 254838 56451 4.40303 4.40303 -143.411 -4.40303 0 0 585099. 2024.56 0.25 0.09 0.11 -1 -1 0.25 0.0263358 0.0235489 153 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.13 vpr 64.22 MiB -1 -1 0.16 20192 1 0.03 -1 -1 33884 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65764 30 32 316 264 1 162 93 17 17 289 -1 unnamed_device 25.8 MiB 0.23 750 7863 1674 5072 1117 64.2 MiB 0.07 0.00 3.28175 -94.6726 -3.28175 3.28175 0.88 0.000444798 0.00040478 0.0190662 0.0173869 30 1756 22 6.65987e+06 393018 526063. 1820.29 0.90 0.0762009 0.0665605 22546 126617 -1 1506 19 933 1598 77376 19176 2.62125 2.62125 -90.575 -2.62125 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0202408 0.0179056 120 47 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.94 vpr 64.42 MiB -1 -1 0.14 20276 1 0.03 -1 -1 34060 -1 -1 21 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65964 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 26.0 MiB 0.05 638 11948 3525 6694 1729 64.4 MiB 0.08 0.00 3.4543 -94.1654 -3.4543 3.4543 0.88 0.000388733 0.000355256 0.0293959 0.0268616 28 1599 22 6.65987e+06 266238 500653. 1732.36 0.89 0.0781612 0.0688563 21970 115934 -1 1335 20 856 1254 87240 20842 2.77577 2.77577 -90.3712 -2.77577 0 0 612192. 2118.31 0.27 0.05 0.12 -1 -1 0.27 0.0180868 0.0160349 97 26 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 6.83 vpr 64.87 MiB -1 -1 0.17 20816 1 0.03 -1 -1 33964 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66424 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 26.8 MiB 0.16 1319 10542 2869 6884 789 64.9 MiB 0.11 0.00 4.22384 -138.261 -4.22384 4.22384 0.87 0.000601108 0.000547526 0.0340018 0.0310114 28 3615 24 6.65987e+06 329628 500653. 1732.36 3.52 0.204288 0.178252 21970 115934 -1 3006 22 1865 2973 215904 49606 3.64757 3.64757 -137.164 -3.64757 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0286205 0.0253627 170 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 5.09 vpr 64.61 MiB -1 -1 0.16 20548 1 0.03 -1 -1 33912 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66164 31 32 365 296 1 194 84 17 17 289 -1 unnamed_device 26.0 MiB 0.96 967 9417 2580 6478 359 64.6 MiB 0.09 0.00 5.3126 -152.671 -5.3126 5.3126 0.89 0.00054706 0.000498744 0.0299544 0.02731 30 2413 22 6.65987e+06 266238 526063. 1820.29 1.00 0.0987139 0.0867924 22546 126617 -1 1915 21 1038 1600 92361 21367 4.28602 4.28602 -139.252 -4.28602 0 0 666494. 2306.21 0.28 0.05 0.13 -1 -1 0.28 0.024858 0.0220334 150 60 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 5.05 vpr 64.69 MiB -1 -1 0.16 20624 1 0.03 -1 -1 33792 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66244 32 32 331 280 1 175 82 17 17 289 -1 unnamed_device 26.2 MiB 1.03 910 12186 3808 6300 2078 64.7 MiB 0.10 0.00 4.17204 -128.915 -4.17204 4.17204 0.89 0.00048288 0.000440088 0.0355983 0.0325166 30 2037 22 6.65987e+06 228204 526063. 1820.29 0.95 0.0977441 0.0862216 22546 126617 -1 1758 18 928 1406 83079 19030 3.13577 3.13577 -122.213 -3.13577 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0207301 0.0184965 126 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.15 vpr 64.73 MiB -1 -1 0.15 20356 1 0.03 -1 -1 33948 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66280 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 26.2 MiB 0.11 997 13726 4134 8495 1097 64.7 MiB 0.12 0.00 4.87399 -127.071 -4.87399 4.87399 0.89 0.000481363 0.000436762 0.0339313 0.0308901 30 2100 21 6.65987e+06 380340 526063. 1820.29 0.93 0.0969858 0.0855672 22546 126617 -1 1834 17 818 1333 78781 18665 3.24665 3.24665 -110.551 -3.24665 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0203988 0.0183144 126 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 6.39 vpr 64.97 MiB -1 -1 0.16 20756 1 0.03 -1 -1 33780 -1 -1 33 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66528 31 32 373 294 1 196 96 17 17 289 -1 unnamed_device 26.6 MiB 0.23 1094 9732 2284 6801 647 65.0 MiB 0.10 0.00 4.71929 -136.272 -4.71929 4.71929 0.90 0.000555884 0.000506794 0.0268662 0.0246028 26 2676 39 6.65987e+06 418374 477104. 1650.88 3.06 0.199508 0.175174 21682 110474 -1 2326 19 1471 2455 178546 41726 3.76783 3.76783 -132.157 -3.76783 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0253538 0.0225867 144 46 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.25 vpr 64.48 MiB -1 -1 0.15 20540 1 0.03 -1 -1 34124 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66032 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 26.1 MiB 0.15 968 12693 2914 8596 1183 64.5 MiB 0.11 0.00 3.66981 -110.801 -3.66981 3.66981 0.89 0.000481595 0.000438406 0.0305688 0.0278662 32 2261 19 6.65987e+06 393018 554710. 1919.41 0.96 0.0884951 0.0780084 22834 132086 -1 1967 20 1164 2022 141932 31880 2.86191 2.86191 -102.093 -2.86191 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0226223 0.0201233 124 46 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.49 vpr 65.18 MiB -1 -1 0.16 20672 1 0.03 -1 -1 33776 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 26.6 MiB 0.17 1162 15493 5220 7522 2751 65.2 MiB 0.13 0.00 4.81692 -150.127 -4.81692 4.81692 0.90 0.000447906 0.000408979 0.0407176 0.0371536 32 3110 26 6.65987e+06 304272 554710. 1919.41 1.06 0.111942 0.0989824 22834 132086 -1 2544 24 2121 3234 262327 57912 4.17571 4.17571 -147.371 -4.17571 0 0 701300. 2426.64 0.31 0.10 0.14 -1 -1 0.31 0.0293964 0.0261261 147 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.96 vpr 64.95 MiB -1 -1 0.14 20464 1 0.03 -1 -1 33756 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 32 32 386 307 1 195 98 17 17 289 -1 unnamed_device 26.6 MiB 0.38 1013 10448 2457 7443 548 65.0 MiB 0.10 0.00 4.61703 -140.056 -4.61703 4.61703 0.88 0.000538439 0.000487792 0.0265367 0.0240942 26 2952 23 6.65987e+06 431052 477104. 1650.88 1.55 0.10722 0.0946902 21682 110474 -1 2326 22 1350 2117 162283 37175 3.41651 3.41651 -129.627 -3.41651 0 0 585099. 2024.56 0.25 0.07 0.10 -1 -1 0.25 0.0261695 0.0230887 143 59 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.97 vpr 64.13 MiB -1 -1 0.14 20396 1 0.03 -1 -1 33804 -1 -1 17 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65672 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 25.7 MiB 0.13 669 12030 4965 6160 905 64.1 MiB 0.08 0.00 3.76255 -110.557 -3.76255 3.76255 0.86 0.000417242 0.000379871 0.029484 0.0269193 32 1475 20 6.65987e+06 215526 554710. 1919.41 0.88 0.0785965 0.0692783 22834 132086 -1 1382 19 921 1285 116578 25787 2.80197 2.80197 -99.1743 -2.80197 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0173496 0.0154056 92 28 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.27 vpr 64.69 MiB -1 -1 0.14 20348 1 0.03 -1 -1 33772 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66240 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 26.3 MiB 0.25 897 13992 5018 7267 1707 64.7 MiB 0.11 0.00 3.93547 -124.701 -3.93547 3.93547 0.92 0.000456503 0.00041486 0.0371667 0.0338442 28 2149 19 6.65987e+06 253560 500653. 1732.36 0.93 0.0963657 0.0852149 21970 115934 -1 1871 22 1402 1872 148824 33300 3.11557 3.11557 -115.482 -3.11557 0 0 612192. 2118.31 0.26 0.06 0.12 -1 -1 0.26 0.0215616 0.0191556 116 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.25 vpr 64.64 MiB -1 -1 0.17 20560 1 0.03 -1 -1 33680 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66192 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 26.1 MiB 0.10 945 14020 3581 8011 2428 64.6 MiB 0.11 0.00 4.66818 -124.475 -4.66818 4.66818 0.89 0.000490686 0.00044747 0.0322252 0.0293665 32 2224 21 6.65987e+06 469086 554710. 1919.41 0.99 0.0954997 0.0841624 22834 132086 -1 1970 23 1500 2561 184931 41768 3.57631 3.57631 -118.353 -3.57631 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0249156 0.0220551 129 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.70 vpr 64.36 MiB -1 -1 0.14 20308 1 0.03 -1 -1 33748 -1 -1 21 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65908 29 32 262 224 1 168 82 17 17 289 -1 unnamed_device 26.0 MiB 0.20 809 8448 1963 6049 436 64.4 MiB 0.07 0.00 4.16472 -111.492 -4.16472 4.16472 0.89 0.00040396 0.000370519 0.0213047 0.0195459 26 2404 34 6.65987e+06 266238 477104. 1650.88 1.54 0.0938857 0.0829991 21682 110474 -1 1953 21 1368 1776 170413 41923 3.16857 3.16857 -106.139 -3.16857 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0197541 0.0174691 110 25 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.28 vpr 64.28 MiB -1 -1 0.14 20036 1 0.03 -1 -1 33980 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65820 32 32 278 238 1 149 80 17 17 289 -1 unnamed_device 25.8 MiB 0.21 618 8852 1890 6315 647 64.3 MiB 0.07 0.00 3.69503 -110.464 -3.69503 3.69503 0.90 0.000431449 0.000394297 0.0242888 0.022253 32 2025 24 6.65987e+06 202848 554710. 1919.41 1.00 0.0821136 0.0721242 22834 132086 -1 1568 21 1327 2272 160443 39596 2.88191 2.88191 -106.381 -2.88191 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0205613 0.0182582 109 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.40 vpr 64.48 MiB -1 -1 0.15 20664 1 0.03 -1 -1 33952 -1 -1 35 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66024 31 32 373 300 1 181 98 17 17 289 -1 unnamed_device 26.0 MiB 0.25 938 16973 4485 9905 2583 64.5 MiB 0.14 0.00 4.16177 -122.328 -4.16177 4.16177 0.90 0.00053659 0.000491708 0.0436657 0.0398684 32 2086 22 6.65987e+06 443730 554710. 1919.41 0.97 0.113496 0.100509 22834 132086 -1 1855 19 1333 2075 132666 31802 2.96496 2.96496 -111.053 -2.96496 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0244141 0.0217758 135 60 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.18 vpr 64.46 MiB -1 -1 0.15 20472 1 0.03 -1 -1 33660 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66004 31 32 265 230 1 162 82 17 17 289 -1 unnamed_device 25.9 MiB 0.17 818 9872 2327 5876 1669 64.5 MiB 0.08 0.00 3.9535 -119.787 -3.9535 3.9535 0.90 0.00044378 0.000406393 0.0257439 0.0235764 28 2135 19 6.65987e+06 240882 500653. 1732.36 0.97 0.0785647 0.0694057 21970 115934 -1 1848 18 1008 1481 115769 26162 3.05777 3.05777 -111.219 -3.05777 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0173002 0.0153063 108 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 8.96 vpr 64.32 MiB -1 -1 0.15 20788 1 0.03 -1 -1 33952 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65860 32 32 349 286 1 171 95 17 17 289 -1 unnamed_device 25.8 MiB 0.28 854 7007 1324 4687 996 64.3 MiB 0.06 0.00 3.67932 -112.828 -3.67932 3.67932 0.91 0.000500723 0.000454082 0.0190544 0.0174076 26 2878 47 6.65987e+06 393018 477104. 1650.88 5.63 0.180209 0.15664 21682 110474 -1 2129 16 1129 1978 190866 57352 3.04511 3.04511 -112.46 -3.04511 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0213952 0.0192016 126 54 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 5.06 vpr 64.68 MiB -1 -1 0.17 20400 1 0.03 -1 -1 33864 -1 -1 32 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66232 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 26.4 MiB 0.93 956 13055 3385 8531 1139 64.7 MiB 0.11 0.00 4.2257 -136.613 -4.2257 4.2257 0.90 0.000572715 0.000522704 0.0351299 0.0319452 32 2142 21 6.65987e+06 405696 554710. 1919.41 0.94 0.105122 0.0925337 22834 132086 -1 1950 20 1403 1904 129517 30385 3.45123 3.45123 -132.174 -3.45123 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0256983 0.0229034 138 87 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.27 vpr 64.16 MiB -1 -1 0.14 20460 1 0.03 -1 -1 33680 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65700 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 25.6 MiB 0.25 770 8481 2112 5900 469 64.2 MiB 0.07 0.00 3.26384 -102.093 -3.26384 3.26384 0.93 0.000451163 0.000410602 0.0239105 0.0217922 30 1814 29 6.65987e+06 215526 526063. 1820.29 0.96 0.0881317 0.077233 22546 126617 -1 1464 17 761 1208 72569 16667 2.62051 2.62051 -96.4977 -2.62051 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0183042 0.0163108 104 54 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.13 vpr 64.43 MiB -1 -1 0.15 20628 1 0.03 -1 -1 33740 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65980 32 32 290 244 1 175 83 17 17 289 -1 unnamed_device 26.0 MiB 0.15 877 7823 1725 5526 572 64.4 MiB 0.07 0.00 4.21052 -129.412 -4.21052 4.21052 0.90 0.000461736 0.000423919 0.0215262 0.0196956 28 2168 19 6.65987e+06 240882 500653. 1732.36 0.96 0.0787772 0.0692487 21970 115934 -1 2030 21 1304 1913 146005 33733 3.07585 3.07585 -118.205 -3.07585 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0212255 0.0188474 115 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.39 vpr 64.88 MiB -1 -1 0.15 20716 1 0.03 -1 -1 33720 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66440 32 32 318 257 1 194 86 17 17 289 -1 unnamed_device 26.2 MiB 0.12 1033 8591 2028 5962 601 64.9 MiB 0.07 0.00 4.5425 -136.752 -4.5425 4.5425 0.88 0.000538258 0.000493416 0.0229967 0.0209636 26 2706 26 6.65987e+06 278916 477104. 1650.88 1.33 0.0936232 0.0823221 21682 110474 -1 2297 18 1566 2196 158849 37891 3.71871 3.71871 -131.764 -3.71871 0 0 585099. 2024.56 0.25 0.06 0.10 -1 -1 0.25 0.0202519 0.0180853 130 27 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.41 vpr 64.74 MiB -1 -1 0.15 20956 1 0.03 -1 -1 33984 -1 -1 28 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66296 29 32 324 268 1 168 89 17 17 289 -1 unnamed_device 26.3 MiB 0.42 878 11177 3323 6945 909 64.7 MiB 0.10 0.00 4.7062 -118.142 -4.7062 4.7062 0.91 0.000485986 0.000444136 0.0294506 0.0268996 30 1916 16 6.65987e+06 354984 526063. 1820.29 0.90 0.0871717 0.0769986 22546 126617 -1 1653 15 665 1217 61911 15512 3.29783 3.29783 -104.746 -3.29783 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0181811 0.0163102 121 49 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.40 vpr 64.64 MiB -1 -1 0.15 20828 1 0.03 -1 -1 33608 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66192 32 32 393 312 1 213 87 17 17 289 -1 unnamed_device 26.3 MiB 0.26 1007 9495 2407 6691 397 64.6 MiB 0.10 0.00 5.16517 -161.462 -5.16517 5.16517 0.89 0.000558154 0.000505928 0.030809 0.0281385 32 2658 22 6.65987e+06 291594 554710. 1919.41 1.00 0.101731 0.0895584 22834 132086 -1 2234 22 1802 2507 169937 41350 3.82117 3.82117 -143.64 -3.82117 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0256159 0.0226723 153 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.99 vpr 64.25 MiB -1 -1 0.14 20116 1 0.03 -1 -1 33488 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65792 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 25.9 MiB 0.09 794 9181 2203 6150 828 64.2 MiB 0.06 0.00 3.53041 -99.5418 -3.53041 3.53041 0.90 0.000379129 0.000344975 0.0210929 0.0192751 32 1764 19 6.65987e+06 228204 554710. 1919.41 0.90 0.0681511 0.0599665 22834 132086 -1 1564 17 692 1110 76497 18243 2.71371 2.71371 -96.112 -2.71371 0 0 701300. 2426.64 0.30 0.04 0.13 -1 -1 0.30 0.0161652 0.0144316 96 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.62 vpr 65.12 MiB -1 -1 0.17 20616 1 0.03 -1 -1 33900 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 32 32 412 334 1 190 97 17 17 289 -1 unnamed_device 26.8 MiB 0.47 947 7201 1402 5250 549 65.1 MiB 0.08 0.00 4.0805 -134.669 -4.0805 4.0805 0.89 0.00060069 0.000550682 0.0220595 0.0201561 32 2497 24 6.65987e+06 418374 554710. 1919.41 1.01 0.0988275 0.0867835 22834 132086 -1 2184 22 1638 2272 171887 40530 3.68557 3.68557 -133.353 -3.68557 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0286394 0.0253559 144 87 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.33 vpr 64.62 MiB -1 -1 0.15 20528 1 0.03 -1 -1 33756 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66176 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 26.2 MiB 0.22 692 9368 2494 5834 1040 64.6 MiB 0.09 0.00 3.5233 -119.857 -3.5233 3.5233 0.89 0.000525352 0.000479082 0.0308483 0.0281382 32 1730 23 6.65987e+06 202848 554710. 1919.41 0.98 0.0980736 0.0861207 22834 132086 -1 1559 23 1459 2083 162526 37135 2.97497 2.97497 -117.069 -2.97497 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0269032 0.0238053 115 93 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.41 vpr 64.48 MiB -1 -1 0.15 20540 1 0.03 -1 -1 33776 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66028 32 32 360 293 1 179 95 17 17 289 -1 unnamed_device 26.0 MiB 0.35 963 9383 2362 6118 903 64.5 MiB 0.09 0.00 4.19332 -127.565 -4.19332 4.19332 0.89 0.000518446 0.000473148 0.0253836 0.0232294 32 2293 25 6.65987e+06 393018 554710. 1919.41 0.96 0.0932865 0.0820236 22834 132086 -1 1851 21 1044 1529 88698 22539 3.09931 3.09931 -109.457 -3.09931 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0249405 0.0220526 130 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 11.87 vpr 65.05 MiB -1 -1 0.16 20504 1 0.03 -1 -1 33772 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66612 32 32 396 299 1 236 89 17 17 289 -1 unnamed_device 27.0 MiB 0.35 1323 16127 4193 10390 1544 65.1 MiB 0.17 0.00 6.49946 -194.782 -6.49946 6.49946 0.88 0.00058017 0.000527893 0.0494848 0.045156 28 3840 36 6.65987e+06 316950 500653. 1732.36 8.32 0.227936 0.200449 21970 115934 -1 2990 21 1959 2728 227624 50018 5.35994 5.35994 -179.572 -5.35994 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.0290884 0.0260153 168 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.10 vpr 64.18 MiB -1 -1 0.13 20348 1 0.03 -1 -1 33792 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65724 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 25.8 MiB 0.18 701 10895 2966 6376 1553 64.2 MiB 0.07 0.00 3.19181 -99.2246 -3.19181 3.19181 0.90 0.000358455 0.00032723 0.0251323 0.0230013 32 1552 19 6.65987e+06 215526 554710. 1919.41 0.91 0.0692538 0.061087 22834 132086 -1 1399 21 714 923 72542 17195 2.17571 2.17571 -87.784 -2.17571 0 0 701300. 2426.64 0.30 0.04 0.13 -1 -1 0.30 0.0162845 0.0144193 86 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.12 vpr 64.38 MiB -1 -1 0.14 20108 1 0.03 -1 -1 34024 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65924 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 25.9 MiB 0.12 559 11200 4645 5368 1187 64.4 MiB 0.07 0.00 4.03052 -111.683 -4.03052 4.03052 0.88 0.000376606 0.000337674 0.0285447 0.0259148 32 1719 26 6.65987e+06 202848 554710. 1919.41 1.00 0.0851649 0.0745607 22834 132086 -1 1381 33 1516 2373 220958 51242 2.94085 2.94085 -104.913 -2.94085 0 0 701300. 2426.64 0.29 0.08 0.12 -1 -1 0.29 0.0272363 0.0237949 92 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.20 vpr 64.29 MiB -1 -1 0.15 20200 1 0.03 -1 -1 33632 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65836 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 26.0 MiB 0.05 882 13663 3967 7775 1921 64.3 MiB 0.12 0.00 3.38183 -111.047 -3.38183 3.38183 0.89 0.000455978 0.000417394 0.0358345 0.0326963 32 2232 25 6.65987e+06 266238 554710. 1919.41 1.00 0.0964517 0.0850311 22834 132086 -1 1983 21 1389 2472 214229 47394 2.78771 2.78771 -108.095 -2.78771 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0217256 0.0192488 115 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 6.85 vpr 64.02 MiB -1 -1 0.15 20352 1 0.03 -1 -1 33840 -1 -1 27 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65556 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 25.6 MiB 0.09 461 9234 2985 4025 2224 64.0 MiB 0.05 0.00 3.09981 -73.1644 -3.09981 3.09981 0.89 0.000341503 0.00031139 0.0191808 0.0175135 38 1143 33 6.65987e+06 342306 638502. 2209.35 3.75 0.118935 0.102752 23986 155662 -1 888 17 513 851 43957 11516 2.24185 2.24185 -63.6531 -2.24185 0 0 851065. 2944.86 0.34 0.03 0.15 -1 -1 0.34 0.0139909 0.0124441 89 19 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.45 vpr 64.64 MiB -1 -1 0.16 20600 1 0.03 -1 -1 33972 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66188 32 32 376 307 1 185 84 17 17 289 -1 unnamed_device 26.1 MiB 0.19 1082 15273 5386 7964 1923 64.6 MiB 0.15 0.00 3.97418 -128.905 -3.97418 3.97418 0.90 0.000529054 0.000483291 0.047631 0.0434835 32 2803 23 6.65987e+06 253560 554710. 1919.41 1.03 0.117462 0.10407 22834 132086 -1 2459 23 1634 2959 236870 51536 3.44305 3.44305 -126.805 -3.44305 0 0 701300. 2426.64 0.30 0.09 0.13 -1 -1 0.30 0.0288212 0.0255762 135 69 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.55 vpr 64.97 MiB -1 -1 0.18 20496 1 0.03 -1 -1 33692 -1 -1 33 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66532 31 32 409 331 1 191 96 17 17 289 -1 unnamed_device 26.5 MiB 0.41 841 9951 2183 7152 616 65.0 MiB 0.10 0.00 4.37472 -138.365 -4.37472 4.37472 0.91 0.000586659 0.000535695 0.0289111 0.0264068 32 2335 20 6.65987e+06 418374 554710. 1919.41 0.99 0.100608 0.0886003 22834 132086 -1 1838 17 1307 1888 108740 27817 3.30177 3.30177 -122.786 -3.30177 0 0 701300. 2426.64 0.28 0.06 0.13 -1 -1 0.28 0.0229758 0.0204191 142 86 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 9.05 vpr 65.30 MiB -1 -1 0.17 20484 1 0.03 -1 -1 33712 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66872 32 32 354 285 1 193 77 17 17 289 -1 unnamed_device 26.9 MiB 2.62 849 12139 5116 6732 291 65.3 MiB 0.10 0.00 5.4594 -159.287 -5.4594 5.4594 0.90 0.000530095 0.000481825 0.0392635 0.0358167 44 2778 24 6.95648e+06 188184 787024. 2723.27 3.06 0.16026 0.140817 27778 195446 -1 2100 22 1620 2390 205020 42905 4.50786 4.50786 -152.69 -4.50786 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.026191 0.0232501 81 47 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 8.06 vpr 65.69 MiB -1 -1 0.17 20512 1 0.03 -1 -1 33864 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67268 30 32 363 293 1 187 77 17 17 289 -1 unnamed_device 27.3 MiB 2.19 750 10998 3991 5243 1764 65.7 MiB 0.09 0.00 4.63092 -138.355 -4.63092 4.63092 0.91 0.000502878 0.000458118 0.0373991 0.0341549 40 2398 38 6.95648e+06 217135 706193. 2443.58 2.53 0.172818 0.151571 26914 176310 -1 2062 23 1948 2706 287194 61968 4.57081 4.57081 -154.872 -4.57081 0 0 926341. 3205.33 0.36 0.10 0.17 -1 -1 0.36 0.0280095 0.024913 80 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 7.80 vpr 64.97 MiB -1 -1 0.14 20540 1 0.03 -1 -1 33956 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66528 32 32 299 247 1 182 79 17 17 289 -1 unnamed_device 26.6 MiB 1.31 1011 6839 1853 4585 401 65.0 MiB 0.06 0.00 3.76508 -124.296 -3.76508 3.76508 0.93 0.000446599 0.000407219 0.0209668 0.0192209 38 2570 30 6.95648e+06 217135 678818. 2348.85 3.27 0.139765 0.122892 26626 170182 -1 2196 20 1226 1684 137441 28682 3.69172 3.69172 -129.324 -3.69172 0 0 902133. 3121.57 0.34 0.06 0.16 -1 -1 0.34 0.0220366 0.0196492 76 26 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 6.47 vpr 65.45 MiB -1 -1 0.15 20396 1 0.03 -1 -1 33924 -1 -1 19 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67016 29 32 308 248 1 162 80 17 17 289 -1 unnamed_device 26.9 MiB 0.37 653 13152 5791 6666 695 65.4 MiB 0.09 0.00 4.18338 -115.281 -4.18338 4.18338 0.91 0.000477531 0.000433615 0.0357741 0.0325162 46 2265 28 6.95648e+06 275038 828058. 2865.25 2.85 0.150496 0.132099 28066 200906 -1 1624 19 1137 1874 144677 33493 3.65242 3.65242 -117.329 -3.65242 0 0 1.01997e+06 3529.29 0.39 0.06 0.18 -1 -1 0.39 0.0197459 0.0175429 71 25 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 7.08 vpr 65.14 MiB -1 -1 0.16 20228 1 0.03 -1 -1 33392 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 32 32 336 268 1 172 80 17 17 289 -1 unnamed_device 26.8 MiB 0.90 735 12120 5042 6627 451 65.1 MiB 0.09 0.00 4.33299 -127.984 -4.33299 4.33299 0.92 0.000454331 0.000415368 0.0378423 0.0345175 46 2384 49 6.95648e+06 231611 828058. 2865.25 2.80 0.156463 0.137406 28066 200906 -1 1865 19 1283 2160 165504 35743 4.11991 4.11991 -134.678 -4.11991 0 0 1.01997e+06 3529.29 0.38 0.06 0.20 -1 -1 0.38 0.0220364 0.0196094 73 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 9.02 vpr 65.22 MiB -1 -1 0.16 20624 1 0.03 -1 -1 33948 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66788 32 32 366 295 1 182 85 17 17 289 -1 unnamed_device 26.8 MiB 1.08 762 14779 6278 7942 559 65.2 MiB 0.10 0.00 3.0584 -114.242 -3.0584 3.0584 0.93 0.000564679 0.000516546 0.0443612 0.0404257 46 2130 23 6.95648e+06 303989 828058. 2865.25 4.55 0.221481 0.192947 28066 200906 -1 1614 21 1350 1975 141226 31692 3.17337 3.17337 -118.004 -3.17337 0 0 1.01997e+06 3529.29 0.39 0.06 0.19 -1 -1 0.39 0.025398 0.0225819 79 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 10.31 vpr 64.96 MiB -1 -1 0.16 20112 1 0.03 -1 -1 33988 -1 -1 13 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66524 27 32 259 221 1 125 72 17 17 289 -1 unnamed_device 26.6 MiB 5.11 400 8118 3296 4253 569 65.0 MiB 0.05 0.00 3.56899 -93.1575 -3.56899 3.56899 0.94 0.000385867 0.000351571 0.0232018 0.0211858 40 1513 27 6.95648e+06 188184 706193. 2443.58 1.98 0.112342 0.0979473 26914 176310 -1 1345 20 1051 1528 151147 38012 3.12397 3.12397 -102.326 -3.12397 0 0 926341. 3205.33 0.34 0.06 0.16 -1 -1 0.34 0.0184405 0.0163102 52 26 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 6.52 vpr 65.14 MiB -1 -1 0.16 20188 1 0.03 -1 -1 34012 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66700 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 26.5 MiB 0.44 691 11983 4028 5840 2115 65.1 MiB 0.08 0.00 3.0166 -94.5957 -3.0166 3.0166 0.91 0.000417242 0.000379465 0.0279262 0.0254513 38 2198 34 6.95648e+06 361892 678818. 2348.85 2.88 0.130855 0.113728 26626 170182 -1 1562 21 1128 1795 124372 27855 2.92072 2.92072 -102.496 -2.92072 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.0208351 0.0185236 69 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 10.43 vpr 65.14 MiB -1 -1 0.16 20700 1 0.03 -1 -1 34004 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66708 31 32 317 271 1 163 74 17 17 289 -1 unnamed_device 26.6 MiB 2.11 579 9684 3905 5251 528 65.1 MiB 0.07 0.00 3.39469 -115.112 -3.39469 3.39469 0.91 0.000493013 0.000441143 0.0312721 0.0285532 48 1811 26 6.95648e+06 159232 865456. 2994.66 4.97 0.191199 0.165534 28354 207349 -1 1465 22 1268 1776 142283 33598 3.24576 3.24576 -115.708 -3.24576 0 0 1.05005e+06 3633.38 0.41 0.06 0.20 -1 -1 0.41 0.022915 0.0203432 66 60 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 6.17 vpr 65.20 MiB -1 -1 0.15 20448 1 0.03 -1 -1 33936 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66768 32 32 298 248 1 150 74 17 17 289 -1 unnamed_device 26.7 MiB 1.09 566 8134 3343 4546 245 65.2 MiB 0.06 0.00 3.30928 -114.291 -3.30928 3.30928 0.92 0.000432739 0.000397211 0.0260596 0.0238173 42 1921 24 6.95648e+06 144757 744469. 2576.02 1.83 0.125227 0.109205 27202 183097 -1 1447 19 1086 1482 106699 25377 2.97372 2.97372 -113.7 -2.97372 0 0 949917. 3286.91 0.37 0.05 0.18 -1 -1 0.37 0.0205149 0.0183021 59 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 6.99 vpr 65.11 MiB -1 -1 0.16 20316 1 0.03 -1 -1 33688 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66672 30 32 303 262 1 137 74 17 17 289 -1 unnamed_device 26.7 MiB 1.89 471 10304 4280 5549 475 65.1 MiB 0.07 0.00 3.43453 -102.366 -3.43453 3.43453 0.92 0.00044187 0.000402588 0.0310724 0.0283889 44 1644 41 6.95648e+06 173708 787024. 2723.27 1.82 0.134992 0.117216 27778 195446 -1 1210 19 1006 1391 107894 26111 2.87247 2.87247 -102.182 -2.87247 0 0 997811. 3452.63 0.38 0.05 0.19 -1 -1 0.38 0.0197255 0.0175132 55 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 8.26 vpr 65.06 MiB -1 -1 0.15 20196 1 0.03 -1 -1 33752 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66620 32 32 276 237 1 160 74 17 17 289 -1 unnamed_device 26.6 MiB 1.57 590 10614 3394 4881 2339 65.1 MiB 0.07 0.00 3.37833 -114.652 -3.37833 3.37833 0.93 0.000419608 0.000382322 0.0314832 0.028765 48 2065 26 6.95648e+06 144757 865456. 2994.66 3.31 0.12774 0.111748 28354 207349 -1 1594 22 1339 1737 177767 43429 2.98202 2.98202 -113.691 -2.98202 0 0 1.05005e+06 3633.38 0.42 0.07 0.20 -1 -1 0.42 0.0216897 0.0192871 62 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 10.66 vpr 65.58 MiB -1 -1 0.17 20692 1 0.03 -1 -1 33620 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67152 32 32 344 272 1 194 79 17 17 289 -1 unnamed_device 27.2 MiB 1.92 833 13261 5618 7295 348 65.6 MiB 0.10 0.00 3.96008 -134.144 -3.96008 3.96008 0.92 0.000517619 0.000469135 0.042897 0.0391338 50 2529 26 6.95648e+06 217135 902133. 3121.57 5.30 0.214813 0.18725 28642 213929 -1 2081 20 1634 2343 195756 41013 3.35556 3.35556 -131.645 -3.35556 0 0 1.08113e+06 3740.92 0.40 0.07 0.21 -1 -1 0.40 0.0246519 0.0220725 83 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 8.46 vpr 65.60 MiB -1 -1 0.16 20584 1 0.03 -1 -1 33648 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67172 32 32 363 295 1 174 86 17 17 289 -1 unnamed_device 27.2 MiB 0.93 789 9158 3216 4675 1267 65.6 MiB 0.07 0.00 4.48063 -134.265 -4.48063 4.48063 0.92 0.000520495 0.00047356 0.027886 0.0254641 46 2203 26 6.95648e+06 318465 828058. 2865.25 4.17 0.211116 0.18378 28066 200906 -1 1694 24 1812 2595 197759 43223 4.00836 4.00836 -134.618 -4.00836 0 0 1.01997e+06 3529.29 0.39 0.08 0.19 -1 -1 0.39 0.0276337 0.024474 75 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 7.04 vpr 64.93 MiB -1 -1 0.16 20272 1 0.03 -1 -1 33480 -1 -1 13 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66492 29 32 248 215 1 136 74 17 17 289 -1 unnamed_device 26.4 MiB 1.43 470 8444 3456 4562 426 64.9 MiB 0.06 0.00 3.10275 -88.0296 -3.10275 3.10275 0.93 0.000396814 0.000362521 0.0231537 0.0211814 40 2005 31 6.95648e+06 188184 706193. 2443.58 2.37 0.117067 0.102166 26914 176310 -1 1534 23 1125 1652 175061 53068 3.19337 3.19337 -104.765 -3.19337 0 0 926341. 3205.33 0.34 0.07 0.18 -1 -1 0.34 0.0196541 0.0173297 55 21 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 9.20 vpr 65.40 MiB -1 -1 0.14 20380 1 0.03 -1 -1 33776 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66968 32 32 370 297 1 180 81 17 17 289 -1 unnamed_device 26.9 MiB 1.11 736 13381 4767 6091 2523 65.4 MiB 0.09 0.00 3.0625 -113.087 -3.0625 3.0625 0.91 0.000490878 0.000443623 0.0403828 0.0366381 46 2125 28 6.95648e+06 246087 828058. 2865.25 4.80 0.214918 0.185607 28066 200906 -1 1730 22 1527 2399 181497 42649 3.74967 3.74967 -124.464 -3.74967 0 0 1.01997e+06 3529.29 0.39 0.07 0.18 -1 -1 0.39 0.0252722 0.0223378 76 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 7.56 vpr 65.48 MiB -1 -1 0.15 20788 1 0.03 -1 -1 33960 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67056 32 32 338 269 1 190 78 17 17 289 -1 unnamed_device 27.1 MiB 2.06 821 11698 3981 5913 1804 65.5 MiB 0.10 0.00 4.42651 -139.682 -4.42651 4.42651 0.93 0.000497906 0.000453588 0.0381088 0.0348267 38 2675 39 6.95648e+06 202660 678818. 2348.85 2.21 0.144947 0.127327 26626 170182 -1 1811 21 1515 2020 132332 30505 3.72352 3.72352 -135.958 -3.72352 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.0244161 0.0216909 79 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 6.67 vpr 65.12 MiB -1 -1 0.16 20152 1 0.03 -1 -1 33360 -1 -1 9 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66688 32 32 323 276 1 148 73 17 17 289 -1 unnamed_device 26.6 MiB 0.80 568 11625 5013 6229 383 65.1 MiB 0.08 0.00 2.28966 -90.0891 -2.28966 2.28966 0.91 0.00046767 0.000425099 0.0378866 0.0344799 46 1756 36 6.95648e+06 130281 828058. 2865.25 2.52 0.136827 0.11968 28066 200906 -1 1389 19 1155 1674 145929 33652 2.63568 2.63568 -100.632 -2.63568 0 0 1.01997e+06 3529.29 0.40 0.06 0.20 -1 -1 0.40 0.0211115 0.0187228 57 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 5.41 vpr 64.33 MiB -1 -1 0.15 20236 1 0.03 -1 -1 33732 -1 -1 9 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65872 30 32 222 206 1 116 71 17 17 289 -1 unnamed_device 26.0 MiB 0.40 438 9707 4039 5351 317 64.3 MiB 0.06 0.00 2.22846 -79.3536 -2.22846 2.22846 0.92 0.000347825 0.000317353 0.0250155 0.0228529 38 1481 49 6.95648e+06 130281 678818. 2348.85 1.85 0.121404 0.10557 26626 170182 -1 1061 20 614 712 71220 16884 2.33013 2.33013 -81.3837 -2.33013 0 0 902133. 3121.57 0.34 0.04 0.16 -1 -1 0.34 0.0162541 0.0143867 43 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 10.00 vpr 64.93 MiB -1 -1 0.15 20308 1 0.03 -1 -1 33904 -1 -1 12 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66484 31 32 291 243 1 169 75 17 17 289 -1 unnamed_device 26.4 MiB 2.30 900 8449 3439 4770 240 64.9 MiB 0.06 0.00 4.11557 -135.517 -4.11557 4.11557 0.91 0.000372803 0.000337996 0.0244584 0.0222841 40 2181 21 6.95648e+06 173708 706193. 2443.58 4.51 0.169684 0.147127 26914 176310 -1 1992 22 1613 2157 226592 45321 3.91426 3.91426 -139.471 -3.91426 0 0 926341. 3205.33 0.35 0.08 0.17 -1 -1 0.35 0.0225473 0.0199798 69 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 7.45 vpr 65.57 MiB -1 -1 0.17 20636 1 0.03 -1 -1 33872 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67148 32 32 342 271 1 173 84 17 17 289 -1 unnamed_device 27.2 MiB 0.79 691 13626 5075 6512 2039 65.6 MiB 0.09 0.00 3.69419 -120.83 -3.69419 3.69419 0.93 0.00052818 0.000484085 0.0404926 0.0368961 44 2266 33 6.95648e+06 289514 787024. 2723.27 3.30 0.16929 0.148666 27778 195446 -1 1704 27 1869 2560 192832 46024 3.96461 3.96461 -128.435 -3.96461 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0292907 0.0257673 75 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 10.66 vpr 65.65 MiB -1 -1 0.17 20440 1 0.03 -1 -1 33744 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67228 32 32 372 300 1 197 78 17 17 289 -1 unnamed_device 27.2 MiB 1.48 803 10868 4396 5912 560 65.7 MiB 0.09 0.00 4.7576 -138.082 -4.7576 4.7576 0.94 0.000539633 0.000491244 0.0376173 0.034377 52 2898 49 6.95648e+06 202660 926341. 3205.33 5.70 0.234087 0.203574 29218 227130 -1 1949 21 1544 2374 198135 44856 4.30102 4.30102 -139.902 -4.30102 0 0 1.14541e+06 3963.36 0.43 0.08 0.22 -1 -1 0.43 0.0274503 0.0245277 82 59 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 5.36 vpr 64.48 MiB -1 -1 0.13 19880 1 0.02 -1 -1 33852 -1 -1 13 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66024 26 32 190 182 1 104 71 17 17 289 -1 unnamed_device 26.1 MiB 0.94 416 8539 3544 4471 524 64.5 MiB 0.04 0.00 2.23646 -66.7931 -2.23646 2.23646 0.88 0.000263319 0.000238953 0.01738 0.015841 34 1152 47 6.95648e+06 188184 618332. 2139.56 1.44 0.089208 0.0771018 25762 151098 -1 988 17 605 766 68818 15227 2.23768 2.23768 -73.5335 -2.23768 0 0 787024. 2723.27 0.32 0.04 0.15 -1 -1 0.32 0.0123683 0.0109967 44 21 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 6.94 vpr 64.82 MiB -1 -1 0.15 20056 1 0.03 -1 -1 33928 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66380 32 32 285 227 1 161 79 17 17 289 -1 unnamed_device 26.3 MiB 0.86 670 9543 3600 4533 1410 64.8 MiB 0.07 0.00 4.68425 -117.235 -4.68425 4.68425 0.92 0.000433971 0.000395048 0.0275237 0.0251497 44 2456 40 6.95648e+06 217135 787024. 2723.27 2.78 0.131157 0.11526 27778 195446 -1 1660 19 1265 2070 156131 39900 3.85601 3.85601 -120.654 -3.85601 0 0 997811. 3452.63 0.38 0.06 0.17 -1 -1 0.38 0.0203603 0.018116 66 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 5.20 vpr 64.71 MiB -1 -1 0.12 19792 1 0.03 -1 -1 33468 -1 -1 8 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66268 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 26.3 MiB 0.31 360 10055 3887 4514 1654 64.7 MiB 0.05 0.00 2.15326 -68.8392 -2.15326 2.15326 0.91 0.000282396 0.000256489 0.0207279 0.0188478 38 1061 21 6.95648e+06 115805 678818. 2348.85 1.81 0.0876066 0.0764292 26626 170182 -1 856 18 639 743 50732 13412 2.21378 2.21378 -75.1525 -2.21378 0 0 902133. 3121.57 0.34 0.03 0.16 -1 -1 0.34 0.013094 0.0116884 42 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 8.24 vpr 65.20 MiB -1 -1 0.15 20324 1 0.03 -1 -1 33500 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66764 32 32 300 245 1 165 79 17 17 289 -1 unnamed_device 26.7 MiB 1.10 746 14106 6043 7637 426 65.2 MiB 0.10 0.00 4.49111 -123.956 -4.49111 4.49111 0.93 0.000459279 0.0004192 0.0411893 0.0376583 38 2858 40 6.95648e+06 217135 678818. 2348.85 3.86 0.161015 0.142388 26626 170182 -1 1958 20 1322 2077 204584 45406 3.88096 3.88096 -125.216 -3.88096 0 0 902133. 3121.57 0.35 0.08 0.16 -1 -1 0.35 0.0225736 0.0201293 68 21 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 8.97 vpr 65.44 MiB -1 -1 0.15 20204 1 0.03 -1 -1 33660 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67008 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 26.8 MiB 0.58 675 10873 4420 6034 419 65.4 MiB 0.08 0.00 2.9573 -100.116 -2.9573 2.9573 0.92 0.000462913 0.000422045 0.0292494 0.0266815 46 2093 50 6.95648e+06 303989 828058. 2865.25 5.05 0.198695 0.172421 28066 200906 -1 1505 24 1382 2103 153787 35418 3.03882 3.03882 -108.679 -3.03882 0 0 1.01997e+06 3529.29 0.41 0.07 0.20 -1 -1 0.41 0.0250442 0.0222037 74 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 6.99 vpr 65.43 MiB -1 -1 0.15 20796 1 0.03 -1 -1 33872 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67004 32 32 338 277 1 172 83 17 17 289 -1 unnamed_device 27.0 MiB 0.81 795 15383 6700 8206 477 65.4 MiB 0.11 0.00 4.43549 -130.994 -4.43549 4.43549 0.95 0.000468103 0.000431331 0.0450466 0.0409989 48 2092 29 6.95648e+06 275038 865456. 2994.66 2.77 0.166769 0.146597 28354 207349 -1 1795 22 1236 2056 165591 37261 3.80591 3.80591 -130.105 -3.80591 0 0 1.05005e+06 3633.38 0.42 0.07 0.20 -1 -1 0.42 0.0247178 0.0218623 72 47 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 8.28 vpr 64.99 MiB -1 -1 0.14 20152 1 0.03 -1 -1 33700 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 284 241 1 141 74 17 17 289 -1 unnamed_device 26.6 MiB 1.04 836 12164 3915 6903 1346 65.0 MiB 0.08 0.00 3.08875 -104.395 -3.08875 3.08875 0.90 0.000370172 0.000338845 0.033401 0.0304819 38 2054 21 6.95648e+06 144757 678818. 2348.85 4.07 0.173165 0.150287 26626 170182 -1 1837 18 886 1354 126118 25389 3.02302 3.02302 -114.587 -3.02302 0 0 902133. 3121.57 0.34 0.05 0.17 -1 -1 0.34 0.0187429 0.0166674 55 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 7.60 vpr 65.05 MiB -1 -1 0.15 20296 1 0.03 -1 -1 33596 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66616 30 32 262 227 1 134 80 17 17 289 -1 unnamed_device 26.7 MiB 0.23 486 10916 4488 5855 573 65.1 MiB 0.07 0.00 3.37953 -96.5612 -3.37953 3.37953 0.87 0.00039435 0.000360347 0.0266269 0.0242609 42 1738 31 6.95648e+06 260562 744469. 2576.02 4.21 0.170114 0.147061 27202 183097 -1 1225 18 886 1222 106438 28327 2.85672 2.85672 -97.7201 -2.85672 0 0 949917. 3286.91 0.36 0.05 0.17 -1 -1 0.36 0.0174105 0.0154595 57 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 6.04 vpr 65.16 MiB -1 -1 0.15 20200 1 0.03 -1 -1 33472 -1 -1 16 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66720 28 32 260 223 1 135 76 17 17 289 -1 unnamed_device 26.8 MiB 0.55 447 10796 4457 5651 688 65.2 MiB 0.07 0.00 2.9532 -88.5671 -2.9532 2.9532 0.92 0.000400449 0.000368251 0.0289862 0.0264984 44 1895 36 6.95648e+06 231611 787024. 2723.27 2.23 0.118909 0.104679 27778 195446 -1 1197 20 998 1532 108720 27757 2.78922 2.78922 -94.3932 -2.78922 0 0 997811. 3452.63 0.39 0.05 0.19 -1 -1 0.39 0.019027 0.0168858 57 27 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 8.74 vpr 65.02 MiB -1 -1 0.13 20156 1 0.03 -1 -1 33492 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 26.6 MiB 0.49 490 8754 2672 4372 1710 65.0 MiB 0.05 0.00 3.37459 -106.603 -3.37459 3.37459 0.88 0.000347734 0.000317389 0.0229824 0.0209953 52 1349 34 6.95648e+06 144757 926341. 3205.33 5.04 0.152828 0.132553 29218 227130 -1 1114 21 1103 1579 114360 28737 2.88157 2.88157 -104.561 -2.88157 0 0 1.14541e+06 3963.36 0.43 0.05 0.21 -1 -1 0.43 0.0189791 0.0168535 58 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 6.79 vpr 65.19 MiB -1 -1 0.14 20268 1 0.03 -1 -1 33492 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66756 31 32 271 231 1 143 82 17 17 289 -1 unnamed_device 26.7 MiB 0.44 514 10050 3328 4861 1861 65.2 MiB 0.06 0.00 3.16614 -99.0057 -3.16614 3.16614 0.91 0.000385321 0.000346629 0.0244657 0.0220605 44 1932 39 6.95648e+06 275038 787024. 2723.27 3.06 0.137634 0.120103 27778 195446 -1 1339 24 1230 1923 229518 85397 2.94462 2.94462 -105.107 -2.94462 0 0 997811. 3452.63 0.40 0.09 0.18 -1 -1 0.40 0.0223265 0.0196544 61 26 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 14.83 vpr 65.25 MiB -1 -1 0.15 20436 1 0.03 -1 -1 33696 -1 -1 12 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 29 32 291 250 1 148 73 17 17 289 -1 unnamed_device 26.7 MiB 1.24 761 12537 5784 6209 544 65.2 MiB 0.08 0.00 2.98425 -104.866 -2.98425 2.98425 0.92 0.000417186 0.000380594 0.0371095 0.0339368 40 1951 35 6.95648e+06 173708 706193. 2443.58 10.35 0.240487 0.210056 26914 176310 -1 1632 19 1072 1486 183744 40499 2.73002 2.73002 -103.333 -2.73002 0 0 926341. 3205.33 0.36 0.06 0.16 -1 -1 0.36 0.0190848 0.016941 61 48 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 7.83 vpr 65.54 MiB -1 -1 0.16 20784 1 0.03 -1 -1 33460 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67116 32 32 367 282 1 193 85 17 17 289 -1 unnamed_device 27.1 MiB 0.90 827 14593 4666 7411 2516 65.5 MiB 0.11 0.00 4.22723 -122.469 -4.22723 4.22723 0.92 0.000530264 0.000483021 0.0442362 0.0402598 40 2898 29 6.95648e+06 303989 706193. 2443.58 3.58 0.177638 0.156433 26914 176310 -1 2212 23 1637 2779 247978 54617 4.10856 4.10856 -135.648 -4.10856 0 0 926341. 3205.33 0.35 0.09 0.17 -1 -1 0.35 0.0284102 0.0251861 84 26 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 7.30 vpr 65.31 MiB -1 -1 0.17 20500 1 0.03 -1 -1 33936 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66876 32 32 391 311 1 184 88 17 17 289 -1 unnamed_device 26.8 MiB 1.05 745 13738 4997 6870 1871 65.3 MiB 0.10 0.00 3.2962 -117.206 -3.2962 3.2962 0.93 0.000478788 0.000433482 0.0402864 0.0365295 40 2441 27 6.95648e+06 347416 706193. 2443.58 2.91 0.174111 0.152558 26914 176310 -1 2016 22 1949 2778 252661 56579 3.50372 3.50372 -130.751 -3.50372 0 0 926341. 3205.33 0.35 0.09 0.18 -1 -1 0.35 0.0274613 0.0243324 82 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 9.60 vpr 65.06 MiB -1 -1 0.16 20148 1 0.03 -1 -1 34060 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66620 31 32 279 237 1 153 74 17 17 289 -1 unnamed_device 26.6 MiB 2.06 860 8754 2885 4850 1019 65.1 MiB 0.07 0.00 4.04047 -132.719 -4.04047 4.04047 0.93 0.000421775 0.000385087 0.0263101 0.0240897 44 2027 31 6.95648e+06 159232 787024. 2723.27 4.22 0.173309 0.150703 27778 195446 -1 1813 21 1110 1529 132053 26338 3.56322 3.56322 -130.449 -3.56322 0 0 997811. 3452.63 0.38 0.06 0.19 -1 -1 0.38 0.0210757 0.0187262 63 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 6.71 vpr 64.98 MiB -1 -1 0.16 20456 1 0.03 -1 -1 33860 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66544 31 32 370 297 1 179 79 17 17 289 -1 unnamed_device 26.6 MiB 0.83 747 9036 3143 4486 1407 65.0 MiB 0.07 0.00 3.76434 -122.812 -3.76434 3.76434 0.92 0.00054272 0.000492322 0.0292368 0.0265939 38 2983 41 6.95648e+06 231611 678818. 2348.85 2.63 0.156452 0.136912 26626 170182 -1 1920 21 1589 2334 190137 42056 3.83572 3.83572 -127.733 -3.83572 0 0 902133. 3121.57 0.35 0.07 0.16 -1 -1 0.35 0.0265142 0.0235636 76 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 11.63 vpr 65.52 MiB -1 -1 0.16 20676 1 0.03 -1 -1 33756 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67096 31 32 377 302 1 225 79 17 17 289 -1 unnamed_device 26.9 MiB 2.33 943 12585 5266 6878 441 65.5 MiB 0.10 0.00 5.54066 -172.627 -5.54066 5.54066 0.92 0.000549668 0.000501733 0.0429165 0.039195 56 2573 26 6.95648e+06 231611 973134. 3367.25 5.75 0.262448 0.229544 29794 239141 -1 2149 23 2164 3113 326462 68110 5.0776 5.0776 -172.61 -5.0776 0 0 1.19926e+06 4149.71 0.46 0.10 0.24 -1 -1 0.46 0.0298106 0.0266291 97 60 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 8.72 vpr 65.83 MiB -1 -1 0.16 20520 1 0.03 -1 -1 33972 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67412 31 32 383 305 1 204 79 17 17 289 -1 unnamed_device 27.3 MiB 2.79 938 15120 6700 8021 399 65.8 MiB 0.12 0.00 4.47954 -148.558 -4.47954 4.47954 0.93 0.000550559 0.000494899 0.0518372 0.0473671 40 2977 25 6.95648e+06 231611 706193. 2443.58 2.58 0.185891 0.164327 26914 176310 -1 2471 20 1757 2550 249964 52119 4.78676 4.78676 -162.397 -4.78676 0 0 926341. 3205.33 0.36 0.08 0.16 -1 -1 0.36 0.0265549 0.0237015 88 60 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 9.61 vpr 65.19 MiB -1 -1 0.15 20580 1 0.03 -1 -1 33916 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66756 31 32 352 285 1 177 85 17 17 289 -1 unnamed_device 26.7 MiB 1.15 806 12733 4192 6306 2235 65.2 MiB 0.09 0.00 4.14583 -131.471 -4.14583 4.14583 0.88 0.000501942 0.000457351 0.0370142 0.0339269 44 2580 41 6.95648e+06 318465 787024. 2723.27 5.24 0.276151 0.241497 27778 195446 -1 1877 20 1310 1980 158921 34446 3.55827 3.55827 -129.134 -3.55827 0 0 997811. 3452.63 0.38 0.07 0.18 -1 -1 0.38 0.0236445 0.021082 78 51 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 6.98 vpr 64.98 MiB -1 -1 0.16 20292 1 0.03 -1 -1 33816 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66536 32 32 291 242 1 173 78 17 17 289 -1 unnamed_device 26.4 MiB 1.39 717 8212 2161 5077 974 65.0 MiB 0.07 0.00 4.19005 -113.386 -4.19005 4.19005 0.91 0.000439446 0.00040162 0.0242029 0.0221604 46 1942 38 6.95648e+06 202660 828058. 2865.25 2.30 0.122531 0.107962 28066 200906 -1 1539 18 1104 1571 122247 26899 4.11171 4.11171 -112.642 -4.11171 0 0 1.01997e+06 3529.29 0.39 0.05 0.20 -1 -1 0.39 0.0198715 0.0178305 71 24 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 8.04 vpr 65.89 MiB -1 -1 0.18 20828 1 0.03 -1 -1 34024 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67472 32 32 457 356 1 214 86 17 17 289 -1 unnamed_device 27.3 MiB 1.61 969 15017 6294 8197 526 65.9 MiB 0.13 0.00 4.79262 -158.033 -4.79262 4.79262 0.92 0.00061599 0.000559883 0.0528982 0.0482523 44 3004 31 6.95648e+06 318465 787024. 2723.27 2.98 0.185205 0.164233 27778 195446 -1 2405 22 1887 2737 214564 46299 4.79321 4.79321 -170.997 -4.79321 0 0 997811. 3452.63 0.39 0.09 0.19 -1 -1 0.39 0.0317943 0.0283177 93 84 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 8.49 vpr 65.07 MiB -1 -1 0.16 20288 1 0.03 -1 -1 33756 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66636 31 32 261 225 1 137 78 17 17 289 -1 unnamed_device 26.7 MiB 0.84 451 10702 3732 4796 2174 65.1 MiB 0.07 0.00 3.25706 -97.1743 -3.25706 3.25706 0.94 0.000408728 0.000373226 0.0285033 0.0260116 42 1868 35 6.95648e+06 217135 744469. 2576.02 4.37 0.168402 0.145622 27202 183097 -1 1192 34 1368 1970 146199 37137 3.39987 3.39987 -104.41 -3.39987 0 0 949917. 3286.91 0.36 0.07 0.18 -1 -1 0.36 0.0274713 0.0240249 56 24 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 19.90 vpr 65.28 MiB -1 -1 0.16 20548 1 0.03 -1 -1 33580 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 31 32 337 267 1 199 78 17 17 289 -1 unnamed_device 26.8 MiB 1.45 1043 13358 5192 6540 1626 65.3 MiB 0.11 0.00 4.83562 -153.036 -4.83562 4.83562 0.92 0.00049756 0.0004538 0.0430263 0.0393232 40 2908 41 6.95648e+06 217135 706193. 2443.58 15.11 0.274088 0.238836 26914 176310 -1 2542 19 1727 2534 265189 51613 4.58201 4.58201 -157.296 -4.58201 0 0 926341. 3205.33 0.35 0.08 0.18 -1 -1 0.35 0.0226925 0.0202058 84 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 9.46 vpr 65.59 MiB -1 -1 0.16 20580 1 0.03 -1 -1 33904 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67168 32 32 349 284 1 175 81 17 17 289 -1 unnamed_device 27.1 MiB 1.15 832 15481 6850 8276 355 65.6 MiB 0.11 0.00 3.22585 -113.908 -3.22585 3.22585 0.94 0.000500221 0.000454955 0.047262 0.0429843 44 2391 28 6.95648e+06 246087 787024. 2723.27 4.94 0.233932 0.203644 27778 195446 -1 1981 25 1531 2524 192733 42430 3.15412 3.15412 -117.826 -3.15412 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0277674 0.0246042 73 50 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 7.17 vpr 65.12 MiB -1 -1 0.15 20288 1 0.03 -1 -1 34020 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 26.6 MiB 1.12 692 9712 3251 4487 1974 65.1 MiB 0.07 0.00 4.55274 -121.613 -4.55274 4.55274 0.91 0.000452004 0.000412726 0.0280018 0.0256536 44 2409 26 6.95648e+06 231611 787024. 2723.27 2.77 0.145784 0.128876 27778 195446 -1 1628 24 1132 1964 152907 34365 4.40427 4.40427 -132.423 -4.40427 0 0 997811. 3452.63 0.39 0.07 0.18 -1 -1 0.39 0.0244083 0.021652 68 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 10.44 vpr 65.63 MiB -1 -1 0.14 20680 1 0.03 -1 -1 33576 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67204 32 32 353 287 1 185 78 17 17 289 -1 unnamed_device 27.2 MiB 2.79 796 11532 3820 5366 2346 65.6 MiB 0.09 0.00 4.43423 -134.57 -4.43423 4.43423 0.92 0.000444328 0.000405404 0.0358381 0.0326148 44 2218 24 6.95648e+06 202660 787024. 2723.27 4.35 0.203936 0.177462 27778 195446 -1 1762 22 1355 1831 131726 29496 3.76266 3.76266 -133.448 -3.76266 0 0 997811. 3452.63 0.40 0.06 0.18 -1 -1 0.40 0.0250856 0.0222726 78 52 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 10.32 vpr 65.56 MiB -1 -1 0.16 20760 1 0.03 -1 -1 33944 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67132 32 32 361 291 1 179 81 17 17 289 -1 unnamed_device 27.2 MiB 1.95 763 10406 4042 5595 769 65.6 MiB 0.08 0.00 3.235 -115.411 -3.235 3.235 0.93 0.000514083 0.000467866 0.0337264 0.0308627 38 2855 46 6.95648e+06 246087 678818. 2348.85 5.08 0.19025 0.167468 26626 170182 -1 2142 20 1537 2371 191337 42253 3.59617 3.59617 -130.946 -3.59617 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.0254424 0.0226923 75 52 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 7.07 vpr 65.48 MiB -1 -1 0.17 20372 1 0.03 -1 -1 34016 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67052 32 32 382 305 1 184 90 17 17 289 -1 unnamed_device 27.0 MiB 0.95 832 13758 4740 6643 2375 65.5 MiB 0.11 0.00 4.17869 -135.166 -4.17869 4.17869 0.91 0.000560111 0.000509726 0.0401195 0.0365418 46 2399 24 6.95648e+06 376368 828058. 2865.25 2.74 0.165264 0.144525 28066 200906 -1 1874 24 1346 1983 166800 36204 3.73146 3.73146 -135.163 -3.73146 0 0 1.01997e+06 3529.29 0.39 0.07 0.20 -1 -1 0.39 0.0285935 0.0252923 83 59 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 8.80 vpr 64.94 MiB -1 -1 0.15 20208 1 0.03 -1 -1 33432 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66496 32 32 306 248 1 164 86 17 17 289 -1 unnamed_device 26.4 MiB 1.14 704 11804 4117 5540 2147 64.9 MiB 0.07 0.00 4.32723 -118.436 -4.32723 4.32723 0.88 0.000442425 0.000402259 0.0307415 0.0280764 42 2228 31 6.95648e+06 318465 744469. 2576.02 4.50 0.199348 0.174316 27202 183097 -1 1785 19 1216 1934 174304 44453 3.88152 3.88152 -124.857 -3.88152 0 0 949917. 3286.91 0.36 0.07 0.17 -1 -1 0.36 0.0214566 0.019162 69 21 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 9.21 vpr 65.07 MiB -1 -1 0.15 20348 1 0.03 -1 -1 33736 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 32 32 319 257 1 191 77 17 17 289 -1 unnamed_device 26.7 MiB 2.86 822 10020 3444 5308 1268 65.1 MiB 0.08 0.00 4.15778 -128.101 -4.15778 4.15778 0.93 0.000462274 0.000421007 0.0316171 0.0289741 40 2642 40 6.95648e+06 188184 706193. 2443.58 3.04 0.16479 0.144899 26914 176310 -1 2078 24 1882 2531 224754 51701 4.42162 4.42162 -143.712 -4.42162 0 0 926341. 3205.33 0.36 0.08 0.17 -1 -1 0.36 0.02695 0.0239685 79 26 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 9.91 vpr 65.36 MiB -1 -1 0.17 20784 1 0.03 -1 -1 33732 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66932 31 32 373 299 1 194 78 17 17 289 -1 unnamed_device 26.9 MiB 1.65 847 12030 5014 6584 432 65.4 MiB 0.09 0.00 4.57287 -144.308 -4.57287 4.57287 0.92 0.000528692 0.000479812 0.0405551 0.0370606 46 3239 34 6.95648e+06 217135 828058. 2865.25 4.86 0.176818 0.155278 28066 200906 -1 2319 21 1807 2822 246652 51934 4.03581 4.03581 -139.978 -4.03581 0 0 1.01997e+06 3529.29 0.39 0.09 0.20 -1 -1 0.39 0.0274742 0.0245468 85 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 23.04 vpr 65.30 MiB -1 -1 0.16 20500 1 0.03 -1 -1 33764 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66864 32 32 387 315 1 182 77 17 17 289 -1 unnamed_device 26.9 MiB 2.63 757 13443 5119 6395 1929 65.3 MiB 0.09 0.00 4.08826 -130.07 -4.08826 4.08826 0.87 0.000479491 0.000439016 0.0420975 0.0383263 50 2778 50 6.95648e+06 188184 902133. 3121.57 17.07 0.355226 0.309636 28642 213929 -1 2045 30 1669 2787 309493 86950 4.42046 4.42046 -143.572 -4.42046 0 0 1.08113e+06 3740.92 0.43 0.12 0.20 -1 -1 0.43 0.0352511 0.031042 76 74 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 8.57 vpr 64.92 MiB -1 -1 0.14 20160 1 0.03 -1 -1 33648 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66480 32 32 251 219 1 136 82 17 17 289 -1 unnamed_device 26.6 MiB 0.28 503 12542 4062 6070 2410 64.9 MiB 0.08 0.00 3.14908 -92.6386 -3.14908 3.14908 0.91 0.000391168 0.000356085 0.0302248 0.0275799 50 1542 40 6.95648e+06 260562 902133. 3121.57 5.00 0.160966 0.139998 28642 213929 -1 1258 20 829 1251 101277 24239 2.95367 2.95367 -98.4049 -2.95367 0 0 1.08113e+06 3740.92 0.42 0.05 0.20 -1 -1 0.42 0.0183117 0.0162522 57 20 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 8.12 vpr 65.31 MiB -1 -1 0.15 20460 1 0.03 -1 -1 33772 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66876 32 32 341 285 1 181 76 17 17 289 -1 unnamed_device 26.9 MiB 1.60 674 9676 3990 5312 374 65.3 MiB 0.07 0.00 3.76865 -134.987 -3.76865 3.76865 0.92 0.000485795 0.000443059 0.0317941 0.029053 60 1835 21 6.95648e+06 173708 1.01997e+06 3529.29 3.03 0.158904 0.138744 30658 258169 -1 1517 23 1426 1989 172709 39333 3.73911 3.73911 -132.853 -3.73911 0 0 1.27783e+06 4421.56 0.49 0.07 0.26 -1 -1 0.49 0.0253224 0.0224086 76 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 11.48 vpr 65.66 MiB -1 -1 0.17 20456 1 0.03 -1 -1 33696 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67232 32 32 387 293 1 225 80 17 17 289 -1 unnamed_device 27.2 MiB 2.18 1197 6788 1593 4785 410 65.7 MiB 0.07 0.00 4.81732 -154.887 -4.81732 4.81732 0.91 0.000568504 0.000519588 0.0255631 0.0234675 56 2745 25 6.95648e+06 231611 973134. 3367.25 5.83 0.247176 0.215709 29794 239141 -1 2575 20 1810 2734 267843 53538 4.69936 4.69936 -158.923 -4.69936 0 0 1.19926e+06 4149.71 0.45 0.09 0.24 -1 -1 0.45 0.0282058 0.0252843 97 28 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 9.32 vpr 65.34 MiB -1 -1 0.15 20624 1 0.03 -1 -1 33432 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66908 32 32 340 270 1 175 81 17 17 289 -1 unnamed_device 27.0 MiB 0.88 755 11806 4947 6514 345 65.3 MiB 0.08 0.00 4.55181 -144.133 -4.55181 4.55181 0.90 0.000462726 0.000419797 0.0344299 0.0312562 46 2302 50 6.95648e+06 246087 828058. 2865.25 5.16 0.224799 0.195187 28066 200906 -1 1809 22 1405 1916 184870 41973 3.26946 3.26946 -129.646 -3.26946 0 0 1.01997e+06 3529.29 0.41 0.07 0.18 -1 -1 0.41 0.0250234 0.0222142 74 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 6.81 vpr 65.12 MiB -1 -1 0.15 20152 1 0.03 -1 -1 33584 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66688 30 32 278 235 1 143 82 17 17 289 -1 unnamed_device 26.7 MiB 0.60 536 11296 4661 6055 580 65.1 MiB 0.07 0.00 2.9714 -97.779 -2.9714 2.9714 0.91 0.000425577 0.00038666 0.0293352 0.0267532 46 1687 48 6.95648e+06 289514 828058. 2865.25 2.95 0.151973 0.133505 28066 200906 -1 1196 22 1101 1627 118419 28041 2.94567 2.94567 -98.2229 -2.94567 0 0 1.01997e+06 3529.29 0.40 0.06 0.19 -1 -1 0.40 0.0210041 0.0185906 62 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 8.36 vpr 65.89 MiB -1 -1 0.17 20684 1 0.03 -1 -1 33952 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67476 32 32 431 332 1 224 79 17 17 289 -1 unnamed_device 27.6 MiB 1.80 1154 14782 4940 8104 1738 65.9 MiB 0.13 0.00 6.12641 -181.225 -6.12641 6.12641 0.89 0.000566475 0.000514263 0.0548803 0.0501932 46 2972 48 6.95648e+06 217135 828058. 2865.25 3.22 0.206534 0.183155 28066 200906 -1 2375 24 1979 3061 252430 53962 5.06025 5.06025 -172.023 -5.06025 0 0 1.01997e+06 3529.29 0.38 0.10 0.18 -1 -1 0.38 0.0328552 0.0292921 95 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 14.34 vpr 65.38 MiB -1 -1 0.15 20096 1 0.03 -1 -1 33680 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66948 32 32 336 268 1 169 87 17 17 289 -1 unnamed_device 26.9 MiB 1.24 717 11799 3733 5850 2216 65.4 MiB 0.09 0.00 4.62806 -129.887 -4.62806 4.62806 0.91 0.000503817 0.00045753 0.033576 0.0305597 40 2137 23 6.95648e+06 332941 706193. 2443.58 9.83 0.262179 0.22782 26914 176310 -1 1846 22 1420 2105 204275 43664 4.24312 4.24312 -135.251 -4.24312 0 0 926341. 3205.33 0.35 0.08 0.18 -1 -1 0.35 0.0244993 0.0217059 74 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 5.31 vpr 64.71 MiB -1 -1 0.14 20208 1 0.03 -1 -1 33452 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66260 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 26.2 MiB 0.27 514 10509 3980 5034 1495 64.7 MiB 0.06 0.00 2.96656 -92.2738 -2.96656 2.96656 0.89 0.000366479 0.000333187 0.0259066 0.0236829 44 1513 24 6.95648e+06 188184 787024. 2723.27 1.91 0.107857 0.0942897 27778 195446 -1 1051 16 699 1093 64585 17611 2.96762 2.96762 -95.8174 -2.96762 0 0 997811. 3452.63 0.37 0.04 0.20 -1 -1 0.37 0.015137 0.0134912 51 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 7.88 vpr 65.30 MiB -1 -1 0.17 20316 1 0.03 -1 -1 33664 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66868 32 32 349 273 1 184 88 17 17 289 -1 unnamed_device 26.9 MiB 0.59 1076 14908 4738 8798 1372 65.3 MiB 0.11 0.00 4.96917 -138.118 -4.96917 4.96917 0.94 0.000524409 0.000476121 0.041159 0.037407 38 3145 48 6.95648e+06 347416 678818. 2348.85 3.94 0.167347 0.147127 26626 170182 -1 2507 21 1570 2770 270498 50404 4.65836 4.65836 -145.067 -4.65836 0 0 902133. 3121.57 0.34 0.09 0.16 -1 -1 0.34 0.0262465 0.0233978 80 26 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 6.27 vpr 65.02 MiB -1 -1 0.13 20324 1 0.03 -1 -1 33524 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 26.7 MiB 1.17 492 11034 4564 6063 407 65.0 MiB 0.07 0.00 2.9972 -99.2597 -2.9972 2.9972 0.93 0.000394273 0.000359865 0.0279851 0.0255092 40 1961 39 6.95648e+06 202660 706193. 2443.58 1.85 0.120761 0.105051 26914 176310 -1 1516 22 1349 1863 169744 49562 3.32157 3.32157 -117.016 -3.32157 0 0 926341. 3205.33 0.34 0.07 0.18 -1 -1 0.34 0.0191602 0.0169378 57 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 7.28 vpr 65.12 MiB -1 -1 0.14 20168 1 0.03 -1 -1 33752 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 30 32 278 235 1 144 79 17 17 289 -1 unnamed_device 26.7 MiB 0.93 565 8867 3613 4967 287 65.1 MiB 0.06 0.00 3.45473 -106.167 -3.45473 3.45473 0.90 0.000386309 0.000350283 0.0232165 0.021167 38 1930 30 6.95648e+06 246087 678818. 2348.85 3.25 0.126332 0.109896 26626 170182 -1 1481 19 1147 1674 130098 28883 3.05892 3.05892 -108.48 -3.05892 0 0 902133. 3121.57 0.34 0.05 0.15 -1 -1 0.34 0.0179848 0.0159396 60 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 8.07 vpr 65.50 MiB -1 -1 0.16 20584 1 0.03 -1 -1 33848 -1 -1 16 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67068 29 32 355 287 1 186 77 17 17 289 -1 unnamed_device 27.0 MiB 1.64 851 11487 4862 6149 476 65.5 MiB 0.09 0.00 3.95502 -124.066 -3.95502 3.95502 0.91 0.000499696 0.000454902 0.0383077 0.0350175 44 2861 40 6.95648e+06 231611 787024. 2723.27 3.06 0.181571 0.16006 27778 195446 -1 2114 22 1724 2612 186740 39662 3.67666 3.67666 -128.24 -3.67666 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0263064 0.0233564 80 56 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 6.95 vpr 65.47 MiB -1 -1 0.15 20756 1 0.03 -1 -1 33772 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67040 32 32 358 289 1 173 80 17 17 289 -1 unnamed_device 27.1 MiB 1.41 719 14528 6712 7344 472 65.5 MiB 0.10 0.00 4.55468 -132.882 -4.55468 4.55468 0.92 0.000505091 0.000459541 0.0460052 0.0419732 44 2547 35 6.95648e+06 231611 787024. 2723.27 2.20 0.158959 0.14031 27778 195446 -1 1688 23 1524 2201 168711 38196 4.09482 4.09482 -137.998 -4.09482 0 0 997811. 3452.63 0.39 0.07 0.19 -1 -1 0.39 0.0267329 0.0237013 72 51 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 10.01 vpr 65.24 MiB -1 -1 0.15 20476 1 0.03 -1 -1 33948 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66804 32 32 353 285 1 178 78 17 17 289 -1 unnamed_device 26.8 MiB 2.10 751 11200 4198 5153 1849 65.2 MiB 0.09 0.00 4.43749 -136.856 -4.43749 4.43749 0.92 0.00050118 0.000457913 0.0370741 0.0339331 46 2439 25 6.95648e+06 202660 828058. 2865.25 4.58 0.218507 0.191204 28066 200906 -1 1911 21 1356 2100 167493 35963 4.25946 4.25946 -140.254 -4.25946 0 0 1.01997e+06 3529.29 0.39 0.07 0.19 -1 -1 0.39 0.0249498 0.022204 73 48 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 17.61 vpr 65.21 MiB -1 -1 0.15 20352 1 0.03 -1 -1 33692 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66780 32 32 276 237 1 155 74 17 17 289 -1 unnamed_device 26.8 MiB 3.27 640 8909 3664 5023 222 65.2 MiB 0.07 0.00 4.07418 -127.444 -4.07418 4.07418 0.94 0.000415061 0.000377321 0.0267557 0.0244504 40 2228 26 6.95648e+06 144757 706193. 2443.58 11.06 0.227487 0.197192 26914 176310 -1 1908 20 1236 1636 170227 43620 3.49292 3.49292 -123.985 -3.49292 0 0 926341. 3205.33 0.35 0.07 0.17 -1 -1 0.35 0.0203761 0.0181456 61 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 7.44 vpr 65.39 MiB -1 -1 0.15 20488 1 0.03 -1 -1 33936 -1 -1 12 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66960 31 32 319 272 1 165 75 17 17 289 -1 unnamed_device 26.8 MiB 2.00 607 11925 5002 6435 488 65.4 MiB 0.08 0.00 3.79972 -120.636 -3.79972 3.79972 0.88 0.000457606 0.000417956 0.0368453 0.0336359 48 1984 29 6.95648e+06 173708 865456. 2994.66 2.22 0.143614 0.12559 28354 207349 -1 1536 22 1367 1944 159821 37228 3.32686 3.32686 -118.238 -3.32686 0 0 1.05005e+06 3633.38 0.39 0.07 0.20 -1 -1 0.39 0.0231066 0.0204468 68 60 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 12.29 vpr 65.08 MiB -1 -1 0.15 20540 1 0.03 -1 -1 33612 -1 -1 22 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 30 32 329 273 1 160 84 17 17 289 -1 unnamed_device 26.5 MiB 0.85 673 11064 3726 5225 2113 65.1 MiB 0.08 0.00 3.0162 -94.6102 -3.0162 3.0162 0.88 0.000448898 0.000407439 0.0306547 0.0279905 38 2318 31 6.95648e+06 318465 678818. 2348.85 8.34 0.248467 0.216955 26626 170182 -1 1666 22 1207 1932 150045 33191 3.07097 3.07097 -103.367 -3.07097 0 0 902133. 3121.57 0.33 0.06 0.15 -1 -1 0.33 0.0233411 0.0206438 71 52 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 5.89 vpr 65.02 MiB -1 -1 0.14 20228 1 0.03 -1 -1 33972 -1 -1 28 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 28 32 277 229 1 155 88 17 17 289 -1 unnamed_device 26.5 MiB 0.57 661 10813 4387 5735 691 65.0 MiB 0.06 0.00 3.6526 -99.519 -3.6526 3.6526 0.90 0.000374785 0.000337521 0.0235308 0.0213315 42 1918 35 6.95648e+06 405319 744469. 2576.02 2.16 0.112651 0.0980457 27202 183097 -1 1492 19 1112 1848 158479 34720 3.42886 3.42886 -104.154 -3.42886 0 0 949917. 3286.91 0.36 0.06 0.16 -1 -1 0.36 0.0180857 0.016012 72 20 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 12.78 vpr 65.32 MiB -1 -1 0.16 20424 1 0.03 -1 -1 33676 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66884 30 32 317 269 1 149 74 17 17 289 -1 unnamed_device 26.7 MiB 0.84 539 10769 4210 5259 1300 65.3 MiB 0.08 0.00 3.44073 -108.225 -3.44073 3.44073 0.93 0.000472088 0.000429789 0.0344458 0.0314227 48 1688 34 6.95648e+06 173708 865456. 2994.66 8.56 0.244843 0.21194 28354 207349 -1 1454 20 1284 1813 161942 38490 2.90237 2.90237 -113.138 -2.90237 0 0 1.05005e+06 3633.38 0.40 0.06 0.21 -1 -1 0.40 0.0217269 0.0192765 60 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 8.31 vpr 65.15 MiB -1 -1 0.15 20732 1 0.03 -1 -1 33644 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66716 32 32 335 282 1 178 75 17 17 289 -1 unnamed_device 26.8 MiB 1.69 645 12715 5333 6940 442 65.2 MiB 0.09 0.00 3.42769 -121.093 -3.42769 3.42769 0.93 0.000474019 0.000436279 0.0393999 0.0358727 50 2241 50 6.95648e+06 159232 902133. 3121.57 3.22 0.168644 0.147113 28642 213929 -1 1593 19 1335 1900 145307 35353 3.38763 3.38763 -126.727 -3.38763 0 0 1.08113e+06 3740.92 0.40 0.06 0.21 -1 -1 0.40 0.0210027 0.0186686 72 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 8.74 vpr 65.10 MiB -1 -1 0.15 20044 1 0.03 -1 -1 34064 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66664 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 26.6 MiB 0.47 742 11799 3162 6813 1824 65.1 MiB 0.09 0.00 4.51778 -120.862 -4.51778 4.51778 0.95 0.000454443 0.000412094 0.0303251 0.0276159 38 2757 47 6.95648e+06 347416 678818. 2348.85 4.99 0.163015 0.143449 26626 170182 -1 1955 22 1406 2365 210396 43684 4.28086 4.28086 -136.346 -4.28086 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0225307 0.0199964 74 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 8.95 vpr 65.43 MiB -1 -1 0.15 20568 1 0.03 -1 -1 33828 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67000 32 32 350 275 1 196 77 17 17 289 -1 unnamed_device 26.9 MiB 1.86 848 13606 5964 7217 425 65.4 MiB 0.11 0.00 4.62557 -150.036 -4.62557 4.62557 0.92 0.000509967 0.000465109 0.046425 0.0425233 48 2886 26 6.95648e+06 188184 865456. 2994.66 3.67 0.179139 0.158534 28354 207349 -1 2378 21 1719 2506 253013 54190 4.45496 4.45496 -155.997 -4.45496 0 0 1.05005e+06 3633.38 0.41 0.09 0.20 -1 -1 0.41 0.0263427 0.0235004 82 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 7.92 vpr 65.41 MiB -1 -1 0.15 20876 1 0.03 -1 -1 33940 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66984 32 32 385 308 1 179 88 17 17 289 -1 unnamed_device 27.0 MiB 1.42 797 15688 5451 7649 2588 65.4 MiB 0.12 0.00 4.33979 -134.933 -4.33979 4.33979 0.91 0.000546099 0.000498922 0.0466566 0.0425183 46 2516 45 6.95648e+06 347416 828058. 2865.25 3.12 0.191616 0.169606 28066 200906 -1 1814 21 1369 2331 203557 42476 3.90176 3.90176 -141.076 -3.90176 0 0 1.01997e+06 3529.29 0.39 0.08 0.19 -1 -1 0.39 0.0268271 0.0239122 80 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 9.62 vpr 65.72 MiB -1 -1 0.16 20768 1 0.03 -1 -1 33964 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67300 32 32 387 309 1 182 87 17 17 289 -1 unnamed_device 27.2 MiB 1.07 866 12951 5370 7312 269 65.7 MiB 0.10 0.00 4.06852 -135.722 -4.06852 4.06852 0.91 0.000556932 0.000508222 0.0403721 0.036868 46 2675 25 6.95648e+06 332941 828058. 2865.25 5.16 0.239004 0.209189 28066 200906 -1 2147 24 1837 3034 242444 50740 3.80186 3.80186 -138.053 -3.80186 0 0 1.01997e+06 3529.29 0.39 0.09 0.19 -1 -1 0.39 0.0287801 0.0255292 80 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 8.50 vpr 64.66 MiB -1 -1 0.15 20316 1 0.03 -1 -1 33712 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66208 30 32 272 232 1 142 74 17 17 289 -1 unnamed_device 26.2 MiB 0.90 535 10769 4485 5866 418 64.7 MiB 0.07 0.00 3.76076 -107.124 -3.76076 3.76076 0.91 0.0004211 0.000384043 0.030261 0.0276768 40 1903 31 6.95648e+06 173708 706193. 2443.58 4.36 0.171752 0.148654 26914 176310 -1 1524 19 1178 1778 168955 37421 2.97232 2.97232 -106.451 -2.97232 0 0 926341. 3205.33 0.36 0.06 0.17 -1 -1 0.36 0.0192513 0.0171721 57 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 6.69 vpr 65.56 MiB -1 -1 0.16 20824 1 0.03 -1 -1 34020 -1 -1 14 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67132 30 32 375 299 1 179 76 17 17 289 -1 unnamed_device 27.0 MiB 0.96 646 9676 4013 5115 548 65.6 MiB 0.07 0.00 4.36203 -132.758 -4.36203 4.36203 0.90 0.000481764 0.00043746 0.0326586 0.0297145 48 2052 23 6.95648e+06 202660 865456. 2994.66 2.45 0.153316 0.13406 28354 207349 -1 1617 22 1735 2408 175230 42504 4.01936 4.01936 -135.967 -4.01936 0 0 1.05005e+06 3633.38 0.40 0.07 0.19 -1 -1 0.40 0.0250536 0.0221858 76 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 10.20 vpr 65.40 MiB -1 -1 0.15 20476 1 0.03 -1 -1 33924 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66972 32 32 340 270 1 193 78 17 17 289 -1 unnamed_device 27.0 MiB 1.54 811 10204 3614 5065 1525 65.4 MiB 0.08 0.00 4.885 -145.205 -4.885 4.885 0.89 0.000432771 0.000394006 0.0304773 0.0278562 52 2609 28 6.95648e+06 202660 926341. 3205.33 5.40 0.208953 0.18146 29218 227130 -1 1774 24 1606 2624 195956 42976 4.05461 4.05461 -135.926 -4.05461 0 0 1.14541e+06 3963.36 0.41 0.07 0.20 -1 -1 0.41 0.024099 0.0212896 80 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 8.30 vpr 65.36 MiB -1 -1 0.17 20660 1 0.03 -1 -1 33640 -1 -1 14 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66932 31 32 340 275 1 187 77 17 17 289 -1 unnamed_device 26.9 MiB 2.33 840 10509 4398 5789 322 65.4 MiB 0.08 0.00 5.54805 -153.523 -5.54805 5.54805 0.93 0.000496375 0.000452941 0.0344801 0.0315263 44 2631 24 6.95648e+06 202660 787024. 2723.27 2.61 0.142734 0.125826 27778 195446 -1 1950 22 1256 1879 161199 34431 4.63121 4.63121 -148.523 -4.63121 0 0 997811. 3452.63 0.37 0.07 0.19 -1 -1 0.37 0.024404 0.0216399 79 43 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 7.98 vpr 65.50 MiB -1 -1 0.17 20472 1 0.03 -1 -1 33860 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67076 30 32 377 310 1 170 83 17 17 289 -1 unnamed_device 27.0 MiB 1.77 981 8543 2209 4916 1418 65.5 MiB 0.07 0.00 4.87546 -153.661 -4.87546 4.87546 0.93 0.000471349 0.000430634 0.0276412 0.0252465 38 2411 22 6.95648e+06 303989 678818. 2348.85 2.97 0.149495 0.130998 26626 170182 -1 1934 18 1044 1554 112841 23684 4.18706 4.18706 -148.99 -4.18706 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.0224766 0.019989 74 78 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 6.84 vpr 65.48 MiB -1 -1 0.16 20444 1 0.03 -1 -1 33680 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67056 32 32 365 294 1 177 77 17 17 289 -1 unnamed_device 27.1 MiB 1.19 757 8390 3202 4298 890 65.5 MiB 0.07 0.00 4.41913 -136.437 -4.41913 4.41913 0.93 0.000547922 0.000489398 0.0300248 0.0274773 44 2553 27 6.95648e+06 188184 787024. 2723.27 2.30 0.160296 0.140988 27778 195446 -1 1842 22 1553 2635 192052 41288 3.91902 3.91902 -136.724 -3.91902 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0273452 0.0243315 72 54 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 9.08 vpr 65.26 MiB -1 -1 0.17 20616 1 0.03 -1 -1 33652 -1 -1 16 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 29 32 378 310 1 170 77 17 17 289 -1 unnamed_device 26.8 MiB 1.26 676 7412 2307 3688 1417 65.3 MiB 0.06 0.00 4.03938 -124.354 -4.03938 4.03938 0.93 0.000509168 0.000461335 0.0268981 0.0246484 44 2121 22 6.95648e+06 231611 787024. 2723.27 4.45 0.205119 0.178062 27778 195446 -1 1494 27 1341 1977 147127 33062 3.45412 3.45412 -121.253 -3.45412 0 0 997811. 3452.63 0.39 0.07 0.20 -1 -1 0.39 0.0304671 0.0268787 73 79 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 7.11 vpr 64.80 MiB -1 -1 0.14 20236 1 0.02 -1 -1 33792 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66360 32 32 243 205 1 139 74 17 17 289 -1 unnamed_device 26.2 MiB 1.00 565 8134 3323 4613 198 64.8 MiB 0.06 0.00 3.56099 -106.975 -3.56099 3.56099 0.92 0.000394941 0.000359061 0.0227833 0.020824 38 2071 30 6.95648e+06 144757 678818. 2348.85 2.95 0.125199 0.110053 26626 170182 -1 1519 20 1088 1614 126966 28362 3.22832 3.22832 -114.337 -3.22832 0 0 902133. 3121.57 0.34 0.06 0.16 -1 -1 0.34 0.0190408 0.0170175 53 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 11.64 vpr 65.42 MiB -1 -1 0.16 20760 1 0.03 -1 -1 33972 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66992 32 32 373 302 1 174 87 17 17 289 -1 unnamed_device 27.0 MiB 3.07 780 14679 6171 7995 513 65.4 MiB 0.10 0.00 4.81946 -134.729 -4.81946 4.81946 0.89 0.000560458 0.00051329 0.0428351 0.0391094 52 2232 23 6.95648e+06 332941 926341. 3205.33 5.23 0.241095 0.21084 29218 227130 -1 1621 23 1130 1780 152505 32527 4.34076 4.34076 -127.201 -4.34076 0 0 1.14541e+06 3963.36 0.43 0.07 0.21 -1 -1 0.43 0.0265306 0.0235222 76 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 6.82 vpr 65.79 MiB -1 -1 0.14 20428 1 0.03 -1 -1 33572 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67364 32 32 397 314 1 188 77 17 17 289 -1 unnamed_device 27.3 MiB 0.67 707 10672 3433 5510 1729 65.8 MiB 0.08 0.00 4.24958 -138.057 -4.24958 4.24958 0.89 0.000505865 0.000455977 0.037162 0.0338202 46 2101 39 6.95648e+06 188184 828058. 2865.25 2.90 0.18311 0.160119 28066 200906 -1 1652 20 1609 2296 152828 36988 4.14472 4.14472 -138.713 -4.14472 0 0 1.01997e+06 3529.29 0.39 0.07 0.18 -1 -1 0.39 0.0250535 0.0222069 78 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 9.83 vpr 65.14 MiB -1 -1 0.14 20316 1 0.03 -1 -1 33832 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 32 32 269 231 1 166 75 17 17 289 -1 unnamed_device 26.5 MiB 1.69 678 11925 5137 6457 331 65.1 MiB 0.08 0.00 4.05037 -122.042 -4.05037 4.05037 0.93 0.000427011 0.000390557 0.0336731 0.0308223 48 1762 19 6.95648e+06 159232 865456. 2994.66 4.82 0.166642 0.14527 28354 207349 -1 1595 19 1059 1326 116666 25861 3.66851 3.66851 -120.053 -3.66851 0 0 1.05005e+06 3633.38 0.41 0.05 0.20 -1 -1 0.41 0.0194571 0.0173448 68 26 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 6.46 vpr 65.09 MiB -1 -1 0.14 20072 1 0.03 -1 -1 33704 -1 -1 13 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66652 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 26.7 MiB 1.26 478 11916 5026 6437 453 65.1 MiB 0.07 0.00 3.32523 -101.355 -3.32523 3.32523 0.89 0.00039847 0.000364497 0.0305607 0.0278898 44 1783 23 6.95648e+06 188184 787024. 2723.27 2.06 0.119486 0.104799 27778 195446 -1 1359 24 1243 1747 125414 30386 3.03797 3.03797 -110.211 -3.03797 0 0 997811. 3452.63 0.37 0.05 0.18 -1 -1 0.37 0.0193283 0.0170556 57 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 7.82 vpr 65.41 MiB -1 -1 0.16 20544 1 0.03 -1 -1 33816 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66984 32 32 348 274 1 202 79 17 17 289 -1 unnamed_device 26.9 MiB 1.69 850 12416 5241 6727 448 65.4 MiB 0.10 0.00 4.62707 -149.564 -4.62707 4.62707 0.93 0.000523081 0.000478397 0.0403966 0.0369065 46 2722 26 6.95648e+06 217135 828058. 2865.25 2.74 0.156443 0.138154 28066 200906 -1 2074 21 1865 2438 193182 44797 4.40371 4.40371 -157.748 -4.40371 0 0 1.01997e+06 3529.29 0.39 0.08 0.20 -1 -1 0.39 0.0257153 0.0229496 85 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 8.78 vpr 65.15 MiB -1 -1 0.15 20620 1 0.03 -1 -1 33632 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66712 32 32 356 289 1 196 78 17 17 289 -1 unnamed_device 26.7 MiB 1.16 1128 10536 3281 5855 1400 65.1 MiB 0.09 0.00 4.81844 -154.124 -4.81844 4.81844 0.91 0.000510774 0.000465234 0.0355834 0.0325175 38 3024 27 6.95648e+06 202660 678818. 2348.85 4.30 0.158829 0.139455 26626 170182 -1 2569 28 1789 2629 367783 104626 4.56931 4.56931 -159.679 -4.56931 0 0 902133. 3121.57 0.34 0.12 0.17 -1 -1 0.34 0.0316107 0.0279738 82 53 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 8.26 vpr 65.33 MiB -1 -1 0.16 20484 1 0.03 -1 -1 33600 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66896 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 26.9 MiB 0.50 843 11456 4360 5763 1333 65.3 MiB 0.09 0.00 4.93982 -142.75 -4.93982 4.93982 0.89 0.000524757 0.00047918 0.0368285 0.0337173 46 2871 42 6.95648e+06 246087 828058. 2865.25 4.47 0.191865 0.169822 28066 200906 -1 1957 23 1780 2859 219432 52826 4.6493 4.6493 -149.515 -4.6493 0 0 1.01997e+06 3529.29 0.39 0.09 0.20 -1 -1 0.39 0.0285935 0.0254983 83 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 8.39 vpr 65.47 MiB -1 -1 0.16 20368 1 0.03 -1 -1 33720 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67040 30 32 316 264 1 159 83 17 17 289 -1 unnamed_device 26.9 MiB 0.94 630 11063 3050 5652 2361 65.5 MiB 0.08 0.00 3.41127 -97.5363 -3.41127 3.41127 0.91 0.000451354 0.000411447 0.0302903 0.0277048 40 1835 26 6.95648e+06 303989 706193. 2443.58 4.23 0.178871 0.155283 26914 176310 -1 1460 22 1308 2138 157545 37153 3.03682 3.03682 -102.64 -3.03682 0 0 926341. 3205.33 0.35 0.07 0.17 -1 -1 0.35 0.0234985 0.0207524 69 47 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 5.58 vpr 64.73 MiB -1 -1 0.14 20116 1 0.03 -1 -1 34312 -1 -1 14 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66284 27 32 255 219 1 130 73 17 17 289 -1 unnamed_device 26.2 MiB 0.54 487 8585 3718 4335 532 64.7 MiB 0.05 0.00 2.94405 -89.6154 -2.94405 2.94405 0.89 0.000381243 0.000347073 0.0237516 0.0217267 38 1494 30 6.95648e+06 202660 678818. 2348.85 1.98 0.116697 0.101825 26626 170182 -1 1118 22 1017 1284 84491 21005 3.22642 3.22642 -98.2028 -3.22642 0 0 902133. 3121.57 0.33 0.05 0.16 -1 -1 0.33 0.0195493 0.0173017 54 26 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 10.79 vpr 65.66 MiB -1 -1 0.18 20488 1 0.03 -1 -1 33916 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67240 32 32 421 327 1 224 80 17 17 289 -1 unnamed_device 27.2 MiB 1.39 1018 15904 6884 8410 610 65.7 MiB 0.14 0.00 3.84665 -134.608 -3.84665 3.84665 0.92 0.000588847 0.000537026 0.0575721 0.0526198 50 3513 31 6.95648e+06 231611 902133. 3121.57 5.89 0.306262 0.269336 28642 213929 -1 2746 23 2119 3360 318996 69446 4.29822 4.29822 -148.875 -4.29822 0 0 1.08113e+06 3740.92 0.40 0.11 0.21 -1 -1 0.40 0.032073 0.028634 95 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 12.79 vpr 65.33 MiB -1 -1 0.17 20728 1 0.03 -1 -1 33736 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66900 31 32 365 296 1 190 78 17 17 289 -1 unnamed_device 27.0 MiB 5.02 805 13026 5515 7018 493 65.3 MiB 0.10 0.00 5.43776 -152.039 -5.43776 5.43776 0.91 0.000530437 0.000483475 0.0443631 0.0405536 46 2740 36 6.95648e+06 217135 828058. 2865.25 4.38 0.190705 0.168667 28066 200906 -1 2126 23 1586 2402 285851 56911 4.81541 4.81541 -158.107 -4.81541 0 0 1.01997e+06 3529.29 0.39 0.10 0.19 -1 -1 0.39 0.0290972 0.0258842 82 60 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 9.36 vpr 65.11 MiB -1 -1 0.14 20592 1 0.03 -1 -1 33700 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66672 32 32 331 280 1 171 75 17 17 289 -1 unnamed_device 26.6 MiB 3.16 636 10029 4132 5585 312 65.1 MiB 0.07 0.00 3.67834 -124.027 -3.67834 3.67834 0.89 0.000427437 0.000378917 0.0302434 0.0274503 48 2185 28 6.95648e+06 159232 865456. 2994.66 2.96 0.149497 0.131242 28354 207349 -1 1586 19 1295 1849 150992 36406 3.53836 3.53836 -135.928 -3.53836 0 0 1.05005e+06 3633.38 0.41 0.06 0.18 -1 -1 0.41 0.0209722 0.0186328 70 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 9.00 vpr 65.56 MiB -1 -1 0.16 20212 1 0.03 -1 -1 33704 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67136 32 32 326 263 1 169 86 17 17 289 -1 unnamed_device 27.2 MiB 0.40 731 15206 6549 8090 567 65.6 MiB 0.11 0.00 4.25273 -121.678 -4.25273 4.25273 0.92 0.000482427 0.000438612 0.042022 0.0383473 48 2298 32 6.95648e+06 318465 865456. 2994.66 5.19 0.212816 0.18619 28354 207349 -1 1836 22 1173 1814 166694 37685 3.80451 3.80451 -123.316 -3.80451 0 0 1.05005e+06 3633.38 0.41 0.07 0.20 -1 -1 0.41 0.0246563 0.0219643 74 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 6.45 vpr 65.69 MiB -1 -1 0.17 20540 1 0.03 -1 -1 33400 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67264 31 32 373 294 1 188 88 17 17 289 -1 unnamed_device 27.2 MiB 0.90 751 14323 4212 7223 2888 65.7 MiB 0.10 0.00 4.42633 -128.985 -4.42633 4.42633 0.93 0.000531439 0.000485392 0.0419192 0.038251 40 2622 38 6.95648e+06 361892 706193. 2443.58 2.20 0.162407 0.142624 26914 176310 -1 1848 21 1476 2267 182833 41978 4.24412 4.24412 -133.401 -4.24412 0 0 926341. 3205.33 0.34 0.07 0.17 -1 -1 0.34 0.0252885 0.0224457 83 46 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 7.17 vpr 65.19 MiB -1 -1 0.15 20684 1 0.03 -1 -1 33956 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66752 30 32 325 268 1 166 78 17 17 289 -1 unnamed_device 26.9 MiB 1.09 713 11034 4424 5642 968 65.2 MiB 0.08 0.00 3.35027 -102.373 -3.35027 3.35027 0.89 0.000459882 0.00041517 0.0325445 0.0296782 38 2733 50 6.95648e+06 231611 678818. 2348.85 2.90 0.15337 0.134625 26626 170182 -1 1933 23 1526 2555 207027 44479 3.45197 3.45197 -114.871 -3.45197 0 0 902133. 3121.57 0.34 0.08 0.17 -1 -1 0.34 0.0249963 0.0220507 68 46 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 24.14 vpr 65.48 MiB -1 -1 0.16 20468 1 0.03 -1 -1 33544 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67052 32 32 350 275 1 208 78 17 17 289 -1 unnamed_device 27.0 MiB 1.68 907 11200 3286 6600 1314 65.5 MiB 0.09 0.00 4.64467 -151.435 -4.64467 4.64467 0.91 0.000517223 0.0004724 0.0377675 0.0345685 48 2706 42 6.95648e+06 202660 865456. 2994.66 19.04 0.316407 0.274819 28354 207349 -1 2215 23 1973 2902 294986 61193 4.36766 4.36766 -149.121 -4.36766 0 0 1.05005e+06 3633.38 0.42 0.10 0.21 -1 -1 0.42 0.0279282 0.024835 88 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 10.10 vpr 65.38 MiB -1 -1 0.16 20624 1 0.03 -1 -1 33916 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66952 32 32 386 307 1 187 82 17 17 289 -1 unnamed_device 26.9 MiB 0.98 748 12542 5225 6709 608 65.4 MiB 0.09 0.00 4.47033 -145.191 -4.47033 4.47033 0.91 0.000544265 0.000493717 0.0397058 0.0360725 54 2246 33 6.95648e+06 260562 949917. 3286.91 5.68 0.246792 0.214246 29506 232905 -1 1720 22 1437 1922 168232 38969 3.73252 3.73252 -136.255 -3.73252 0 0 1.17392e+06 4061.99 0.43 0.07 0.24 -1 -1 0.43 0.0270674 0.0239606 80 59 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 10.33 vpr 65.24 MiB -1 -1 0.15 20156 1 0.03 -1 -1 34008 -1 -1 12 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 29 32 269 229 1 132 73 17 17 289 -1 unnamed_device 26.9 MiB 5.09 466 10105 4186 5463 456 65.2 MiB 0.07 0.00 3.92822 -103.3 -3.92822 3.92822 0.91 0.000399225 0.000361746 0.0293381 0.0268174 36 1523 22 6.95648e+06 173708 648988. 2245.63 2.11 0.127244 0.111739 26050 158493 -1 1228 15 778 1009 83744 19223 2.99102 2.99102 -101.074 -2.99102 0 0 828058. 2865.25 0.32 0.04 0.15 -1 -1 0.32 0.0162311 0.0144931 53 28 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 6.86 vpr 65.25 MiB -1 -1 0.14 20352 1 0.03 -1 -1 34056 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66820 32 32 310 266 1 163 75 17 17 289 -1 unnamed_device 26.8 MiB 1.27 606 9397 3361 4720 1316 65.3 MiB 0.07 0.00 3.68935 -126.523 -3.68935 3.68935 0.92 0.000466831 0.000425872 0.029323 0.0267578 42 2317 35 6.95648e+06 159232 744469. 2576.02 2.34 0.145241 0.127077 27202 183097 -1 1631 21 1234 1585 161332 35156 3.67372 3.67372 -130.834 -3.67372 0 0 949917. 3286.91 0.37 0.07 0.17 -1 -1 0.37 0.0221846 0.0197079 64 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 7.02 vpr 65.34 MiB -1 -1 0.15 20504 1 0.03 -1 -1 33764 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66912 31 32 326 261 1 172 86 17 17 289 -1 unnamed_device 27.0 MiB 1.05 743 11993 4026 5805 2162 65.3 MiB 0.09 0.00 4.14331 -121.523 -4.14331 4.14331 0.91 0.000475226 0.000431982 0.0331852 0.0303252 44 2597 32 6.95648e+06 332941 787024. 2723.27 2.66 0.136064 0.120277 27778 195446 -1 1579 21 1324 2035 146086 33880 3.91111 3.91111 -121.462 -3.91111 0 0 997811. 3452.63 0.39 0.06 0.19 -1 -1 0.39 0.023495 0.0209037 77 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 6.96 vpr 65.29 MiB -1 -1 0.16 20336 1 0.03 -1 -1 33492 -1 -1 13 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66852 29 32 262 224 1 161 74 17 17 289 -1 unnamed_device 26.8 MiB 1.72 616 10459 4329 5659 471 65.3 MiB 0.07 0.00 4.04737 -116.055 -4.04737 4.04737 0.91 0.0004095 0.000368671 0.0288443 0.026374 42 2143 50 6.95648e+06 188184 744469. 2576.02 2.00 0.135601 0.11808 27202 183097 -1 1571 22 1189 1496 121997 26928 3.32882 3.32882 -111.78 -3.32882 0 0 949917. 3286.91 0.37 0.06 0.18 -1 -1 0.37 0.0202791 0.0179405 67 25 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 8.94 vpr 65.28 MiB -1 -1 0.14 20080 1 0.03 -1 -1 33468 -1 -1 9 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66848 32 32 278 238 1 144 73 17 17 289 -1 unnamed_device 26.9 MiB 1.31 561 11321 4813 6209 299 65.3 MiB 0.08 0.00 3.85356 -111.135 -3.85356 3.85356 0.91 0.000462409 0.000424134 0.0329491 0.0300437 44 1715 24 6.95648e+06 130281 787024. 2723.27 4.43 0.155614 0.134785 27778 195446 -1 1302 20 976 1470 104911 23828 2.87327 2.87327 -102.953 -2.87327 0 0 997811. 3452.63 0.39 0.05 0.17 -1 -1 0.39 0.0192521 0.0170636 56 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 14.39 vpr 65.57 MiB -1 -1 0.16 20548 1 0.03 -1 -1 33972 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67148 31 32 373 300 1 174 87 17 17 289 -1 unnamed_device 27.1 MiB 1.06 696 13719 4819 6392 2508 65.6 MiB 0.10 0.00 3.46983 -115.227 -3.46983 3.46983 0.93 0.00052496 0.000474681 0.0402444 0.0366753 44 2085 27 6.95648e+06 347416 787024. 2723.27 9.97 0.279355 0.242572 27778 195446 -1 1582 23 1647 2194 169180 36742 3.00057 3.00057 -113.892 -3.00057 0 0 997811. 3452.63 0.38 0.07 0.18 -1 -1 0.38 0.0273047 0.0241991 79 60 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 8.40 vpr 65.21 MiB -1 -1 0.14 20396 1 0.03 -1 -1 33968 -1 -1 12 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66772 31 32 265 230 1 159 75 17 17 289 -1 unnamed_device 26.8 MiB 2.69 587 9081 3433 3891 1757 65.2 MiB 0.06 0.00 3.99537 -118.981 -3.99537 3.99537 0.92 0.000414291 0.000377739 0.0257784 0.0235585 44 2307 34 6.95648e+06 173708 787024. 2723.27 2.44 0.132715 0.116371 27778 195446 -1 1553 21 1133 1566 124116 28356 3.46822 3.46822 -116.107 -3.46822 0 0 997811. 3452.63 0.39 0.06 0.18 -1 -1 0.39 0.0197326 0.01749 64 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 15.79 vpr 65.36 MiB -1 -1 0.17 20544 1 0.03 -1 -1 33496 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66924 32 32 349 286 1 165 86 17 17 289 -1 unnamed_device 27.0 MiB 1.37 827 13505 5541 6681 1283 65.4 MiB 0.10 0.00 3.208 -113.036 -3.208 3.208 0.93 0.000518637 0.000461468 0.0384563 0.0350655 40 2180 23 6.95648e+06 318465 706193. 2443.58 11.09 0.276739 0.241213 26914 176310 -1 1944 22 1395 2260 237037 48189 3.27047 3.27047 -118.143 -3.27047 0 0 926341. 3205.33 0.35 0.08 0.18 -1 -1 0.35 0.0253935 0.0225241 71 54 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 10.01 vpr 65.52 MiB -1 -1 0.17 20460 1 0.03 -1 -1 33788 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67096 31 32 396 325 1 176 78 17 17 289 -1 unnamed_device 27.1 MiB 1.82 717 9706 3985 5340 381 65.5 MiB 0.08 0.00 3.995 -134.818 -3.995 3.995 0.93 0.000537082 0.000488355 0.034115 0.0311067 44 2136 23 6.95648e+06 217135 787024. 2723.27 4.79 0.202067 0.17595 27778 195446 -1 1559 21 1323 1791 115158 27485 3.49017 3.49017 -133.994 -3.49017 0 0 997811. 3452.63 0.40 0.06 0.19 -1 -1 0.40 0.0263597 0.023422 73 87 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 7.41 vpr 65.09 MiB -1 -1 0.15 20276 1 0.03 -1 -1 33460 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66656 32 32 303 262 1 145 74 17 17 289 -1 unnamed_device 26.6 MiB 1.43 546 10149 3579 4930 1640 65.1 MiB 0.07 0.00 2.9023 -96.8242 -2.9023 2.9023 0.93 0.000421276 0.00038608 0.0298826 0.0272356 46 1638 37 6.95648e+06 144757 828058. 2865.25 2.65 0.146272 0.128144 28066 200906 -1 1065 31 1105 1702 170168 64073 2.92452 2.92452 -98.2858 -2.92452 0 0 1.01997e+06 3529.29 0.39 0.08 0.20 -1 -1 0.39 0.0284071 0.0249461 57 54 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 7.28 vpr 65.00 MiB -1 -1 0.14 20232 1 0.03 -1 -1 33692 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 32 32 290 244 1 170 75 17 17 289 -1 unnamed_device 26.5 MiB 1.53 688 11293 4712 6328 253 65.0 MiB 0.08 0.00 4.09973 -130.941 -4.09973 4.09973 0.91 0.000429303 0.00039029 0.0321728 0.0292453 46 2135 28 6.95648e+06 159232 828058. 2865.25 2.47 0.136335 0.118953 28066 200906 -1 1698 23 1365 1978 168465 36966 3.48812 3.48812 -125.856 -3.48812 0 0 1.01997e+06 3529.29 0.40 0.07 0.18 -1 -1 0.40 0.0220184 0.0194785 70 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 9.48 vpr 65.33 MiB -1 -1 0.15 20696 1 0.03 -1 -1 33788 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66900 32 32 318 257 1 188 78 17 17 289 -1 unnamed_device 26.9 MiB 2.62 759 11034 4566 6063 405 65.3 MiB 0.08 0.00 4.18668 -129.57 -4.18668 4.18668 0.92 0.000471188 0.000429117 0.0343881 0.0314055 40 2605 27 6.95648e+06 202660 706193. 2443.58 3.53 0.154952 0.136443 26914 176310 -1 2030 28 2034 2690 321469 108944 4.18692 4.18692 -144.182 -4.18692 0 0 926341. 3205.33 0.36 0.12 0.17 -1 -1 0.36 0.0303446 0.0268562 79 27 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 15.19 vpr 65.40 MiB -1 -1 0.15 20620 1 0.03 -1 -1 33728 -1 -1 21 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66968 29 32 324 268 1 162 82 17 17 289 -1 unnamed_device 26.8 MiB 1.18 716 10228 3612 4706 1910 65.4 MiB 0.07 0.00 4.16289 -113.847 -4.16289 4.16289 0.88 0.000457138 0.000415882 0.0288889 0.0264171 40 2239 28 6.95648e+06 303989 706193. 2443.58 10.83 0.286454 0.250051 26914 176310 -1 1916 21 1219 1919 167378 38434 3.83102 3.83102 -120.807 -3.83102 0 0 926341. 3205.33 0.34 0.07 0.16 -1 -1 0.34 0.0225628 0.0200248 71 49 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 11.16 vpr 65.47 MiB -1 -1 0.16 20620 1 0.03 -1 -1 33648 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67044 32 32 393 312 1 206 78 17 17 289 -1 unnamed_device 26.9 MiB 1.61 846 13524 5903 7163 458 65.5 MiB 0.11 0.00 4.885 -157.826 -4.885 4.885 0.91 0.000571596 0.000525106 0.0477869 0.0436657 56 2698 26 6.95648e+06 202660 973134. 3367.25 6.04 0.262533 0.229524 29794 239141 -1 2164 24 2275 3274 346015 70595 4.53181 4.53181 -153.712 -4.53181 0 0 1.19926e+06 4149.71 0.45 0.11 0.24 -1 -1 0.45 0.031482 0.0280511 89 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 7.05 vpr 64.81 MiB -1 -1 0.14 20228 1 0.03 -1 -1 33512 -1 -1 13 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66364 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 26.3 MiB 1.61 501 12076 4244 5318 2514 64.8 MiB 0.07 0.00 3.74884 -94.0057 -3.74884 3.74884 0.92 0.00036824 0.000335987 0.0302586 0.02766 40 1910 34 6.95648e+06 188184 706193. 2443.58 2.22 0.123528 0.108265 26914 176310 -1 1432 21 999 1536 124979 30089 3.24152 3.24152 -100.677 -3.24152 0 0 926341. 3205.33 0.35 0.06 0.17 -1 -1 0.35 0.0183926 0.01629 54 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 6.59 vpr 65.77 MiB -1 -1 0.16 20616 1 0.03 -1 -1 33672 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67348 32 32 412 334 1 182 89 17 17 289 -1 unnamed_device 27.3 MiB 1.15 1008 14543 5389 7197 1957 65.8 MiB 0.11 0.00 3.70954 -138.278 -3.70954 3.70954 0.92 0.00057382 0.000520757 0.0448382 0.0406107 40 2412 20 6.95648e+06 361892 706193. 2443.58 2.13 0.16028 0.141512 26914 176310 -1 2154 19 1653 2182 212075 52958 3.94551 3.94551 -149.35 -3.94551 0 0 926341. 3205.33 0.34 0.08 0.16 -1 -1 0.34 0.0261995 0.0234177 81 87 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 8.75 vpr 65.38 MiB -1 -1 0.16 20668 1 0.03 -1 -1 33600 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66944 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 26.8 MiB 3.21 599 11389 4446 5401 1542 65.4 MiB 0.09 0.00 2.96105 -112.244 -2.96105 2.96105 0.92 0.000511549 0.000465974 0.0410275 0.0374909 38 1957 49 6.95648e+06 144757 678818. 2348.85 2.27 0.169195 0.148764 26626 170182 -1 1545 21 1439 1962 170499 37127 3.32342 3.32342 -127.868 -3.32342 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0248949 0.0220564 61 93 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 9.54 vpr 65.23 MiB -1 -1 0.15 20448 1 0.03 -1 -1 33848 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66792 32 32 360 293 1 172 86 17 17 289 -1 unnamed_device 26.8 MiB 1.14 728 11993 4280 5583 2130 65.2 MiB 0.08 0.00 4.11943 -125.672 -4.11943 4.11943 0.93 0.000446952 0.000406227 0.033114 0.03018 44 2660 42 6.95648e+06 318465 787024. 2723.27 5.08 0.239462 0.207535 27778 195446 -1 1849 23 1170 1786 148503 34066 3.72046 3.72046 -123.66 -3.72046 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0257312 0.0227361 75 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 10.29 vpr 65.93 MiB -1 -1 0.16 20568 1 0.03 -1 -1 33884 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67512 32 32 396 299 1 224 79 17 17 289 -1 unnamed_device 27.4 MiB 1.73 1133 13599 5570 7048 981 65.9 MiB 0.12 0.00 6.01533 -177.28 -6.01533 6.01533 0.91 0.00052895 0.000480372 0.0472959 0.0430493 46 3137 40 6.95648e+06 217135 828058. 2865.25 5.19 0.202457 0.178261 28066 200906 -1 2522 22 2092 2983 241006 49112 4.93995 4.93995 -170.158 -4.93995 0 0 1.01997e+06 3529.29 0.38 0.09 0.19 -1 -1 0.38 0.0292427 0.0260683 95 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 10.10 vpr 64.77 MiB -1 -1 0.14 20096 1 0.03 -1 -1 33692 -1 -1 11 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66320 30 32 224 207 1 132 73 17 17 289 -1 unnamed_device 26.3 MiB 2.78 506 10409 4642 5419 348 64.8 MiB 0.06 0.00 2.68965 -94.6691 -2.68965 2.68965 0.93 0.000346012 0.000314475 0.0261688 0.0238732 38 1556 24 6.95648e+06 159232 678818. 2348.85 4.13 0.141157 0.122128 26626 170182 -1 1195 19 802 1041 94426 20467 2.45462 2.45462 -95.1551 -2.45462 0 0 902133. 3121.57 0.33 0.05 0.16 -1 -1 0.33 0.0164791 0.0146457 52 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 10.43 vpr 65.23 MiB -1 -1 0.15 20476 1 0.03 -1 -1 33960 -1 -1 11 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66792 30 32 286 239 1 135 73 17 17 289 -1 unnamed_device 26.8 MiB 1.61 453 9649 4016 5181 452 65.2 MiB 0.07 0.00 3.70034 -111.62 -3.70034 3.70034 0.91 0.0004251 0.000387666 0.0295889 0.0270018 46 1640 50 6.95648e+06 159232 828058. 2865.25 5.55 0.246519 0.214448 28066 200906 -1 1226 20 1006 1462 125465 30002 3.05703 3.05703 -110.049 -3.05703 0 0 1.01997e+06 3529.29 0.39 0.06 0.19 -1 -1 0.39 0.0200865 0.0178042 54 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 16.42 vpr 65.12 MiB -1 -1 0.13 20120 1 0.03 -1 -1 33756 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 32 32 296 247 1 152 74 17 17 289 -1 unnamed_device 26.7 MiB 0.47 657 10304 4396 5657 251 65.1 MiB 0.07 0.00 3.0756 -108.291 -3.0756 3.0756 0.88 0.00044146 0.000401089 0.031659 0.028824 48 2011 23 6.95648e+06 144757 865456. 2994.66 12.72 0.263017 0.228466 28354 207349 -1 1649 24 1360 2172 225132 50412 3.10392 3.10392 -114.589 -3.10392 0 0 1.05005e+06 3633.38 0.42 0.08 0.20 -1 -1 0.42 0.0237159 0.0210032 59 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 6.06 vpr 64.81 MiB -1 -1 0.13 20632 1 0.03 -1 -1 33404 -1 -1 18 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66364 25 32 216 194 1 121 75 17 17 289 -1 unnamed_device 26.3 MiB 0.51 433 7975 3255 4078 642 64.8 MiB 0.05 0.00 3.29759 -76.2304 -3.29759 3.29759 0.92 0.0003411 0.00031249 0.0192443 0.0176363 38 1530 37 6.95648e+06 260562 678818. 2348.85 2.39 0.107164 0.0931285 26626 170182 -1 1053 23 716 1101 70310 18227 2.97562 2.97562 -82.152 -2.97562 0 0 902133. 3121.57 0.34 0.04 0.16 -1 -1 0.34 0.0175521 0.015461 53 19 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 26.42 vpr 65.56 MiB -1 -1 0.16 20364 1 0.03 -1 -1 33904 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67132 32 32 376 307 1 178 76 17 17 289 -1 unnamed_device 27.1 MiB 1.92 736 10796 3697 5176 1923 65.6 MiB 0.09 0.00 3.75962 -125.032 -3.75962 3.75962 0.90 0.000526048 0.000478975 0.0381008 0.0347675 46 3469 47 6.95648e+06 173708 828058. 2865.25 21.11 0.311609 0.27107 28066 200906 -1 2274 26 1722 2861 316286 80992 4.55982 4.55982 -147.737 -4.55982 0 0 1.01997e+06 3529.29 0.39 0.11 0.20 -1 -1 0.39 0.0309111 0.0273732 73 69 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 16.12 vpr 65.73 MiB -1 -1 0.18 20408 1 0.03 -1 -1 33940 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67308 31 32 409 331 1 183 80 17 17 289 -1 unnamed_device 27.2 MiB 1.09 761 10744 4472 5806 466 65.7 MiB 0.08 0.00 4.07648 -139.886 -4.07648 4.07648 0.88 0.00056105 0.000511811 0.0377016 0.0344449 40 2524 30 6.95648e+06 246087 706193. 2443.58 11.79 0.319213 0.279264 26914 176310 -1 2082 24 1894 2565 277033 61234 3.75172 3.75172 -141.408 -3.75172 0 0 926341. 3205.33 0.34 0.10 0.16 -1 -1 0.34 0.0303157 0.0268398 80 86 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 7.17 vpr 65.20 MiB -1 -1 0.16 20464 1 0.03 -1 -1 33988 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66764 32 32 354 285 1 206 79 17 17 289 -1 unnamed_device 26.8 MiB 1.73 820 12416 4576 5562 2278 65.2 MiB 0.09 0.00 5.01635 -146.768 -5.01635 5.01635 0.87 0.000483925 0.000435888 0.0370353 0.0337885 50 2377 29 6.99608e+06 220735 902133. 3121.57 2.15 0.140086 0.123388 28642 213929 -1 1909 22 1605 2314 176575 41070 4.26721 4.26721 -144.507 -4.26721 0 0 1.08113e+06 3740.92 0.41 0.07 0.21 -1 -1 0.41 0.0256158 0.0227741 88 47 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 8.18 vpr 65.18 MiB -1 -1 0.17 20616 1 0.03 -1 -1 33932 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 30 32 363 293 1 224 79 17 17 289 -1 unnamed_device 26.7 MiB 1.47 962 11233 3707 5934 1592 65.2 MiB 0.10 0.00 5.03284 -151.156 -5.03284 5.03284 0.91 0.000530967 0.000484508 0.0374847 0.0342271 48 2930 36 6.99608e+06 250167 865456. 2994.66 3.29 0.170247 0.149125 28354 207349 -1 2454 22 2109 3060 320643 66754 4.64259 4.64259 -159.254 -4.64259 0 0 1.05005e+06 3633.38 0.40 0.10 0.20 -1 -1 0.40 0.026396 0.0233645 99 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 9.41 vpr 65.17 MiB -1 -1 0.14 20168 1 0.03 -1 -1 33548 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66732 32 32 299 247 1 183 78 17 17 289 -1 unnamed_device 26.7 MiB 0.87 839 12196 5162 6681 353 65.2 MiB 0.08 0.00 3.55379 -113.123 -3.55379 3.55379 0.92 0.000397962 0.000359775 0.0332116 0.0301214 46 2261 50 6.99608e+06 206020 828058. 2865.25 5.27 0.215435 0.186877 28066 200906 -1 1688 21 1220 1684 108708 25079 3.33991 3.33991 -112.007 -3.33991 0 0 1.01997e+06 3529.29 0.40 0.05 0.18 -1 -1 0.40 0.0206343 0.0183143 76 26 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 7.48 vpr 65.12 MiB -1 -1 0.15 20232 1 0.03 -1 -1 33984 -1 -1 16 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 29 32 308 248 1 179 77 17 17 289 -1 unnamed_device 26.5 MiB 1.55 700 12302 4830 6041 1431 65.1 MiB 0.09 0.00 4.05128 -116.185 -4.05128 4.05128 0.93 0.000462262 0.000420921 0.0374133 0.0341596 44 2703 50 6.99608e+06 235451 787024. 2723.27 2.56 0.169995 0.149136 27778 195446 -1 1833 21 1187 1876 151742 33849 3.80801 3.80801 -121.421 -3.80801 0 0 997811. 3452.63 0.39 0.06 0.19 -1 -1 0.39 0.0220082 0.0195215 78 25 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 8.90 vpr 65.34 MiB -1 -1 0.16 20268 1 0.03 -1 -1 33472 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66908 32 32 336 268 1 194 78 17 17 289 -1 unnamed_device 27.0 MiB 2.92 903 10204 4241 5732 231 65.3 MiB 0.08 0.00 4.44731 -141.413 -4.44731 4.44731 0.94 0.000509421 0.00045858 0.0332986 0.0303593 40 3203 32 6.99608e+06 206020 706193. 2443.58 2.59 0.142659 0.12485 26914 176310 -1 2582 26 1925 3211 395909 108698 4.57915 4.57915 -156.213 -4.57915 0 0 926341. 3205.33 0.37 0.12 0.17 -1 -1 0.37 0.0283323 0.0250117 81 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 9.37 vpr 65.48 MiB -1 -1 0.17 20600 1 0.03 -1 -1 33880 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67052 32 32 366 295 1 221 81 17 17 289 -1 unnamed_device 27.0 MiB 3.19 903 12506 4545 6575 1386 65.5 MiB 0.10 0.00 3.38924 -119.322 -3.38924 3.38924 0.90 0.000513336 0.000468332 0.0395858 0.0360743 50 2568 40 6.99608e+06 250167 902133. 3121.57 2.77 0.173975 0.152763 28642 213929 -1 2051 19 1572 2359 183553 42134 3.37616 3.37616 -126.643 -3.37616 0 0 1.08113e+06 3740.92 0.41 0.07 0.21 -1 -1 0.41 0.0242058 0.0216644 97 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 7.29 vpr 65.04 MiB -1 -1 0.14 20164 1 0.03 -1 -1 34136 -1 -1 15 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66600 27 32 259 221 1 154 74 17 17 289 -1 unnamed_device 26.6 MiB 1.72 527 10769 4406 5481 882 65.0 MiB 0.07 0.00 3.89582 -110.808 -3.89582 3.89582 0.92 0.000387886 0.000352524 0.0291034 0.0265696 36 2292 38 6.99608e+06 220735 648988. 2245.63 2.40 0.122155 0.107091 26050 158493 -1 1359 21 1244 1818 169708 37451 3.29456 3.29456 -109.219 -3.29456 0 0 828058. 2865.25 0.33 0.06 0.15 -1 -1 0.33 0.0190884 0.0168897 66 26 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 14.79 vpr 65.13 MiB -1 -1 0.15 20100 1 0.03 -1 -1 33964 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 26.6 MiB 0.39 664 11203 3028 6067 2108 65.1 MiB 0.08 0.00 2.75465 -88.1636 -2.75465 2.75465 0.92 0.000424789 0.000386943 0.0266542 0.0243112 40 2155 26 6.99608e+06 367892 706193. 2443.58 11.16 0.233094 0.203111 26914 176310 -1 1692 20 1158 1910 156293 36151 2.88741 2.88741 -100.184 -2.88741 0 0 926341. 3205.33 0.36 0.06 0.17 -1 -1 0.36 0.019927 0.0176655 69 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 6.59 vpr 65.40 MiB -1 -1 0.16 20612 1 0.03 -1 -1 34016 -1 -1 14 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66972 31 32 317 271 1 204 77 17 17 289 -1 unnamed_device 27.0 MiB 1.02 886 12302 5141 6872 289 65.4 MiB 0.09 0.00 3.35914 -124.887 -3.35914 3.35914 0.92 0.000460079 0.000419943 0.036954 0.0337003 38 2606 25 6.99608e+06 206020 678818. 2348.85 2.31 0.152168 0.134028 26626 170182 -1 2055 25 1818 2460 203278 42148 3.45687 3.45687 -127.895 -3.45687 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.0254018 0.022464 87 60 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 8.09 vpr 65.23 MiB -1 -1 0.14 20220 1 0.03 -1 -1 33624 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66792 32 32 298 248 1 181 77 17 17 289 -1 unnamed_device 26.7 MiB 0.97 886 11650 3739 6142 1769 65.2 MiB 0.08 0.00 3.93292 -137.573 -3.93292 3.93292 0.88 0.000428901 0.000391036 0.0334957 0.0306437 44 2058 19 6.99608e+06 191304 787024. 2723.27 3.96 0.175742 0.153398 27778 195446 -1 1756 20 1168 1506 105812 22286 3.38876 3.38876 -129.939 -3.38876 0 0 997811. 3452.63 0.37 0.05 0.17 -1 -1 0.37 0.0208226 0.0184848 75 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 6.78 vpr 64.99 MiB -1 -1 0.14 20404 1 0.03 -1 -1 33432 -1 -1 14 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 30 32 303 262 1 188 76 17 17 289 -1 unnamed_device 26.5 MiB 0.83 675 11436 3956 5372 2108 65.0 MiB 0.08 0.00 3.86033 -123.728 -3.86033 3.86033 0.94 0.000456342 0.000416034 0.0344593 0.0314915 44 2557 34 6.99608e+06 206020 787024. 2723.27 2.64 0.149258 0.1309 27778 195446 -1 1641 23 1524 2109 158603 37910 3.9203 3.9203 -128.16 -3.9203 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0228813 0.0202291 83 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 8.42 vpr 65.18 MiB -1 -1 0.14 20420 1 0.03 -1 -1 33456 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 32 32 276 237 1 165 75 17 17 289 -1 unnamed_device 26.7 MiB 0.76 784 8133 1910 6031 192 65.2 MiB 0.06 0.00 3.27288 -116.653 -3.27288 3.27288 0.91 0.000418765 0.0003765 0.02363 0.021642 42 2243 48 6.99608e+06 161872 744469. 2576.02 4.46 0.171289 0.148211 27202 183097 -1 1765 18 1184 1528 133685 27691 3.25642 3.25642 -118.512 -3.25642 0 0 949917. 3286.91 0.35 0.05 0.18 -1 -1 0.35 0.0170088 0.0151195 66 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 6.85 vpr 65.05 MiB -1 -1 0.16 20600 1 0.03 -1 -1 33968 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66616 32 32 344 272 1 201 79 17 17 289 -1 unnamed_device 26.6 MiB 0.92 822 13937 5978 7482 477 65.1 MiB 0.11 0.00 3.95082 -133.749 -3.95082 3.95082 0.92 0.000510435 0.000465777 0.0449979 0.0411941 44 2826 40 6.99608e+06 220735 787024. 2723.27 2.57 0.178084 0.156823 27778 195446 -1 2114 22 1906 2780 212010 46158 3.47486 3.47486 -129.119 -3.47486 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0251021 0.0222774 87 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 21.56 vpr 65.61 MiB -1 -1 0.16 20604 1 0.03 -1 -1 33760 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67188 32 32 363 295 1 228 81 17 17 289 -1 unnamed_device 27.1 MiB 1.59 975 9706 2651 5494 1561 65.6 MiB 0.09 0.00 4.79397 -141.28 -4.79397 4.79397 0.91 0.000532358 0.000486545 0.0317101 0.02898 40 3303 38 6.99608e+06 250167 706193. 2443.58 16.61 0.314783 0.275522 26914 176310 -1 2620 23 2520 3437 448745 95617 4.80751 4.80751 -162.56 -4.80751 0 0 926341. 3205.33 0.35 0.13 0.17 -1 -1 0.35 0.0299887 0.0267759 97 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 9.13 vpr 64.95 MiB -1 -1 0.14 20068 1 0.03 -1 -1 33408 -1 -1 13 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 29 32 248 215 1 155 74 17 17 289 -1 unnamed_device 26.5 MiB 3.25 630 8909 3655 4893 361 65.0 MiB 0.06 0.00 3.0564 -89.3526 -3.0564 3.0564 0.92 0.00038183 0.000347562 0.0243212 0.022245 38 2055 28 6.99608e+06 191304 678818. 2348.85 2.71 0.12125 0.106197 26626 170182 -1 1643 20 1092 1545 126544 27809 2.99782 2.99782 -99.322 -2.99782 0 0 902133. 3121.57 0.34 0.05 0.17 -1 -1 0.34 0.0186402 0.0165816 64 21 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 7.19 vpr 65.25 MiB -1 -1 0.16 20376 1 0.03 -1 -1 33956 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 32 32 370 297 1 222 80 17 17 289 -1 unnamed_device 26.8 MiB 1.43 999 13840 5885 7630 325 65.2 MiB 0.11 0.00 3.63599 -124.523 -3.63599 3.63599 0.92 0.000537379 0.000489757 0.0455688 0.0414688 42 3382 43 6.99608e+06 235451 744469. 2576.02 2.42 0.174502 0.153623 27202 183097 -1 2337 22 1991 3046 222901 49590 3.85421 3.85421 -132.716 -3.85421 0 0 949917. 3286.91 0.37 0.08 0.17 -1 -1 0.37 0.0279754 0.0248066 96 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 6.19 vpr 65.43 MiB -1 -1 0.16 20536 1 0.03 -1 -1 33868 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66996 32 32 338 269 1 198 79 17 17 289 -1 unnamed_device 27.1 MiB 0.86 791 13092 5076 6583 1433 65.4 MiB 0.10 0.00 4.34151 -134.806 -4.34151 4.34151 0.87 0.000486486 0.000443015 0.0403574 0.0368916 46 2501 32 6.99608e+06 220735 828058. 2865.25 2.10 0.138125 0.121683 28066 200906 -1 1778 18 1408 1828 128340 29719 3.24426 3.24426 -123.925 -3.24426 0 0 1.01997e+06 3529.29 0.38 0.06 0.19 -1 -1 0.38 0.0216684 0.0193185 84 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 7.38 vpr 65.14 MiB -1 -1 0.15 20224 1 0.03 -1 -1 33696 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66700 32 32 323 276 1 210 79 17 17 289 -1 unnamed_device 26.8 MiB 0.88 778 13261 3730 7601 1930 65.1 MiB 0.10 0.00 3.17504 -117.557 -3.17504 3.17504 0.92 0.000475276 0.000432769 0.0391902 0.0357578 50 2131 33 6.99608e+06 220735 902133. 3121.57 3.12 0.155612 0.136375 28642 213929 -1 1590 21 1617 2041 147949 35563 3.02106 3.02106 -117.33 -3.02106 0 0 1.08113e+06 3740.92 0.42 0.06 0.21 -1 -1 0.42 0.0227682 0.0202417 89 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 9.37 vpr 64.87 MiB -1 -1 0.14 20292 1 0.03 -1 -1 33840 -1 -1 10 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66424 30 32 222 206 1 131 72 17 17 289 -1 unnamed_device 26.4 MiB 1.98 513 10949 4743 5895 311 64.9 MiB 0.07 0.00 2.33546 -88.3817 -2.33546 2.33546 0.92 0.000340037 0.000309812 0.0277819 0.0253954 40 1324 27 6.99608e+06 147157 706193. 2443.58 4.21 0.147205 0.127279 26914 176310 -1 1181 23 764 860 93166 20453 2.25983 2.25983 -86.0791 -2.25983 0 0 926341. 3205.33 0.34 0.05 0.17 -1 -1 0.34 0.0178896 0.0157357 52 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 10.03 vpr 65.20 MiB -1 -1 0.15 20552 1 0.03 -1 -1 34092 -1 -1 13 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 31 32 291 243 1 171 76 17 17 289 -1 unnamed_device 26.7 MiB 2.35 843 8236 2227 5366 643 65.2 MiB 0.06 0.00 3.78247 -126.288 -3.78247 3.78247 0.90 0.000420582 0.00038269 0.0244959 0.0223685 38 2536 29 6.99608e+06 191304 678818. 2348.85 4.48 0.177675 0.153642 26626 170182 -1 2106 23 1547 2212 217668 42716 3.58136 3.58136 -136.48 -3.58136 0 0 902133. 3121.57 0.34 0.07 0.17 -1 -1 0.34 0.0217948 0.0192768 72 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 7.13 vpr 64.94 MiB -1 -1 0.16 20644 1 0.03 -1 -1 34080 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66496 32 32 342 271 1 201 84 17 17 289 -1 unnamed_device 26.6 MiB 1.51 802 15273 5455 7440 2378 64.9 MiB 0.11 0.00 3.98218 -132.203 -3.98218 3.98218 0.91 0.000504509 0.000458572 0.0453157 0.0413266 44 2430 42 6.99608e+06 294314 787024. 2723.27 2.28 0.184353 0.162255 27778 195446 -1 2006 22 2002 2886 210270 47858 3.85615 3.85615 -138.988 -3.85615 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0256819 0.0228193 88 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 11.45 vpr 65.47 MiB -1 -1 0.16 20700 1 0.03 -1 -1 33852 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67044 32 32 372 300 1 225 80 17 17 289 -1 unnamed_device 27.0 MiB 2.51 1225 15044 5236 8229 1579 65.5 MiB 0.12 0.00 4.6726 -146.803 -4.6726 4.6726 0.92 0.000533369 0.000487239 0.0497205 0.0454671 40 3256 42 6.99608e+06 235451 706193. 2443.58 5.57 0.204241 0.180657 26914 176310 -1 2959 22 2174 3170 324163 61807 4.397 4.397 -154.131 -4.397 0 0 926341. 3205.33 0.35 0.10 0.17 -1 -1 0.35 0.0285952 0.0255082 100 59 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 9.42 vpr 64.75 MiB -1 -1 0.14 19996 1 0.03 -1 -1 34028 -1 -1 13 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66308 26 32 190 182 1 123 71 17 17 289 -1 unnamed_device 26.3 MiB 2.34 422 8539 3493 4523 523 64.8 MiB 0.05 0.00 2.7298 -77.3475 -2.7298 2.7298 0.91 0.000302433 0.00027557 0.0194896 0.0178214 38 1230 26 6.99608e+06 191304 678818. 2348.85 3.97 0.131323 0.113346 26626 170182 -1 988 17 660 740 59916 14111 2.52491 2.52491 -76.7508 -2.52491 0 0 902133. 3121.57 0.34 0.03 0.17 -1 -1 0.34 0.013074 0.0116894 53 21 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 8.70 vpr 64.78 MiB -1 -1 0.13 20152 1 0.03 -1 -1 33788 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66332 32 32 285 227 1 162 79 17 17 289 -1 unnamed_device 26.3 MiB 1.08 692 10050 3569 4878 1603 64.8 MiB 0.07 0.00 4.56174 -113.848 -4.56174 4.56174 0.91 0.000428232 0.000388963 0.0280353 0.025583 40 2097 25 6.99608e+06 220735 706193. 2443.58 4.40 0.187332 0.162486 26914 176310 -1 1605 23 1263 2079 137488 34805 3.61236 3.61236 -117.368 -3.61236 0 0 926341. 3205.33 0.36 0.06 0.16 -1 -1 0.36 0.0227475 0.020175 66 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 5.29 vpr 64.32 MiB -1 -1 0.12 19864 1 0.03 -1 -1 33624 -1 -1 8 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65868 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 26.0 MiB 0.23 399 10055 4241 5582 232 64.3 MiB 0.06 0.00 2.06111 -67.7592 -2.06111 2.06111 0.92 0.000299165 0.000271322 0.0216467 0.0196924 36 1381 35 6.99608e+06 117725 648988. 2245.63 1.99 0.09418 0.08178 26050 158493 -1 935 18 613 680 59062 14806 1.90102 1.90102 -72.2718 -1.90102 0 0 828058. 2865.25 0.32 0.04 0.15 -1 -1 0.32 0.0130402 0.0115803 42 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 6.84 vpr 64.82 MiB -1 -1 0.15 20476 1 0.03 -1 -1 33792 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 32 32 300 245 1 178 78 17 17 289 -1 unnamed_device 26.3 MiB 1.29 805 13358 5696 7249 413 64.8 MiB 0.10 0.00 4.47086 -121.677 -4.47086 4.47086 0.92 0.000455458 0.00041661 0.039091 0.0357033 38 2634 33 6.99608e+06 206020 678818. 2348.85 2.31 0.140899 0.123774 26626 170182 -1 2001 18 1258 1814 144356 32185 4.05506 4.05506 -129.534 -4.05506 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.0199095 0.0177097 73 21 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 6.37 vpr 65.08 MiB -1 -1 0.13 20164 1 0.03 -1 -1 33732 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 26.6 MiB 0.57 715 11617 3653 5870 2094 65.1 MiB 0.08 0.00 2.89821 -97.4108 -2.89821 2.89821 0.92 0.000487979 0.000444628 0.0300221 0.0273698 40 2334 43 6.99608e+06 309029 706193. 2443.58 2.59 0.149749 0.130788 26914 176310 -1 1764 22 1317 2198 155518 39145 2.91362 2.91362 -107.306 -2.91362 0 0 926341. 3205.33 0.34 0.06 0.17 -1 -1 0.34 0.0221848 0.0195698 74 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 21.38 vpr 64.86 MiB -1 -1 0.16 20680 1 0.03 -1 -1 33912 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66412 32 32 338 277 1 205 79 17 17 289 -1 unnamed_device 26.5 MiB 1.70 800 6839 1729 4140 970 64.9 MiB 0.06 0.00 4.20669 -125.419 -4.20669 4.20669 0.90 0.0004914 0.000448351 0.0219086 0.0200545 46 2866 37 6.99608e+06 220735 828058. 2865.25 16.40 0.260928 0.226109 28066 200906 -1 1963 27 1930 2965 207915 54574 3.98026 3.98026 -130.663 -3.98026 0 0 1.01997e+06 3529.29 0.38 0.09 0.20 -1 -1 0.38 0.0284892 0.025116 87 47 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 10.00 vpr 64.87 MiB -1 -1 0.15 20144 1 0.03 -1 -1 33760 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66424 32 32 284 241 1 168 76 17 17 289 -1 unnamed_device 26.4 MiB 2.47 688 11116 4644 6232 240 64.9 MiB 0.08 0.00 3.13575 -107.33 -3.13575 3.13575 0.93 0.000428665 0.000391157 0.0319454 0.0291598 40 2069 25 6.99608e+06 176588 706193. 2443.58 4.31 0.176975 0.153193 26914 176310 -1 1705 19 1205 1671 144211 32934 2.85647 2.85647 -115.13 -2.85647 0 0 926341. 3205.33 0.34 0.06 0.17 -1 -1 0.34 0.0193962 0.0172106 69 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 7.75 vpr 65.11 MiB -1 -1 0.15 20424 1 0.03 -1 -1 33600 -1 -1 14 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66676 30 32 262 227 1 160 76 17 17 289 -1 unnamed_device 26.7 MiB 1.58 579 8876 3271 4297 1308 65.1 MiB 0.06 0.00 3.70857 -107.816 -3.70857 3.70857 0.91 0.000394713 0.000359612 0.0245716 0.0224686 46 2274 40 6.99608e+06 206020 828058. 2865.25 2.93 0.122538 0.107771 28066 200906 -1 1494 18 1131 1685 141949 32817 3.31781 3.31781 -110.058 -3.31781 0 0 1.01997e+06 3529.29 0.39 0.06 0.19 -1 -1 0.39 0.0176707 0.0157561 66 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 6.62 vpr 64.81 MiB -1 -1 0.15 20464 1 0.03 -1 -1 33848 -1 -1 18 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66364 28 32 260 223 1 152 78 17 17 289 -1 unnamed_device 26.4 MiB 0.87 581 9540 3893 5214 433 64.8 MiB 0.06 0.00 3.25804 -101.918 -3.25804 3.25804 0.91 0.000385245 0.000351948 0.0247942 0.0226419 40 1989 36 6.99608e+06 264882 706193. 2443.58 2.55 0.128034 0.111711 26914 176310 -1 1716 21 1169 1835 175888 37843 3.24451 3.24451 -111.764 -3.24451 0 0 926341. 3205.33 0.36 0.06 0.17 -1 -1 0.36 0.0195418 0.0173014 69 27 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 6.25 vpr 64.66 MiB -1 -1 0.14 20136 1 0.03 -1 -1 33576 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66212 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 26.1 MiB 0.43 677 11234 4696 6284 254 64.7 MiB 0.07 0.00 3.31833 -109.934 -3.31833 3.31833 0.93 0.000425625 0.000386923 0.0310569 0.0283721 38 2069 49 6.99608e+06 147157 678818. 2348.85 2.63 0.138966 0.121043 26626 170182 -1 1632 22 1173 1750 152835 32234 3.08097 3.08097 -114.127 -3.08097 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.0205199 0.0181923 58 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 7.12 vpr 64.94 MiB -1 -1 0.16 20248 1 0.03 -1 -1 33544 -1 -1 13 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66500 31 32 271 231 1 165 76 17 17 289 -1 unnamed_device 26.5 MiB 1.00 656 7596 1857 5260 479 64.9 MiB 0.06 0.00 3.30918 -105.476 -3.30918 3.30918 0.93 0.000413902 0.00037684 0.0221067 0.0202451 36 2831 44 6.99608e+06 191304 648988. 2245.63 2.94 0.117237 0.102309 26050 158493 -1 1963 22 1288 1769 137287 33344 3.28422 3.28422 -119.957 -3.28422 0 0 828058. 2865.25 0.33 0.06 0.16 -1 -1 0.33 0.02022 0.0178674 69 26 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 8.01 vpr 65.12 MiB -1 -1 0.16 20212 1 0.03 -1 -1 33680 -1 -1 15 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 29 32 291 250 1 180 76 17 17 289 -1 unnamed_device 26.6 MiB 2.88 919 9036 2362 6094 580 65.1 MiB 0.06 0.00 2.93125 -106.214 -2.93125 2.93125 0.92 0.000426419 0.000387565 0.0257187 0.0235001 38 2275 29 6.99608e+06 220735 678818. 2348.85 1.92 0.103438 0.0904464 26626 170182 -1 1906 20 1248 1666 131418 27524 2.54072 2.54072 -103.379 -2.54072 0 0 902133. 3121.57 0.33 0.05 0.17 -1 -1 0.33 0.0197662 0.0174559 77 48 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 10.28 vpr 65.55 MiB -1 -1 0.15 20496 1 0.03 -1 -1 33456 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67128 32 32 367 282 1 217 80 17 17 289 -1 unnamed_device 27.1 MiB 1.32 980 13324 5630 7408 286 65.6 MiB 0.11 0.00 4.30703 -125.875 -4.30703 4.30703 0.91 0.000539431 0.00049106 0.0435744 0.03974 48 2769 27 6.99608e+06 235451 865456. 2994.66 5.59 0.259997 0.227576 28354 207349 -1 2305 21 1566 2487 218085 46245 3.85107 3.85107 -126.186 -3.85107 0 0 1.05005e+06 3633.38 0.41 0.08 0.20 -1 -1 0.41 0.0266747 0.023774 92 26 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 20.68 vpr 65.64 MiB -1 -1 0.16 20612 1 0.03 -1 -1 33792 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67216 32 32 391 311 1 244 83 17 17 289 -1 unnamed_device 27.1 MiB 1.66 1014 12683 4657 5804 2222 65.6 MiB 0.10 0.00 4.21676 -146.737 -4.21676 4.21676 0.85 0.000562537 0.000509427 0.03852 0.0350618 40 3377 27 6.99608e+06 279598 706193. 2443.58 15.82 0.32458 0.283381 26914 176310 -1 2683 22 2481 3505 303631 63000 4.1642 4.1642 -153.469 -4.1642 0 0 926341. 3205.33 0.34 0.09 0.17 -1 -1 0.34 0.0275938 0.0246144 106 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 7.29 vpr 64.76 MiB -1 -1 0.15 20228 1 0.03 -1 -1 33968 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66316 31 32 279 237 1 157 74 17 17 289 -1 unnamed_device 26.3 MiB 1.43 880 9374 3265 4936 1173 64.8 MiB 0.07 0.00 3.62727 -120.557 -3.62727 3.62727 0.93 0.000437818 0.000394031 0.0281106 0.0257362 38 2274 42 6.99608e+06 161872 678818. 2348.85 2.62 0.141874 0.124365 26626 170182 -1 1870 21 1290 1839 154887 30757 3.07597 3.07597 -117.571 -3.07597 0 0 902133. 3121.57 0.34 0.06 0.17 -1 -1 0.34 0.0204158 0.0181383 66 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 8.23 vpr 65.45 MiB -1 -1 0.17 20596 1 0.03 -1 -1 33496 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67024 31 32 370 297 1 226 80 17 17 289 -1 unnamed_device 26.9 MiB 1.71 969 14528 6235 7667 626 65.5 MiB 0.11 0.00 3.54759 -121.928 -3.54759 3.54759 0.90 0.00051053 0.000465251 0.046465 0.0424028 44 3091 40 6.99608e+06 250167 787024. 2723.27 3.16 0.183641 0.16109 27778 195446 -1 2114 23 1808 2557 218723 48461 3.43406 3.43406 -125.843 -3.43406 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0278144 0.0246369 99 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 7.60 vpr 65.55 MiB -1 -1 0.16 20636 1 0.03 -1 -1 33784 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67128 31 32 377 302 1 235 80 17 17 289 -1 unnamed_device 27.0 MiB 1.71 989 9196 3129 4406 1661 65.6 MiB 0.08 0.00 5.24281 -163.942 -5.24281 5.24281 0.91 0.0005198 0.00047285 0.0317843 0.0290512 46 3107 34 6.99608e+06 250167 828058. 2865.25 2.49 0.150921 0.133249 28066 200906 -1 2427 24 2260 3261 322064 66079 4.9951 4.9951 -167.895 -4.9951 0 0 1.01997e+06 3529.29 0.40 0.10 0.20 -1 -1 0.40 0.0299589 0.0266172 104 60 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 12.85 vpr 65.65 MiB -1 -1 0.18 20364 1 0.03 -1 -1 33744 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67224 31 32 383 305 1 233 81 17 17 289 -1 unnamed_device 27.1 MiB 3.38 930 9881 4037 5524 320 65.6 MiB 0.08 0.00 5.08213 -159.731 -5.08213 5.08213 0.93 0.000547224 0.000496248 0.033365 0.030409 44 3191 49 6.99608e+06 264882 787024. 2723.27 6.10 0.265145 0.230174 27778 195446 -1 2262 22 1979 2791 227435 48423 4.92804 4.92804 -168.151 -4.92804 0 0 997811. 3452.63 0.40 0.08 0.19 -1 -1 0.40 0.0273241 0.0242495 103 60 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 11.28 vpr 65.39 MiB -1 -1 0.16 20480 1 0.03 -1 -1 33556 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66956 31 32 352 285 1 215 79 17 17 289 -1 unnamed_device 27.0 MiB 2.37 879 13768 5339 6393 2036 65.4 MiB 0.11 0.00 3.89582 -126.245 -3.89582 3.89582 0.91 0.00051052 0.000465516 0.0437545 0.0399566 54 2532 25 6.99608e+06 235451 949917. 3286.91 5.45 0.237219 0.206743 29506 232905 -1 1991 21 1567 2125 189300 39017 3.55316 3.55316 -123.951 -3.55316 0 0 1.17392e+06 4061.99 0.45 0.07 0.23 -1 -1 0.45 0.025411 0.02261 93 51 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 19.21 vpr 65.21 MiB -1 -1 0.15 20192 1 0.03 -1 -1 33712 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66776 32 32 291 242 1 178 78 17 17 289 -1 unnamed_device 26.7 MiB 1.06 818 11864 4957 6528 379 65.2 MiB 0.07 0.00 3.99218 -112.33 -3.99218 3.99218 0.86 0.000388638 0.000354923 0.0300181 0.0274465 40 2655 45 6.99608e+06 206020 706193. 2443.58 15.00 0.241355 0.209768 26914 176310 -1 2076 22 1484 2121 208966 48190 3.79596 3.79596 -122.324 -3.79596 0 0 926341. 3205.33 0.36 0.07 0.16 -1 -1 0.36 0.0218558 0.0193395 72 24 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 10.48 vpr 65.38 MiB -1 -1 0.17 20716 1 0.03 -1 -1 34008 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66952 32 32 457 356 1 282 85 17 17 289 -1 unnamed_device 27.0 MiB 1.47 1337 8083 1871 5905 307 65.4 MiB 0.09 0.00 5.02 -170.696 -5.02 5.02 0.90 0.000601257 0.000546401 0.0301784 0.0275618 50 3572 29 6.99608e+06 309029 902133. 3121.57 5.54 0.257643 0.225548 28642 213929 -1 3217 19 2341 3402 287769 59163 5.59054 5.59054 -190.004 -5.59054 0 0 1.08113e+06 3740.92 0.41 0.10 0.20 -1 -1 0.41 0.0292656 0.0262478 129 84 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 9.03 vpr 64.96 MiB -1 -1 0.15 20268 1 0.03 -1 -1 33792 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66520 31 32 261 225 1 158 74 17 17 289 -1 unnamed_device 26.6 MiB 3.69 589 8599 2844 4344 1411 65.0 MiB 0.06 0.00 3.01 -97.4254 -3.01 3.01 0.91 0.000390858 0.000356432 0.0243913 0.0223348 40 1560 21 6.99608e+06 161872 706193. 2443.58 2.14 0.113631 0.0991646 26914 176310 -1 1412 22 1176 1593 130059 30761 2.93162 2.93162 -102.009 -2.93162 0 0 926341. 3205.33 0.35 0.06 0.17 -1 -1 0.35 0.0198999 0.0176082 65 24 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 9.39 vpr 65.18 MiB -1 -1 0.15 20716 1 0.03 -1 -1 33764 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 31 32 337 267 1 200 78 17 17 289 -1 unnamed_device 26.8 MiB 0.70 792 13524 5096 6588 1840 65.2 MiB 0.10 0.00 4.60267 -142.66 -4.60267 4.60267 0.88 0.000489414 0.000451811 0.0422257 0.0384594 52 2817 39 6.99608e+06 220735 926341. 3205.33 5.40 0.223187 0.194488 29218 227130 -1 1873 23 1635 2275 182344 41764 4.12671 4.12671 -138.837 -4.12671 0 0 1.14541e+06 3963.36 0.42 0.07 0.22 -1 -1 0.42 0.0251886 0.0222632 85 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 25.48 vpr 65.41 MiB -1 -1 0.17 20508 1 0.03 -1 -1 33456 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66976 32 32 349 284 1 213 79 17 17 289 -1 unnamed_device 27.0 MiB 1.41 1020 12416 4555 6119 1742 65.4 MiB 0.10 0.00 3.83208 -127.177 -3.83208 3.83208 0.92 0.000505438 0.000461956 0.0401764 0.0367112 42 3450 36 6.99608e+06 220735 744469. 2576.02 20.74 0.283403 0.247016 27202 183097 -1 2539 19 1614 2491 229704 48395 3.46042 3.46042 -128.596 -3.46042 0 0 949917. 3286.91 0.37 0.08 0.18 -1 -1 0.37 0.0236063 0.0210592 91 50 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 7.77 vpr 65.11 MiB -1 -1 0.14 20324 1 0.03 -1 -1 33992 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66668 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 26.6 MiB 0.95 673 10228 2970 5232 2026 65.1 MiB 0.07 0.00 4.31309 -118.378 -4.31309 4.31309 0.92 0.00046046 0.000419644 0.0292112 0.0266735 40 2459 37 6.99608e+06 235451 706193. 2443.58 3.58 0.146884 0.128504 26914 176310 -1 1893 23 1363 2339 206113 46973 4.01142 4.01142 -127.274 -4.01142 0 0 926341. 3205.33 0.35 0.08 0.17 -1 -1 0.35 0.022998 0.0203347 68 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 9.51 vpr 65.34 MiB -1 -1 0.15 20800 1 0.03 -1 -1 33952 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66912 32 32 353 287 1 204 79 17 17 289 -1 unnamed_device 26.8 MiB 1.44 915 11571 4863 6343 365 65.3 MiB 0.09 0.00 4.31005 -133.816 -4.31005 4.31005 0.91 0.000540738 0.000494949 0.0382046 0.0348158 44 2574 26 6.99608e+06 220735 787024. 2723.27 4.77 0.196011 0.170047 27778 195446 -1 1870 20 1405 1866 127921 28382 3.34656 3.34656 -122.828 -3.34656 0 0 997811. 3452.63 0.37 0.06 0.19 -1 -1 0.37 0.0234706 0.0208193 90 52 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 8.28 vpr 65.52 MiB -1 -1 0.15 20432 1 0.03 -1 -1 33888 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67088 32 32 361 291 1 216 79 17 17 289 -1 unnamed_device 27.0 MiB 1.78 1099 13430 4920 6010 2500 65.5 MiB 0.11 0.00 3.65969 -129.38 -3.65969 3.65969 0.91 0.000518411 0.000471618 0.0435778 0.0398068 40 2995 22 6.99608e+06 220735 706193. 2443.58 3.03 0.17179 0.15186 26914 176310 -1 2604 43 2315 3605 725612 310216 3.48731 3.48731 -133.555 -3.48731 0 0 926341. 3205.33 0.35 0.25 0.17 -1 -1 0.35 0.0475929 0.0420816 92 52 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 8.74 vpr 65.59 MiB -1 -1 0.16 20492 1 0.03 -1 -1 33828 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67160 32 32 382 305 1 237 80 17 17 289 -1 unnamed_device 27.0 MiB 2.68 1101 15216 5672 7066 2478 65.6 MiB 0.12 0.00 3.74401 -128.073 -3.74401 3.74401 0.91 0.000543368 0.000497769 0.0508042 0.046269 38 3558 41 6.99608e+06 235451 678818. 2348.85 2.74 0.169205 0.149176 26626 170182 -1 2765 18 1860 2465 189085 40352 3.60011 3.60011 -137.797 -3.60011 0 0 902133. 3121.57 0.34 0.07 0.17 -1 -1 0.34 0.0246872 0.0221537 101 59 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 15.99 vpr 65.02 MiB -1 -1 0.15 20456 1 0.03 -1 -1 33512 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 32 32 306 248 1 178 78 17 17 289 -1 unnamed_device 26.4 MiB 1.10 743 11034 4121 5253 1660 65.0 MiB 0.08 0.00 4.35583 -118.93 -4.35583 4.35583 0.92 0.000461414 0.000422487 0.0331407 0.0302652 40 2999 39 6.99608e+06 206020 706193. 2443.58 11.65 0.267741 0.23338 26914 176310 -1 2275 23 1507 2283 235552 56739 4.97157 4.97157 -142.8 -4.97157 0 0 926341. 3205.33 0.35 0.08 0.17 -1 -1 0.35 0.0243925 0.0216395 74 21 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 18.84 vpr 65.37 MiB -1 -1 0.15 20652 1 0.03 -1 -1 33748 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66936 32 32 319 257 1 192 77 17 17 289 -1 unnamed_device 27.0 MiB 2.23 793 9042 2962 4450 1630 65.4 MiB 0.07 0.00 4.21168 -126.242 -4.21168 4.21168 0.93 0.000481768 0.000438499 0.0289735 0.0264956 42 3421 45 6.99608e+06 191304 744469. 2576.02 13.33 0.260076 0.225528 27202 183097 -1 2058 21 1737 2434 191590 46230 4.02242 4.02242 -132.286 -4.02242 0 0 949917. 3286.91 0.36 0.07 0.18 -1 -1 0.36 0.0224275 0.019847 81 26 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 7.31 vpr 65.22 MiB -1 -1 0.17 20788 1 0.03 -1 -1 34088 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66784 31 32 373 299 1 224 79 17 17 289 -1 unnamed_device 26.8 MiB 1.00 950 10726 4120 5384 1222 65.2 MiB 0.09 0.00 4.31211 -136.261 -4.31211 4.31211 0.92 0.000546397 0.000502373 0.036739 0.0334947 48 3520 36 6.99608e+06 235451 865456. 2994.66 2.84 0.151068 0.132657 28354 207349 -1 2537 37 2842 4365 548908 166410 4.26266 4.26266 -143.635 -4.26266 0 0 1.05005e+06 3633.38 0.39 0.17 0.20 -1 -1 0.39 0.0388478 0.0340138 99 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 8.22 vpr 65.46 MiB -1 -1 0.16 20444 1 0.03 -1 -1 33852 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67036 32 32 387 315 1 241 80 17 17 289 -1 unnamed_device 26.9 MiB 1.10 977 12980 5460 6998 522 65.5 MiB 0.11 0.00 3.94476 -129.858 -3.94476 3.94476 0.90 0.00055666 0.000507319 0.0444935 0.0405616 54 3499 42 6.99608e+06 235451 949917. 3286.91 3.65 0.190276 0.167039 29506 232905 -1 2498 22 2198 3206 290016 64071 3.76882 3.76882 -135.138 -3.76882 0 0 1.17392e+06 4061.99 0.43 0.09 0.24 -1 -1 0.43 0.0273827 0.0242892 104 74 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 6.56 vpr 64.88 MiB -1 -1 0.15 20096 1 0.03 -1 -1 33544 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66432 32 32 251 219 1 152 74 17 17 289 -1 unnamed_device 26.3 MiB 0.65 645 10769 4489 5977 303 64.9 MiB 0.07 0.00 3.21628 -99.3334 -3.21628 3.21628 0.91 0.00038823 0.000345189 0.0295845 0.027053 38 1991 25 6.99608e+06 147157 678818. 2348.85 2.75 0.129617 0.113848 26626 170182 -1 1530 21 1168 1592 107224 24373 2.80227 2.80227 -98.3658 -2.80227 0 0 902133. 3121.57 0.34 0.05 0.16 -1 -1 0.34 0.0190809 0.0168511 60 20 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 9.39 vpr 65.25 MiB -1 -1 0.15 20624 1 0.03 -1 -1 33780 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 32 32 341 285 1 214 79 17 17 289 -1 unnamed_device 26.8 MiB 0.95 827 10726 4440 5997 289 65.2 MiB 0.08 0.00 4.06528 -146.791 -4.06528 4.06528 0.91 0.000478174 0.000435317 0.0328764 0.0300466 46 2656 31 6.99608e+06 220735 828058. 2865.25 5.10 0.201094 0.174713 28066 200906 -1 1977 20 1982 2630 211157 45567 3.77505 3.77505 -141.677 -3.77505 0 0 1.01997e+06 3529.29 0.40 0.08 0.19 -1 -1 0.40 0.0233235 0.0207732 93 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 26.44 vpr 65.25 MiB -1 -1 0.16 20496 1 0.03 -1 -1 34140 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66816 32 32 387 293 1 226 80 17 17 289 -1 unnamed_device 26.7 MiB 1.19 950 12808 5316 6896 596 65.2 MiB 0.11 0.00 4.80548 -149.393 -4.80548 4.80548 0.92 0.000593504 0.000544102 0.0448247 0.0410046 50 3454 27 6.99608e+06 235451 902133. 3121.57 21.78 0.345938 0.303046 28642 213929 -1 2403 29 2499 3801 392900 102108 5.00186 5.00186 -162.712 -5.00186 0 0 1.08113e+06 3740.92 0.41 0.13 0.21 -1 -1 0.41 0.0353471 0.0312688 98 28 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 7.94 vpr 65.16 MiB -1 -1 0.16 20620 1 0.03 -1 -1 33680 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66724 32 32 340 270 1 203 79 17 17 289 -1 unnamed_device 26.8 MiB 0.74 849 13599 4722 6429 2448 65.2 MiB 0.11 0.00 4.35389 -139.539 -4.35389 4.35389 0.92 0.000509894 0.000464718 0.0431234 0.0393553 38 2795 34 6.99608e+06 220735 678818. 2348.85 3.91 0.170074 0.149343 26626 170182 -1 1911 22 1727 2347 177407 38768 3.50386 3.50386 -131.231 -3.50386 0 0 902133. 3121.57 0.35 0.07 0.16 -1 -1 0.35 0.0255052 0.0226594 85 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 8.27 vpr 64.88 MiB -1 -1 0.16 20448 1 0.03 -1 -1 33712 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66436 30 32 278 235 1 166 82 17 17 289 -1 unnamed_device 26.4 MiB 1.40 640 11474 4735 6197 542 64.9 MiB 0.07 0.00 3.65345 -112.727 -3.65345 3.65345 0.93 0.000415152 0.000378384 0.029301 0.0267635 48 1940 24 6.99608e+06 294314 865456. 2994.66 3.52 0.132996 0.117015 28354 207349 -1 1580 19 1112 1760 198312 48286 3.25871 3.25871 -116.61 -3.25871 0 0 1.05005e+06 3633.38 0.41 0.07 0.20 -1 -1 0.41 0.018677 0.0165885 72 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 29.86 vpr 65.90 MiB -1 -1 0.17 20756 1 0.03 -1 -1 33792 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67480 32 32 431 332 1 261 82 17 17 289 -1 unnamed_device 27.2 MiB 1.85 1528 15924 5227 8931 1766 65.9 MiB 0.14 0.00 6.09323 -187.636 -6.09323 6.09323 0.93 0.000600385 0.000546694 0.0573725 0.0522692 40 4257 42 6.99608e+06 264882 706193. 2443.58 24.56 0.374119 0.326668 26914 176310 -1 3547 23 2806 4085 457786 97175 5.74254 5.74254 -196.746 -5.74254 0 0 926341. 3205.33 0.34 0.13 0.17 -1 -1 0.34 0.0307332 0.0272925 116 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 7.62 vpr 64.93 MiB -1 -1 0.16 20056 1 0.03 -1 -1 33484 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66484 32 32 336 268 1 199 78 17 17 289 -1 unnamed_device 26.6 MiB 0.72 768 13524 5053 6623 1848 64.9 MiB 0.10 0.00 4.76624 -142.397 -4.76624 4.76624 0.92 0.000497864 0.000453426 0.0437103 0.0399754 46 2785 27 6.99608e+06 206020 828058. 2865.25 3.54 0.165662 0.145893 28066 200906 -1 1845 20 1494 2008 149110 34618 4.17065 4.17065 -143.287 -4.17065 0 0 1.01997e+06 3529.29 0.38 0.06 0.20 -1 -1 0.38 0.0228803 0.0204204 83 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 11.74 vpr 64.54 MiB -1 -1 0.13 20148 1 0.03 -1 -1 33660 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66092 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 26.1 MiB 0.25 516 10672 4080 5320 1272 64.5 MiB 0.06 0.00 2.96036 -91.6204 -2.96036 2.96036 0.93 0.000371046 0.000336173 0.0264421 0.0241638 40 1546 38 6.99608e+06 191304 706193. 2443.58 8.29 0.212326 0.183684 26914 176310 -1 1189 18 859 1340 90198 25029 2.86132 2.86132 -98.2156 -2.86132 0 0 926341. 3205.33 0.34 0.05 0.17 -1 -1 0.34 0.0164226 0.0145876 51 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 20.77 vpr 65.46 MiB -1 -1 0.15 20820 1 0.03 -1 -1 33848 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67032 32 32 349 273 1 207 80 17 17 289 -1 unnamed_device 27.1 MiB 1.42 903 15560 6646 7056 1858 65.5 MiB 0.11 0.00 4.75332 -131.249 -4.75332 4.75332 0.89 0.000518406 0.000460496 0.048369 0.0441035 48 2982 46 6.99608e+06 235451 865456. 2994.66 16.02 0.323525 0.282807 28354 207349 -1 2202 23 1722 2767 230689 51369 4.63516 4.63516 -141.993 -4.63516 0 0 1.05005e+06 3633.38 0.39 0.08 0.19 -1 -1 0.39 0.0256821 0.0227697 85 26 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 6.94 vpr 64.99 MiB -1 -1 0.14 20292 1 0.03 -1 -1 33856 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 26.4 MiB 1.03 493 9540 2740 5276 1524 65.0 MiB 0.06 0.00 2.966 -97.1273 -2.966 2.966 0.92 0.000396255 0.000360261 0.0248049 0.0226393 38 1851 39 6.99608e+06 206020 678818. 2348.85 2.75 0.133324 0.116723 26626 170182 -1 1279 23 1077 1568 111684 26906 3.55017 3.55017 -109.108 -3.55017 0 0 902133. 3121.57 0.34 0.06 0.16 -1 -1 0.34 0.020514 0.0181257 57 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 7.51 vpr 64.89 MiB -1 -1 0.16 20288 1 0.03 -1 -1 33580 -1 -1 13 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66444 30 32 278 235 1 170 75 17 17 289 -1 unnamed_device 26.4 MiB 0.68 768 9081 3737 5047 297 64.9 MiB 0.07 0.00 3.80347 -118.428 -3.80347 3.80347 0.92 0.000439536 0.000402439 0.0268342 0.0244907 38 2446 44 6.99608e+06 191304 678818. 2348.85 3.61 0.142439 0.124355 26626 170182 -1 1772 21 1331 1863 163805 32644 3.34751 3.34751 -114.704 -3.34751 0 0 902133. 3121.57 0.34 0.06 0.16 -1 -1 0.34 0.0208849 0.0185742 69 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 8.17 vpr 65.57 MiB -1 -1 0.17 20688 1 0.03 -1 -1 33608 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67144 29 32 355 287 1 213 79 17 17 289 -1 unnamed_device 27.1 MiB 1.90 956 12416 5112 6468 836 65.6 MiB 0.10 0.00 4.12666 -129.088 -4.12666 4.12666 0.92 0.000535236 0.000492155 0.0400105 0.0365327 38 3346 46 6.99608e+06 264882 678818. 2348.85 2.92 0.16503 0.144941 26626 170182 -1 2546 22 1925 2830 259948 53297 4.4105 4.4105 -145.109 -4.4105 0 0 902133. 3121.57 0.36 0.09 0.17 -1 -1 0.36 0.0274571 0.0244233 97 56 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 8.91 vpr 65.26 MiB -1 -1 0.16 20600 1 0.03 -1 -1 33924 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 32 32 358 289 1 217 79 17 17 289 -1 unnamed_device 26.8 MiB 1.69 974 13599 5339 6861 1399 65.3 MiB 0.11 0.00 4.25698 -140.266 -4.25698 4.25698 0.92 0.000516664 0.000470129 0.0443707 0.0404738 38 3070 41 6.99608e+06 220735 678818. 2348.85 3.91 0.184745 0.162612 26626 170182 -1 2342 23 1928 2638 217168 45954 4.67035 4.67035 -156.564 -4.67035 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.0275401 0.0245482 93 51 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 10.29 vpr 65.12 MiB -1 -1 0.16 20608 1 0.03 -1 -1 33508 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 32 32 353 285 1 213 79 17 17 289 -1 unnamed_device 26.7 MiB 2.47 1087 13768 5458 5698 2612 65.1 MiB 0.11 0.00 4.58577 -147.33 -4.58577 4.58577 0.92 0.000511335 0.000466094 0.0445165 0.0406675 38 3125 30 6.99608e+06 220735 678818. 2348.85 4.51 0.17354 0.152679 26626 170182 -1 2517 19 1814 2602 203364 41786 4.42561 4.42561 -152.77 -4.42561 0 0 902133. 3121.57 0.35 0.07 0.17 -1 -1 0.35 0.0235735 0.020967 90 48 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 7.96 vpr 64.94 MiB -1 -1 0.15 20124 1 0.03 -1 -1 33584 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66496 32 32 276 237 1 163 75 17 17 289 -1 unnamed_device 26.5 MiB 2.28 854 11609 4663 6043 903 64.9 MiB 0.08 0.00 3.95082 -130.122 -3.95082 3.95082 0.90 0.000415192 0.000378599 0.0334915 0.0305527 38 2338 24 6.99608e+06 161872 678818. 2348.85 2.50 0.132159 0.115847 26626 170182 -1 1952 23 1202 1634 138008 27635 3.34956 3.34956 -121.518 -3.34956 0 0 902133. 3121.57 0.34 0.06 0.17 -1 -1 0.34 0.0218788 0.0193617 67 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 6.86 vpr 65.18 MiB -1 -1 0.16 20616 1 0.03 -1 -1 34000 -1 -1 14 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 31 32 319 272 1 200 77 17 17 289 -1 unnamed_device 26.8 MiB 1.00 785 11813 4965 6422 426 65.2 MiB 0.09 0.00 3.70143 -122.026 -3.70143 3.70143 0.91 0.000446596 0.000409231 0.0358874 0.0327736 46 2466 44 6.99608e+06 206020 828058. 2865.25 2.54 0.16834 0.147994 28066 200906 -1 1742 24 1592 2267 169951 39702 3.57132 3.57132 -119.748 -3.57132 0 0 1.01997e+06 3529.29 0.39 0.07 0.19 -1 -1 0.39 0.0249189 0.0221129 86 60 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 9.66 vpr 65.36 MiB -1 -1 0.15 20672 1 0.03 -1 -1 34028 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66932 30 32 329 273 1 202 81 17 17 289 -1 unnamed_device 26.9 MiB 1.36 809 10756 2943 5618 2195 65.4 MiB 0.08 0.00 3.4598 -111.751 -3.4598 3.4598 0.91 0.000470758 0.000429096 0.0316238 0.0288981 46 2326 24 6.99608e+06 279598 828058. 2865.25 4.98 0.187282 0.162636 28066 200906 -1 1700 21 1475 2174 152653 35067 3.29957 3.29957 -109.769 -3.29957 0 0 1.01997e+06 3529.29 0.39 0.06 0.20 -1 -1 0.39 0.0231455 0.0205277 91 52 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 18.36 vpr 65.05 MiB -1 -1 0.16 20060 1 0.03 -1 -1 34044 -1 -1 17 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66608 28 32 277 229 1 170 77 17 17 289 -1 unnamed_device 26.6 MiB 0.53 678 13280 5850 6635 795 65.0 MiB 0.09 0.00 3.68935 -104.602 -3.68935 3.68935 0.92 0.000412067 0.000374897 0.036066 0.0328979 42 2430 50 6.99608e+06 250167 744469. 2576.02 14.56 0.256117 0.223314 27202 183097 -1 1806 21 1391 2073 190827 45683 3.81422 3.81422 -114.081 -3.81422 0 0 949917. 3286.91 0.37 0.07 0.18 -1 -1 0.37 0.0204553 0.0181468 71 20 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 8.37 vpr 65.14 MiB -1 -1 0.16 20304 1 0.03 -1 -1 33704 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66708 30 32 317 269 1 200 77 17 17 289 -1 unnamed_device 26.8 MiB 2.19 779 10020 4070 5537 413 65.1 MiB 0.08 0.00 4.56081 -142.799 -4.56081 4.56081 0.92 0.000465171 0.000424765 0.0314362 0.0287472 44 2750 43 6.99608e+06 220735 787024. 2723.27 2.85 0.151754 0.13233 27778 195446 -1 1920 23 1788 2373 198004 44117 3.97955 3.97955 -138.289 -3.97955 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0243342 0.021609 87 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 8.53 vpr 64.99 MiB -1 -1 0.14 20720 1 0.03 -1 -1 33600 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 335 282 1 216 78 17 17 289 -1 unnamed_device 26.5 MiB 0.93 988 11366 4377 5078 1911 65.0 MiB 0.09 0.00 3.4477 -126.272 -3.4477 3.4477 0.93 0.000488388 0.000445787 0.0359505 0.0328559 40 3223 42 6.99608e+06 206020 706193. 2443.58 4.29 0.166114 0.145472 26914 176310 -1 2772 21 2024 2787 332780 64435 3.28857 3.28857 -136.411 -3.28857 0 0 926341. 3205.33 0.34 0.09 0.17 -1 -1 0.34 0.0234909 0.0208233 93 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 9.04 vpr 64.79 MiB -1 -1 0.13 20216 1 0.03 -1 -1 33896 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 26.3 MiB 0.43 735 13335 5144 6746 1445 64.8 MiB 0.09 0.00 4.50448 -121.497 -4.50448 4.50448 0.92 0.00045372 0.000411682 0.0335521 0.0305561 46 2320 24 6.99608e+06 353176 828058. 2865.25 5.36 0.179132 0.156095 28066 200906 -1 1726 19 1053 1905 137788 31995 3.80592 3.80592 -119.773 -3.80592 0 0 1.01997e+06 3529.29 0.37 0.06 0.20 -1 -1 0.37 0.0202209 0.0180022 74 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 8.32 vpr 65.32 MiB -1 -1 0.16 20584 1 0.03 -1 -1 33816 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66888 32 32 350 275 1 202 78 17 17 289 -1 unnamed_device 26.8 MiB 2.25 849 9872 4071 5471 330 65.3 MiB 0.08 0.00 4.41391 -145.413 -4.41391 4.41391 0.91 0.000531197 0.000485646 0.033684 0.0308624 44 3096 30 6.99608e+06 206020 787024. 2723.27 2.72 0.167883 0.148308 27778 195446 -1 2236 23 1920 2868 210913 47371 4.3396 4.3396 -149.501 -4.3396 0 0 997811. 3452.63 0.39 0.08 0.18 -1 -1 0.39 0.0273868 0.0243757 86 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 8.40 vpr 65.55 MiB -1 -1 0.16 20724 1 0.03 -1 -1 33784 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67128 32 32 385 308 1 237 81 17 17 289 -1 unnamed_device 27.0 MiB 0.85 1031 9706 3955 5323 428 65.6 MiB 0.08 0.00 5.10216 -163.017 -5.10216 5.10216 0.92 0.000557586 0.000508133 0.0333956 0.0304694 48 3809 38 6.99608e+06 250167 865456. 2994.66 4.10 0.166608 0.146117 28354 207349 -1 2651 28 2478 3481 495235 132429 5.38994 5.38994 -176.091 -5.38994 0 0 1.05005e+06 3633.38 0.41 0.15 0.20 -1 -1 0.41 0.0350042 0.0311553 102 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 9.73 vpr 65.38 MiB -1 -1 0.16 20464 1 0.03 -1 -1 33952 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66948 32 32 387 309 1 244 81 17 17 289 -1 unnamed_device 26.8 MiB 0.95 1043 9881 4045 5563 273 65.4 MiB 0.09 0.00 4.39921 -147.12 -4.39921 4.39921 0.91 0.000548874 0.000500349 0.0335921 0.0306894 46 3556 37 6.99608e+06 250167 828058. 2865.25 5.39 0.233268 0.203348 28066 200906 -1 2542 22 1921 2813 246127 50838 4.2931 4.2931 -151.36 -4.2931 0 0 1.01997e+06 3529.29 0.39 0.09 0.20 -1 -1 0.39 0.0278829 0.0248221 104 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 6.57 vpr 65.07 MiB -1 -1 0.15 20456 1 0.03 -1 -1 33728 -1 -1 13 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66636 30 32 272 232 1 171 75 17 17 289 -1 unnamed_device 26.7 MiB 1.04 639 8765 3407 4448 910 65.1 MiB 0.07 0.00 4.31695 -124.149 -4.31695 4.31695 0.91 0.000419829 0.000383719 0.0256412 0.0234776 42 2236 38 6.99608e+06 191304 744469. 2576.02 2.29 0.129362 0.112713 27202 183097 -1 1564 19 1116 1583 126166 28470 3.33556 3.33556 -115.866 -3.33556 0 0 949917. 3286.91 0.35 0.06 0.18 -1 -1 0.35 0.018777 0.0167322 71 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 10.02 vpr 65.52 MiB -1 -1 0.15 20580 1 0.03 -1 -1 33952 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67092 30 32 375 299 1 233 80 17 17 289 -1 unnamed_device 27.1 MiB 1.09 919 12808 4622 5804 2382 65.5 MiB 0.10 0.00 5.00926 -154.589 -5.00926 5.00926 0.92 0.00054069 0.00049358 0.0426545 0.0390008 48 2897 47 6.99608e+06 264882 865456. 2994.66 5.50 0.260096 0.22623 28354 207349 -1 2329 23 2356 3266 309320 75619 4.83874 4.83874 -164.15 -4.83874 0 0 1.05005e+06 3633.38 0.40 0.10 0.20 -1 -1 0.40 0.0280917 0.0249217 104 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 22.64 vpr 65.36 MiB -1 -1 0.16 20732 1 0.03 -1 -1 33936 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66932 32 32 340 270 1 197 78 17 17 289 -1 unnamed_device 27.0 MiB 1.25 773 12860 5275 6775 810 65.4 MiB 0.10 0.00 4.8046 -140.908 -4.8046 4.8046 0.94 0.000510288 0.000464365 0.0412329 0.0376137 48 2906 29 6.99608e+06 206020 865456. 2994.66 17.97 0.32413 0.282984 28354 207349 -1 2232 21 1751 2784 284527 71100 4.13436 4.13436 -142.551 -4.13436 0 0 1.05005e+06 3633.38 0.40 0.09 0.19 -1 -1 0.40 0.0237581 0.0211539 82 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 6.77 vpr 65.51 MiB -1 -1 0.16 20584 1 0.03 -1 -1 33720 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67084 31 32 340 275 1 199 80 17 17 289 -1 unnamed_device 27.1 MiB 1.30 794 10228 3166 5486 1576 65.5 MiB 0.08 0.00 5.19565 -143.212 -5.19565 5.19565 0.92 0.000490519 0.000447272 0.0330313 0.0301792 42 2712 27 6.99608e+06 250167 744469. 2576.02 2.17 0.134158 0.117727 27202 183097 -1 2054 20 1322 1912 169320 36759 4.33151 4.33151 -137.058 -4.33151 0 0 949917. 3286.91 0.37 0.07 0.18 -1 -1 0.37 0.0234878 0.0209129 87 43 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 8.78 vpr 65.28 MiB -1 -1 0.16 20404 1 0.03 -1 -1 34000 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 30 32 377 310 1 234 82 17 17 289 -1 unnamed_device 26.7 MiB 2.25 966 13788 4937 6208 2643 65.3 MiB 0.11 0.00 4.24398 -133.079 -4.24398 4.24398 0.92 0.000526976 0.000480394 0.043922 0.0400874 46 3311 48 6.99608e+06 294314 828058. 2865.25 3.10 0.180349 0.158872 28066 200906 -1 2374 27 2588 3623 402761 112973 4.3885 4.3885 -146.75 -4.3885 0 0 1.01997e+06 3529.29 0.39 0.13 0.19 -1 -1 0.39 0.0323559 0.0285371 108 78 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 24.67 vpr 65.60 MiB -1 -1 0.16 20460 1 0.03 -1 -1 33968 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67176 32 32 365 294 1 223 81 17 17 289 -1 unnamed_device 27.1 MiB 1.86 1164 15481 5166 8845 1470 65.6 MiB 0.13 0.00 4.66597 -153.274 -4.66597 4.66597 0.92 0.000536816 0.000488926 0.0498182 0.0453126 40 3016 25 6.99608e+06 250167 706193. 2443.58 19.43 0.287054 0.250235 26914 176310 -1 2766 22 2077 3028 306564 59776 4.30941 4.30941 -157.067 -4.30941 0 0 926341. 3205.33 0.35 0.10 0.17 -1 -1 0.35 0.0273957 0.0244151 95 54 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 11.54 vpr 65.59 MiB -1 -1 0.17 20484 1 0.03 -1 -1 33832 -1 -1 20 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67160 29 32 378 310 1 237 81 17 17 289 -1 unnamed_device 27.0 MiB 2.82 970 14431 6168 7633 630 65.6 MiB 0.11 0.00 3.80498 -123.528 -3.80498 3.80498 0.90 0.000504427 0.000458917 0.0448752 0.040859 50 2689 23 6.99608e+06 294314 902133. 3121.57 5.33 0.231697 0.201606 28642 213929 -1 2315 23 1817 2320 252879 61497 3.89612 3.89612 -132.494 -3.89612 0 0 1.08113e+06 3740.92 0.41 0.09 0.21 -1 -1 0.41 0.0279005 0.024803 109 79 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 8.49 vpr 64.77 MiB -1 -1 0.15 20488 1 0.03 -1 -1 33820 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66324 32 32 243 205 1 140 74 17 17 289 -1 unnamed_device 26.2 MiB 1.35 673 8289 1936 5635 718 64.8 MiB 0.06 0.00 3.54309 -104.459 -3.54309 3.54309 0.90 0.000410875 0.000375628 0.022979 0.0210274 36 2073 30 6.99608e+06 147157 648988. 2245.63 4.03 0.154204 0.133282 26050 158493 -1 1713 23 1167 1811 179356 40626 3.29327 3.29327 -116.101 -3.29327 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0200574 0.0177515 54 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 9.95 vpr 65.50 MiB -1 -1 0.15 20820 1 0.03 -1 -1 33956 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67072 32 32 373 302 1 234 81 17 17 289 -1 unnamed_device 26.8 MiB 0.72 998 13731 5201 6084 2446 65.5 MiB 0.11 0.00 5.23946 -166.614 -5.23946 5.23946 0.92 0.000548682 0.000501431 0.0451397 0.0412446 46 3007 25 6.99608e+06 250167 828058. 2865.25 5.79 0.225481 0.197285 28066 200906 -1 2369 22 2125 3007 423869 125683 4.61914 4.61914 -158.329 -4.61914 0 0 1.01997e+06 3529.29 0.38 0.13 0.20 -1 -1 0.38 0.0276082 0.0246447 100 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 22.49 vpr 65.90 MiB -1 -1 0.15 20496 1 0.03 -1 -1 33856 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67480 32 32 397 314 1 249 81 17 17 289 -1 unnamed_device 27.4 MiB 1.01 1023 11631 4065 5883 1683 65.9 MiB 0.10 0.00 4.8947 -165.145 -4.8947 4.8947 0.91 0.000574578 0.000525604 0.0410969 0.0375624 40 3825 35 6.99608e+06 250167 706193. 2443.58 18.09 0.316249 0.275216 26914 176310 -1 3090 21 2784 3862 393065 81021 5.40114 5.40114 -190.623 -5.40114 0 0 926341. 3205.33 0.35 0.12 0.17 -1 -1 0.35 0.0296228 0.026479 109 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 6.98 vpr 64.91 MiB -1 -1 0.15 20456 1 0.03 -1 -1 33880 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66464 32 32 269 231 1 168 75 17 17 289 -1 unnamed_device 26.5 MiB 1.12 649 12083 5091 6584 408 64.9 MiB 0.08 0.00 3.80367 -112.996 -3.80367 3.80367 0.91 0.00040949 0.000372438 0.0331236 0.0301904 42 2423 39 6.99608e+06 161872 744469. 2576.02 2.64 0.13872 0.121186 27202 183097 -1 1721 23 1462 1873 165965 39160 3.57511 3.57511 -118.197 -3.57511 0 0 949917. 3286.91 0.35 0.07 0.18 -1 -1 0.35 0.0207193 0.0182874 69 26 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 8.37 vpr 64.91 MiB -1 -1 0.14 20128 1 0.03 -1 -1 34040 -1 -1 13 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66464 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 26.4 MiB 0.52 500 9836 4038 5376 422 64.9 MiB 0.06 0.00 3.32523 -100.829 -3.32523 3.32523 0.86 0.000390597 0.000354553 0.0262126 0.023911 44 1930 39 6.99608e+06 191304 787024. 2723.27 4.73 0.167543 0.14462 27778 195446 -1 1352 25 1156 1781 120042 29179 3.25447 3.25447 -106.844 -3.25447 0 0 997811. 3452.63 0.38 0.06 0.20 -1 -1 0.38 0.0210125 0.0185175 56 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 9.19 vpr 65.45 MiB -1 -1 0.16 20572 1 0.03 -1 -1 33640 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67024 32 32 348 274 1 208 79 17 17 289 -1 unnamed_device 27.1 MiB 0.91 868 11909 4701 5758 1450 65.5 MiB 0.09 0.00 4.58703 -149.04 -4.58703 4.58703 0.93 0.000505331 0.000458805 0.0386129 0.0352218 46 2684 28 6.99608e+06 220735 828058. 2865.25 4.89 0.21238 0.184395 28066 200906 -1 1970 30 1883 2462 174865 39592 4.33525 4.33525 -150.653 -4.33525 0 0 1.01997e+06 3529.29 0.38 0.08 0.20 -1 -1 0.38 0.0314208 0.0275753 88 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 8.82 vpr 65.22 MiB -1 -1 0.16 20548 1 0.03 -1 -1 33700 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66788 32 32 356 289 1 218 79 17 17 289 -1 unnamed_device 26.8 MiB 1.94 896 11571 3933 6047 1591 65.2 MiB 0.09 0.00 4.54977 -137.477 -4.54977 4.54977 0.93 0.000579288 0.00053515 0.0381122 0.0348173 46 2917 48 6.99608e+06 220735 828058. 2865.25 3.48 0.183336 0.160715 28066 200906 -1 2011 23 1738 2395 192670 42992 4.31425 4.31425 -142.349 -4.31425 0 0 1.01997e+06 3529.29 0.38 0.07 0.19 -1 -1 0.38 0.0260582 0.0230659 95 53 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 9.14 vpr 65.29 MiB -1 -1 0.15 20516 1 0.03 -1 -1 33712 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66852 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 26.9 MiB 0.47 847 13556 4796 7036 1724 65.3 MiB 0.12 0.00 4.71017 -139.049 -4.71017 4.71017 0.91 0.000525069 0.000478725 0.0431362 0.0394084 48 2320 19 6.99608e+06 250167 865456. 2994.66 5.28 0.219296 0.19265 28354 207349 -1 2140 21 1789 3097 254688 54606 4.21595 4.21595 -142.789 -4.21595 0 0 1.05005e+06 3633.38 0.40 0.09 0.20 -1 -1 0.40 0.0256692 0.0228636 83 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 7.10 vpr 65.20 MiB -1 -1 0.15 20728 1 0.03 -1 -1 33816 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 30 32 316 264 1 197 78 17 17 289 -1 unnamed_device 26.8 MiB 1.25 742 9042 3157 4137 1748 65.2 MiB 0.07 0.00 3.64737 -104.512 -3.64737 3.64737 0.92 0.00045913 0.000418865 0.0279388 0.0255875 48 2323 27 6.99608e+06 235451 865456. 2994.66 2.48 0.142269 0.125073 28354 207349 -1 2005 21 1525 2217 196585 45075 3.21422 3.21422 -112.086 -3.21422 0 0 1.05005e+06 3633.38 0.41 0.07 0.20 -1 -1 0.41 0.0228034 0.02027 86 47 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 7.61 vpr 64.91 MiB -1 -1 0.15 20496 1 0.03 -1 -1 34232 -1 -1 15 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66464 27 32 255 219 1 145 74 17 17 289 -1 unnamed_device 26.5 MiB 1.09 490 9374 3097 4710 1567 64.9 MiB 0.06 0.00 3.44679 -100.328 -3.44679 3.44679 0.91 0.000394823 0.000361121 0.0256528 0.0235317 38 1628 40 6.99608e+06 220735 678818. 2348.85 3.37 0.129689 0.113241 26626 170182 -1 1015 22 964 1436 85969 21901 3.78332 3.78332 -105.678 -3.78332 0 0 902133. 3121.57 0.33 0.05 0.17 -1 -1 0.33 0.018981 0.0167138 66 26 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 11.16 vpr 65.90 MiB -1 -1 0.16 20596 1 0.03 -1 -1 33976 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67480 32 32 421 327 1 257 82 17 17 289 -1 unnamed_device 27.5 MiB 0.95 1154 16102 6967 8731 404 65.9 MiB 0.14 0.00 4.18254 -144.202 -4.18254 4.18254 0.90 0.000579852 0.000526836 0.0554539 0.0505623 46 4050 36 6.99608e+06 264882 828058. 2865.25 6.78 0.211396 0.186092 28066 200906 -1 2908 20 2381 3583 293313 62159 4.25831 4.25831 -148.246 -4.25831 0 0 1.01997e+06 3529.29 0.37 0.10 0.20 -1 -1 0.37 0.0287853 0.0257073 111 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 10.06 vpr 65.34 MiB -1 -1 0.17 20656 1 0.03 -1 -1 33632 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66908 31 32 365 296 1 229 80 17 17 289 -1 unnamed_device 26.8 MiB 1.99 1126 13496 4705 6380 2411 65.3 MiB 0.11 0.00 5.49463 -159.408 -5.49463 5.49463 0.93 0.000527652 0.000481759 0.0434386 0.0396955 38 3177 46 6.99608e+06 250167 678818. 2348.85 4.69 0.186239 0.163375 26626 170182 -1 2724 25 2603 3642 402783 105038 4.74444 4.74444 -164.451 -4.74444 0 0 902133. 3121.57 0.34 0.12 0.17 -1 -1 0.34 0.0287459 0.0254693 100 60 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 9.45 vpr 65.28 MiB -1 -1 0.16 20540 1 0.03 -1 -1 33744 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 32 32 331 280 1 215 78 17 17 289 -1 unnamed_device 26.9 MiB 1.01 926 14354 6182 7861 311 65.3 MiB 0.11 0.00 4.28347 -151.804 -4.28347 4.28347 0.91 0.000494732 0.000452204 0.0436164 0.0397928 48 2248 21 6.99608e+06 206020 865456. 2994.66 5.09 0.222528 0.193521 28354 207349 -1 1928 19 1425 1785 146446 31779 3.62281 3.62281 -138.169 -3.62281 0 0 1.05005e+06 3633.38 0.39 0.06 0.21 -1 -1 0.39 0.0211432 0.0187946 91 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 6.59 vpr 65.03 MiB -1 -1 0.15 20260 1 0.03 -1 -1 34008 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 32 32 326 263 1 197 79 17 17 289 -1 unnamed_device 26.7 MiB 0.78 1057 13599 5180 6238 2181 65.0 MiB 0.11 0.00 4.11318 -134.456 -4.11318 4.11318 0.91 0.000477805 0.000436075 0.0411999 0.0376181 38 2724 25 6.99608e+06 220735 678818. 2348.85 2.56 0.155153 0.136644 26626 170182 -1 2270 21 1412 1911 157008 31445 3.87982 3.87982 -137.691 -3.87982 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0242072 0.0215316 81 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 9.95 vpr 65.64 MiB -1 -1 0.16 20544 1 0.03 -1 -1 33548 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67220 31 32 373 294 1 221 80 17 17 289 -1 unnamed_device 27.1 MiB 1.61 870 12120 4959 6494 667 65.6 MiB 0.10 0.00 4.09557 -123.875 -4.09557 4.09557 0.92 0.000538746 0.000490772 0.0404347 0.0368215 42 3474 41 6.99608e+06 250167 744469. 2576.02 5.01 0.242642 0.210976 27202 183097 -1 2179 21 2026 2841 215668 48460 4.10972 4.10972 -131.468 -4.10972 0 0 949917. 3286.91 0.36 0.08 0.18 -1 -1 0.36 0.0259126 0.0230091 97 46 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 10.08 vpr 65.43 MiB -1 -1 0.15 20772 1 0.03 -1 -1 33852 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67000 30 32 325 268 1 198 79 17 17 289 -1 unnamed_device 27.0 MiB 1.66 825 9205 3109 4150 1946 65.4 MiB 0.07 0.00 3.47679 -109.391 -3.47679 3.47679 0.92 0.00046272 0.000419509 0.0283417 0.0258761 46 2602 31 6.99608e+06 250167 828058. 2865.25 5.07 0.206915 0.179125 28066 200906 -1 1955 25 1736 2700 204746 44982 2.98316 2.98316 -108.983 -2.98316 0 0 1.01997e+06 3529.29 0.40 0.08 0.19 -1 -1 0.40 0.0264178 0.02341 88 46 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 9.45 vpr 65.36 MiB -1 -1 0.15 20476 1 0.03 -1 -1 33556 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66928 32 32 350 275 1 209 78 17 17 289 -1 unnamed_device 26.9 MiB 0.91 918 10536 3621 5008 1907 65.4 MiB 0.09 0.00 4.39601 -144.18 -4.39601 4.39601 0.90 0.000517167 0.000471857 0.0347713 0.0318144 46 3353 30 6.99608e+06 206020 828058. 2865.25 5.21 0.220957 0.193239 28066 200906 -1 2447 22 1820 2659 238030 50430 4.86281 4.86281 -154.129 -4.86281 0 0 1.01997e+06 3529.29 0.39 0.08 0.20 -1 -1 0.39 0.0264096 0.0234391 88 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 9.46 vpr 65.34 MiB -1 -1 0.15 20756 1 0.03 -1 -1 33884 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66912 32 32 386 307 1 240 80 17 17 289 -1 unnamed_device 26.8 MiB 2.77 942 12292 4666 5756 1870 65.3 MiB 0.10 0.00 3.70017 -126.602 -3.70017 3.70017 0.91 0.000546976 0.000497553 0.0417983 0.0381915 52 3164 31 6.99608e+06 235451 926341. 3205.33 3.23 0.201007 0.17574 29218 227130 -1 2157 21 1946 2651 214171 51062 3.56046 3.56046 -127.801 -3.56046 0 0 1.14541e+06 3963.36 0.44 0.08 0.22 -1 -1 0.44 0.0266347 0.0237042 103 59 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 8.79 vpr 64.94 MiB -1 -1 0.15 20284 1 0.03 -1 -1 33964 -1 -1 14 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66496 29 32 269 229 1 168 75 17 17 289 -1 unnamed_device 26.5 MiB 1.49 638 10503 3616 4659 2228 64.9 MiB 0.07 0.00 4.33189 -121.838 -4.33189 4.33189 0.92 0.000415453 0.000380305 0.0296906 0.0271577 38 1692 24 6.99608e+06 206020 678818. 2348.85 4.11 0.166164 0.144105 26626 170182 -1 1377 20 1243 1634 118973 26855 3.32456 3.32456 -115.376 -3.32456 0 0 902133. 3121.57 0.34 0.05 0.16 -1 -1 0.34 0.0191211 0.0169746 70 28 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 18.72 vpr 65.16 MiB -1 -1 0.15 20176 1 0.03 -1 -1 34016 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66724 32 32 310 266 1 182 78 17 17 289 -1 unnamed_device 26.6 MiB 2.46 733 10370 4308 5800 262 65.2 MiB 0.08 0.00 4.00228 -133.8 -4.00228 4.00228 0.91 0.000453634 0.000412661 0.0308112 0.0280864 44 2610 40 6.99608e+06 206020 787024. 2723.27 12.99 0.253388 0.21966 27778 195446 -1 1795 22 1481 2009 156084 34478 3.77925 3.77925 -136.622 -3.77925 0 0 997811. 3452.63 0.38 0.06 0.19 -1 -1 0.38 0.0213376 0.018836 79 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 16.13 vpr 65.11 MiB -1 -1 0.16 20292 1 0.03 -1 -1 33484 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66668 31 32 326 261 1 193 78 17 17 289 -1 unnamed_device 26.5 MiB 0.89 764 12362 5067 6494 801 65.1 MiB 0.09 0.00 4.07608 -123.99 -4.07608 4.07608 0.91 0.000475534 0.000432346 0.0382987 0.0349912 46 2867 29 6.99608e+06 220735 828058. 2865.25 11.87 0.278787 0.241968 28066 200906 -1 1915 24 1817 2659 234904 53092 3.84482 3.84482 -130.987 -3.84482 0 0 1.01997e+06 3529.29 0.39 0.08 0.20 -1 -1 0.39 0.0258395 0.0229251 80 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 6.81 vpr 65.11 MiB -1 -1 0.15 20140 1 0.03 -1 -1 33868 -1 -1 13 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66672 29 32 262 224 1 162 74 17 17 289 -1 unnamed_device 26.7 MiB 1.07 586 8909 3659 4796 454 65.1 MiB 0.06 0.00 3.79267 -108.98 -3.79267 3.79267 0.93 0.000362169 0.000324165 0.0251072 0.0229264 44 2352 39 6.99608e+06 191304 787024. 2723.27 2.41 0.115075 0.100186 27778 195446 -1 1570 31 1378 1749 242201 105330 3.57531 3.57531 -110.334 -3.57531 0 0 997811. 3452.63 0.39 0.11 0.19 -1 -1 0.39 0.0271784 0.023938 68 25 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 7.22 vpr 64.75 MiB -1 -1 0.14 20584 1 0.03 -1 -1 33716 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 32 32 278 238 1 178 76 17 17 289 -1 unnamed_device 26.3 MiB 0.87 860 12076 5115 6633 328 64.7 MiB 0.08 0.00 4.30315 -133.848 -4.30315 4.30315 0.91 0.00037521 0.000342685 0.0326478 0.0296745 38 2379 33 6.99608e+06 176588 678818. 2348.85 3.15 0.141566 0.123849 26626 170182 -1 1900 19 1328 1759 137489 29036 3.73446 3.73446 -133.615 -3.73446 0 0 902133. 3121.57 0.34 0.06 0.17 -1 -1 0.34 0.0195566 0.0174131 73 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 7.14 vpr 65.65 MiB -1 -1 0.15 20668 1 0.03 -1 -1 33872 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67224 31 32 373 300 1 231 80 17 17 289 -1 unnamed_device 27.1 MiB 1.00 1156 13840 5407 6744 1689 65.6 MiB 0.11 0.00 4.42187 -150.582 -4.42187 4.42187 0.93 0.000527819 0.000480368 0.0457423 0.0417321 46 2902 21 6.99608e+06 250167 828058. 2865.25 2.70 0.174499 0.154054 28066 200906 -1 2353 23 2067 2872 231612 47712 3.75905 3.75905 -142.095 -3.75905 0 0 1.01997e+06 3529.29 0.40 0.09 0.19 -1 -1 0.40 0.0284483 0.0253057 101 60 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 7.77 vpr 64.91 MiB -1 -1 0.15 20464 1 0.03 -1 -1 34004 -1 -1 13 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66468 31 32 265 230 1 171 76 17 17 289 -1 unnamed_device 26.5 MiB 0.90 820 12876 4559 5981 2336 64.9 MiB 0.09 0.00 3.74867 -118.743 -3.74867 3.74867 0.91 0.000412956 0.000377398 0.0351638 0.0321877 36 2421 43 6.99608e+06 191304 648988. 2245.63 3.69 0.14723 0.129172 26050 158493 -1 2079 20 1267 1781 176497 34895 3.12421 3.12421 -119.163 -3.12421 0 0 828058. 2865.25 0.31 0.06 0.16 -1 -1 0.31 0.0190185 0.0168214 71 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 9.68 vpr 65.23 MiB -1 -1 0.15 20540 1 0.03 -1 -1 33684 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66796 32 32 349 286 1 207 79 17 17 289 -1 unnamed_device 26.8 MiB 1.19 889 10726 4477 5918 331 65.2 MiB 0.08 0.00 3.49879 -116.053 -3.49879 3.49879 0.92 0.000512261 0.000465789 0.0350136 0.031966 48 2372 28 6.99608e+06 220735 865456. 2994.66 5.15 0.221557 0.192917 28354 207349 -1 1864 16 1347 1780 128094 30206 3.22856 3.22856 -116.238 -3.22856 0 0 1.05005e+06 3633.38 0.41 0.06 0.21 -1 -1 0.41 0.0209384 0.0188276 91 54 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 9.35 vpr 65.79 MiB -1 -1 0.17 20600 1 0.03 -1 -1 33768 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67368 31 32 396 325 1 255 83 17 17 289 -1 unnamed_device 27.3 MiB 2.98 1223 9263 3795 5242 226 65.8 MiB 0.09 0.00 4.74537 -163.238 -4.74537 4.74537 0.93 0.000552083 0.000501688 0.0310632 0.0283314 52 3369 34 6.99608e+06 294314 926341. 3205.33 2.91 0.155464 0.136983 29218 227130 -1 2682 22 2276 3195 296643 58250 4.49114 4.49114 -159.634 -4.49114 0 0 1.14541e+06 3963.36 0.42 0.09 0.21 -1 -1 0.42 0.028247 0.0251686 113 87 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 9.34 vpr 65.10 MiB -1 -1 0.15 20180 1 0.03 -1 -1 33976 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 32 32 303 262 1 192 76 17 17 289 -1 unnamed_device 26.5 MiB 2.08 727 10316 3968 5326 1022 65.1 MiB 0.07 0.00 3.38944 -114.889 -3.38944 3.38944 0.92 0.0004533 0.000413435 0.0315172 0.028827 46 2548 48 6.99608e+06 176588 828058. 2865.25 3.97 0.156995 0.13743 28066 200906 -1 1774 21 1715 2269 170442 39233 3.16641 3.16641 -116.986 -3.16641 0 0 1.01997e+06 3529.29 0.39 0.07 0.20 -1 -1 0.39 0.0220834 0.0196156 80 54 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 8.20 vpr 64.80 MiB -1 -1 0.15 20276 1 0.03 -1 -1 33768 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66356 32 32 290 244 1 172 75 17 17 289 -1 unnamed_device 26.3 MiB 0.79 695 11609 4409 5699 1501 64.8 MiB 0.08 0.00 3.88892 -124.254 -3.88892 3.88892 0.89 0.000394424 0.000356079 0.0324461 0.029448 40 2563 29 6.99608e+06 161872 706193. 2443.58 4.19 0.141355 0.123457 26914 176310 -1 2106 19 1525 2213 231571 51201 3.43886 3.43886 -127.129 -3.43886 0 0 926341. 3205.33 0.35 0.08 0.17 -1 -1 0.35 0.0199437 0.0177649 72 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 8.31 vpr 65.19 MiB -1 -1 0.16 20736 1 0.03 -1 -1 33836 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66756 32 32 318 257 1 191 78 17 17 289 -1 unnamed_device 26.7 MiB 1.68 729 11034 3646 5163 2225 65.2 MiB 0.08 0.00 4.07043 -123.448 -4.07043 4.07043 0.89 0.000465419 0.000423434 0.0331675 0.0303197 46 2576 50 6.99608e+06 206020 828058. 2865.25 3.29 0.166293 0.14591 28066 200906 -1 1832 30 1790 2581 175346 42302 4.16472 4.16472 -129.342 -4.16472 0 0 1.01997e+06 3529.29 0.39 0.08 0.20 -1 -1 0.39 0.0303634 0.0267696 79 27 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 9.20 vpr 65.08 MiB -1 -1 0.16 20660 1 0.03 -1 -1 33720 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 29 32 324 268 1 195 79 17 17 289 -1 unnamed_device 26.7 MiB 1.64 807 9881 4044 5289 548 65.1 MiB 0.08 0.00 3.78147 -112.033 -3.78147 3.78147 0.91 0.000473872 0.00043133 0.0300701 0.0274345 40 2561 37 6.99608e+06 264882 706193. 2443.58 4.28 0.154506 0.135271 26914 176310 -1 2185 21 1573 2240 248384 59453 3.75971 3.75971 -116.507 -3.75971 0 0 926341. 3205.33 0.35 0.08 0.17 -1 -1 0.35 0.0237155 0.0210721 88 49 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 10.45 vpr 65.59 MiB -1 -1 0.14 20512 1 0.03 -1 -1 33736 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67168 32 32 393 312 1 235 81 17 17 289 -1 unnamed_device 27.0 MiB 1.52 1189 13031 5003 6393 1635 65.6 MiB 0.11 0.00 5.55394 -180.701 -5.55394 5.55394 0.87 0.000548783 0.000497626 0.0434253 0.0396082 40 3527 35 6.99608e+06 250167 706193. 2443.58 5.68 0.176233 0.153816 26914 176310 -1 3144 23 2649 3987 436819 84814 4.9 4.9 -177.886 -4.9 0 0 926341. 3205.33 0.34 0.12 0.17 -1 -1 0.34 0.0293485 0.0259583 105 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 5.78 vpr 64.49 MiB -1 -1 0.14 20036 1 0.03 -1 -1 33488 -1 -1 13 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66036 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 26.0 MiB 0.96 678 10796 4152 4483 2161 64.5 MiB 0.07 0.00 3.34663 -92.0539 -3.34663 3.34663 0.91 0.000378565 0.000341014 0.0273809 0.0250525 34 1899 26 6.99608e+06 191304 618332. 2139.56 1.69 0.109167 0.0951011 25762 151098 -1 1532 19 951 1531 115611 24412 2.79811 2.79811 -101.114 -2.79811 0 0 787024. 2723.27 0.32 0.05 0.15 -1 -1 0.32 0.0166034 0.0146945 54 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 11.81 vpr 65.22 MiB -1 -1 0.17 20688 1 0.06 -1 -1 34008 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66784 32 32 412 334 1 258 84 17 17 289 -1 unnamed_device 26.8 MiB 3.09 1002 14907 4915 7817 2175 65.2 MiB 0.13 0.00 4.76623 -160.299 -4.76623 4.76623 0.91 0.00056183 0.000511628 0.0488663 0.0445663 48 2884 23 6.99608e+06 294314 865456. 2994.66 5.22 0.241812 0.211342 28354 207349 -1 2440 20 2323 2954 285538 61481 4.9593 4.9593 -167.879 -4.9593 0 0 1.05005e+06 3633.38 0.40 0.09 0.20 -1 -1 0.40 0.0273522 0.0244249 116 87 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 23.56 vpr 65.43 MiB -1 -1 0.15 20452 1 0.03 -1 -1 33692 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66996 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 26.8 MiB 0.95 1317 10744 3615 5258 1871 65.4 MiB 0.09 0.00 4.50112 -167.331 -4.50112 4.50112 0.90 0.00053635 0.000487047 0.034898 0.0317958 40 3495 26 6.99608e+06 235451 706193. 2443.58 19.28 0.295159 0.256549 26914 176310 -1 2926 24 3276 4138 494202 92561 4.85739 4.85739 -181.953 -4.85739 0 0 926341. 3205.33 0.36 0.13 0.17 -1 -1 0.36 0.0292428 0.026016 110 93 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 8.04 vpr 65.39 MiB -1 -1 0.15 20528 1 0.03 -1 -1 33756 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66960 32 32 360 293 1 219 79 17 17 289 -1 unnamed_device 26.9 MiB 1.53 944 9712 3948 5370 394 65.4 MiB 0.08 0.00 3.79657 -123.64 -3.79657 3.79657 0.91 0.000510066 0.000464272 0.032039 0.0292466 44 3075 49 6.99608e+06 220735 787024. 2723.27 3.17 0.148786 0.130076 27778 195446 -1 1984 21 1585 2040 163763 38450 3.46081 3.46081 -119.657 -3.46081 0 0 997811. 3452.63 0.41 0.07 0.19 -1 -1 0.41 0.0254222 0.0225713 94 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 9.21 vpr 65.43 MiB -1 -1 0.17 20720 1 0.03 -1 -1 33788 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67000 32 32 396 299 1 228 79 17 17 289 -1 unnamed_device 26.9 MiB 1.04 1078 15796 7109 8306 381 65.4 MiB 0.14 0.00 5.81442 -170.312 -5.81442 5.81442 0.93 0.000587058 0.000533698 0.0562947 0.051349 46 3303 43 6.99608e+06 220735 828058. 2865.25 4.73 0.211617 0.1862 28066 200906 -1 2519 19 2001 2996 241064 50553 4.8635 4.8635 -169.634 -4.8635 0 0 1.01997e+06 3529.29 0.39 0.08 0.20 -1 -1 0.39 0.0264896 0.0237367 98 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 7.92 vpr 64.37 MiB -1 -1 0.15 20168 1 0.03 -1 -1 33764 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65912 30 32 224 207 1 132 74 17 17 289 -1 unnamed_device 25.9 MiB 0.77 501 9684 3375 4762 1547 64.4 MiB 0.06 0.00 2.78575 -96.9119 -2.78575 2.78575 0.91 0.000354837 0.000323344 0.0241776 0.0220743 38 1487 22 6.99608e+06 176588 678818. 2348.85 4.00 0.133952 0.115735 26626 170182 -1 1249 19 785 987 89017 19309 2.57072 2.57072 -92.9223 -2.57072 0 0 902133. 3121.57 0.34 0.04 0.16 -1 -1 0.34 0.015241 0.013534 53 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 9.03 vpr 65.01 MiB -1 -1 0.15 20144 1 0.03 -1 -1 34096 -1 -1 14 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66568 30 32 286 239 1 157 76 17 17 289 -1 unnamed_device 26.5 MiB 3.87 598 11756 4032 5894 1830 65.0 MiB 0.08 0.00 3.77712 -117.524 -3.77712 3.77712 0.90 0.000432557 0.000394307 0.0340795 0.0311328 38 1780 24 6.99608e+06 206020 678818. 2348.85 1.96 0.133349 0.116781 26626 170182 -1 1431 21 1164 1714 139245 30323 3.30746 3.30746 -119.712 -3.30746 0 0 902133. 3121.57 0.35 0.06 0.16 -1 -1 0.35 0.0220672 0.019672 68 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 6.99 vpr 65.28 MiB -1 -1 0.15 20428 1 0.03 -1 -1 33632 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66848 32 32 296 247 1 182 81 17 17 289 -1 unnamed_device 26.7 MiB 0.62 791 12331 4777 6250 1304 65.3 MiB 0.09 0.00 3.68644 -122.952 -3.68644 3.68644 0.91 0.000442566 0.000401848 0.0329351 0.030085 44 2873 41 6.99608e+06 250167 787024. 2723.27 3.07 0.15252 0.133813 27778 195446 -1 2087 19 1489 2342 241451 50537 3.70196 3.70196 -133.232 -3.70196 0 0 997811. 3452.63 0.40 0.08 0.19 -1 -1 0.40 0.0205364 0.0183061 78 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 6.08 vpr 64.55 MiB -1 -1 0.14 20152 1 0.03 -1 -1 33868 -1 -1 16 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66096 25 32 216 194 1 136 73 17 17 289 -1 unnamed_device 26.0 MiB 1.13 448 7369 2953 3764 652 64.5 MiB 0.04 0.00 3.31959 -76.8944 -3.31959 3.31959 0.92 0.00035001 0.000318785 0.0186627 0.0170728 38 1742 32 6.99608e+06 235451 678818. 2348.85 1.82 0.086521 0.0753172 26626 170182 -1 1067 18 820 1065 70792 18815 2.98797 2.98797 -80.5539 -2.98797 0 0 902133. 3121.57 0.34 0.04 0.17 -1 -1 0.34 0.0149516 0.0132761 59 19 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 12.54 vpr 65.45 MiB -1 -1 0.17 20448 1 0.03 -1 -1 33876 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67016 32 32 376 307 1 234 81 17 17 289 -1 unnamed_device 26.9 MiB 3.34 1245 8306 2489 4423 1394 65.4 MiB 0.07 0.00 4.0386 -139.855 -4.0386 4.0386 0.90 0.000512646 0.000467307 0.0273312 0.0249901 48 3245 50 6.99608e+06 250167 865456. 2994.66 5.82 0.249322 0.216071 28354 207349 -1 2845 21 2041 2978 290931 56452 3.88612 3.88612 -141.416 -3.88612 0 0 1.05005e+06 3633.38 0.41 0.09 0.20 -1 -1 0.41 0.0266579 0.0237233 103 69 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 9.29 vpr 65.67 MiB -1 -1 0.16 20352 1 0.03 -1 -1 33868 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67244 31 32 409 331 1 258 82 17 17 289 -1 unnamed_device 27.3 MiB 2.61 1163 15568 6109 7919 1540 65.7 MiB 0.13 0.00 4.35051 -150.242 -4.35051 4.35051 0.92 0.00057761 0.000526462 0.0531287 0.0484547 40 3509 30 6.99608e+06 279598 706193. 2443.58 3.30 0.191964 0.168828 26914 176310 -1 2880 22 2655 3597 319611 69613 4.47785 4.47785 -163.263 -4.47785 0 0 926341. 3205.33 0.34 0.10 0.17 -1 -1 0.34 0.0281174 0.0249307 117 86 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_001.v common 11.22 vpr 65.02 MiB -1 -1 0.21 20780 14 0.31 -1 -1 36896 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 32 32 277 309 1 203 83 17 17 289 -1 unnamed_device 26.6 MiB 1.96 1276 8543 2090 5594 859 65.0 MiB 0.08 0.00 8.38905 -176.577 -8.38905 8.38905 0.87 0.000615063 0.000557886 0.0333034 0.0303591 36 3665 49 6.79088e+06 255968 648988. 2245.63 5.80 0.222133 0.196374 25390 158009 -1 3031 19 1428 3960 252465 55201 7.21088 7.21088 -172.542 -7.21088 0 0 828058. 2865.25 0.31 0.09 0.15 -1 -1 0.31 0.0304623 0.027419 130 182 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_002.v common 10.30 vpr 65.05 MiB -1 -1 0.24 21020 14 0.36 -1 -1 36192 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66616 30 32 272 304 1 194 81 17 17 289 -1 unnamed_device 26.6 MiB 2.80 1147 12331 4133 6053 2145 65.1 MiB 0.11 0.00 7.6097 -157.374 -7.6097 7.6097 0.93 0.000638404 0.000579718 0.0495887 0.0448787 34 3327 27 6.79088e+06 255968 618332. 2139.56 3.80 0.214819 0.189845 25102 150614 -1 2658 19 1284 3490 200353 45854 6.82379 6.82379 -154.476 -6.82379 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0318323 0.0286756 125 181 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_003.v common 12.20 vpr 64.80 MiB -1 -1 0.20 20588 11 0.28 -1 -1 36356 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66360 32 32 280 312 1 193 83 17 17 289 -1 unnamed_device 26.4 MiB 3.95 1231 6383 1494 4487 402 64.8 MiB 0.06 0.00 6.81003 -148.008 -6.81003 6.81003 0.93 0.000634744 0.000571756 0.0267615 0.0243068 36 3209 32 6.79088e+06 255968 648988. 2245.63 4.65 0.195129 0.171433 25390 158009 -1 2801 19 1317 3890 223314 49848 6.29093 6.29093 -148.387 -6.29093 0 0 828058. 2865.25 0.32 0.09 0.16 -1 -1 0.32 0.0331143 0.0298076 130 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_004.v common 8.97 vpr 64.88 MiB -1 -1 0.22 20576 12 0.40 -1 -1 36328 -1 -1 24 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66440 29 32 275 307 1 202 85 17 17 289 -1 unnamed_device 26.5 MiB 1.38 1099 5293 1100 3885 308 64.9 MiB 0.05 0.00 7.28153 -143.815 -7.28153 7.28153 0.91 0.000645439 0.000586905 0.0226092 0.0206425 36 3357 33 6.79088e+06 323328 648988. 2245.63 3.93 0.18571 0.162438 25390 158009 -1 2586 20 1448 4044 231944 51886 6.54158 6.54158 -139.567 -6.54158 0 0 828058. 2865.25 0.31 0.08 0.15 -1 -1 0.31 0.0321549 0.0287802 136 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_005.v common 10.64 vpr 65.08 MiB -1 -1 0.22 20608 13 0.34 -1 -1 36784 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 32 32 302 334 1 234 86 17 17 289 -1 unnamed_device 26.5 MiB 2.10 1401 5756 1163 4305 288 65.1 MiB 0.06 0.00 8.2885 -175.09 -8.2885 8.2885 0.92 0.000709594 0.000641115 0.0248191 0.0226577 44 3623 24 6.79088e+06 296384 787024. 2723.27 4.78 0.256798 0.225045 27118 194962 -1 2945 17 1360 3567 206025 45572 7.51181 7.51181 -170.614 -7.51181 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0327709 0.0297032 152 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_006.v common 9.39 vpr 65.00 MiB -1 -1 0.24 20620 13 0.30 -1 -1 36480 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 32 32 292 324 1 210 83 17 17 289 -1 unnamed_device 26.5 MiB 1.91 1243 11063 3086 5977 2000 65.0 MiB 0.10 0.00 7.40767 -155.099 -7.40767 7.40767 0.90 0.000660569 0.000598312 0.0453867 0.0412065 38 3505 23 6.79088e+06 255968 678818. 2348.85 3.83 0.224035 0.198469 25966 169698 -1 2804 18 1394 4237 219172 49131 6.58427 6.58427 -150.238 -6.58427 0 0 902133. 3121.57 0.34 0.09 0.16 -1 -1 0.34 0.0331282 0.0299895 137 197 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_007.v common 9.84 vpr 64.59 MiB -1 -1 0.20 20300 12 0.24 -1 -1 36376 -1 -1 21 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66144 27 32 229 261 1 168 80 17 17 289 -1 unnamed_device 26.2 MiB 1.64 831 9024 2147 6104 773 64.6 MiB 0.07 0.00 7.03512 -124.15 -7.03512 7.03512 0.92 0.000540999 0.000491613 0.0314383 0.0286558 36 2328 49 6.79088e+06 282912 648988. 2245.63 4.71 0.247574 0.215279 25390 158009 -1 1811 24 963 2242 190298 71060 6.02493 6.02493 -115.935 -6.02493 0 0 828058. 2865.25 0.31 0.08 0.15 -1 -1 0.31 0.0291578 0.0259361 106 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_008.v common 11.52 vpr 64.61 MiB -1 -1 0.20 20468 12 0.24 -1 -1 36392 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66160 31 32 229 261 1 188 80 17 17 289 -1 unnamed_device 26.1 MiB 3.43 997 12636 5258 7154 224 64.6 MiB 0.10 0.00 6.42294 -136.16 -6.42294 6.42294 0.90 0.000517842 0.000470049 0.0411964 0.0374197 44 2627 22 6.79088e+06 229024 787024. 2723.27 4.55 0.222911 0.194649 27118 194962 -1 2129 16 1056 2792 155188 35766 5.65861 5.65861 -131.48 -5.65861 0 0 997811. 3452.63 0.39 0.06 0.19 -1 -1 0.39 0.0233226 0.0209899 106 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_009.v common 9.24 vpr 64.83 MiB -1 -1 0.20 20536 12 0.21 -1 -1 36372 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66384 31 32 235 267 1 194 83 17 17 289 -1 unnamed_device 26.3 MiB 3.57 1116 6203 1235 4627 341 64.8 MiB 0.06 0.00 7.04997 -146.463 -7.04997 7.04997 0.92 0.000549236 0.000496796 0.022341 0.0203246 38 2827 29 6.79088e+06 269440 678818. 2348.85 2.23 0.133234 0.117176 25966 169698 -1 2377 15 1090 2724 145236 33529 6.25178 6.25178 -137.947 -6.25178 0 0 902133. 3121.57 0.34 0.06 0.17 -1 -1 0.34 0.0226567 0.0204842 113 142 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_010.v common 9.80 vpr 64.52 MiB -1 -1 0.21 20428 13 0.23 -1 -1 36500 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66068 32 32 250 282 1 182 79 17 17 289 -1 unnamed_device 26.0 MiB 2.50 1109 7177 1737 4800 640 64.5 MiB 0.07 0.00 7.59858 -166.488 -7.59858 7.59858 0.90 0.00059305 0.000536228 0.0277161 0.0251894 36 3033 30 6.79088e+06 202080 648988. 2245.63 3.90 0.171898 0.150696 25390 158009 -1 2399 14 1005 2359 142479 31916 6.91327 6.91327 -163.368 -6.91327 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0218855 0.0197825 106 155 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_011.v common 6.56 vpr 64.45 MiB -1 -1 0.21 20556 12 0.23 -1 -1 36488 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65992 30 32 216 248 1 161 79 17 17 289 -1 unnamed_device 26.1 MiB 2.05 935 11402 3533 6247 1622 64.4 MiB 0.08 0.00 7.11778 -148.236 -7.11778 7.11778 0.89 0.000509491 0.000463298 0.0368566 0.0335093 30 2539 45 6.79088e+06 229024 556674. 1926.21 1.17 0.123279 0.108206 24526 138013 -1 2061 17 900 2128 107060 25145 6.24408 6.24408 -144.119 -6.24408 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.0219214 0.0196829 96 125 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_012.v common 8.27 vpr 64.61 MiB -1 -1 0.20 20468 12 0.19 -1 -1 36516 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66160 32 32 236 268 1 171 81 17 17 289 -1 unnamed_device 26.1 MiB 2.78 937 12856 4731 5927 2198 64.6 MiB 0.10 0.00 5.84661 -143.137 -5.84661 5.84661 0.89 0.000512652 0.000464209 0.0411426 0.0373743 44 2800 36 6.79088e+06 229024 787024. 2723.27 2.04 0.141388 0.123826 27118 194962 -1 2043 14 969 2636 142102 32796 5.18431 5.18431 -135.735 -5.18431 0 0 997811. 3452.63 0.37 0.05 0.19 -1 -1 0.37 0.0198793 0.0179727 101 141 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_013.v common 10.38 vpr 65.09 MiB -1 -1 0.23 20896 13 0.32 -1 -1 36396 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66648 32 32 283 315 1 215 84 17 17 289 -1 unnamed_device 26.6 MiB 2.30 1258 8319 2303 5000 1016 65.1 MiB 0.08 0.00 7.91028 -166.355 -7.91028 7.91028 0.93 0.000670319 0.000600335 0.0346418 0.0314185 44 3023 21 6.79088e+06 269440 787024. 2723.27 4.34 0.243774 0.213791 27118 194962 -1 2599 18 1118 3067 177490 38715 6.88526 6.88526 -157.731 -6.88526 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.029879 0.0269193 134 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_014.v common 9.95 vpr 65.30 MiB -1 -1 0.23 20772 14 0.38 -1 -1 36156 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66872 32 32 303 335 1 230 86 17 17 289 -1 unnamed_device 26.8 MiB 2.31 1345 7268 1767 5038 463 65.3 MiB 0.08 0.00 8.74626 -182.518 -8.74626 8.74626 0.92 0.000711796 0.000643975 0.0315094 0.0286192 36 3522 26 6.79088e+06 296384 648988. 2245.63 3.94 0.206273 0.181266 25390 158009 -1 2989 18 1459 3621 213522 48818 7.56225 7.56225 -174.856 -7.56225 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.0329968 0.0297581 151 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_015.v common 9.74 vpr 64.41 MiB -1 -1 0.17 20156 11 0.22 -1 -1 36184 -1 -1 21 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65956 29 32 225 257 1 176 82 17 17 289 -1 unnamed_device 26.0 MiB 2.85 987 12186 3908 6119 2159 64.4 MiB 0.09 0.00 6.7187 -136.52 -6.7187 6.7187 0.92 0.000523628 0.000475667 0.0388812 0.0353681 34 3118 45 6.79088e+06 282912 618332. 2139.56 3.27 0.174735 0.15271 25102 150614 -1 2533 55 1326 3340 702783 417195 6.16214 6.16214 -140.269 -6.16214 0 0 787024. 2723.27 0.30 0.27 0.15 -1 -1 0.30 0.0560066 0.0488476 106 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_016.v common 11.28 vpr 65.28 MiB -1 -1 0.23 20732 12 0.34 -1 -1 36396 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 32 32 301 333 1 221 88 17 17 289 -1 unnamed_device 26.7 MiB 1.70 1224 13348 3764 6998 2586 65.3 MiB 0.12 0.00 7.24781 -156.42 -7.24781 7.24781 0.93 0.000662075 0.000603597 0.0508777 0.0460019 44 3277 40 6.79088e+06 323328 787024. 2723.27 5.80 0.2981 0.260615 27118 194962 -1 2666 17 1385 4252 222241 51840 6.58078 6.58078 -147.103 -6.58078 0 0 997811. 3452.63 0.37 0.08 0.19 -1 -1 0.37 0.0308524 0.0278356 145 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_017.v common 12.16 vpr 65.14 MiB -1 -1 0.23 20724 14 0.31 -1 -1 36348 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 32 32 277 309 1 210 83 17 17 289 -1 unnamed_device 26.7 MiB 2.83 1311 6743 1544 4772 427 65.1 MiB 0.07 0.00 8.47078 -173.752 -8.47078 8.47078 0.91 0.000629052 0.000568685 0.0277647 0.0252867 44 3464 31 6.79088e+06 255968 787024. 2723.27 5.65 0.261332 0.229463 27118 194962 -1 2780 17 1214 3544 197627 42898 7.22545 7.22545 -161.109 -7.22545 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0295195 0.0267068 126 182 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_018.v common 9.66 vpr 64.60 MiB -1 -1 0.20 20420 12 0.20 -1 -1 36364 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66148 32 32 227 259 1 172 79 17 17 289 -1 unnamed_device 26.1 MiB 2.06 1008 11740 3543 6499 1698 64.6 MiB 0.09 0.00 7.24148 -161.628 -7.24148 7.24148 0.90 0.000517684 0.000469872 0.039377 0.0357443 36 2795 45 6.79088e+06 202080 648988. 2245.63 4.22 0.207282 0.18054 25390 158009 -1 2378 15 976 2474 149319 33765 6.21607 6.21607 -156.301 -6.21607 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0230164 0.020787 105 132 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_019.v common 9.68 vpr 63.94 MiB -1 -1 0.17 20248 10 0.12 -1 -1 36856 -1 -1 13 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65472 30 32 175 207 1 133 75 17 17 289 -1 unnamed_device 25.5 MiB 2.37 679 4973 1078 3739 156 63.9 MiB 0.04 0.00 4.83286 -114.815 -4.83286 4.83286 0.89 0.000393303 0.000355721 0.0141096 0.012823 38 1772 21 6.79088e+06 175136 678818. 2348.85 4.11 0.146608 0.126264 25966 169698 -1 1619 14 647 1409 89824 20060 4.29586 4.29586 -114.403 -4.29586 0 0 902133. 3121.57 0.33 0.04 0.17 -1 -1 0.33 0.01552 0.0139871 66 84 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_020.v common 10.13 vpr 64.44 MiB -1 -1 0.22 20668 13 0.22 -1 -1 35892 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65984 31 32 231 263 1 186 81 17 17 289 -1 unnamed_device 26.0 MiB 2.57 997 12331 4111 5801 2419 64.4 MiB 0.10 0.00 7.54752 -160.268 -7.54752 7.54752 0.93 0.000562827 0.000512848 0.0419301 0.0381923 36 2929 29 6.79088e+06 242496 648988. 2245.63 4.04 0.228328 0.19995 25390 158009 -1 2308 18 1125 2654 153918 35011 6.16922 6.16922 -147.333 -6.16922 0 0 828058. 2865.25 0.31 0.06 0.15 -1 -1 0.31 0.0250608 0.0224628 107 138 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_021.v common 22.74 vpr 65.30 MiB -1 -1 0.21 20736 13 0.35 -1 -1 36528 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66868 32 32 304 336 1 224 85 17 17 289 -1 unnamed_device 26.8 MiB 2.20 1287 9943 2672 5830 1441 65.3 MiB 0.10 0.00 7.66212 -166.709 -7.66212 7.66212 0.92 0.000673295 0.000610315 0.0408653 0.0371068 36 4367 40 6.79088e+06 282912 648988. 2245.63 16.76 0.378314 0.332693 25390 158009 -1 3174 30 2184 6712 566802 176298 6.96787 6.96787 -161.481 -6.96787 0 0 828058. 2865.25 0.33 0.19 0.15 -1 -1 0.33 0.0502946 0.0449184 143 209 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_022.v common 11.73 vpr 65.14 MiB -1 -1 0.22 20664 13 0.36 -1 -1 36616 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 32 32 288 320 1 216 85 17 17 289 -1 unnamed_device 26.6 MiB 2.74 1366 11989 3183 6998 1808 65.1 MiB 0.10 0.00 7.56666 -167.812 -7.56666 7.56666 0.93 0.000592533 0.000538387 0.0440245 0.0399629 38 3931 41 6.79088e+06 282912 678818. 2348.85 5.28 0.229975 0.202763 25966 169698 -1 3120 17 1406 4182 239599 51913 6.50587 6.50587 -157.808 -6.50587 0 0 902133. 3121.57 0.33 0.09 0.16 -1 -1 0.33 0.030132 0.0272529 141 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_023.v common 5.91 vpr 63.77 MiB -1 -1 0.17 20292 9 0.11 -1 -1 36052 -1 -1 18 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65296 26 32 152 184 1 122 76 17 17 289 -1 unnamed_device 25.3 MiB 1.34 700 7596 2556 3853 1187 63.8 MiB 0.04 0.00 4.83723 -93.7879 -4.83723 4.83723 0.85 0.000294769 0.000268285 0.0175002 0.0159634 34 1715 26 6.79088e+06 242496 618332. 2139.56 1.52 0.0933256 0.0807327 25102 150614 -1 1498 18 668 1631 98751 22412 4.3539 4.3539 -94.2702 -4.3539 0 0 787024. 2723.27 0.29 0.04 0.14 -1 -1 0.29 0.0164664 0.0146129 67 69 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_024.v common 23.00 vpr 65.18 MiB -1 -1 0.20 20416 13 0.36 -1 -1 36552 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 32 32 287 319 1 214 87 17 17 289 -1 unnamed_device 26.7 MiB 2.39 1263 10263 2709 7113 441 65.2 MiB 0.10 0.00 8.1433 -166.845 -8.1433 8.1433 0.92 0.000645812 0.000584724 0.0393833 0.0358534 40 3385 50 6.79088e+06 309856 706193. 2443.58 16.89 0.380538 0.332335 26254 175826 -1 3075 21 1607 4496 277530 61024 7.34382 7.34382 -164.809 -7.34382 0 0 926341. 3205.33 0.34 0.10 0.17 -1 -1 0.34 0.033289 0.0298443 136 192 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_025.v common 9.37 vpr 63.82 MiB -1 -1 0.15 19816 8 0.10 -1 -1 36240 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65356 32 32 154 186 1 126 75 17 17 289 -1 unnamed_device 25.4 MiB 2.37 633 5921 1256 4594 71 63.8 MiB 0.04 0.00 4.18492 -95.1021 -4.18492 4.18492 0.92 0.000369421 0.000337223 0.0151576 0.0138485 36 1824 30 6.79088e+06 148192 648988. 2245.63 3.83 0.121482 0.104963 25390 158009 -1 1490 18 656 1469 79844 19181 3.83796 3.83796 -94.1549 -3.83796 0 0 828058. 2865.25 0.31 0.04 0.15 -1 -1 0.31 0.0156784 0.0139708 60 59 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_026.v common 13.84 vpr 64.75 MiB -1 -1 0.21 20348 15 0.29 -1 -1 36592 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 32 32 254 286 1 202 82 17 17 289 -1 unnamed_device 26.4 MiB 2.76 1197 14144 5293 7084 1767 64.7 MiB 0.12 0.00 8.89118 -178.017 -8.89118 8.89118 0.90 0.000579739 0.00052512 0.0501756 0.0455769 36 3911 43 6.79088e+06 242496 648988. 2245.63 7.42 0.214282 0.188204 25390 158009 -1 3064 31 1411 3990 445921 169785 7.93467 7.93467 -173.678 -7.93467 0 0 828058. 2865.25 0.31 0.16 0.15 -1 -1 0.31 0.0410123 0.0364391 121 159 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_027.v common 12.62 vpr 64.76 MiB -1 -1 0.20 20464 13 0.28 -1 -1 36416 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66312 32 32 260 292 1 195 82 17 17 289 -1 unnamed_device 26.2 MiB 2.25 1207 12898 3890 6827 2181 64.8 MiB 0.11 0.00 6.79894 -149.553 -6.79894 6.79894 0.91 0.000619774 0.000564476 0.0478745 0.0435606 36 3359 23 6.79088e+06 242496 648988. 2245.63 6.80 0.206645 0.183195 25390 158009 -1 2799 19 1253 3687 226923 49033 5.82898 5.82898 -144.739 -5.82898 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.0297097 0.0267399 117 165 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_028.v common 29.44 vpr 64.98 MiB -1 -1 0.22 20760 13 0.33 -1 -1 36556 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 32 32 279 311 1 202 82 17 17 289 -1 unnamed_device 26.5 MiB 1.91 1179 7024 1686 4552 786 65.0 MiB 0.07 0.00 7.81323 -165.772 -7.81323 7.81323 0.91 0.000651714 0.000591028 0.0296709 0.0270275 40 3618 36 6.79088e+06 242496 706193. 2443.58 23.78 0.400013 0.351114 26254 175826 -1 3151 26 1711 4941 532467 172390 6.77334 6.77334 -165.618 -6.77334 0 0 926341. 3205.33 0.35 0.17 0.17 -1 -1 0.35 0.0419525 0.0375795 136 184 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_029.v common 10.14 vpr 64.43 MiB -1 -1 0.20 20512 12 0.19 -1 -1 36608 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65980 32 32 238 270 1 186 80 17 17 289 -1 unnamed_device 25.9 MiB 2.38 1077 9024 2472 4753 1799 64.4 MiB 0.07 0.00 6.90294 -154.176 -6.90294 6.90294 0.89 0.000524521 0.000474555 0.0309725 0.0281393 44 2601 23 6.79088e+06 215552 787024. 2723.27 4.27 0.20215 0.176431 27118 194962 -1 2193 15 961 2304 130018 29335 5.99004 5.99004 -140.976 -5.99004 0 0 997811. 3452.63 0.38 0.06 0.19 -1 -1 0.38 0.0231961 0.0210261 103 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_030.v common 14.18 vpr 64.35 MiB -1 -1 0.19 20448 11 0.18 -1 -1 36336 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65892 30 32 213 245 1 164 80 17 17 289 -1 unnamed_device 25.9 MiB 2.27 910 12120 3870 6285 1965 64.3 MiB 0.09 0.00 6.3635 -135.496 -6.3635 6.3635 0.92 0.000512861 0.000463096 0.0379176 0.0344668 36 2758 44 6.79088e+06 242496 648988. 2245.63 8.49 0.246379 0.214228 25390 158009 -1 2137 15 968 2319 151256 33988 5.69238 5.69238 -131.952 -5.69238 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0204862 0.0184813 95 122 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_031.v common 7.49 vpr 64.31 MiB -1 -1 0.20 20428 11 0.22 -1 -1 36256 -1 -1 21 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65856 28 32 227 259 1 171 81 17 17 289 -1 unnamed_device 25.9 MiB 1.86 934 11106 3231 6003 1872 64.3 MiB 0.08 0.00 7.04953 -133.904 -7.04953 7.04953 0.90 0.000518335 0.000470537 0.0360375 0.0327303 36 2495 17 6.79088e+06 282912 648988. 2245.63 2.18 0.152689 0.133744 25390 158009 -1 2080 15 900 2405 142832 32141 6.24403 6.24403 -128.601 -6.24403 0 0 828058. 2865.25 0.34 0.06 0.15 -1 -1 0.34 0.0222823 0.0200048 109 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_032.v common 19.79 vpr 64.93 MiB -1 -1 0.19 20668 12 0.24 -1 -1 36420 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66492 32 32 274 306 1 209 81 17 17 289 -1 unnamed_device 26.5 MiB 3.03 1143 7431 2070 3957 1404 64.9 MiB 0.07 0.00 7.03679 -162.788 -7.03679 7.03679 0.93 0.000630149 0.000571766 0.0300385 0.027382 38 3489 28 6.79088e+06 229024 678818. 2348.85 13.26 0.313813 0.273693 25966 169698 -1 2750 18 1400 3465 198948 44554 6.45548 6.45548 -161.876 -6.45548 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.0285068 0.0256825 119 179 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_033.v common 9.99 vpr 64.84 MiB -1 -1 0.17 20736 12 0.18 -1 -1 36184 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66400 31 32 237 269 1 176 80 17 17 289 -1 unnamed_device 26.4 MiB 2.56 1005 7304 1599 5397 308 64.8 MiB 0.06 0.00 6.85818 -143.144 -6.85818 6.85818 0.87 0.000520274 0.000475024 0.0254953 0.0233132 36 3104 26 6.79088e+06 229024 648988. 2245.63 4.19 0.172703 0.15276 25390 158009 -1 2546 20 1197 3028 191255 42293 5.92738 5.92738 -138.337 -5.92738 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0262347 0.0233443 101 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_034.v common 7.90 vpr 64.41 MiB -1 -1 0.19 20464 10 0.18 -1 -1 36540 -1 -1 17 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65960 29 32 220 252 1 166 78 17 17 289 -1 unnamed_device 26.0 MiB 1.84 942 8378 2178 5592 608 64.4 MiB 0.07 0.00 6.16888 -135.594 -6.16888 6.16888 0.91 0.000512463 0.000465075 0.0291677 0.0264848 34 2825 33 6.79088e+06 229024 618332. 2139.56 2.70 0.16374 0.143806 25102 150614 -1 2283 15 958 2705 169570 37670 5.36338 5.36338 -129.171 -5.36338 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.021579 0.0194701 103 131 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_035.v common 8.99 vpr 65.43 MiB -1 -1 0.23 21136 13 0.37 -1 -1 36740 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66996 32 32 315 347 1 232 85 17 17 289 -1 unnamed_device 26.9 MiB 2.28 1312 13663 4088 7126 2449 65.4 MiB 0.13 0.00 8.09614 -166.803 -8.09614 8.09614 0.91 0.000707945 0.000633213 0.0564053 0.0511328 44 3318 23 6.79088e+06 282912 787024. 2723.27 2.84 0.223131 0.196244 27118 194962 -1 2701 17 1373 4208 224771 50229 7.1394 7.1394 -154.037 -7.1394 0 0 997811. 3452.63 0.38 0.09 0.19 -1 -1 0.38 0.0329253 0.0297607 149 220 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_036.v common 9.99 vpr 64.78 MiB -1 -1 0.23 21000 14 0.40 -1 -1 36388 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66332 32 32 282 314 1 225 82 17 17 289 -1 unnamed_device 26.3 MiB 2.60 1261 10584 2627 7173 784 64.8 MiB 0.10 0.00 7.68903 -168.897 -7.68903 7.68903 0.92 0.000693553 0.000630595 0.0441343 0.0399651 44 3649 50 6.79088e+06 242496 787024. 2723.27 3.49 0.2202 0.19531 27118 194962 -1 2886 17 1427 3968 219322 49259 6.95258 6.95258 -162.986 -6.95258 0 0 997811. 3452.63 0.39 0.08 0.18 -1 -1 0.39 0.0317261 0.0287371 136 187 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_037.v common 10.07 vpr 64.56 MiB -1 -1 0.20 20660 12 0.19 -1 -1 35932 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66108 31 32 241 273 1 173 79 17 17 289 -1 unnamed_device 26.1 MiB 2.56 1099 9036 2242 5503 1291 64.6 MiB 0.07 0.00 7.11595 -155.813 -7.11595 7.11595 0.91 0.000528262 0.000487042 0.032112 0.0292636 42 2594 21 6.79088e+06 215552 744469. 2576.02 4.04 0.212805 0.186396 26542 182613 -1 2155 16 879 2322 148727 32785 6.33018 6.33018 -150.18 -6.33018 0 0 949917. 3286.91 0.37 0.06 0.17 -1 -1 0.37 0.0238762 0.0215537 101 148 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_038.v common 11.21 vpr 65.33 MiB -1 -1 0.23 20912 12 0.34 -1 -1 36656 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66900 31 32 307 339 1 226 87 17 17 289 -1 unnamed_device 26.8 MiB 2.84 1467 6039 1319 4287 433 65.3 MiB 0.07 0.00 7.47278 -158.083 -7.47278 7.47278 0.92 0.000707446 0.000636052 0.0266136 0.0243316 48 3354 17 6.79088e+06 323328 865456. 2994.66 4.56 0.242093 0.211949 27694 206865 -1 3077 17 1391 4060 254908 53783 6.54502 6.54502 -148.257 -6.54502 0 0 1.05005e+06 3633.38 0.41 0.09 0.20 -1 -1 0.41 0.0343509 0.0311792 146 214 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_039.v common 8.66 vpr 64.98 MiB -1 -1 0.23 20940 14 0.45 -1 -1 37092 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66536 31 32 293 325 1 209 85 17 17 289 -1 unnamed_device 26.5 MiB 1.61 1271 10129 2796 6287 1046 65.0 MiB 0.09 0.00 8.30959 -169.599 -8.30959 8.30959 0.89 0.000649076 0.00058897 0.0407419 0.0370204 36 3450 22 6.79088e+06 296384 648988. 2245.63 3.29 0.208089 0.183999 25390 158009 -1 2866 16 1351 3700 212299 48794 7.47267 7.47267 -164.725 -7.47267 0 0 828058. 2865.25 0.33 0.08 0.16 -1 -1 0.33 0.031103 0.0282323 142 200 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_040.v common 8.84 vpr 65.05 MiB -1 -1 0.23 21020 13 0.32 -1 -1 36096 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66608 31 32 276 308 1 215 86 17 17 289 -1 unnamed_device 26.6 MiB 2.51 1280 4811 900 3622 289 65.0 MiB 0.05 0.00 8.58767 -169.841 -8.58767 8.58767 0.90 0.000621717 0.00056412 0.0197583 0.0180653 38 3430 34 6.79088e+06 309856 678818. 2348.85 2.72 0.17978 0.157231 25966 169698 -1 2787 17 1355 3483 187965 42656 7.47267 7.47267 -159.441 -7.47267 0 0 902133. 3121.57 0.34 0.08 0.17 -1 -1 0.34 0.030277 0.0274221 136 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_041.v common 11.24 vpr 65.20 MiB -1 -1 0.23 20692 13 0.32 -1 -1 36528 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66764 31 32 269 301 1 204 84 17 17 289 -1 unnamed_device 26.8 MiB 2.32 1180 11979 3854 6305 1820 65.2 MiB 0.11 0.00 7.68398 -158.005 -7.68398 7.68398 0.92 0.000626677 0.000560305 0.0451141 0.0407621 46 3049 18 6.79088e+06 282912 828058. 2865.25 5.16 0.227853 0.199464 27406 200422 -1 2544 16 1179 3480 191322 42294 6.96798 6.96798 -148.071 -6.96798 0 0 1.01997e+06 3529.29 0.38 0.07 0.20 -1 -1 0.38 0.0269251 0.0243242 125 176 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_042.v common 9.57 vpr 64.40 MiB -1 -1 0.19 20448 12 0.23 -1 -1 36460 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65944 32 32 264 296 1 184 80 17 17 289 -1 unnamed_device 25.9 MiB 2.27 851 11432 3292 6222 1918 64.4 MiB 0.09 0.00 6.74005 -141.479 -6.74005 6.74005 0.86 0.000565459 0.00051528 0.0419942 0.0383304 38 2732 20 6.79088e+06 215552 678818. 2348.85 3.96 0.19436 0.172632 25966 169698 -1 2025 17 1043 2803 137992 33770 6.06839 6.06839 -140.261 -6.06839 0 0 902133. 3121.57 0.32 0.06 0.15 -1 -1 0.32 0.0260455 0.023521 111 169 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_043.v common 28.53 vpr 65.43 MiB -1 -1 0.26 21540 14 0.49 -1 -1 37012 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67000 32 32 324 356 1 241 85 17 17 289 -1 unnamed_device 27.1 MiB 1.34 1525 8269 1990 5730 549 65.4 MiB 0.09 0.00 8.76146 -179.232 -8.76146 8.76146 0.89 0.000799889 0.000714054 0.0385093 0.0348579 40 3962 28 6.79088e+06 282912 706193. 2443.58 23.31 0.404461 0.355832 26254 175826 -1 3736 16 1643 4957 342662 72776 7.59797 7.59797 -174.093 -7.59797 0 0 926341. 3205.33 0.35 0.11 0.17 -1 -1 0.35 0.0349689 0.0319131 159 229 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_044.v common 10.73 vpr 64.90 MiB -1 -1 0.19 20560 11 0.24 -1 -1 35988 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66460 31 32 249 281 1 186 79 17 17 289 -1 unnamed_device 26.4 MiB 2.64 1083 5656 1222 4312 122 64.9 MiB 0.06 0.00 6.44427 -138.672 -6.44427 6.44427 0.89 0.000589233 0.000533023 0.022276 0.0202684 44 3087 27 6.79088e+06 215552 787024. 2723.27 4.58 0.210861 0.183544 27118 194962 -1 2503 18 1145 3343 199423 43115 5.73164 5.73164 -134.877 -5.73164 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0275318 0.0248211 112 156 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_045.v common 10.58 vpr 64.87 MiB -1 -1 0.24 20672 13 0.33 -1 -1 36492 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66428 31 32 284 316 1 193 83 17 17 289 -1 unnamed_device 26.4 MiB 2.10 1224 12683 3651 6628 2404 64.9 MiB 0.11 0.00 8.19665 -170.984 -8.19665 8.19665 0.92 0.000657851 0.00059852 0.0506602 0.0460715 36 3521 25 6.79088e+06 269440 648988. 2245.63 4.83 0.266318 0.234665 25390 158009 -1 2718 17 1178 3776 220011 48287 7.01061 7.01061 -160.627 -7.01061 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.0307487 0.0277822 137 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_046.v common 9.15 vpr 65.07 MiB -1 -1 0.23 20800 12 0.32 -1 -1 36840 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 32 32 303 335 1 212 85 17 17 289 -1 unnamed_device 26.6 MiB 2.36 1183 14221 4949 6932 2340 65.1 MiB 0.13 0.00 7.19197 -155.782 -7.19197 7.19197 0.91 0.000668725 0.000603172 0.0561395 0.0508001 48 3258 28 6.79088e+06 282912 865456. 2994.66 2.93 0.233481 0.20651 27694 206865 -1 2769 24 1411 4530 432759 157864 6.41972 6.41972 -150.586 -6.41972 0 0 1.05005e+06 3633.38 0.39 0.15 0.21 -1 -1 0.39 0.0393096 0.0351181 146 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_047.v common 10.01 vpr 64.98 MiB -1 -1 0.19 20816 13 0.30 -1 -1 36664 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66536 32 32 272 304 1 200 86 17 17 289 -1 unnamed_device 26.6 MiB 1.64 1273 10103 2600 6194 1309 65.0 MiB 0.09 0.00 8.00961 -170.987 -8.00961 8.00961 0.92 0.000643962 0.000582771 0.0381332 0.0345897 38 3255 22 6.79088e+06 296384 678818. 2348.85 4.79 0.262477 0.230417 25966 169698 -1 2694 17 1212 3197 175848 40913 6.72081 6.72081 -158.428 -6.72081 0 0 902133. 3121.57 0.32 0.07 0.16 -1 -1 0.32 0.0281557 0.0253948 131 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_048.v common 13.09 vpr 64.54 MiB -1 -1 0.22 20744 13 0.27 -1 -1 37024 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66092 32 32 271 303 1 212 82 17 17 289 -1 unnamed_device 26.1 MiB 3.25 1094 12364 4318 5742 2304 64.5 MiB 0.11 0.00 7.6093 -157.428 -7.6093 7.6093 0.90 0.000606893 0.000549731 0.0453812 0.0411019 38 3487 43 6.79088e+06 242496 678818. 2348.85 6.26 0.211039 0.184485 25966 169698 -1 2496 17 1300 3454 186520 43111 6.50936 6.50936 -147.867 -6.50936 0 0 902133. 3121.57 0.33 0.07 0.16 -1 -1 0.33 0.0272278 0.0245147 124 176 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_049.v common 11.34 vpr 65.23 MiB -1 -1 0.24 21068 12 0.31 -1 -1 36476 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66800 32 32 288 320 1 218 84 17 17 289 -1 unnamed_device 26.7 MiB 2.41 1339 6489 1417 4538 534 65.2 MiB 0.07 0.00 7.45027 -163.951 -7.45027 7.45027 0.91 0.000656827 0.000594857 0.0278586 0.0253729 44 3321 18 6.79088e+06 269440 787024. 2723.27 5.22 0.251652 0.221194 27118 194962 -1 2880 15 1268 4103 226307 48638 6.33367 6.33367 -151.313 -6.33367 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0283178 0.025574 140 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_050.v common 9.23 vpr 64.74 MiB -1 -1 0.24 20576 13 0.36 -1 -1 37008 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66292 32 32 306 338 1 225 84 17 17 289 -1 unnamed_device 26.2 MiB 1.91 1312 5757 1265 4157 335 64.7 MiB 0.06 0.00 7.77691 -170.238 -7.77691 7.77691 0.90 0.000676657 0.000612776 0.0266315 0.0241677 36 4117 46 6.79088e+06 269440 648988. 2245.63 3.55 0.213782 0.187064 25390 158009 -1 3191 34 1537 4493 529481 205202 6.95673 6.95673 -165.406 -6.95673 0 0 828058. 2865.25 0.32 0.20 0.16 -1 -1 0.32 0.0556298 0.049771 145 211 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_051.v common 17.69 vpr 65.02 MiB -1 -1 0.21 20416 14 0.35 -1 -1 36228 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 32 32 262 294 1 194 84 17 17 289 -1 unnamed_device 26.6 MiB 1.76 1196 9783 2600 6598 585 65.0 MiB 0.09 0.00 8.29092 -170.108 -8.29092 8.29092 0.92 0.000621751 0.000564567 0.0367677 0.0334666 38 3116 34 6.79088e+06 269440 678818. 2348.85 12.26 0.313994 0.27535 25966 169698 -1 2517 19 1395 4131 212750 47962 7.04638 7.04638 -156.873 -7.04638 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.030898 0.0278929 125 167 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_052.v common 21.53 vpr 65.20 MiB -1 -1 0.22 20632 13 0.33 -1 -1 36644 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 32 32 291 323 1 214 85 17 17 289 -1 unnamed_device 26.7 MiB 2.68 1239 12547 3128 7964 1455 65.2 MiB 0.11 0.00 8.02156 -162.008 -8.02156 8.02156 0.90 0.000645016 0.000583749 0.0491581 0.0445764 36 3706 32 6.79088e+06 282912 648988. 2245.63 15.21 0.330729 0.290086 25390 158009 -1 3134 23 1969 5759 376061 79652 7.33607 7.33607 -160.823 -7.33607 0 0 828058. 2865.25 0.31 0.12 0.15 -1 -1 0.31 0.0365972 0.0326912 136 196 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_053.v common 18.91 vpr 65.18 MiB -1 -1 0.22 20732 13 0.33 -1 -1 36672 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 31 32 302 334 1 224 84 17 17 289 -1 unnamed_device 26.7 MiB 2.10 1309 8319 2069 5720 530 65.2 MiB 0.08 0.00 7.83086 -168.91 -7.83086 7.83086 0.86 0.000656622 0.000598175 0.0348215 0.0315983 38 3459 40 6.79088e+06 282912 678818. 2348.85 13.32 0.418321 0.369661 25966 169698 -1 2928 18 1445 4114 215674 47831 6.83836 6.83836 -161.551 -6.83836 0 0 902133. 3121.57 0.32 0.08 0.15 -1 -1 0.32 0.0317574 0.0287195 144 209 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_054.v common 20.00 vpr 65.30 MiB -1 -1 0.24 20884 12 0.37 -1 -1 36616 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66872 32 32 308 340 1 225 85 17 17 289 -1 unnamed_device 26.8 MiB 1.87 1321 14779 4130 8902 1747 65.3 MiB 0.14 0.00 7.66848 -162.706 -7.66848 7.66848 0.92 0.000709593 0.000642671 0.0607605 0.0552647 38 3631 50 6.79088e+06 282912 678818. 2348.85 14.31 0.457888 0.403823 25966 169698 -1 3008 18 1459 4087 232219 51644 6.98829 6.98829 -157.579 -6.98829 0 0 902133. 3121.57 0.34 0.09 0.16 -1 -1 0.34 0.034069 0.0307701 147 213 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_055.v common 8.95 vpr 64.66 MiB -1 -1 0.18 20140 11 0.16 -1 -1 36524 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66208 32 32 216 248 1 160 78 17 17 289 -1 unnamed_device 26.3 MiB 1.56 752 5224 962 4133 129 64.7 MiB 0.05 0.00 6.41251 -131.25 -6.41251 6.41251 0.91 0.000484321 0.000440563 0.018111 0.0164763 36 2354 24 6.79088e+06 188608 648988. 2245.63 4.10 0.171959 0.148226 25390 158009 -1 1841 17 982 2579 141528 34864 5.56708 5.56708 -127.034 -5.56708 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0212566 0.0190376 91 121 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_056.v common 10.21 vpr 64.60 MiB -1 -1 0.21 20816 13 0.26 -1 -1 36284 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66148 32 32 254 286 1 197 84 17 17 289 -1 unnamed_device 26.0 MiB 2.21 1180 7221 1648 4796 777 64.6 MiB 0.07 0.00 7.59268 -164.24 -7.59268 7.59268 0.93 0.000578226 0.000523387 0.0272677 0.0247612 36 3135 25 6.79088e+06 269440 648988. 2245.63 4.48 0.189031 0.166513 25390 158009 -1 2766 17 1158 3022 197887 43020 6.74539 6.74539 -159.239 -6.74539 0 0 828058. 2865.25 0.33 0.08 0.15 -1 -1 0.33 0.0282293 0.0254107 118 159 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_057.v common 10.73 vpr 65.61 MiB -1 -1 0.24 21368 14 0.55 -1 -1 36800 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67188 32 32 338 370 1 251 88 17 17 289 -1 unnamed_device 27.0 MiB 1.59 1584 7108 1588 4936 584 65.6 MiB 0.08 0.00 9.32595 -187.261 -9.32595 9.32595 0.92 0.000779735 0.00070675 0.0344565 0.031268 50 3511 18 6.79088e+06 323328 902133. 3121.57 5.05 0.283337 0.249107 27982 213445 -1 3216 16 1699 4871 267896 58380 8.0201 8.0201 -173.358 -8.0201 0 0 1.08113e+06 3740.92 0.40 0.09 0.21 -1 -1 0.40 0.0348191 0.0316049 171 243 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_058.v common 10.08 vpr 65.09 MiB -1 -1 0.22 20764 13 0.36 -1 -1 36672 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66652 32 32 271 303 1 215 85 17 17 289 -1 unnamed_device 26.7 MiB 1.91 1314 12733 3340 7297 2096 65.1 MiB 0.11 0.00 7.97246 -177.126 -7.97246 7.97246 0.92 0.000670912 0.000576913 0.0480351 0.043583 38 3411 27 6.79088e+06 282912 678818. 2348.85 4.43 0.208133 0.183302 25966 169698 -1 2845 17 1391 3842 239432 52895 7.01061 7.01061 -170.364 -7.01061 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.0283402 0.0255378 134 176 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_059.v common 7.71 vpr 64.54 MiB -1 -1 0.20 20488 11 0.21 -1 -1 36504 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66092 30 32 224 256 1 163 79 17 17 289 -1 unnamed_device 26.1 MiB 0.87 915 4304 849 3239 216 64.5 MiB 0.04 0.00 6.78614 -143.669 -6.78614 6.78614 0.91 0.000537028 0.000487627 0.0167591 0.015356 36 2700 29 6.79088e+06 229024 648988. 2245.63 3.48 0.15323 0.134154 25390 158009 -1 2122 15 1010 2751 160047 35594 6.06839 6.06839 -137.13 -6.06839 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0226976 0.0205553 101 133 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_060.v common 9.90 vpr 65.73 MiB -1 -1 0.25 21564 15 0.61 -1 -1 36732 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67308 32 32 351 383 1 259 89 17 17 289 -1 unnamed_device 27.2 MiB 1.28 1525 5039 926 3796 317 65.7 MiB 0.06 0.00 9.59451 -195.342 -9.59451 9.59451 0.86 0.000776935 0.000707093 0.0252307 0.0230105 36 4861 41 6.79088e+06 336800 648988. 2245.63 4.81 0.258026 0.230177 25390 158009 -1 3846 22 1955 5417 336882 74570 8.35685 8.35685 -188.636 -8.35685 0 0 828058. 2865.25 0.31 0.12 0.14 -1 -1 0.31 0.0450213 0.0407428 179 256 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_061.v common 9.76 vpr 65.04 MiB -1 -1 0.22 20784 13 0.39 -1 -1 36372 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66604 32 32 297 329 1 217 84 17 17 289 -1 unnamed_device 26.5 MiB 1.38 1281 8502 2158 5508 836 65.0 MiB 0.09 0.00 8.03603 -175.042 -8.03603 8.03603 0.93 0.000720902 0.00065592 0.0372752 0.0339501 38 3308 18 6.79088e+06 269440 678818. 2348.85 4.66 0.264985 0.233824 25966 169698 -1 2729 15 1311 3591 186034 41679 7.09671 7.09671 -167.647 -7.09671 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0303378 0.0275774 139 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_062.v common 14.91 vpr 64.68 MiB -1 -1 0.17 20120 11 0.16 -1 -1 36612 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66232 32 32 231 263 1 165 77 17 17 289 -1 unnamed_device 26.3 MiB 1.53 1102 10183 2765 6008 1410 64.7 MiB 0.08 0.00 6.80233 -145.463 -6.80233 6.80233 0.91 0.00052614 0.000479557 0.0353834 0.0322068 30 2820 19 6.79088e+06 175136 556674. 1926.21 10.13 0.190607 0.167747 24526 138013 -1 2278 16 941 2287 125340 28672 5.65673 5.65673 -139.283 -5.65673 0 0 706193. 2443.58 0.29 0.06 0.13 -1 -1 0.29 0.0224018 0.0201319 94 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_063.v common 8.74 vpr 65.32 MiB -1 -1 0.22 20996 12 0.37 -1 -1 36400 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66892 32 32 305 337 1 217 84 17 17 289 -1 unnamed_device 26.8 MiB 1.36 1332 7953 2031 5347 575 65.3 MiB 0.08 0.00 7.73069 -165.16 -7.73069 7.73069 0.92 0.000687783 0.000622316 0.0341317 0.0309225 38 3533 25 6.79088e+06 269440 678818. 2348.85 3.64 0.210208 0.185299 25966 169698 -1 2880 16 1393 4466 244161 53393 6.50936 6.50936 -156.666 -6.50936 0 0 902133. 3121.57 0.34 0.09 0.16 -1 -1 0.34 0.0321512 0.0291802 146 210 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_064.v common 9.73 vpr 64.62 MiB -1 -1 0.16 20460 12 0.22 -1 -1 36084 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66168 32 32 243 275 1 187 82 17 17 289 -1 unnamed_device 26.1 MiB 1.36 1053 12008 3553 6389 2066 64.6 MiB 0.09 0.00 7.28149 -150.89 -7.28149 7.28149 0.90 0.000573662 0.000521091 0.0410753 0.0372927 48 2365 40 6.79088e+06 242496 865456. 2994.66 4.74 0.252891 0.222013 27694 206865 -1 2130 32 1182 3096 419904 216609 6.33023 6.33023 -141.759 -6.33023 0 0 1.05005e+06 3633.38 0.42 0.17 0.20 -1 -1 0.42 0.0438978 0.0392509 113 148 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_065.v common 7.15 vpr 64.50 MiB -1 -1 0.21 20684 12 0.23 -1 -1 36264 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66052 30 32 228 260 1 166 79 17 17 289 -1 unnamed_device 26.0 MiB 1.22 903 6163 1336 4643 184 64.5 MiB 0.06 0.00 7.56546 -146.033 -7.56546 7.56546 0.91 0.000534046 0.000484056 0.0228389 0.020772 34 2679 34 6.79088e+06 229024 618332. 2139.56 2.47 0.129999 0.114389 25102 150614 -1 2166 23 940 2677 282057 108915 6.54507 6.54507 -141.615 -6.54507 0 0 787024. 2723.27 0.32 0.11 0.14 -1 -1 0.32 0.0297626 0.026562 106 137 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_066.v common 18.62 vpr 64.90 MiB -1 -1 0.24 20688 12 0.34 -1 -1 36612 -1 -1 26 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66460 29 32 275 307 1 201 87 17 17 289 -1 unnamed_device 26.4 MiB 2.54 1197 6039 1341 4100 598 64.9 MiB 0.06 0.00 7.39356 -141.853 -7.39356 7.39356 0.91 0.000643952 0.000583464 0.0246305 0.0224227 40 2765 18 6.79088e+06 350272 706193. 2443.58 12.40 0.325147 0.284332 26254 175826 -1 2683 18 1287 4001 245257 52754 6.50238 6.50238 -135.7 -6.50238 0 0 926341. 3205.33 0.36 0.09 0.17 -1 -1 0.36 0.031594 0.0285314 140 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_067.v common 13.54 vpr 65.44 MiB -1 -1 0.22 21056 13 0.43 -1 -1 36456 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67012 32 32 330 362 1 257 87 17 17 289 -1 unnamed_device 27.1 MiB 1.28 1362 9111 2298 6252 561 65.4 MiB 0.09 0.00 7.91407 -168.647 -7.91407 7.91407 0.90 0.000730925 0.00066202 0.0395632 0.0358935 36 4498 41 6.79088e+06 309856 648988. 2245.63 8.46 0.236859 0.207621 25390 158009 -1 3430 25 2554 6396 468023 127210 7.54398 7.54398 -171.891 -7.54398 0 0 828058. 2865.25 0.32 0.15 0.15 -1 -1 0.32 0.0434251 0.0388943 160 235 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_068.v common 9.45 vpr 65.09 MiB -1 -1 0.23 20648 12 0.28 -1 -1 36564 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66652 32 32 290 322 1 218 84 17 17 289 -1 unnamed_device 26.6 MiB 1.54 1278 7770 1751 5660 359 65.1 MiB 0.07 0.00 7.73336 -164.138 -7.73336 7.73336 0.90 0.000630672 0.000570775 0.0311429 0.0282244 38 3570 28 6.79088e+06 269440 678818. 2348.85 4.32 0.204619 0.180494 25966 169698 -1 2893 19 1614 4633 260219 56380 6.62347 6.62347 -155.711 -6.62347 0 0 902133. 3121.57 0.35 0.09 0.16 -1 -1 0.35 0.0332179 0.0299328 140 195 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_069.v common 9.40 vpr 64.24 MiB -1 -1 0.19 20316 12 0.18 -1 -1 36856 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65780 32 32 214 246 1 160 79 17 17 289 -1 unnamed_device 25.9 MiB 2.37 988 4473 916 3372 185 64.2 MiB 0.04 0.00 7.24997 -147.671 -7.24997 7.24997 0.92 0.000496771 0.000450697 0.0167813 0.0152994 36 2682 24 6.79088e+06 202080 648988. 2245.63 3.68 0.137226 0.119687 25390 158009 -1 2226 18 906 2477 157273 34411 6.12222 6.12222 -141.304 -6.12222 0 0 828058. 2865.25 0.31 0.06 0.15 -1 -1 0.31 0.0226282 0.0202012 93 119 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_070.v common 9.78 vpr 64.78 MiB -1 -1 0.22 20452 12 0.26 -1 -1 36628 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 31 32 244 276 1 178 82 17 17 289 -1 unnamed_device 26.3 MiB 1.69 1084 12898 3877 6797 2224 64.8 MiB 0.10 0.00 7.21455 -151.198 -7.21455 7.21455 0.91 0.000565034 0.000512924 0.0441368 0.0400597 36 2934 32 6.79088e+06 255968 648988. 2245.63 4.58 0.200681 0.177154 25390 158009 -1 2522 17 1069 2930 187495 40044 6.38938 6.38938 -145.28 -6.38938 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0267619 0.0241038 111 151 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_071.v common 7.52 vpr 65.05 MiB -1 -1 0.21 20708 11 0.23 -1 -1 36496 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66608 30 32 276 308 1 190 82 17 17 289 -1 unnamed_device 26.7 MiB 1.80 1115 8626 2299 5376 951 65.0 MiB 0.08 0.00 6.84847 -137.093 -6.84847 6.84847 0.90 0.000588317 0.000531665 0.0330484 0.0299752 36 3085 31 6.79088e+06 269440 648988. 2245.63 2.23 0.155182 0.136094 25390 158009 -1 2587 16 1145 3498 206937 46000 5.91846 5.91846 -134.854 -5.91846 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0268768 0.0242286 125 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_072.v common 9.31 vpr 65.00 MiB -1 -1 0.21 20744 11 0.25 -1 -1 36596 -1 -1 19 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 28 32 253 285 1 176 79 17 17 289 -1 unnamed_device 26.4 MiB 1.56 1077 4642 990 3215 437 65.0 MiB 0.05 0.00 6.39394 -126.807 -6.39394 6.39394 0.91 0.000571672 0.000519165 0.0192133 0.0175632 36 2869 37 6.79088e+06 255968 648988. 2245.63 4.28 0.17327 0.151433 25390 158009 -1 2437 20 1375 4064 247006 53420 5.76386 5.76386 -127.412 -5.76386 0 0 828058. 2865.25 0.31 0.08 0.15 -1 -1 0.31 0.0288329 0.0257641 116 166 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_073.v common 13.41 vpr 64.56 MiB -1 -1 0.21 20412 13 0.26 -1 -1 36112 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66108 30 32 235 267 1 172 80 17 17 289 -1 unnamed_device 26.0 MiB 2.10 1115 9196 2684 4764 1748 64.6 MiB 0.08 0.00 7.27805 -147.461 -7.27805 7.27805 0.90 0.000553484 0.000499291 0.0339582 0.0308044 30 3203 46 6.79088e+06 242496 556674. 1926.21 7.94 0.233473 0.203231 24526 138013 -1 2365 18 1028 2893 146859 34111 6.4521 6.4521 -143.501 -6.4521 0 0 706193. 2443.58 0.27 0.06 0.12 -1 -1 0.27 0.0252685 0.0226054 108 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_074.v common 17.25 vpr 64.73 MiB -1 -1 0.21 20712 12 0.24 -1 -1 36120 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66288 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 26.4 MiB 2.56 1193 6490 1485 4564 441 64.7 MiB 0.06 0.00 7.26273 -167.563 -7.26273 7.26273 0.92 0.000606254 0.000549645 0.0259556 0.0236506 40 2753 23 6.79088e+06 242496 706193. 2443.58 11.12 0.299578 0.260908 26254 175826 -1 2592 15 1162 3054 182136 40617 6.16912 6.16912 -155.542 -6.16912 0 0 926341. 3205.33 0.35 0.07 0.17 -1 -1 0.35 0.0266008 0.0241937 120 169 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_075.v common 10.57 vpr 64.82 MiB -1 -1 0.21 20476 13 0.35 -1 -1 36452 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66376 31 32 278 310 1 200 84 17 17 289 -1 unnamed_device 26.4 MiB 2.07 1194 6123 1343 4442 338 64.8 MiB 0.06 0.00 8.79477 -171.911 -8.79477 8.79477 0.93 0.0006246 0.00057323 0.0237385 0.0216024 38 2937 20 6.79088e+06 282912 678818. 2348.85 4.89 0.258402 0.225986 25966 169698 -1 2489 18 1105 3151 165336 36337 7.51535 7.51535 -158.405 -7.51535 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0311563 0.028137 137 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_076.v common 21.71 vpr 65.27 MiB -1 -1 0.22 20788 14 0.30 -1 -1 36544 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66836 32 32 290 322 1 212 84 17 17 289 -1 unnamed_device 26.7 MiB 1.48 1287 8685 2330 5621 734 65.3 MiB 0.08 0.00 8.66267 -183.033 -8.66267 8.66267 0.85 0.000621372 0.000564808 0.0340319 0.0310065 38 3763 48 6.79088e+06 269440 678818. 2348.85 16.80 0.380539 0.335986 25966 169698 -1 2915 16 1330 3905 202778 45246 7.71556 7.71556 -172.147 -7.71556 0 0 902133. 3121.57 0.32 0.08 0.15 -1 -1 0.32 0.0294054 0.0267139 132 195 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_077.v common 10.15 vpr 64.79 MiB -1 -1 0.23 21084 14 0.31 -1 -1 36468 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 26.4 MiB 2.58 1083 11456 4044 5385 2027 64.8 MiB 0.10 0.00 7.96611 -159.164 -7.96611 7.96611 0.91 0.000619582 0.000561272 0.0444148 0.0401768 38 3010 34 6.79088e+06 229024 678818. 2348.85 3.92 0.215577 0.190675 25966 169698 -1 2533 21 1329 3905 220140 48577 6.88531 6.88531 -150.267 -6.88531 0 0 902133. 3121.57 0.34 0.09 0.16 -1 -1 0.34 0.0327173 0.0294507 122 174 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_078.v common 10.72 vpr 65.25 MiB -1 -1 0.24 20852 13 0.42 -1 -1 36168 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 32 32 296 328 1 223 86 17 17 289 -1 unnamed_device 26.7 MiB 2.21 1338 8024 1861 5707 456 65.2 MiB 0.08 0.00 8.29812 -170.177 -8.29812 8.29812 0.91 0.000707864 0.000644094 0.0334516 0.030392 46 3286 28 6.79088e+06 296384 828058. 2865.25 4.69 0.256918 0.224884 27406 200422 -1 2713 17 1339 3882 198248 44688 7.42576 7.42576 -159.92 -7.42576 0 0 1.01997e+06 3529.29 0.38 0.08 0.19 -1 -1 0.38 0.0315709 0.0286227 144 201 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_079.v common 8.37 vpr 64.54 MiB -1 -1 0.20 20432 13 0.23 -1 -1 35864 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66088 30 32 234 266 1 175 80 17 17 289 -1 unnamed_device 26.1 MiB 2.40 919 12292 3407 6536 2349 64.5 MiB 0.09 0.00 7.20737 -146.133 -7.20737 7.20737 0.89 0.000553406 0.000503629 0.0395758 0.035889 36 2720 18 6.79088e+06 242496 648988. 2245.63 2.60 0.164467 0.144192 25390 158009 -1 2349 21 1060 2707 237673 81251 6.16917 6.16917 -141.277 -6.16917 0 0 828058. 2865.25 0.31 0.09 0.15 -1 -1 0.31 0.0285856 0.0255277 104 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_080.v common 24.03 vpr 65.03 MiB -1 -1 0.25 20880 13 0.54 -1 -1 36492 -1 -1 22 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 30 32 291 323 1 225 84 17 17 289 -1 unnamed_device 26.5 MiB 2.15 1350 9234 2593 5787 854 65.0 MiB 0.09 0.00 8.31996 -168.69 -8.31996 8.31996 0.91 0.000710087 0.000645711 0.0400237 0.0364549 38 3825 50 6.79088e+06 296384 678818. 2348.85 17.95 0.446845 0.394675 25966 169698 -1 3171 20 1711 4755 291516 62812 7.05325 7.05325 -160.364 -7.05325 0 0 902133. 3121.57 0.34 0.11 0.16 -1 -1 0.34 0.0371309 0.0335226 145 200 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_081.v common 21.00 vpr 64.90 MiB -1 -1 0.23 20684 14 0.39 -1 -1 36796 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66460 32 32 274 306 1 205 82 17 17 289 -1 unnamed_device 26.5 MiB 2.02 1251 6312 1329 4019 964 64.9 MiB 0.06 0.00 8.37235 -176.058 -8.37235 8.37235 0.90 0.000622634 0.000553052 0.0258384 0.0234149 40 3069 17 6.79088e+06 242496 706193. 2443.58 15.23 0.348767 0.304178 26254 175826 -1 2990 20 1531 4498 306796 65009 7.25783 7.25783 -172.618 -7.25783 0 0 926341. 3205.33 0.35 0.10 0.17 -1 -1 0.35 0.0341689 0.0307847 128 179 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_082.v common 9.23 vpr 65.04 MiB -1 -1 0.23 21020 13 0.28 -1 -1 36412 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66604 31 32 266 298 1 196 82 17 17 289 -1 unnamed_device 26.6 MiB 2.24 1125 7914 1884 5216 814 65.0 MiB 0.07 0.00 7.39828 -160.2 -7.39828 7.39828 0.95 0.000617063 0.000560985 0.0317171 0.0288012 38 3005 21 6.79088e+06 255968 678818. 2348.85 3.36 0.181196 0.159737 25966 169698 -1 2486 23 1200 3332 176702 39015 6.56626 6.56626 -155.185 -6.56626 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.0344981 0.0308973 124 173 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_083.v common 8.59 vpr 64.64 MiB -1 -1 0.22 20800 13 0.25 -1 -1 36636 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66196 30 32 266 298 1 199 81 17 17 289 -1 unnamed_device 26.3 MiB 1.90 1096 8306 2939 4353 1014 64.6 MiB 0.07 0.00 7.45237 -146.107 -7.45237 7.45237 0.86 0.000570137 0.000516567 0.0312257 0.0284482 38 3152 24 6.79088e+06 255968 678818. 2348.85 3.31 0.201427 0.179458 25966 169698 -1 2342 16 1150 3084 162162 37365 6.43207 6.43207 -139.415 -6.43207 0 0 902133. 3121.57 0.32 0.07 0.15 -1 -1 0.32 0.0261301 0.0236441 121 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_084.v common 11.43 vpr 65.18 MiB -1 -1 0.23 20732 14 0.45 -1 -1 36392 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66740 32 32 310 342 1 231 85 17 17 289 -1 unnamed_device 26.6 MiB 1.97 1434 9943 2708 5582 1653 65.2 MiB 0.09 0.00 8.52022 -179.043 -8.52022 8.52022 0.90 0.000714719 0.000644025 0.0411725 0.037428 46 3715 29 6.79088e+06 282912 828058. 2865.25 5.59 0.283553 0.248963 27406 200422 -1 3171 17 1583 4694 251057 54959 7.46497 7.46497 -164.971 -7.46497 0 0 1.01997e+06 3529.29 0.38 0.09 0.20 -1 -1 0.38 0.033252 0.030143 154 215 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_085.v common 11.68 vpr 65.01 MiB -1 -1 0.25 20960 11 0.35 -1 -1 36780 -1 -1 23 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66572 29 32 262 294 1 201 84 17 17 289 -1 unnamed_device 26.5 MiB 2.56 1077 10149 2679 5779 1691 65.0 MiB 0.09 0.00 7.52622 -140.559 -7.52622 7.52622 0.92 0.000615989 0.000556516 0.0384657 0.0349797 36 3431 24 6.79088e+06 309856 648988. 2245.63 5.41 0.190852 0.167786 25390 158009 -1 2771 20 1451 4096 246936 56814 6.50587 6.50587 -138.088 -6.50587 0 0 828058. 2865.25 0.33 0.09 0.16 -1 -1 0.33 0.0334891 0.0300566 136 173 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_086.v common 11.55 vpr 64.09 MiB -1 -1 0.18 19992 13 0.18 -1 -1 36700 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65628 32 32 222 254 1 182 78 17 17 289 -1 unnamed_device 25.7 MiB 3.50 972 6054 1229 4689 136 64.1 MiB 0.06 0.00 6.97458 -160.094 -6.97458 6.97458 0.89 0.000547942 0.000488164 0.0230933 0.0210502 44 2580 35 6.79088e+06 188608 787024. 2723.27 4.67 0.217188 0.189205 27118 194962 -1 2150 15 1044 2364 139472 31738 5.93965 5.93965 -149.931 -5.93965 0 0 997811. 3452.63 0.38 0.05 0.18 -1 -1 0.38 0.0201801 0.0182029 98 127 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_087.v common 10.92 vpr 64.69 MiB -1 -1 0.23 20716 14 0.29 -1 -1 36672 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66240 32 32 267 299 1 200 81 17 17 289 -1 unnamed_device 26.4 MiB 2.05 963 3581 624 2890 67 64.7 MiB 0.04 0.00 8.38402 -165.799 -8.38402 8.38402 0.91 0.000634823 0.000576442 0.0164317 0.0150243 36 3137 33 6.79088e+06 229024 648988. 2245.63 5.34 0.192112 0.169581 25390 158009 -1 2489 23 1433 3816 225579 53597 7.63717 7.63717 -163.256 -7.63717 0 0 828058. 2865.25 0.33 0.09 0.15 -1 -1 0.33 0.0352654 0.03159 122 172 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_088.v common 25.41 vpr 65.11 MiB -1 -1 0.24 21452 15 0.52 -1 -1 36444 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66672 32 32 334 366 1 254 87 17 17 289 -1 unnamed_device 26.7 MiB 1.85 1424 5271 949 4056 266 65.1 MiB 0.07 0.00 9.1358 -193.594 -9.1358 9.1358 0.91 0.00079142 0.000720512 0.0269315 0.0245824 44 3988 33 6.79088e+06 309856 787024. 2723.27 19.58 0.399871 0.353398 27118 194962 -1 3100 22 2050 5481 333147 91729 8.02005 8.02005 -179.593 -8.02005 0 0 997811. 3452.63 0.39 0.13 0.19 -1 -1 0.39 0.0440319 0.0395572 163 239 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_089.v common 13.83 vpr 64.37 MiB -1 -1 0.20 20320 11 0.39 -1 -1 36480 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65916 32 32 220 252 1 168 79 17 17 289 -1 unnamed_device 26.0 MiB 2.03 958 10726 3368 5272 2086 64.4 MiB 0.08 0.00 6.79222 -142.45 -6.79222 6.79222 0.90 0.000501095 0.000455542 0.0343571 0.0312426 30 2689 41 6.79088e+06 202080 556674. 1926.21 8.29 0.189649 0.164917 24526 138013 -1 2234 18 943 2504 151073 33167 5.78973 5.78973 -136.953 -5.78973 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.0229463 0.0205852 97 125 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_090.v common 9.90 vpr 64.89 MiB -1 -1 0.17 20716 12 0.21 -1 -1 36340 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66444 31 32 244 276 1 193 80 17 17 289 -1 unnamed_device 26.4 MiB 1.82 1114 10400 2653 5866 1881 64.9 MiB 0.08 0.00 6.63358 -148.815 -6.63358 6.63358 0.86 0.000587991 0.000529528 0.0349205 0.0317462 44 2977 25 6.79088e+06 229024 787024. 2723.27 4.73 0.237584 0.209455 27118 194962 -1 2465 18 1219 3380 180544 40323 5.91159 5.91159 -143.173 -5.91159 0 0 997811. 3452.63 0.37 0.07 0.17 -1 -1 0.37 0.0268685 0.0242708 112 151 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_091.v common 10.03 vpr 65.11 MiB -1 -1 0.23 20616 12 0.37 -1 -1 36676 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66676 32 32 300 332 1 219 83 17 17 289 -1 unnamed_device 26.5 MiB 1.48 1409 5123 1016 3643 464 65.1 MiB 0.06 0.00 7.37446 -165.375 -7.37446 7.37446 0.92 0.000708549 0.0006423 0.0243754 0.0221544 44 3278 28 6.79088e+06 255968 787024. 2723.27 4.75 0.262952 0.230697 27118 194962 -1 2783 17 1263 3864 196835 44082 6.46241 6.46241 -153.667 -6.46241 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0325628 0.0294916 143 205 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_092.v common 9.11 vpr 65.07 MiB -1 -1 0.28 20708 12 0.28 -1 -1 36464 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 32 32 271 303 1 209 82 17 17 289 -1 unnamed_device 26.7 MiB 2.35 1290 8804 2224 5446 1134 65.1 MiB 0.08 0.00 7.66631 -156.992 -7.66631 7.66631 0.93 0.000650334 0.00059581 0.0347265 0.0315945 44 3473 38 6.79088e+06 242496 787024. 2723.27 3.00 0.181441 0.160907 27118 194962 -1 2940 16 1287 3747 223251 48433 6.45897 6.45897 -149.707 -6.45897 0 0 997811. 3452.63 0.40 0.08 0.19 -1 -1 0.40 0.0294323 0.0268027 130 176 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_093.v common 8.56 vpr 65.48 MiB -1 -1 0.24 21200 14 0.57 -1 -1 36540 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67052 32 32 327 359 1 233 86 17 17 289 -1 unnamed_device 27.1 MiB 2.24 1339 6323 1159 4879 285 65.5 MiB 0.07 0.00 9.2305 -183.989 -9.2305 9.2305 0.91 0.000775215 0.000702017 0.0308593 0.0281089 38 3705 30 6.79088e+06 296384 678818. 2348.85 2.38 0.19357 0.171937 25966 169698 -1 3013 18 1532 4522 227149 51743 7.89131 7.89131 -171.065 -7.89131 0 0 902133. 3121.57 0.34 0.09 0.16 -1 -1 0.34 0.0386118 0.0351048 167 232 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_094.v common 19.16 vpr 64.80 MiB -1 -1 0.22 20388 12 0.26 -1 -1 36500 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66356 30 32 246 278 1 185 81 17 17 289 -1 unnamed_device 26.2 MiB 1.92 1023 10231 4165 5804 262 64.8 MiB 0.09 0.00 7.21752 -140.072 -7.21752 7.21752 0.94 0.000597668 0.000543646 0.038869 0.0353245 36 3532 36 6.79088e+06 255968 648988. 2245.63 13.67 0.29216 0.255417 25390 158009 -1 2548 16 1205 3395 212673 48136 6.16142 6.16142 -137.705 -6.16142 0 0 828058. 2865.25 0.33 0.08 0.15 -1 -1 0.33 0.0266538 0.02414 121 155 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_095.v common 10.20 vpr 64.73 MiB -1 -1 0.19 20456 11 0.23 -1 -1 36292 -1 -1 19 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66280 27 32 219 251 1 163 78 17 17 289 -1 unnamed_device 26.2 MiB 2.56 852 9208 3256 4555 1397 64.7 MiB 0.07 0.00 7.04622 -127.422 -7.04622 7.04622 0.91 0.000511553 0.000453764 0.0308368 0.0280301 30 2286 23 6.79088e+06 255968 556674. 1926.21 4.10 0.186694 0.161819 24526 138013 -1 1813 16 927 2368 105512 26395 5.91852 5.91852 -121.555 -5.91852 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.022157 0.0198999 104 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_096.v common 11.37 vpr 65.39 MiB -1 -1 0.26 21440 13 0.53 -1 -1 36392 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66964 32 32 380 412 1 276 90 17 17 289 -1 unnamed_device 26.8 MiB 1.97 1698 8532 2074 5800 658 65.4 MiB 0.10 0.00 7.91451 -163.387 -7.91451 7.91451 0.94 0.000879458 0.000797191 0.0415387 0.0376108 46 4524 47 6.79088e+06 350272 828058. 2865.25 5.03 0.320263 0.284348 27406 200422 -1 3573 18 1870 5879 293787 64537 6.99937 6.99937 -156.314 -6.99937 0 0 1.01997e+06 3529.29 0.37 0.11 0.19 -1 -1 0.37 0.0407124 0.0369879 188 285 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_097.v common 7.46 vpr 65.00 MiB -1 -1 0.22 20556 14 0.29 -1 -1 36664 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66560 31 32 277 309 1 197 85 17 17 289 -1 unnamed_device 26.6 MiB 1.99 1264 9385 2554 5852 979 65.0 MiB 0.08 0.00 8.41881 -168.357 -8.41881 8.41881 0.86 0.000626121 0.000565327 0.0352686 0.0320327 30 3443 28 6.79088e+06 296384 556674. 1926.21 2.11 0.149188 0.133304 24526 138013 -1 2741 17 1270 3452 177968 40166 7.21431 7.21431 -163.766 -7.21431 0 0 706193. 2443.58 0.28 0.07 0.12 -1 -1 0.28 0.0291486 0.0263761 130 184 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_098.v common 8.32 vpr 64.76 MiB -1 -1 0.22 20560 12 0.20 -1 -1 36048 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66316 32 32 229 261 1 174 82 17 17 289 -1 unnamed_device 26.3 MiB 1.98 1075 7736 1882 5428 426 64.8 MiB 0.07 0.00 7.20863 -155.968 -7.20863 7.20863 0.92 0.000556668 0.000506123 0.0272571 0.0248144 38 2746 23 6.79088e+06 242496 678818. 2348.85 2.88 0.168635 0.148998 25966 169698 -1 2229 18 1032 2575 147443 32944 6.12992 6.12992 -146.185 -6.12992 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0263243 0.0237482 109 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_099.v common 9.64 vpr 64.83 MiB -1 -1 0.21 20648 13 0.34 -1 -1 36604 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66388 32 32 263 295 1 199 82 17 17 289 -1 unnamed_device 26.4 MiB 1.63 1233 12542 3940 6787 1815 64.8 MiB 0.11 0.00 8.09146 -166.475 -8.09146 8.09146 0.88 0.000626642 0.000567799 0.047815 0.0434252 36 3202 30 6.79088e+06 242496 648988. 2245.63 4.47 0.209304 0.184525 25390 158009 -1 2687 18 1245 3410 184945 42779 6.82029 6.82029 -158.939 -6.82029 0 0 828058. 2865.25 0.30 0.07 0.14 -1 -1 0.30 0.028343 0.0253849 128 168 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_100.v common 25.16 vpr 65.19 MiB -1 -1 0.23 21272 13 0.40 -1 -1 37388 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66752 31 32 321 353 1 241 87 17 17 289 -1 unnamed_device 26.8 MiB 2.05 1392 4695 845 3563 287 65.2 MiB 0.06 0.00 7.47587 -155.329 -7.47587 7.47587 0.93 0.000744942 0.000674406 0.0231085 0.0211028 40 3664 28 6.79088e+06 323328 706193. 2443.58 19.31 0.385675 0.33753 26254 175826 -1 3433 18 1707 4807 297818 65147 6.54507 6.54507 -151.854 -6.54507 0 0 926341. 3205.33 0.34 0.10 0.17 -1 -1 0.34 0.0345944 0.0313059 157 228 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_101.v common 10.24 vpr 65.24 MiB -1 -1 0.22 20544 11 0.31 -1 -1 36416 -1 -1 22 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 30 32 287 319 1 201 84 17 17 289 -1 unnamed_device 26.7 MiB 2.08 1218 4659 929 3342 388 65.2 MiB 0.05 0.00 7.06923 -144.171 -7.06923 7.06923 0.90 0.000631761 0.000572986 0.0200545 0.0182881 36 3280 38 6.79088e+06 296384 648988. 2245.63 4.64 0.236118 0.205741 25390 158009 -1 2789 15 1179 3509 202940 44755 6.16912 6.16912 -138.96 -6.16912 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0269389 0.0244179 141 196 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_102.v common 10.73 vpr 65.09 MiB -1 -1 0.21 20600 15 0.42 -1 -1 36368 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66656 32 32 296 328 1 220 86 17 17 289 -1 unnamed_device 26.6 MiB 1.78 1290 8402 2178 5761 463 65.1 MiB 0.08 0.00 8.74612 -186.954 -8.74612 8.74612 0.92 0.000690927 0.000623378 0.034885 0.0315362 46 3189 27 6.79088e+06 296384 828058. 2865.25 5.00 0.313267 0.276544 27406 200422 -1 2786 28 1295 4217 461701 217315 7.50422 7.50422 -171.497 -7.50422 0 0 1.01997e+06 3529.29 0.40 0.19 0.19 -1 -1 0.40 0.0486261 0.0436919 147 201 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_103.v common 10.03 vpr 65.26 MiB -1 -1 0.22 21252 13 0.38 -1 -1 36448 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 32 32 285 317 1 217 85 17 17 289 -1 unnamed_device 26.8 MiB 2.28 1316 8641 2148 5636 857 65.3 MiB 0.08 0.00 8.07216 -175.63 -8.07216 8.07216 0.85 0.000652902 0.000592867 0.0342193 0.0311445 44 3138 27 6.79088e+06 282912 787024. 2723.27 4.15 0.27162 0.239395 27118 194962 -1 2666 17 1219 3724 189053 42617 7.04981 7.04981 -164.83 -7.04981 0 0 997811. 3452.63 0.37 0.08 0.17 -1 -1 0.37 0.0310879 0.0282613 143 190 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_104.v common 17.92 vpr 64.80 MiB -1 -1 0.19 20412 12 0.25 -1 -1 36200 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66356 29 32 239 271 1 185 79 17 17 289 -1 unnamed_device 26.2 MiB 2.04 864 9543 2234 6923 386 64.8 MiB 0.08 0.00 7.58072 -150.751 -7.58072 7.58072 0.92 0.000532072 0.000486407 0.0349224 0.0318138 38 2787 32 6.79088e+06 242496 678818. 2348.85 12.39 0.27168 0.237093 25966 169698 -1 2065 16 1049 2587 138165 31689 6.83831 6.83831 -144.518 -6.83831 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.0242501 0.021825 111 150 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_105.v common 9.11 vpr 64.78 MiB -1 -1 0.20 20404 11 0.19 -1 -1 36180 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 32 32 235 267 1 172 78 17 17 289 -1 unnamed_device 26.3 MiB 1.85 1018 5722 1217 4259 246 64.8 MiB 0.05 0.00 6.71746 -144.764 -6.71746 6.71746 0.92 0.000533857 0.000485054 0.0216192 0.0197075 36 2822 26 6.79088e+06 188608 648988. 2245.63 3.89 0.159051 0.139544 25390 158009 -1 2332 17 1031 2563 161297 35918 5.86813 5.86813 -141.367 -5.86813 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0243838 0.0219375 98 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_106.v common 17.96 vpr 65.17 MiB -1 -1 0.23 20912 13 0.39 -1 -1 36388 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66736 31 32 294 326 1 212 84 17 17 289 -1 unnamed_device 26.7 MiB 1.37 1236 5940 1259 4215 466 65.2 MiB 0.06 0.00 8.31912 -162.691 -8.31912 8.31912 0.89 0.000673814 0.000609912 0.0264368 0.0240299 38 3344 20 6.79088e+06 282912 678818. 2348.85 12.94 0.326584 0.285974 25966 169698 -1 2835 16 1360 3850 202602 44829 7.6875 7.6875 -160.272 -7.6875 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.0306634 0.0277452 143 201 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_107.v common 6.75 vpr 64.55 MiB -1 -1 0.18 20456 10 0.19 -1 -1 36440 -1 -1 17 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66104 29 32 219 251 1 163 78 17 17 289 -1 unnamed_device 26.2 MiB 2.13 951 4560 1025 3135 400 64.6 MiB 0.04 0.00 6.21922 -128.027 -6.21922 6.21922 0.87 0.000508709 0.000453616 0.0165664 0.0151168 30 2695 24 6.79088e+06 229024 556674. 1926.21 1.51 0.101912 0.0905318 24526 138013 -1 2076 18 907 2285 114350 26868 5.53902 5.53902 -125.872 -5.53902 0 0 706193. 2443.58 0.27 0.05 0.12 -1 -1 0.27 0.0230042 0.0206899 101 130 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_108.v common 10.87 vpr 64.62 MiB -1 -1 0.20 20352 14 0.23 -1 -1 36608 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66176 32 32 239 271 1 184 82 17 17 289 -1 unnamed_device 26.1 MiB 3.30 984 4532 878 3142 512 64.6 MiB 0.05 0.00 7.85466 -160.915 -7.85466 7.85466 0.91 0.000560386 0.00050739 0.0174085 0.0158442 34 3083 47 6.79088e+06 242496 618332. 2139.56 4.19 0.168776 0.148002 25102 150614 -1 2447 18 1120 2955 192392 43299 6.87418 6.87418 -156.718 -6.87418 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0259954 0.023372 110 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_109.v common 9.69 vpr 64.89 MiB -1 -1 0.23 20596 13 0.34 -1 -1 36448 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66444 31 32 266 298 1 209 83 17 17 289 -1 unnamed_device 26.5 MiB 3.08 1210 8183 2048 5045 1090 64.9 MiB 0.07 0.00 7.80505 -164.773 -7.80505 7.80505 0.90 0.000625213 0.0005694 0.0312458 0.0284301 38 3002 19 6.79088e+06 269440 678818. 2348.85 2.92 0.170799 0.14979 25966 169698 -1 2695 16 1228 3149 180865 39628 6.72425 6.72425 -158.926 -6.72425 0 0 902133. 3121.57 0.33 0.07 0.16 -1 -1 0.33 0.0262553 0.0237476 125 173 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_110.v common 11.84 vpr 64.48 MiB -1 -1 0.19 20588 12 0.18 -1 -1 36508 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66028 31 32 225 257 1 172 80 17 17 289 -1 unnamed_device 26.1 MiB 3.93 940 12120 3498 6380 2242 64.5 MiB 0.09 0.00 6.85518 -144.407 -6.85518 6.85518 0.87 0.000428289 0.000389569 0.0373761 0.0339405 46 2350 15 6.79088e+06 229024 828058. 2865.25 4.55 0.1689 0.146549 27406 200422 -1 2033 17 937 2446 140777 31315 5.99343 5.99343 -137.347 -5.99343 0 0 1.01997e+06 3529.29 0.37 0.06 0.18 -1 -1 0.37 0.0212952 0.0191106 99 132 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_111.v common 8.33 vpr 65.23 MiB -1 -1 0.22 20748 12 0.24 -1 -1 36408 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66796 32 32 288 320 1 203 82 17 17 289 -1 unnamed_device 26.8 MiB 2.39 1190 9694 2639 6567 488 65.2 MiB 0.09 0.00 7.04874 -155.773 -7.04874 7.04874 0.91 0.000647534 0.000585415 0.0398601 0.036169 46 2758 18 6.79088e+06 242496 828058. 2865.25 2.31 0.201434 0.178384 27406 200422 -1 2312 15 1077 3163 160333 35862 6.20488 6.20488 -146.595 -6.20488 0 0 1.01997e+06 3529.29 0.39 0.07 0.19 -1 -1 0.39 0.0289912 0.0263539 130 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_112.v common 10.72 vpr 65.11 MiB -1 -1 0.24 20536 13 0.37 -1 -1 36336 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66668 31 32 282 314 1 212 83 17 17 289 -1 unnamed_device 26.6 MiB 1.41 1303 8543 2004 5667 872 65.1 MiB 0.08 0.00 7.83951 -165.716 -7.83951 7.83951 0.92 0.000661343 0.000599994 0.0357231 0.0324637 44 3097 29 6.79088e+06 269440 787024. 2723.27 5.52 0.271885 0.23906 27118 194962 -1 2570 17 1266 3559 181705 41523 6.69391 6.69391 -153.626 -6.69391 0 0 997811. 3452.63 0.37 0.07 0.19 -1 -1 0.37 0.030017 0.0270005 143 189 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_113.v common 9.44 vpr 64.77 MiB -1 -1 0.20 20420 11 0.21 -1 -1 36452 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66324 32 32 233 265 1 183 80 17 17 289 -1 unnamed_device 26.3 MiB 2.33 1116 6616 1429 3881 1306 64.8 MiB 0.06 0.00 6.2158 -147.345 -6.2158 6.2158 0.94 0.00052143 0.000472683 0.0238202 0.0216628 36 3218 33 6.79088e+06 215552 648988. 2245.63 3.64 0.181511 0.160044 25390 158009 -1 2609 16 1232 3209 185957 42205 5.35995 5.35995 -141.952 -5.35995 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.025264 0.0228306 106 138 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_114.v common 19.81 vpr 64.81 MiB -1 -1 0.19 20600 13 0.25 -1 -1 36596 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66368 32 32 254 286 1 188 79 17 17 289 -1 unnamed_device 26.2 MiB 2.90 994 9543 2876 4545 2122 64.8 MiB 0.08 0.00 7.66009 -161.63 -7.66009 7.66009 0.91 0.000578253 0.000523234 0.0352378 0.0318191 38 3161 25 6.79088e+06 202080 678818. 2348.85 13.45 0.283478 0.24748 25966 169698 -1 2217 20 1130 3116 162814 38166 6.67042 6.67042 -152.159 -6.67042 0 0 902133. 3121.57 0.35 0.07 0.16 -1 -1 0.35 0.0299339 0.0268321 113 159 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_115.v common 9.85 vpr 64.91 MiB -1 -1 0.21 20632 13 0.31 -1 -1 36592 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66464 32 32 285 317 1 214 83 17 17 289 -1 unnamed_device 26.5 MiB 1.42 1317 8183 2040 5445 698 64.9 MiB 0.08 0.00 7.48608 -168.657 -7.48608 7.48608 0.94 0.000657271 0.000597875 0.0340335 0.0309283 44 3175 16 6.79088e+06 255968 787024. 2723.27 4.72 0.252203 0.222293 27118 194962 -1 2665 18 1320 3547 186742 42334 6.57319 6.57319 -158.885 -6.57319 0 0 997811. 3452.63 0.38 0.08 0.18 -1 -1 0.38 0.0311853 0.0282234 136 190 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_116.v common 12.82 vpr 65.01 MiB -1 -1 0.21 20580 11 0.24 -1 -1 36472 -1 -1 19 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66568 29 32 243 275 1 184 80 17 17 289 -1 unnamed_device 26.4 MiB 2.61 932 11088 4572 6163 353 65.0 MiB 0.09 0.00 6.40374 -127.638 -6.40374 6.40374 0.92 0.00056124 0.000506054 0.0392205 0.0355328 38 3204 35 6.79088e+06 255968 678818. 2348.85 6.68 0.187204 0.16341 25966 169698 -1 2154 16 1193 3220 164660 39971 5.38344 5.38344 -120.238 -5.38344 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0251702 0.0227381 116 154 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_117.v common 10.28 vpr 65.37 MiB -1 -1 0.24 21416 14 0.40 -1 -1 36608 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66940 32 32 318 350 1 238 87 17 17 289 -1 unnamed_device 27.1 MiB 1.82 1275 12567 3064 6849 2654 65.4 MiB 0.12 0.00 8.90517 -187.129 -8.90517 8.90517 0.92 0.00070332 0.0006379 0.0525168 0.0476633 44 3352 27 6.79088e+06 309856 787024. 2723.27 4.59 0.316715 0.279885 27118 194962 -1 2648 15 1225 3208 170537 39164 8.06351 8.06351 -178.018 -8.06351 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.033133 0.0302082 159 223 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_118.v common 19.50 vpr 64.45 MiB -1 -1 0.18 20048 12 0.19 -1 -1 36872 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65996 31 32 222 254 1 188 82 17 17 289 -1 unnamed_device 26.0 MiB 2.92 1076 14144 4263 7957 1924 64.4 MiB 0.11 0.00 6.67019 -155.032 -6.67019 6.67019 0.91 0.000534722 0.000483629 0.0443354 0.0402832 38 2834 33 6.79088e+06 255968 678818. 2348.85 13.13 0.261129 0.228272 25966 169698 -1 2431 17 1063 2485 143989 31620 5.9004 5.9004 -146.441 -5.9004 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0235487 0.0212163 106 129 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_119.v common 10.84 vpr 65.16 MiB -1 -1 0.24 21260 13 0.37 -1 -1 36644 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 32 32 282 314 1 211 84 17 17 289 -1 unnamed_device 26.7 MiB 1.76 1249 10698 2850 6495 1353 65.2 MiB 0.10 0.00 8.17702 -169.59 -8.17702 8.17702 0.90 0.000671228 0.000605879 0.0402982 0.0364376 44 3113 45 6.79088e+06 269440 787024. 2723.27 5.30 0.296029 0.259835 27118 194962 -1 2692 18 1225 3591 188122 42059 7.25008 7.25008 -162.14 -7.25008 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0321429 0.0291263 136 187 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_120.v common 8.83 vpr 64.44 MiB -1 -1 0.22 20912 13 0.21 -1 -1 36052 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65988 32 32 238 270 1 180 84 17 17 289 -1 unnamed_device 25.9 MiB 1.35 988 12528 4457 5893 2178 64.4 MiB 0.09 0.00 7.60722 -166.135 -7.60722 7.60722 0.88 0.000541042 0.00049173 0.038788 0.0352287 44 2417 22 6.79088e+06 269440 787024. 2723.27 4.00 0.219715 0.191666 27118 194962 -1 2152 18 1013 2626 142161 32985 6.33367 6.33367 -151.605 -6.33367 0 0 997811. 3452.63 0.37 0.06 0.19 -1 -1 0.37 0.0235181 0.0210909 107 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_121.v common 8.10 vpr 64.55 MiB -1 -1 0.23 20772 12 0.27 -1 -1 36388 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66100 32 32 269 301 1 190 83 17 17 289 -1 unnamed_device 26.2 MiB 1.93 1129 6563 1390 4948 225 64.6 MiB 0.06 0.00 7.37103 -160.155 -7.37103 7.37103 0.90 0.000613022 0.000559105 0.0263226 0.023946 34 3386 26 6.79088e+06 255968 618332. 2139.56 2.67 0.144578 0.126568 25102 150614 -1 2655 19 1221 3448 208020 47191 6.49812 6.49812 -154.121 -6.49812 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.030736 0.0275892 128 174 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_122.v common 25.55 vpr 65.63 MiB -1 -1 0.25 21548 15 0.60 -1 -1 37048 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67204 32 32 350 382 1 256 89 17 17 289 -1 unnamed_device 27.0 MiB 1.42 1461 7019 1723 4462 834 65.6 MiB 0.08 0.00 9.4802 -194.196 -9.4802 9.4802 0.92 0.00081089 0.00072992 0.0350114 0.0317021 40 3857 20 6.79088e+06 336800 706193. 2443.58 20.10 0.480877 0.425287 26254 175826 -1 3750 20 2150 6380 414318 91535 8.47507 8.47507 -190.97 -8.47507 0 0 926341. 3205.33 0.34 0.14 0.15 -1 -1 0.34 0.0463026 0.0419684 183 255 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_123.v common 11.24 vpr 64.17 MiB -1 -1 0.18 20056 10 0.12 -1 -1 35860 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65708 30 32 172 204 1 133 74 17 17 289 -1 unnamed_device 25.8 MiB 1.89 790 7049 2015 4252 782 64.2 MiB 0.05 0.00 4.74332 -119.113 -4.74332 4.74332 0.94 0.000389166 0.000352306 0.0199462 0.0181442 30 2094 24 6.79088e+06 161664 556674. 1926.21 6.13 0.155691 0.13601 24526 138013 -1 1704 15 667 1522 94047 20784 4.33162 4.33162 -116.881 -4.33162 0 0 706193. 2443.58 0.29 0.04 0.13 -1 -1 0.29 0.0164946 0.0148258 66 81 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_124.v common 8.99 vpr 64.88 MiB -1 -1 0.20 20500 13 0.22 -1 -1 36208 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66440 30 32 228 260 1 176 79 17 17 289 -1 unnamed_device 26.4 MiB 1.91 974 10050 2926 5436 1688 64.9 MiB 0.08 0.00 7.74787 -157.983 -7.74787 7.74787 0.91 0.000543286 0.00049476 0.0358309 0.03262 36 2911 43 6.79088e+06 229024 648988. 2245.63 3.62 0.199519 0.17644 25390 158009 -1 2377 15 1131 2801 179307 40320 6.58438 6.58438 -153.211 -6.58438 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0235761 0.0213659 103 137 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_125.v common 9.02 vpr 64.38 MiB -1 -1 0.19 20396 12 0.24 -1 -1 36644 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65928 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 26.1 MiB 2.45 1289 8448 2191 5318 939 64.4 MiB 0.08 0.00 7.18863 -160.485 -7.18863 7.18863 0.93 0.000612795 0.000557231 0.0328445 0.0299871 38 3079 21 6.79088e+06 242496 678818. 2348.85 3.06 0.179419 0.158276 25966 169698 -1 2575 15 1269 3143 178719 39214 6.08296 6.08296 -151.708 -6.08296 0 0 902133. 3121.57 0.33 0.07 0.17 -1 -1 0.33 0.0252184 0.0227649 117 169 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_126.v common 9.66 vpr 64.39 MiB -1 -1 0.17 20092 9 0.16 -1 -1 36096 -1 -1 18 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65936 25 32 183 215 1 134 75 17 17 289 -1 unnamed_device 25.9 MiB 1.05 752 9555 2712 5903 940 64.4 MiB 0.06 0.00 5.16629 -99.605 -5.16629 5.16629 0.88 0.000438927 0.000398032 0.0281944 0.025565 30 2043 29 6.79088e+06 242496 556674. 1926.21 5.46 0.175251 0.152644 24526 138013 -1 1659 17 741 2054 108678 24546 4.39659 4.39659 -97.2578 -4.39659 0 0 706193. 2443.58 0.28 0.05 0.12 -1 -1 0.28 0.0193587 0.0173262 86 102 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_127.v common 10.56 vpr 65.02 MiB -1 -1 0.23 20744 12 0.33 -1 -1 36356 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66576 32 32 300 332 1 226 85 17 17 289 -1 unnamed_device 26.5 MiB 1.86 1312 13291 3621 7142 2528 65.0 MiB 0.12 0.00 7.35568 -164.212 -7.35568 7.35568 0.90 0.000673353 0.000605805 0.052143 0.0471236 38 3697 28 6.79088e+06 282912 678818. 2348.85 5.00 0.227631 0.201279 25966 169698 -1 3095 17 1650 4419 232270 52748 6.67037 6.67037 -158.867 -6.67037 0 0 902133. 3121.57 0.34 0.09 0.16 -1 -1 0.34 0.0310177 0.0280273 143 205 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_128.v common 21.87 vpr 65.30 MiB -1 -1 0.25 21352 13 0.39 -1 -1 36404 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66868 31 32 290 322 1 215 85 17 17 289 -1 unnamed_device 26.8 MiB 2.37 1311 13291 3763 7122 2406 65.3 MiB 0.12 0.00 8.3208 -173.057 -8.3208 8.3208 0.90 0.000662134 0.000599613 0.0511155 0.0463432 34 4579 49 6.79088e+06 296384 618332. 2139.56 15.68 0.348119 0.305219 25102 150614 -1 3475 20 1541 4341 291704 63371 7.3039 7.3039 -171.303 -7.3039 0 0 787024. 2723.27 0.32 0.11 0.14 -1 -1 0.32 0.0379935 0.0342541 147 197 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 8.94 vpr 64.99 MiB -1 -1 0.16 20572 1 0.03 -1 -1 33872 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 354 285 1 207 90 17 17 289 -1 unnamed_device 26.6 MiB 3.79 1137 15768 5063 8031 2674 65.0 MiB 0.14 0.00 5.46262 -163.811 -5.46262 5.46262 0.91 0.000520609 0.000475443 0.0422712 0.0385774 34 2793 23 6.87369e+06 363320 618332. 2139.56 1.90 0.15361 0.134513 25762 151098 -1 2290 18 1636 2589 181807 43066 4.4513 4.4513 -151.51 -4.4513 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0212311 0.0187931 142 47 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 7.61 vpr 65.14 MiB -1 -1 0.16 20548 1 0.03 -1 -1 33884 -1 -1 24 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66700 30 32 363 293 1 199 86 17 17 289 -1 unnamed_device 26.8 MiB 2.73 995 9347 2406 6094 847 65.1 MiB 0.09 0.00 4.40625 -134.148 -4.40625 4.40625 0.90 0.000517663 0.000470325 0.0282397 0.0257073 34 2568 29 6.87369e+06 335372 618332. 2139.56 1.72 0.149534 0.130052 25762 151098 -1 2204 21 1821 2766 192148 46144 4.07136 4.07136 -140.123 -4.07136 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0244948 0.0215923 138 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 7.76 vpr 64.99 MiB -1 -1 0.15 20320 1 0.03 -1 -1 33924 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 26.4 MiB 3.01 954 15337 4637 8345 2355 65.0 MiB 0.12 0.00 4.42735 -120.659 -4.42735 4.42735 0.92 0.000451198 0.000412041 0.0383292 0.0348731 34 2485 25 6.87369e+06 293451 618332. 2139.56 1.56 0.137988 0.120624 25762 151098 -1 1976 20 1261 1705 123346 29622 3.61336 3.61336 -117.518 -3.61336 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0203928 0.0179968 124 26 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 6.06 vpr 64.80 MiB -1 -1 0.16 20308 1 0.03 -1 -1 34032 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66352 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 26.3 MiB 1.20 990 16170 4805 9691 1674 64.8 MiB 0.13 0.00 4.56722 -126.881 -4.56722 4.56722 0.91 0.00046816 0.000427161 0.0393312 0.0358649 34 2380 21 6.87369e+06 405241 618332. 2139.56 1.63 0.135423 0.118454 25762 151098 -1 2046 23 1518 2779 207672 47000 3.7744 3.7744 -124.262 -3.7744 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0221407 0.0194315 124 25 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 8.05 vpr 65.18 MiB -1 -1 0.15 20468 1 0.03 -1 -1 33372 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 26.8 MiB 1.52 1020 12127 3332 7989 806 65.2 MiB 0.11 0.00 4.58138 -135.491 -4.58138 4.58138 0.92 0.000515996 0.000467648 0.0322305 0.0292693 28 2864 24 6.87369e+06 377294 531479. 1839.03 3.36 0.18598 0.162275 24610 126494 -1 2425 23 1873 3644 282352 63929 3.9097 3.9097 -138.221 -3.9097 0 0 648988. 2245.63 0.27 0.09 0.12 -1 -1 0.27 0.0253209 0.0223373 131 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 5.87 vpr 64.66 MiB -1 -1 0.17 20756 1 0.03 -1 -1 33964 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66216 32 32 366 295 1 189 94 17 17 289 -1 unnamed_device 26.3 MiB 1.75 1076 15643 4151 9274 2218 64.7 MiB 0.13 0.00 3.36233 -119.977 -3.36233 3.36233 0.91 0.000500423 0.000455782 0.0396196 0.0360698 28 2604 23 6.87369e+06 419215 531479. 1839.03 0.96 0.106668 0.0939048 24610 126494 -1 2382 21 1482 2421 183960 41128 3.11061 3.11061 -126.364 -3.11061 0 0 648988. 2245.63 0.26 0.07 0.12 -1 -1 0.26 0.0235506 0.0206805 136 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 7.32 vpr 64.40 MiB -1 -1 0.15 20332 1 0.03 -1 -1 33916 -1 -1 19 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65948 27 32 259 221 1 141 78 17 17 289 -1 unnamed_device 25.8 MiB 2.65 768 11200 3422 6221 1557 64.4 MiB 0.08 0.00 3.88482 -108.503 -3.88482 3.88482 0.93 0.000401929 0.000366432 0.0279202 0.0254617 34 1729 19 6.87369e+06 265503 618332. 2139.56 1.49 0.10845 0.0945339 25762 151098 -1 1509 20 1099 1797 124003 29021 3.03626 3.03626 -105.349 -3.03626 0 0 787024. 2723.27 0.32 0.05 0.14 -1 -1 0.32 0.0177473 0.0155989 97 26 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 5.70 vpr 64.70 MiB -1 -1 0.15 20156 1 0.03 -1 -1 34028 -1 -1 32 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66252 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 26.2 MiB 1.05 962 13487 3595 7903 1989 64.7 MiB 0.09 0.00 3.53179 -106.578 -3.53179 3.53179 0.92 0.00042063 0.000382877 0.0276539 0.0250311 34 2236 19 6.87369e+06 447163 618332. 2139.56 1.49 0.114255 0.0993737 25762 151098 -1 1863 20 995 1672 108736 24731 2.70166 2.70166 -98.9172 -2.70166 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0189994 0.0167609 119 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 9.85 vpr 65.02 MiB -1 -1 0.17 20164 1 0.03 -1 -1 33976 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 31 32 317 271 1 175 80 17 17 289 -1 unnamed_device 26.5 MiB 2.77 925 12636 4369 6197 2070 65.0 MiB 0.10 0.00 3.30197 -112.873 -3.30197 3.30197 0.92 0.000420031 0.00038457 0.0352042 0.0321272 36 2160 23 6.87369e+06 237555 648988. 2245.63 3.85 0.167047 0.144871 26050 158493 -1 1872 20 1095 1601 124739 28051 3.06361 3.06361 -117.683 -3.06361 0 0 828058. 2865.25 0.32 0.05 0.16 -1 -1 0.32 0.019654 0.0173171 113 60 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 11.01 vpr 64.66 MiB -1 -1 0.15 20112 1 0.03 -1 -1 33976 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66208 32 32 298 248 1 162 80 17 17 289 -1 unnamed_device 26.2 MiB 4.51 866 10916 3152 5921 1843 64.7 MiB 0.09 0.00 4.09393 -136.454 -4.09393 4.09393 0.94 0.000459703 0.000418961 0.0304682 0.0277851 34 2156 24 6.87369e+06 223581 618332. 2139.56 3.28 0.170545 0.147626 25762 151098 -1 1860 21 1208 2066 158811 35660 3.14326 3.14326 -128.503 -3.14326 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0208871 0.0183738 107 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 8.01 vpr 64.55 MiB -1 -1 0.15 20132 1 0.03 -1 -1 33736 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66104 30 32 303 262 1 148 78 17 17 289 -1 unnamed_device 26.1 MiB 3.48 765 11532 2973 7641 918 64.6 MiB 0.08 0.00 4.09699 -119.415 -4.09699 4.09699 0.88 0.000439755 0.000396931 0.0310568 0.0282592 34 1766 21 6.87369e+06 223581 618332. 2139.56 1.46 0.122252 0.106205 25762 151098 -1 1515 20 1085 1715 117780 28644 2.85166 2.85166 -105.6 -2.85166 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0193595 0.0170408 98 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 9.80 vpr 64.73 MiB -1 -1 0.16 20492 1 0.03 -1 -1 33720 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66284 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 26.3 MiB 2.70 706 8306 1954 5512 840 64.7 MiB 0.06 0.00 3.6525 -111.833 -3.6525 3.6525 0.90 0.000431744 0.00039486 0.0219474 0.0200454 36 1988 27 6.87369e+06 237555 648988. 2245.63 3.97 0.153577 0.132596 26050 158493 -1 1661 19 1125 1568 111534 28073 2.96326 2.96326 -113.226 -2.96326 0 0 828058. 2865.25 0.32 0.05 0.15 -1 -1 0.32 0.0185689 0.0164115 107 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 9.59 vpr 65.15 MiB -1 -1 0.15 20424 1 0.03 -1 -1 33992 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66712 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 26.8 MiB 4.35 1028 16599 6315 8361 1923 65.1 MiB 0.15 0.00 4.13563 -133.6 -4.13563 4.13563 0.92 0.0005149 0.000462506 0.0458956 0.0418195 34 3057 25 6.87369e+06 321398 618332. 2139.56 1.95 0.171109 0.150956 25762 151098 -1 2405 22 1980 3001 267731 58292 3.31981 3.31981 -129.305 -3.31981 0 0 787024. 2723.27 0.31 0.09 0.14 -1 -1 0.31 0.0261145 0.0231545 142 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 7.08 vpr 65.22 MiB -1 -1 0.15 20628 1 0.03 -1 -1 33756 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66788 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 26.8 MiB 2.84 989 10031 2534 6882 615 65.2 MiB 0.09 0.00 4.81484 -142.23 -4.81484 4.81484 0.91 0.000507392 0.000463137 0.0260487 0.0237922 32 2593 24 6.87369e+06 433189 586450. 2029.24 1.05 0.0931325 0.0816057 25474 144626 -1 2153 22 1723 2788 217881 49682 4.00776 4.00776 -140.461 -4.00776 0 0 744469. 2576.02 0.29 0.08 0.14 -1 -1 0.29 0.0242276 0.0213058 133 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 5.91 vpr 64.67 MiB -1 -1 0.15 20608 1 0.03 -1 -1 33732 -1 -1 19 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66224 29 32 248 215 1 142 80 17 17 289 -1 unnamed_device 26.1 MiB 1.93 614 5068 1019 3719 330 64.7 MiB 0.04 0.00 3.26207 -95.0897 -3.26207 3.26207 0.93 0.000373238 0.000339187 0.0128208 0.0117071 26 1919 28 6.87369e+06 265503 503264. 1741.40 0.97 0.0698518 0.061028 24322 120374 -1 1789 24 1254 1970 166202 39802 3.06661 3.06661 -101.255 -3.06661 0 0 618332. 2139.56 0.26 0.06 0.11 -1 -1 0.26 0.0196067 0.0171139 94 21 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 7.05 vpr 65.15 MiB -1 -1 0.15 20568 1 0.03 -1 -1 33944 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66712 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 26.7 MiB 2.26 1007 16078 5563 8042 2473 65.1 MiB 0.12 0.00 3.7063 -122.467 -3.7063 3.7063 0.89 0.000451239 0.000410886 0.0417173 0.0379261 34 2625 21 6.87369e+06 335372 618332. 2139.56 1.59 0.14963 0.130664 25762 151098 -1 2084 22 1604 2825 206431 47747 2.98531 2.98531 -118.548 -2.98531 0 0 787024. 2723.27 0.31 0.07 0.16 -1 -1 0.31 0.023697 0.0209219 135 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 9.80 vpr 65.16 MiB -1 -1 0.16 20612 1 0.03 -1 -1 34020 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66720 32 32 338 269 1 204 85 17 17 289 -1 unnamed_device 26.8 MiB 4.60 1032 15523 6549 8204 770 65.2 MiB 0.12 0.00 4.15353 -134.149 -4.15353 4.15353 0.94 0.000502141 0.000458155 0.0436929 0.0398049 34 2905 38 6.87369e+06 293451 618332. 2139.56 1.92 0.153084 0.134796 25762 151098 -1 2147 22 1799 2550 195998 46224 3.23381 3.23381 -122.14 -3.23381 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0244987 0.0216663 140 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 7.51 vpr 65.04 MiB -1 -1 0.16 20108 1 0.03 -1 -1 33372 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66596 32 32 323 276 1 156 92 17 17 289 -1 unnamed_device 26.5 MiB 2.88 847 14168 4025 7985 2158 65.0 MiB 0.10 0.00 3.09156 -110.795 -3.09156 3.09156 0.89 0.000468919 0.000422044 0.0332836 0.0303249 34 2031 19 6.87369e+06 391268 618332. 2139.56 1.51 0.125978 0.109575 25762 151098 -1 1698 23 1184 1734 139759 32212 2.18787 2.18787 -100.659 -2.18787 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0233242 0.0204478 109 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 4.69 vpr 64.66 MiB -1 -1 0.14 20456 1 0.03 -1 -1 33556 -1 -1 14 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66216 30 32 222 206 1 117 76 17 17 289 -1 unnamed_device 26.3 MiB 0.69 656 11276 3436 6760 1080 64.7 MiB 0.07 0.00 2.61023 -88.8242 -2.61023 2.61023 0.91 0.000359245 0.000329115 0.0263573 0.0240901 32 1559 23 6.87369e+06 195634 586450. 2029.24 0.93 0.0715387 0.0628314 25474 144626 -1 1296 23 653 927 84113 18660 1.95772 1.95772 -86.9117 -1.95772 0 0 744469. 2576.02 0.30 0.05 0.14 -1 -1 0.30 0.0169608 0.0148463 71 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 9.77 vpr 65.04 MiB -1 -1 0.15 20308 1 0.03 -1 -1 33864 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66604 31 32 291 243 1 178 82 17 17 289 -1 unnamed_device 26.5 MiB 3.43 778 9338 2420 6492 426 65.0 MiB 0.09 0.00 4.95513 -145.252 -4.95513 4.95513 0.91 0.000435475 0.000397935 0.0252191 0.0230146 34 2105 23 6.87369e+06 265503 618332. 2139.56 3.17 0.163253 0.140913 25762 151098 -1 1729 19 1243 1783 105498 27198 3.54786 3.54786 -132.494 -3.54786 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0191472 0.016911 116 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 5.87 vpr 65.30 MiB -1 -1 0.16 20552 1 0.03 -1 -1 34016 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66868 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 26.9 MiB 1.07 985 11499 2787 8050 662 65.3 MiB 0.10 0.00 4.26399 -136.517 -4.26399 4.26399 0.91 0.00048981 0.000447809 0.0272395 0.0248312 32 2549 47 6.87369e+06 489084 586450. 2029.24 1.60 0.129687 0.112982 25474 144626 -1 2132 28 1898 2850 260302 73804 3.7954 3.7954 -135.219 -3.7954 0 0 744469. 2576.02 0.29 0.10 0.14 -1 -1 0.29 0.0279849 0.0244419 137 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 7.86 vpr 65.27 MiB -1 -1 0.16 20612 1 0.03 -1 -1 33732 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66840 32 32 372 300 1 206 86 17 17 289 -1 unnamed_device 26.8 MiB 2.46 995 6701 1305 5169 227 65.3 MiB 0.07 0.00 4.31715 -129.69 -4.31715 4.31715 0.91 0.000522326 0.00047487 0.0207729 0.0189426 34 3077 27 6.87369e+06 307425 618332. 2139.56 2.18 0.143547 0.124338 25762 151098 -1 2241 22 1750 2856 245759 55031 3.75866 3.75866 -130.038 -3.75866 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.024984 0.0220305 142 59 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 7.30 vpr 64.39 MiB -1 -1 0.13 20052 1 0.03 -1 -1 34212 -1 -1 17 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65936 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 25.9 MiB 2.02 371 10977 3839 5013 2125 64.4 MiB 0.06 0.00 2.58413 -70.3474 -2.58413 2.58413 0.93 0.000297288 0.000269046 0.0225869 0.0205695 28 1325 27 6.87369e+06 237555 531479. 1839.03 2.28 0.104498 0.0906076 24610 126494 -1 1074 22 742 1040 84221 21563 2.50407 2.50407 -79.8397 -2.50407 0 0 648988. 2245.63 0.27 0.04 0.12 -1 -1 0.27 0.0144896 0.0126549 67 21 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 5.21 vpr 64.88 MiB -1 -1 0.15 20084 1 0.03 -1 -1 33724 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66432 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 26.4 MiB 1.17 952 5847 1159 4467 221 64.9 MiB 0.05 0.00 4.63338 -129.909 -4.63338 4.63338 0.90 0.000394512 0.000360154 0.0151736 0.0138561 30 2387 25 6.87369e+06 321398 556674. 1926.21 1.02 0.0757989 0.0663911 25186 138497 -1 1962 22 1181 2132 158416 34156 3.7241 3.7241 -122.996 -3.7241 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.0204275 0.0180057 119 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 4.47 vpr 64.28 MiB -1 -1 0.13 19796 1 0.02 -1 -1 33308 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65820 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 26.0 MiB 0.52 704 9676 3283 5033 1360 64.3 MiB 0.05 0.00 2.58823 -84.5042 -2.58823 2.58823 0.94 0.000291573 0.000263818 0.0190542 0.0173153 28 1429 20 6.87369e+06 167686 531479. 1839.03 0.93 0.0573743 0.0503641 24610 126494 -1 1344 16 565 664 51936 12522 2.15017 2.15017 -84.3239 -2.15017 0 0 648988. 2245.63 0.27 0.03 0.12 -1 -1 0.27 0.0116231 0.0102829 65 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 5.06 vpr 65.13 MiB -1 -1 0.14 20356 1 0.03 -1 -1 33800 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 26.6 MiB 0.97 922 10744 2499 7805 440 65.1 MiB 0.08 0.00 4.70738 -131.097 -4.70738 4.70738 0.90 0.000386362 0.000353004 0.0224475 0.0204594 26 2404 21 6.87369e+06 419215 503264. 1741.40 1.08 0.0781243 0.0685282 24322 120374 -1 2181 26 1365 2192 198316 46035 4.0267 4.0267 -126.462 -4.0267 0 0 618332. 2139.56 0.24 0.08 0.10 -1 -1 0.24 0.0223639 0.0195544 120 21 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 5.21 vpr 65.20 MiB -1 -1 0.16 20372 1 0.03 -1 -1 33808 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 26.6 MiB 1.04 1018 15215 4457 9037 1721 65.2 MiB 0.12 0.00 3.58631 -115.037 -3.58631 3.58631 0.92 0.000481488 0.000441483 0.0347799 0.0316925 28 2435 25 6.87369e+06 433189 531479. 1839.03 1.06 0.100177 0.0885296 24610 126494 -1 2089 16 1119 1959 128537 28970 2.77996 2.77996 -111.593 -2.77996 0 0 648988. 2245.63 0.27 0.06 0.12 -1 -1 0.27 0.0183776 0.0163675 130 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 6.32 vpr 64.65 MiB -1 -1 0.16 20620 1 0.03 -1 -1 33604 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66204 32 32 338 277 1 186 92 17 17 289 -1 unnamed_device 26.3 MiB 2.09 1070 17066 5177 9769 2120 64.7 MiB 0.14 0.00 4.79173 -136.462 -4.79173 4.79173 0.92 0.000507672 0.000461251 0.0429621 0.0391144 30 2520 24 6.87369e+06 391268 556674. 1926.21 1.03 0.10785 0.0950071 25186 138497 -1 2060 17 1055 1910 104827 24868 3.6681 3.6681 -124.886 -3.6681 0 0 706193. 2443.58 0.28 0.05 0.14 -1 -1 0.28 0.0191859 0.0169518 131 47 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 5.71 vpr 64.74 MiB -1 -1 0.15 20304 1 0.03 -1 -1 33756 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66296 32 32 284 241 1 148 80 17 17 289 -1 unnamed_device 26.4 MiB 1.10 703 9368 2220 5797 1351 64.7 MiB 0.07 0.00 3.24007 -107.338 -3.24007 3.24007 0.91 0.000422738 0.000385943 0.0246142 0.0224844 34 1987 21 6.87369e+06 223581 618332. 2139.56 1.49 0.112037 0.0972992 25762 151098 -1 1602 21 1019 1690 110919 26652 2.93026 2.93026 -109.609 -2.93026 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0192975 0.0169086 99 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 5.87 vpr 64.79 MiB -1 -1 0.14 20320 1 0.03 -1 -1 33852 -1 -1 26 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66340 30 32 262 227 1 138 88 17 17 289 -1 unnamed_device 26.2 MiB 1.36 624 12763 3540 6427 2796 64.8 MiB 0.08 0.00 3.24697 -98.9537 -3.24697 3.24697 0.89 0.000411744 0.000374607 0.0276799 0.0251511 34 1668 26 6.87369e+06 363320 618332. 2139.56 1.47 0.113433 0.0985374 25762 151098 -1 1287 19 837 1210 79394 20357 2.88626 2.88626 -92.5246 -2.88626 0 0 787024. 2723.27 0.30 0.04 0.14 -1 -1 0.30 0.0167451 0.0147636 97 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 5.04 vpr 64.78 MiB -1 -1 0.15 20424 1 0.03 -1 -1 33736 -1 -1 18 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 28 32 260 223 1 140 78 17 17 289 -1 unnamed_device 26.2 MiB 1.06 763 12694 4114 7113 1467 64.8 MiB 0.09 0.00 3.5993 -104.629 -3.5993 3.5993 0.88 0.0003966 0.000361848 0.0320318 0.0293155 32 2109 21 6.87369e+06 251529 586450. 2029.24 0.98 0.0823055 0.0726557 25474 144626 -1 1799 19 1081 1917 171125 38306 3.09656 3.09656 -109.387 -3.09656 0 0 744469. 2576.02 0.29 0.06 0.13 -1 -1 0.29 0.0169574 0.0149949 95 27 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 4.96 vpr 64.85 MiB -1 -1 0.15 20388 1 0.03 -1 -1 33752 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66404 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 26.5 MiB 0.88 834 13031 3636 7853 1542 64.8 MiB 0.10 0.00 3.99153 -123.226 -3.99153 3.99153 0.92 0.000410092 0.000372736 0.0325485 0.0297345 30 1992 21 6.87369e+06 237555 556674. 1926.21 0.97 0.0849014 0.074919 25186 138497 -1 1733 20 1068 1783 108326 24960 2.87696 2.87696 -115.111 -2.87696 0 0 706193. 2443.58 0.29 0.05 0.13 -1 -1 0.29 0.0180923 0.015974 101 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 5.80 vpr 64.44 MiB -1 -1 0.14 20548 1 0.03 -1 -1 33704 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65988 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 26.1 MiB 1.05 614 5831 1071 4187 573 64.4 MiB 0.05 0.00 3.5993 -104.92 -3.5993 3.5993 0.93 0.00041789 0.000378846 0.0142484 0.0130084 34 1764 25 6.87369e+06 363320 618332. 2139.56 1.61 0.106241 0.0919691 25762 151098 -1 1500 18 955 1528 104603 27153 2.94926 2.94926 -105.489 -2.94926 0 0 787024. 2723.27 0.32 0.05 0.15 -1 -1 0.32 0.0173883 0.0153733 102 26 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 8.13 vpr 64.64 MiB -1 -1 0.16 20232 1 0.03 -1 -1 33512 -1 -1 25 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66188 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 26.2 MiB 3.45 863 14072 4376 7539 2157 64.6 MiB 0.10 0.00 3.04756 -100.489 -3.04756 3.04756 0.91 0.000433109 0.000391232 0.0336179 0.0306664 34 1909 21 6.87369e+06 349346 618332. 2139.56 1.51 0.12378 0.107882 25762 151098 -1 1708 19 1091 1614 119245 28263 2.38047 2.38047 -99.7204 -2.38047 0 0 787024. 2723.27 0.32 0.05 0.15 -1 -1 0.32 0.0186644 0.0164849 106 48 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 9.27 vpr 65.55 MiB -1 -1 0.16 20460 1 0.03 -1 -1 33700 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67124 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 26.9 MiB 4.12 1118 10108 2278 7040 790 65.6 MiB 0.09 0.00 4.17389 -123.088 -4.17389 4.17389 0.92 0.000538795 0.000490771 0.0240015 0.021772 26 3090 38 6.87369e+06 558954 503264. 1741.40 1.87 0.124758 0.110147 24322 120374 -1 2752 73 3440 6386 638453 134864 3.8437 3.8437 -130.264 -3.8437 0 0 618332. 2139.56 0.26 0.23 0.11 -1 -1 0.26 0.0677001 0.0584745 156 26 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 9.98 vpr 65.27 MiB -1 -1 0.16 20564 1 0.03 -1 -1 33896 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66836 32 32 391 311 1 194 102 17 17 289 -1 unnamed_device 26.8 MiB 3.88 1050 18428 5889 9545 2994 65.3 MiB 0.15 0.00 3.99748 -134.85 -3.99748 3.99748 0.91 0.000532083 0.000481872 0.0443131 0.0401879 30 2304 26 6.87369e+06 531006 556674. 1926.21 2.89 0.198731 0.172884 25186 138497 -1 1893 18 1445 2277 122140 29198 2.89086 2.89086 -117.356 -2.89086 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.022274 0.0196879 148 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 7.69 vpr 65.03 MiB -1 -1 0.17 20140 1 0.03 -1 -1 33756 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66588 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 26.6 MiB 2.45 729 12681 4828 6102 1751 65.0 MiB 0.10 0.00 4.09163 -121.55 -4.09163 4.09163 0.94 0.000428108 0.000389991 0.0326434 0.0297156 36 2115 36 6.87369e+06 251529 648988. 2245.63 1.99 0.14145 0.123375 26050 158493 -1 1823 19 1282 1905 152144 36164 3.3235 3.3235 -117.041 -3.3235 0 0 828058. 2865.25 0.33 0.06 0.15 -1 -1 0.33 0.0188551 0.0166854 109 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 8.16 vpr 65.41 MiB -1 -1 0.18 20672 1 0.03 -1 -1 34020 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66976 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 27.0 MiB 3.10 953 14543 4925 6755 2863 65.4 MiB 0.13 0.00 3.78134 -121.658 -3.78134 3.78134 0.95 0.000538184 0.000490247 0.041515 0.0378113 34 2770 24 6.87369e+06 363320 618332. 2139.56 1.77 0.160498 0.140333 25762 151098 -1 2008 21 1651 2803 198970 45902 3.16061 3.16061 -121.592 -3.16061 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0243826 0.0214994 136 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 12.36 vpr 65.05 MiB -1 -1 0.18 20620 1 0.03 -1 -1 34008 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66608 31 32 377 302 1 237 88 17 17 289 -1 unnamed_device 26.6 MiB 4.72 1511 10033 2621 6359 1053 65.0 MiB 0.11 0.00 5.60672 -170.903 -5.60672 5.60672 0.92 0.000549763 0.000500167 0.0305279 0.0278672 36 3561 24 6.87369e+06 349346 648988. 2245.63 4.33 0.205666 0.17824 26050 158493 -1 3027 20 2176 3185 271931 58363 4.9855 4.9855 -172.625 -4.9855 0 0 828058. 2865.25 0.32 0.09 0.16 -1 -1 0.32 0.0240333 0.0212501 159 60 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 9.15 vpr 65.20 MiB -1 -1 0.17 20620 1 0.03 -1 -1 33708 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66764 31 32 383 305 1 212 90 17 17 289 -1 unnamed_device 26.7 MiB 4.12 1142 14964 4330 8425 2209 65.2 MiB 0.13 0.00 5.2871 -162.814 -5.2871 5.2871 0.92 0.000549691 0.000502789 0.0431725 0.0394363 34 2876 29 6.87369e+06 377294 618332. 2139.56 1.76 0.172892 0.151915 25762 151098 -1 2362 21 1520 2409 179820 40778 4.5536 4.5536 -160.543 -4.5536 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0253821 0.0224287 152 60 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 10.31 vpr 65.24 MiB -1 -1 0.16 20448 1 0.03 -1 -1 33988 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 31 32 352 285 1 186 88 17 17 289 -1 unnamed_device 26.9 MiB 3.43 964 8863 1996 5999 868 65.2 MiB 0.09 0.00 4.10673 -127.256 -4.10673 4.10673 0.95 0.000524757 0.000478387 0.0254173 0.0232002 34 2616 23 6.87369e+06 349346 618332. 2139.56 3.62 0.169997 0.148353 25762 151098 -1 2236 21 1617 2633 212782 50249 3.36391 3.36391 -125.026 -3.36391 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0222393 0.0195538 131 51 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 8.12 vpr 65.15 MiB -1 -1 0.15 20540 1 0.03 -1 -1 34028 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66716 32 32 291 242 1 183 84 17 17 289 -1 unnamed_device 26.6 MiB 2.91 831 14175 5092 5953 3130 65.2 MiB 0.10 0.00 4.31305 -113.651 -4.31305 4.31305 0.92 0.000449639 0.000408108 0.0360727 0.0328618 34 2736 36 6.87369e+06 279477 618332. 2139.56 1.99 0.154306 0.135326 25762 151098 -1 1845 22 1288 1920 137580 35695 3.95006 3.95006 -116.785 -3.95006 0 0 787024. 2723.27 0.32 0.06 0.14 -1 -1 0.32 0.0210577 0.0185489 119 24 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 11.73 vpr 66.00 MiB -1 -1 0.16 21128 1 0.03 -1 -1 34120 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67580 32 32 457 356 1 225 102 17 17 289 -1 unnamed_device 27.4 MiB 3.79 1125 12954 3388 8890 676 66.0 MiB 0.13 0.00 4.84068 -153.465 -4.84068 4.84068 0.87 0.000544515 0.000496071 0.035678 0.0325259 30 2992 40 6.87369e+06 531006 556674. 1926.21 4.83 0.232938 0.204696 25186 138497 -1 2204 20 1416 2329 119183 30863 3.83736 3.83736 -145.825 -3.83736 0 0 706193. 2443.58 0.28 0.07 0.13 -1 -1 0.28 0.0270398 0.0239869 173 84 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 5.93 vpr 64.34 MiB -1 -1 0.16 20384 1 0.03 -1 -1 33600 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65880 31 32 261 225 1 148 85 17 17 289 -1 unnamed_device 26.0 MiB 1.94 779 13291 4134 7087 2070 64.3 MiB 0.08 0.00 3.55895 -107.74 -3.55895 3.55895 0.87 0.000348471 0.000318322 0.0281164 0.025622 32 2017 21 6.87369e+06 307425 586450. 2029.24 0.98 0.0788197 0.0692308 25474 144626 -1 1822 19 1136 1936 156094 34416 2.84596 2.84596 -105.425 -2.84596 0 0 744469. 2576.02 0.29 0.06 0.14 -1 -1 0.29 0.0170216 0.0149344 96 24 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 7.11 vpr 65.02 MiB -1 -1 0.17 20468 1 0.03 -1 -1 33824 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 26.6 MiB 2.82 1055 8969 2107 6380 482 65.0 MiB 0.09 0.00 4.79158 -142.334 -4.79158 4.79158 0.91 0.000491833 0.000445393 0.0256183 0.0234377 30 2731 23 6.87369e+06 321398 556674. 1926.21 1.15 0.0920384 0.0807424 25186 138497 -1 2039 22 1317 1992 125222 30107 3.86576 3.86576 -132.751 -3.86576 0 0 706193. 2443.58 0.29 0.06 0.13 -1 -1 0.29 0.0233319 0.0205559 140 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 7.11 vpr 65.29 MiB -1 -1 0.16 20532 1 0.03 -1 -1 33808 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66852 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 27.0 MiB 2.29 980 9951 2142 7372 437 65.3 MiB 0.09 0.00 3.6843 -115.486 -3.6843 3.6843 0.92 0.000499064 0.000448106 0.0253224 0.0230711 32 2890 26 6.87369e+06 447163 586450. 2029.24 1.62 0.116301 0.101723 25474 144626 -1 2221 21 1588 2681 224480 50258 3.07761 3.07761 -115.254 -3.07761 0 0 744469. 2576.02 0.29 0.08 0.14 -1 -1 0.29 0.0227179 0.0199562 132 50 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 5.24 vpr 64.91 MiB -1 -1 0.14 20496 1 0.03 -1 -1 33968 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66468 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 26.3 MiB 0.74 972 9537 2296 6533 708 64.9 MiB 0.08 0.00 4.25479 -129.925 -4.25479 4.25479 0.85 0.00047277 0.000429986 0.0221583 0.0201924 34 2449 22 6.87369e+06 363320 618332. 2139.56 1.50 0.110816 0.096135 25762 151098 -1 2032 21 1272 2425 189312 41406 3.7011 3.7011 -125.423 -3.7011 0 0 787024. 2723.27 0.29 0.07 0.14 -1 -1 0.29 0.0211511 0.0186367 123 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 8.08 vpr 64.84 MiB -1 -1 0.16 20532 1 0.03 -1 -1 33924 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66392 32 32 353 287 1 203 86 17 17 289 -1 unnamed_device 26.5 MiB 3.34 1122 14450 4547 7634 2269 64.8 MiB 0.12 0.00 5.14049 -153.237 -5.14049 5.14049 0.90 0.000505941 0.000460523 0.0407089 0.0371256 34 2716 24 6.87369e+06 307425 618332. 2139.56 1.58 0.126097 0.110874 25762 151098 -1 2240 21 1280 1794 138052 31873 3.3592 3.3592 -127.805 -3.3592 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0238623 0.0211226 136 52 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 8.52 vpr 64.89 MiB -1 -1 0.16 20512 1 0.03 -1 -1 33640 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66452 32 32 361 291 1 189 96 17 17 289 -1 unnamed_device 26.6 MiB 3.70 990 17178 5882 8168 3128 64.9 MiB 0.12 0.00 3.6884 -118.378 -3.6884 3.6884 0.91 0.000507746 0.000461015 0.0427847 0.0389603 30 2877 24 6.87369e+06 447163 556674. 1926.21 1.64 0.119464 0.105784 25186 138497 -1 2092 22 1461 2649 168211 40081 3.23791 3.23791 -114.832 -3.23791 0 0 706193. 2443.58 0.28 0.07 0.13 -1 -1 0.28 0.0235137 0.0206762 136 52 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 9.77 vpr 65.47 MiB -1 -1 0.15 20472 1 0.03 -1 -1 33728 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67044 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 27.0 MiB 3.54 922 18795 6474 8507 3814 65.5 MiB 0.14 0.00 4.11773 -131.117 -4.11773 4.11773 0.92 0.000541175 0.000492406 0.0474861 0.0432815 34 3101 29 6.87369e+06 489084 618332. 2139.56 2.95 0.189359 0.167094 25762 151098 -1 2029 22 1693 2800 249488 68630 3.24686 3.24686 -120.996 -3.24686 0 0 787024. 2723.27 0.31 0.09 0.14 -1 -1 0.31 0.0271103 0.0239599 144 59 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 5.16 vpr 64.95 MiB -1 -1 0.14 20372 1 0.03 -1 -1 33676 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66504 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 26.4 MiB 1.07 881 12751 3354 7696 1701 64.9 MiB 0.10 0.00 4.26989 -123.123 -4.26989 4.26989 0.90 0.000461614 0.00042136 0.028219 0.0256544 30 2195 22 6.87369e+06 461137 556674. 1926.21 0.97 0.0867729 0.0761345 25186 138497 -1 1695 21 965 1709 89776 21316 3.6008 3.6008 -117.658 -3.6008 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.0204462 0.0180247 124 21 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 7.24 vpr 65.05 MiB -1 -1 0.15 20244 1 0.03 -1 -1 33828 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66608 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 26.7 MiB 2.45 1140 14450 4739 7431 2280 65.0 MiB 0.12 0.00 4.86398 -140.272 -4.86398 4.86398 0.89 0.000487476 0.000445578 0.0373875 0.0341344 34 2688 26 6.87369e+06 307425 618332. 2139.56 1.64 0.141375 0.123688 25762 151098 -1 2351 20 1637 2366 176234 40551 3.92996 3.92996 -134.935 -3.92996 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0211938 0.0186585 135 26 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 10.55 vpr 65.34 MiB -1 -1 0.15 20540 1 0.03 -1 -1 33964 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66912 31 32 373 299 1 204 85 17 17 289 -1 unnamed_device 26.9 MiB 2.37 912 13105 4297 5300 3508 65.3 MiB 0.10 0.00 4.74348 -140.694 -4.74348 4.74348 0.88 0.00051382 0.000469208 0.0387592 0.0354369 36 3390 47 6.87369e+06 307425 648988. 2245.63 5.06 0.196609 0.172983 26050 158493 -1 2334 18 1713 2698 193753 48203 4.43196 4.43196 -140.453 -4.43196 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0224372 0.0199496 141 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 7.99 vpr 65.21 MiB -1 -1 0.16 20388 1 0.03 -1 -1 33988 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66772 32 32 387 315 1 194 85 17 17 289 -1 unnamed_device 26.8 MiB 3.17 1089 15709 4726 9045 1938 65.2 MiB 0.13 0.00 4.3693 -136.102 -4.3693 4.3693 0.86 0.000536036 0.000486969 0.0434803 0.0396055 34 2963 29 6.87369e+06 293451 618332. 2139.56 1.69 0.15245 0.132971 25762 151098 -1 2412 22 1699 3098 239730 53476 3.72146 3.72146 -134.49 -3.72146 0 0 787024. 2723.27 0.29 0.08 0.15 -1 -1 0.29 0.0232846 0.0204354 135 74 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 4.84 vpr 64.48 MiB -1 -1 0.15 20192 1 0.03 -1 -1 33292 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66032 32 32 251 219 1 141 86 17 17 289 -1 unnamed_device 25.9 MiB 0.88 730 9914 2670 6709 535 64.5 MiB 0.07 0.00 3.5583 -105.077 -3.5583 3.5583 0.90 0.000422254 0.000386898 0.0224718 0.0205284 28 1795 23 6.87369e+06 307425 531479. 1839.03 0.93 0.0734855 0.0644472 24610 126494 -1 1697 21 974 1670 124586 29567 2.90826 2.90826 -103.963 -2.90826 0 0 648988. 2245.63 0.27 0.05 0.12 -1 -1 0.27 0.0181162 0.0158982 93 20 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 7.31 vpr 65.08 MiB -1 -1 0.16 20500 1 0.03 -1 -1 33760 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66644 32 32 341 285 1 188 82 17 17 289 -1 unnamed_device 26.5 MiB 2.11 968 15568 5616 7798 2154 65.1 MiB 0.12 0.00 3.7434 -130.891 -3.7434 3.7434 0.90 0.000417728 0.000379678 0.043523 0.0396632 34 2779 24 6.87369e+06 251529 618332. 2139.56 1.94 0.153696 0.134601 25762 151098 -1 2225 24 1781 2546 222546 49444 3.3365 3.3365 -133.232 -3.3365 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0259722 0.022921 124 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 8.46 vpr 65.54 MiB -1 -1 0.16 20760 1 0.03 -1 -1 34060 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67116 32 32 387 293 1 236 88 17 17 289 -1 unnamed_device 26.9 MiB 3.36 1427 16858 5256 9636 1966 65.5 MiB 0.17 0.00 5.58608 -163.667 -5.58608 5.58608 0.90 0.000596038 0.000527201 0.0505865 0.0458113 34 3599 26 6.87369e+06 335372 618332. 2139.56 1.84 0.178769 0.156916 25762 151098 -1 2933 22 2135 3307 260209 58698 4.8184 4.8184 -161.399 -4.8184 0 0 787024. 2723.27 0.31 0.09 0.14 -1 -1 0.31 0.0277883 0.0246987 166 28 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 7.88 vpr 65.07 MiB -1 -1 0.14 20216 1 0.03 -1 -1 33880 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66636 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 26.6 MiB 3.55 968 18998 5516 10575 2907 65.1 MiB 0.15 0.00 4.31005 -135.578 -4.31005 4.31005 0.91 0.000529036 0.000483553 0.0449596 0.0408464 28 2295 25 6.87369e+06 475111 531479. 1839.03 1.15 0.122016 0.10813 24610 126494 -1 2110 22 1551 2528 176522 41622 3.19176 3.19176 -124.427 -3.19176 0 0 648988. 2245.63 0.27 0.08 0.12 -1 -1 0.27 0.0251021 0.0222092 137 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 5.23 vpr 64.77 MiB -1 -1 0.14 20320 1 0.03 -1 -1 34028 -1 -1 25 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 26.4 MiB 0.88 634 6615 1367 5002 246 64.8 MiB 0.06 0.00 3.6392 -108.305 -3.6392 3.6392 0.88 0.000414761 0.00037927 0.016156 0.0147959 26 2210 35 6.87369e+06 349346 503264. 1741.40 1.42 0.090027 0.0791073 24322 120374 -1 1732 22 1273 2053 177294 42109 3.24486 3.24486 -115.112 -3.24486 0 0 618332. 2139.56 0.25 0.06 0.11 -1 -1 0.25 0.0195966 0.0172555 104 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 11.41 vpr 65.61 MiB -1 -1 0.17 20972 1 0.03 -1 -1 33996 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67180 32 32 431 332 1 239 89 17 17 289 -1 unnamed_device 27.3 MiB 5.99 1457 14543 4326 8631 1586 65.6 MiB 0.14 0.00 5.90291 -175.463 -5.90291 5.90291 0.93 0.00062316 0.000558868 0.0475983 0.0434474 34 3438 35 6.87369e+06 349346 618332. 2139.56 2.07 0.193991 0.16965 25762 151098 -1 2911 20 2264 3374 276997 62014 4.9852 4.9852 -172.57 -4.9852 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0269682 0.0238551 171 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 8.01 vpr 65.34 MiB -1 -1 0.15 20492 1 0.03 -1 -1 33724 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66908 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 27.0 MiB 3.81 1003 17199 4580 10530 2089 65.3 MiB 0.12 0.00 4.63938 -140.336 -4.63938 4.63938 0.88 0.000494913 0.000449715 0.0386642 0.0352293 32 2464 25 6.87369e+06 489084 586450. 2029.24 1.04 0.10393 0.0915851 25474 144626 -1 2095 23 1635 2729 201771 45578 3.7433 3.7433 -131.792 -3.7433 0 0 744469. 2576.02 0.29 0.08 0.13 -1 -1 0.29 0.024478 0.0215666 135 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 4.80 vpr 64.39 MiB -1 -1 0.13 20036 1 0.03 -1 -1 33608 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65932 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 25.8 MiB 0.80 878 10618 2802 6933 883 64.4 MiB 0.07 0.00 3.66956 -107.639 -3.66956 3.66956 0.91 0.000401293 0.000356959 0.0218967 0.0199564 30 1958 22 6.87369e+06 335372 556674. 1926.21 0.94 0.0703823 0.0616836 25186 138497 -1 1653 18 727 1303 82483 19055 2.69971 2.69971 -100.23 -2.69971 0 0 706193. 2443.58 0.28 0.04 0.14 -1 -1 0.28 0.0151802 0.013393 94 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 7.14 vpr 65.02 MiB -1 -1 0.17 20820 1 0.03 -1 -1 33816 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 26.6 MiB 2.51 1091 19371 5911 10963 2497 65.0 MiB 0.16 0.00 5.19487 -138.438 -5.19487 5.19487 0.90 0.000517424 0.000472626 0.0452253 0.0410528 28 2690 23 6.87369e+06 517032 531479. 1839.03 1.43 0.115468 0.101684 24610 126494 -1 2422 22 1633 3034 222693 49806 4.75015 4.75015 -146.366 -4.75015 0 0 648988. 2245.63 0.26 0.08 0.13 -1 -1 0.26 0.0239894 0.0210183 145 26 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 5.39 vpr 64.74 MiB -1 -1 0.12 20492 1 0.03 -1 -1 34052 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66296 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 26.2 MiB 0.88 765 8363 1967 5928 468 64.7 MiB 0.07 0.00 3.6502 -113.574 -3.6502 3.6502 0.89 0.000400929 0.000366399 0.0202049 0.0184325 34 2139 22 6.87369e+06 265503 618332. 2139.56 1.49 0.100872 0.0874606 25762 151098 -1 1778 19 1158 2038 144835 33647 2.93826 2.93826 -111.413 -2.93826 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0168042 0.0148908 98 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 7.39 vpr 64.98 MiB -1 -1 0.15 20272 1 0.03 -1 -1 33768 -1 -1 34 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66544 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 26.5 MiB 2.91 687 8418 1716 5962 740 65.0 MiB 0.07 0.00 3.88482 -111.398 -3.88482 3.88482 0.90 0.000445705 0.000404815 0.0189174 0.0171527 28 2032 22 6.87369e+06 475111 531479. 1839.03 1.43 0.0792183 0.069529 24610 126494 -1 1732 18 1171 2098 140097 34058 3.01326 3.01326 -110.382 -3.01326 0 0 648988. 2245.63 0.26 0.06 0.12 -1 -1 0.26 0.0173908 0.0153575 109 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 9.55 vpr 65.20 MiB -1 -1 0.16 20540 1 0.03 -1 -1 33824 -1 -1 24 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 29 32 355 287 1 200 85 17 17 289 -1 unnamed_device 26.8 MiB 4.61 1118 13105 3443 8133 1529 65.2 MiB 0.12 0.00 4.10563 -124.474 -4.10563 4.10563 0.90 0.000493862 0.000451246 0.0369593 0.0337327 34 2878 24 6.87369e+06 335372 618332. 2139.56 1.72 0.144003 0.125581 25762 151098 -1 2350 23 1916 2927 214977 49304 3.34511 3.34511 -121.343 -3.34511 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0243691 0.0214417 138 56 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 7.56 vpr 65.11 MiB -1 -1 0.15 20636 1 0.03 -1 -1 33916 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66676 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 26.7 MiB 2.67 806 8532 1884 6173 475 65.1 MiB 0.08 0.00 4.39805 -136.981 -4.39805 4.39805 0.91 0.000520112 0.000474618 0.0244185 0.0223366 34 2439 23 6.87369e+06 363320 618332. 2139.56 1.68 0.139763 0.121893 25762 151098 -1 1892 22 1562 2465 167343 39695 4.014 4.014 -132.895 -4.014 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0244201 0.0214172 132 51 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 9.64 vpr 65.29 MiB -1 -1 0.16 20576 1 0.03 -1 -1 33520 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66856 32 32 353 285 1 188 91 17 17 289 -1 unnamed_device 26.9 MiB 2.52 1121 14983 4753 8344 1886 65.3 MiB 0.13 0.00 4.71348 -141.457 -4.71348 4.71348 0.87 0.000514885 0.000468321 0.0397039 0.0361257 36 2713 22 6.87369e+06 377294 648988. 2245.63 3.97 0.201791 0.175664 26050 158493 -1 2340 22 1503 2593 259528 52852 4.01806 4.01806 -139.978 -4.01806 0 0 828058. 2865.25 0.31 0.08 0.14 -1 -1 0.31 0.02407 0.0212325 133 48 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 10.44 vpr 64.79 MiB -1 -1 0.15 20500 1 0.03 -1 -1 33660 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 26.4 MiB 3.95 883 12923 4460 6401 2062 64.8 MiB 0.10 0.00 4.76482 -134.311 -4.76482 4.76482 0.94 0.000428806 0.000391035 0.0346738 0.0315959 34 2173 23 6.87369e+06 209608 618332. 2139.56 3.28 0.168537 0.146229 25762 151098 -1 1919 24 1085 1501 133785 29128 3.40117 3.40117 -117.767 -3.40117 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0206789 0.0181486 103 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 7.84 vpr 65.02 MiB -1 -1 0.16 20600 1 0.03 -1 -1 33796 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 31 32 319 272 1 176 80 17 17 289 -1 unnamed_device 26.5 MiB 3.01 973 14184 4741 7494 1949 65.0 MiB 0.11 0.00 3.76746 -124.928 -3.76746 3.76746 0.91 0.000465077 0.000422908 0.0403276 0.0367705 34 2486 19 6.87369e+06 237555 618332. 2139.56 1.65 0.135769 0.118522 25762 151098 -1 2089 19 1315 1949 148629 34679 3.2835 3.2835 -124.572 -3.2835 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0195269 0.017238 114 60 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 7.31 vpr 65.06 MiB -1 -1 0.15 20728 1 0.03 -1 -1 34036 -1 -1 34 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66620 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 26.4 MiB 3.09 925 17835 5186 10054 2595 65.1 MiB 0.13 0.00 3.47005 -102.148 -3.47005 3.47005 0.90 0.000480914 0.000431892 0.0403324 0.0365238 32 2458 31 6.87369e+06 475111 586450. 2029.24 1.04 0.108145 0.0948711 25474 144626 -1 1948 22 1270 2371 177844 39960 2.91726 2.91726 -101.622 -2.91726 0 0 744469. 2576.02 0.30 0.06 0.14 -1 -1 0.30 0.0212569 0.0186187 124 52 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 6.55 vpr 65.00 MiB -1 -1 0.15 20288 1 0.03 -1 -1 33868 -1 -1 35 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66560 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 26.5 MiB 2.19 875 14783 4032 9129 1622 65.0 MiB 0.11 0.00 4.05975 -105.458 -4.05975 4.05975 0.91 0.000423658 0.000386651 0.0307022 0.027963 26 2270 25 6.87369e+06 489084 503264. 1741.40 1.23 0.0896358 0.0786259 24322 120374 -1 2027 21 1268 2387 205598 45639 3.972 3.972 -115.213 -3.972 0 0 618332. 2139.56 0.26 0.07 0.12 -1 -1 0.26 0.0199025 0.0174921 117 20 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 9.95 vpr 64.93 MiB -1 -1 0.15 20288 1 0.03 -1 -1 33540 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66484 30 32 317 269 1 155 79 17 17 289 -1 unnamed_device 26.4 MiB 3.34 802 13599 4534 7471 1594 64.9 MiB 0.11 0.00 4.04073 -123.042 -4.04073 4.04073 0.93 0.000444007 0.00040368 0.0385088 0.0350249 28 2087 22 6.87369e+06 237555 531479. 1839.03 3.45 0.177637 0.153918 24610 126494 -1 1892 21 1343 2306 173766 40652 3.29986 3.29986 -123.134 -3.29986 0 0 648988. 2245.63 0.26 0.07 0.13 -1 -1 0.26 0.0206741 0.0181148 105 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 8.32 vpr 64.80 MiB -1 -1 0.16 20404 1 0.03 -1 -1 33708 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66360 32 32 335 282 1 189 81 17 17 289 -1 unnamed_device 26.2 MiB 3.34 1020 11806 3110 7534 1162 64.8 MiB 0.10 0.00 3.6756 -125.066 -3.6756 3.6756 0.92 0.000487055 0.000442705 0.0351392 0.0320411 34 2679 22 6.87369e+06 237555 618332. 2139.56 1.75 0.143882 0.125936 25762 151098 -1 2172 18 1392 2053 173685 39227 3.20081 3.20081 -127.632 -3.20081 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0200383 0.017731 122 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 5.33 vpr 64.86 MiB -1 -1 0.15 19992 1 0.03 -1 -1 34008 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66420 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 26.3 MiB 0.92 1014 15430 4861 8054 2515 64.9 MiB 0.12 0.00 4.6284 -133.663 -4.6284 4.6284 0.94 0.000447448 0.000403242 0.035067 0.031753 32 2693 29 6.87369e+06 433189 586450. 2029.24 1.12 0.103173 0.0908666 25474 144626 -1 2134 19 1219 2210 164082 37394 3.5018 3.5018 -123.469 -3.5018 0 0 744469. 2576.02 0.30 0.06 0.14 -1 -1 0.30 0.020363 0.0181257 129 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 9.00 vpr 64.91 MiB -1 -1 0.14 20480 1 0.03 -1 -1 34044 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 26.5 MiB 3.94 1172 16215 5632 8430 2153 64.9 MiB 0.16 0.00 4.82738 -155.303 -4.82738 4.82738 0.91 0.000513096 0.000467869 0.0458536 0.0418027 34 3239 22 6.87369e+06 321398 618332. 2139.56 1.81 0.16205 0.142021 25762 151098 -1 2741 20 1767 2644 217703 50575 4.30086 4.30086 -152.489 -4.30086 0 0 787024. 2723.27 0.32 0.08 0.14 -1 -1 0.32 0.0244703 0.0216589 147 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 9.50 vpr 65.41 MiB -1 -1 0.15 20552 1 0.03 -1 -1 33800 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66976 32 32 385 308 1 196 100 17 17 289 -1 unnamed_device 26.9 MiB 4.33 951 10308 2331 7565 412 65.4 MiB 0.10 0.00 5.39654 -155.229 -5.39654 5.39654 0.88 0.000547487 0.0004999 0.0268559 0.0244829 34 2817 24 6.87369e+06 503058 618332. 2139.56 2.09 0.156301 0.137358 25762 151098 -1 2165 23 1634 2704 199475 48470 4.14135 4.14135 -141.69 -4.14135 0 0 787024. 2723.27 0.30 0.08 0.13 -1 -1 0.30 0.0261718 0.0230269 147 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 8.59 vpr 65.28 MiB -1 -1 0.15 20460 1 0.03 -1 -1 33708 -1 -1 41 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 26.7 MiB 3.73 1114 12702 3372 8526 804 65.3 MiB 0.11 0.00 4.59844 -147.406 -4.59844 4.59844 0.91 0.000538035 0.000489448 0.0310401 0.0280557 28 3068 25 6.87369e+06 572927 531479. 1839.03 1.64 0.108285 0.0949453 24610 126494 -1 2645 25 1813 3370 330481 68782 3.96 3.96 -145.051 -3.96 0 0 648988. 2245.63 0.26 0.10 0.13 -1 -1 0.26 0.0279808 0.0245047 148 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 8.46 vpr 64.65 MiB -1 -1 0.15 20264 1 0.03 -1 -1 33996 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66204 30 32 272 232 1 151 79 17 17 289 -1 unnamed_device 26.3 MiB 2.84 643 13768 5811 6950 1007 64.7 MiB 0.10 0.00 4.04073 -117.599 -4.04073 4.04073 0.94 0.000414359 0.00037642 0.0362158 0.0329474 36 1975 29 6.87369e+06 237555 648988. 2245.63 2.40 0.144225 0.126535 26050 158493 -1 1437 20 958 1552 107805 26738 3.17261 3.17261 -106.943 -3.17261 0 0 828058. 2865.25 0.33 0.05 0.15 -1 -1 0.33 0.0185025 0.0163289 99 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 8.85 vpr 65.12 MiB -1 -1 0.17 20436 1 0.03 -1 -1 33928 -1 -1 22 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 30 32 375 299 1 188 84 17 17 289 -1 unnamed_device 26.7 MiB 3.97 958 7038 1640 4840 558 65.1 MiB 0.08 0.00 4.57902 -143.19 -4.57902 4.57902 0.92 0.000533304 0.000486529 0.0229364 0.0209179 34 2472 21 6.87369e+06 307425 618332. 2139.56 1.68 0.136744 0.118895 25762 151098 -1 1990 20 1617 2540 179225 41610 3.7651 3.7651 -137.998 -3.7651 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0236872 0.0209684 136 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 8.05 vpr 64.68 MiB -1 -1 0.15 20480 1 0.03 -1 -1 33708 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66236 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 26.3 MiB 2.99 1035 6615 1396 4961 258 64.7 MiB 0.07 0.00 5.21006 -150.271 -5.21006 5.21006 0.91 0.000528523 0.000484294 0.0197894 0.0181251 34 2845 24 6.87369e+06 321398 618332. 2139.56 1.86 0.137934 0.120667 25762 151098 -1 2413 22 1704 2806 223267 50806 4.44196 4.44196 -146.742 -4.44196 0 0 787024. 2723.27 0.31 0.08 0.14 -1 -1 0.31 0.02527 0.0223577 140 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 9.95 vpr 64.92 MiB -1 -1 0.16 20468 1 0.03 -1 -1 33624 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66476 31 32 340 275 1 201 91 17 17 289 -1 unnamed_device 26.5 MiB 2.67 1178 17839 5313 10611 1915 64.9 MiB 0.15 0.00 5.241 -151.339 -5.241 5.241 0.92 0.000485306 0.000441947 0.0459976 0.0418424 36 2587 21 6.87369e+06 391268 648988. 2245.63 3.99 0.201547 0.174779 26050 158493 -1 2283 20 1514 2383 165366 37937 4.261 4.261 -144.483 -4.261 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0231214 0.020453 141 43 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 7.40 vpr 65.35 MiB -1 -1 0.15 20704 1 0.03 -1 -1 34000 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66916 30 32 377 310 1 183 94 17 17 289 -1 unnamed_device 26.9 MiB 3.20 1032 10531 2482 6524 1525 65.3 MiB 0.09 0.00 4.69758 -143.214 -4.69758 4.69758 0.90 0.000515593 0.000469424 0.0283257 0.0257929 32 2579 23 6.87369e+06 447163 586450. 2029.24 1.03 0.0956764 0.0837837 25474 144626 -1 2142 21 1344 2275 193292 43208 3.4535 3.4535 -131.105 -3.4535 0 0 744469. 2576.02 0.29 0.07 0.14 -1 -1 0.29 0.0233241 0.0205048 135 78 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 7.41 vpr 64.85 MiB -1 -1 0.15 20352 1 0.03 -1 -1 33672 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66404 32 32 365 294 1 187 85 17 17 289 -1 unnamed_device 26.5 MiB 2.64 1030 11245 3242 7121 882 64.8 MiB 0.10 0.00 4.79284 -145.044 -4.79284 4.79284 0.87 0.000510084 0.000466337 0.032837 0.0300184 34 2708 22 6.87369e+06 293451 618332. 2139.56 1.66 0.146884 0.128623 25762 151098 -1 2211 24 1772 3172 252269 55262 3.84946 3.84946 -137.262 -3.84946 0 0 787024. 2723.27 0.30 0.09 0.14 -1 -1 0.30 0.0261573 0.0230354 132 54 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 8.09 vpr 65.24 MiB -1 -1 0.16 20512 1 0.03 -1 -1 33964 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66804 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 26.9 MiB 3.18 973 10944 3003 6644 1297 65.2 MiB 0.09 0.00 4.08063 -124.263 -4.08063 4.08063 0.92 0.000558358 0.000508298 0.030109 0.0274239 34 2457 23 6.87369e+06 405241 618332. 2139.56 1.69 0.144418 0.125811 25762 151098 -1 2069 23 1652 2711 206508 47762 3.11951 3.11951 -119.044 -3.11951 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0252513 0.0221205 132 79 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 5.46 vpr 64.55 MiB -1 -1 0.12 20460 1 0.03 -1 -1 33716 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66096 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 26.0 MiB 0.76 780 13906 5362 7318 1226 64.5 MiB 0.10 0.00 4.08063 -122.384 -4.08063 4.08063 0.93 0.00038561 0.000352678 0.0329269 0.0300005 34 1855 45 6.87369e+06 237555 618332. 2139.56 1.53 0.129855 0.113385 25762 151098 -1 1545 20 890 1368 99226 22570 2.94401 2.94401 -106.567 -2.94401 0 0 787024. 2723.27 0.32 0.05 0.15 -1 -1 0.32 0.018086 0.0159531 96 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 9.28 vpr 65.25 MiB -1 -1 0.15 20536 1 0.03 -1 -1 33636 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66820 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 26.8 MiB 5.18 1081 9548 2182 6489 877 65.3 MiB 0.08 0.00 4.62608 -140.581 -4.62608 4.62608 0.85 0.00053273 0.000484603 0.0232394 0.0211392 28 2635 30 6.87369e+06 475111 531479. 1839.03 1.10 0.0933675 0.0815094 24610 126494 -1 2394 20 1652 2696 203697 47134 4.0193 4.0193 -140.548 -4.0193 0 0 648988. 2245.63 0.25 0.08 0.11 -1 -1 0.25 0.0237858 0.0209788 137 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 10.08 vpr 65.06 MiB -1 -1 0.15 20392 1 0.03 -1 -1 33868 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66624 32 32 397 314 1 197 85 17 17 289 -1 unnamed_device 26.6 MiB 4.71 1050 13477 3452 8462 1563 65.1 MiB 0.13 0.00 4.60818 -154.696 -4.60818 4.60818 0.92 0.000559627 0.000509273 0.0433323 0.0394866 34 2764 25 6.87369e+06 293451 618332. 2139.56 2.13 0.169146 0.148152 25762 151098 -1 2341 19 1705 2865 213262 48811 3.7531 3.7531 -149.559 -3.7531 0 0 787024. 2723.27 0.31 0.08 0.14 -1 -1 0.31 0.0240206 0.021267 142 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 8.54 vpr 64.79 MiB -1 -1 0.14 20484 1 0.03 -1 -1 33656 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66340 32 32 269 231 1 170 80 17 17 289 -1 unnamed_device 26.3 MiB 3.70 803 10744 3029 6489 1226 64.8 MiB 0.09 0.00 4.47622 -122.656 -4.47622 4.47622 0.91 0.000440161 0.000400585 0.028441 0.0260283 34 2330 21 6.87369e+06 223581 618332. 2139.56 1.70 0.120409 0.105149 25762 151098 -1 1874 19 1142 1513 111450 26852 3.4908 3.4908 -118.606 -3.4908 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0179319 0.0158883 106 26 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 4.84 vpr 64.72 MiB -1 -1 0.14 20424 1 0.03 -1 -1 33916 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66272 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 26.1 MiB 0.82 704 7103 1505 5021 577 64.7 MiB 0.06 0.00 4.06963 -117.109 -4.06963 4.06963 0.93 0.000423064 0.000386493 0.0176076 0.0160998 30 1825 19 6.87369e+06 279477 556674. 1926.21 0.94 0.066098 0.0577397 25186 138497 -1 1577 16 870 1445 78907 18836 2.91301 2.91301 -105.151 -2.91301 0 0 706193. 2443.58 0.28 0.04 0.14 -1 -1 0.28 0.0148382 0.0131602 99 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 8.25 vpr 65.34 MiB -1 -1 0.14 20476 1 0.03 -1 -1 33812 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66908 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 26.9 MiB 3.33 1122 16407 5100 9312 1995 65.3 MiB 0.15 0.00 4.76368 -149.576 -4.76368 4.76368 0.87 0.000506264 0.000462711 0.044131 0.0403742 34 3132 23 6.87369e+06 321398 618332. 2139.56 1.81 0.163202 0.144159 25762 151098 -1 2492 20 1868 2567 249452 54373 4.30566 4.30566 -151.517 -4.30566 0 0 787024. 2723.27 0.30 0.08 0.14 -1 -1 0.30 0.0231735 0.0205278 145 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 10.34 vpr 65.04 MiB -1 -1 0.16 20532 1 0.03 -1 -1 33624 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66604 32 32 356 289 1 202 91 17 17 289 -1 unnamed_device 26.6 MiB 3.15 1027 10087 2665 7077 345 65.0 MiB 0.09 0.00 5.28228 -152.543 -5.28228 5.28228 0.91 0.000499252 0.000455204 0.0272394 0.0248898 36 2623 39 6.87369e+06 377294 648988. 2245.63 4.00 0.196689 0.170004 26050 158493 -1 2094 19 1245 1937 117668 28657 4.6349 4.6349 -144.976 -4.6349 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0217863 0.0192983 142 53 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 9.12 vpr 65.37 MiB -1 -1 0.14 20448 1 0.03 -1 -1 33416 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66936 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 26.9 MiB 0.95 1027 19820 5642 10737 3441 65.4 MiB 0.17 0.00 5.45503 -148.146 -5.45503 5.45503 0.93 0.000477641 0.000433255 0.0463213 0.0418618 30 3056 37 6.87369e+06 503058 556674. 1926.21 4.91 0.216999 0.190163 25186 138497 -1 2126 21 1515 2796 169916 40317 4.54885 4.54885 -143.677 -4.54885 0 0 706193. 2443.58 0.29 0.07 0.13 -1 -1 0.29 0.024568 0.021655 157 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 7.03 vpr 65.03 MiB -1 -1 0.16 20228 1 0.03 -1 -1 33520 -1 -1 34 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 26.5 MiB 2.84 803 13893 3888 7187 2818 65.0 MiB 0.10 0.00 3.64131 -107.005 -3.64131 3.64131 0.91 0.000471621 0.000430634 0.0313976 0.0285984 32 2150 23 6.87369e+06 475111 586450. 2029.24 1.03 0.0930692 0.0817272 25474 144626 -1 1779 22 1365 2449 186602 43150 2.93196 2.93196 -102.245 -2.93196 0 0 744469. 2576.02 0.30 0.07 0.14 -1 -1 0.30 0.0221573 0.0195103 119 47 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 5.09 vpr 64.75 MiB -1 -1 0.14 20288 1 0.03 -1 -1 34252 -1 -1 21 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66308 27 32 255 219 1 139 80 17 17 289 -1 unnamed_device 26.2 MiB 1.15 507 7132 1637 4881 614 64.8 MiB 0.05 0.00 3.6605 -96.1635 -3.6605 3.6605 0.88 0.000423629 0.000388144 0.017737 0.0161961 30 1496 20 6.87369e+06 293451 556674. 1926.21 0.97 0.0670414 0.0586898 25186 138497 -1 1196 17 785 1135 70779 17542 2.76101 2.76101 -92.6515 -2.76101 0 0 706193. 2443.58 0.28 0.04 0.13 -1 -1 0.28 0.0152726 0.0134699 96 26 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 10.81 vpr 65.34 MiB -1 -1 0.17 20740 1 0.03 -1 -1 33828 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66904 32 32 421 327 1 233 88 17 17 289 -1 unnamed_device 26.6 MiB 4.31 1378 10228 2746 6595 887 65.3 MiB 0.11 0.00 4.35815 -140.01 -4.35815 4.35815 0.92 0.000617252 0.000556354 0.034008 0.0310184 34 3944 37 6.87369e+06 335372 618332. 2139.56 3.19 0.185411 0.162321 25762 151098 -1 3174 19 1978 3279 270018 60360 4.54246 4.54246 -148.713 -4.54246 0 0 787024. 2723.27 0.32 0.09 0.15 -1 -1 0.32 0.0258856 0.0229494 165 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 12.01 vpr 65.11 MiB -1 -1 0.16 20612 1 0.03 -1 -1 33868 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66676 31 32 365 296 1 203 85 17 17 289 -1 unnamed_device 26.7 MiB 4.79 1036 15709 5736 7909 2064 65.1 MiB 0.13 0.00 5.60997 -168.26 -5.60997 5.60997 0.88 0.00053792 0.000492646 0.0453279 0.0414375 34 2870 35 6.87369e+06 307425 618332. 2139.56 4.07 0.248131 0.217332 25762 151098 -1 2240 23 2002 3041 253136 56900 4.5866 4.5866 -154.916 -4.5866 0 0 787024. 2723.27 0.30 0.09 0.14 -1 -1 0.30 0.0259799 0.0230428 139 60 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 10.30 vpr 65.06 MiB -1 -1 0.17 20712 1 0.03 -1 -1 33888 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66620 32 32 331 280 1 185 82 17 17 289 -1 unnamed_device 26.5 MiB 5.23 954 12542 3477 7836 1229 65.1 MiB 0.10 0.00 4.34735 -144.276 -4.34735 4.34735 0.91 0.000517465 0.000463488 0.0363612 0.0331871 34 2396 24 6.87369e+06 251529 618332. 2139.56 1.87 0.143117 0.125198 25762 151098 -1 1977 20 1353 1987 138164 34066 3.5981 3.5981 -140.671 -3.5981 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.021548 0.0189777 118 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 5.90 vpr 65.14 MiB -1 -1 0.16 20228 1 0.03 -1 -1 33808 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66708 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 26.5 MiB 1.40 986 18523 6141 9875 2507 65.1 MiB 0.14 0.00 5.03998 -136.555 -5.03998 5.03998 0.91 0.000479219 0.000431114 0.0421728 0.0382972 28 2617 26 6.87369e+06 461137 531479. 1839.03 1.33 0.110317 0.0972473 24610 126494 -1 2265 23 1411 2278 185501 41444 3.8566 3.8566 -128.643 -3.8566 0 0 648988. 2245.63 0.26 0.07 0.12 -1 -1 0.26 0.0230841 0.0202546 129 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 6.46 vpr 65.21 MiB -1 -1 0.15 20912 1 0.03 -1 -1 33748 -1 -1 34 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66780 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 26.8 MiB 2.23 1064 18301 5445 10263 2593 65.2 MiB 0.15 0.00 4.47348 -130.92 -4.47348 4.47348 0.91 0.000522044 0.000475222 0.0464527 0.0423055 32 2670 22 6.87369e+06 475111 586450. 2029.24 1.03 0.115903 0.102282 25474 144626 -1 2206 21 1472 2558 198438 45014 3.63536 3.63536 -124.973 -3.63536 0 0 744469. 2576.02 0.30 0.08 0.14 -1 -1 0.30 0.0249785 0.0220724 149 46 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 7.01 vpr 65.12 MiB -1 -1 0.14 20616 1 0.03 -1 -1 33544 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 26.5 MiB 2.34 1005 13953 3900 8706 1347 65.1 MiB 0.11 0.00 3.71604 -108.811 -3.71604 3.71604 0.90 0.000476816 0.000435804 0.0335909 0.0306074 34 2309 22 6.87369e+06 433189 618332. 2139.56 1.56 0.131513 0.114303 25762 151098 -1 1950 17 1067 1860 124922 29376 2.93031 2.93031 -104.331 -2.93031 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0184454 0.0163147 124 46 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 9.57 vpr 65.42 MiB -1 -1 0.14 20892 1 0.03 -1 -1 33760 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66992 32 32 350 275 1 216 86 17 17 289 -1 unnamed_device 27.0 MiB 3.70 1158 14261 4788 7245 2228 65.4 MiB 0.13 0.00 4.84864 -152.871 -4.84864 4.84864 0.88 0.000507834 0.000464381 0.040415 0.0368589 34 3462 28 6.87369e+06 307425 618332. 2139.56 2.74 0.174895 0.154362 25762 151098 -1 2628 23 2062 3235 287780 62306 4.17495 4.17495 -148.162 -4.17495 0 0 787024. 2723.27 0.30 0.09 0.14 -1 -1 0.30 0.026059 0.0229998 148 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 8.07 vpr 65.23 MiB -1 -1 0.15 20472 1 0.03 -1 -1 33760 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66800 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 26.8 MiB 3.74 1138 19124 5521 11431 2172 65.2 MiB 0.16 0.00 4.13563 -138.632 -4.13563 4.13563 0.93 0.000536036 0.000486778 0.0470678 0.0427937 28 2715 22 6.87369e+06 503058 531479. 1839.03 1.09 0.122852 0.10862 24610 126494 -1 2408 19 1498 2419 164089 37336 3.12431 3.12431 -127.083 -3.12431 0 0 648988. 2245.63 0.27 0.07 0.12 -1 -1 0.27 0.0228886 0.0202185 147 59 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 6.42 vpr 64.42 MiB -1 -1 0.15 20392 1 0.03 -1 -1 33848 -1 -1 19 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65968 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 26.1 MiB 2.27 666 12120 4433 5222 2465 64.4 MiB 0.09 0.00 3.97634 -118.279 -3.97634 3.97634 0.93 0.000408371 0.000372081 0.0310185 0.0283063 32 1713 25 6.87369e+06 265503 586450. 2029.24 0.99 0.0851843 0.0750807 25474 144626 -1 1450 16 1051 1510 102810 24073 2.88196 2.88196 -105.209 -2.88196 0 0 744469. 2576.02 0.29 0.05 0.14 -1 -1 0.29 0.0155006 0.0137312 101 28 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 6.13 vpr 64.73 MiB -1 -1 0.15 20400 1 0.03 -1 -1 33752 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66284 32 32 310 266 1 176 81 17 17 289 -1 unnamed_device 26.2 MiB 1.94 954 14256 4666 7594 1996 64.7 MiB 0.11 0.00 4.32352 -124.508 -4.32352 4.32352 0.94 0.000447837 0.000407528 0.0385335 0.0351138 30 2387 23 6.87369e+06 237555 556674. 1926.21 1.02 0.100637 0.0887454 25186 138497 -1 2015 15 856 1149 82635 18383 3.26184 3.26184 -123.375 -3.26184 0 0 706193. 2443.58 0.29 0.04 0.13 -1 -1 0.29 0.0168239 0.0149811 112 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 8.36 vpr 65.12 MiB -1 -1 0.15 20248 1 0.03 -1 -1 33756 -1 -1 39 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 26.7 MiB 2.02 1008 17238 4626 10206 2406 65.1 MiB 0.13 0.00 4.58512 -131.297 -4.58512 4.58512 0.91 0.000478898 0.000438114 0.0367055 0.0334029 28 2463 22 6.87369e+06 544980 531479. 1839.03 3.12 0.169915 0.147585 24610 126494 -1 2321 20 1520 2685 209113 46179 4.2616 4.2616 -136.339 -4.2616 0 0 648988. 2245.63 0.26 0.07 0.12 -1 -1 0.26 0.0217781 0.0191996 135 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 11.07 vpr 64.94 MiB -1 -1 0.15 20224 1 0.03 -1 -1 33812 -1 -1 19 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66496 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 26.6 MiB 3.92 766 12464 3650 7053 1761 64.9 MiB 0.11 0.00 4.72278 -121.674 -4.72278 4.72278 0.92 0.000405268 0.000369588 0.0338752 0.0311856 36 2048 24 6.87369e+06 265503 648988. 2245.63 3.94 0.15965 0.138695 26050 158493 -1 1693 19 1092 1446 93186 24458 3.45685 3.45685 -110.754 -3.45685 0 0 828058. 2865.25 0.33 0.05 0.16 -1 -1 0.33 0.0177524 0.0156793 107 25 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 8.10 vpr 64.71 MiB -1 -1 0.13 20196 1 0.03 -1 -1 34000 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66268 32 32 278 238 1 158 79 17 17 289 -1 unnamed_device 26.3 MiB 3.62 839 11909 3234 7671 1004 64.7 MiB 0.09 0.00 4.09853 -129.483 -4.09853 4.09853 0.87 0.000404786 0.000369967 0.0309203 0.0282532 34 2157 23 6.87369e+06 209608 618332. 2139.56 1.48 0.120398 0.105443 25762 151098 -1 1820 21 1422 2436 176587 40630 2.89096 2.89096 -115.541 -2.89096 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0198265 0.0175159 101 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 8.91 vpr 65.43 MiB -1 -1 0.16 20620 1 0.03 -1 -1 33728 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66996 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 26.9 MiB 3.31 942 11236 2692 7798 746 65.4 MiB 0.11 0.00 3.93572 -125.697 -3.93572 3.93572 0.92 0.000549085 0.000500069 0.0287983 0.0261391 30 2084 23 6.87369e+06 517032 556674. 1926.21 2.43 0.157035 0.135452 25186 138497 -1 1755 22 1427 2345 123843 30179 2.85066 2.85066 -111.306 -2.85066 0 0 706193. 2443.58 0.27 0.06 0.13 -1 -1 0.27 0.0219725 0.0192946 141 60 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 8.01 vpr 64.91 MiB -1 -1 0.15 20120 1 0.03 -1 -1 34004 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 31 32 265 230 1 169 80 17 17 289 -1 unnamed_device 26.5 MiB 3.30 854 11604 2702 8073 829 64.9 MiB 0.08 0.00 3.71466 -115.66 -3.71466 3.71466 0.94 0.000395842 0.000360367 0.0290258 0.0265034 34 2121 22 6.87369e+06 237555 618332. 2139.56 1.51 0.116899 0.102067 25762 151098 -1 1793 24 1269 1863 147188 34139 3.22491 3.22491 -116.376 -3.22491 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.021203 0.018606 105 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 9.44 vpr 65.14 MiB -1 -1 0.16 20460 1 0.03 -1 -1 33728 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66708 32 32 349 286 1 177 95 17 17 289 -1 unnamed_device 26.8 MiB 3.43 1000 15215 3699 9919 1597 65.1 MiB 0.12 0.00 3.6733 -115.913 -3.6733 3.6733 0.87 0.000493305 0.000451208 0.0362932 0.0330658 28 2463 22 6.87369e+06 433189 531479. 1839.03 2.99 0.182795 0.159877 24610 126494 -1 2134 17 1072 1687 130609 29568 3.23291 3.23291 -117.711 -3.23291 0 0 648988. 2245.63 0.26 0.06 0.11 -1 -1 0.26 0.0202833 0.0180587 129 54 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 8.50 vpr 65.42 MiB -1 -1 0.17 20468 1 0.03 -1 -1 33684 -1 -1 32 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66988 31 32 396 325 1 185 95 17 17 289 -1 unnamed_device 27.0 MiB 3.99 1013 12839 3510 8051 1278 65.4 MiB 0.11 0.00 3.7214 -127.022 -3.7214 3.7214 0.91 0.000531639 0.000485402 0.0340412 0.0310095 26 2613 33 6.87369e+06 447163 503264. 1741.40 1.34 0.117896 0.103426 24322 120374 -1 2318 22 1836 2739 240609 53381 3.49736 3.49736 -136.167 -3.49736 0 0 618332. 2139.56 0.26 0.08 0.12 -1 -1 0.26 0.0258841 0.0227059 137 87 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 7.48 vpr 64.54 MiB -1 -1 0.15 20304 1 0.03 -1 -1 33700 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66088 32 32 303 262 1 154 80 17 17 289 -1 unnamed_device 26.2 MiB 2.78 868 13324 3871 8104 1349 64.5 MiB 0.10 0.00 3.6034 -114.008 -3.6034 3.6034 0.91 0.000458747 0.000419539 0.0366337 0.0334452 34 2053 23 6.87369e+06 223581 618332. 2139.56 1.52 0.132574 0.115981 25762 151098 -1 1867 20 1096 1750 148394 33483 2.93031 2.93031 -111.865 -2.93031 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0205729 0.0181829 99 54 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 6.59 vpr 64.98 MiB -1 -1 0.16 20300 1 0.03 -1 -1 33712 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 26.5 MiB 1.81 974 10050 2495 6517 1038 65.0 MiB 0.09 0.00 4.16989 -130.796 -4.16989 4.16989 0.91 0.000437643 0.00040023 0.0272002 0.0247303 34 2564 21 6.87369e+06 251529 618332. 2139.56 1.63 0.117592 0.102199 25762 151098 -1 2158 22 1584 2433 195283 44249 3.42321 3.42321 -125.2 -3.42321 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0207678 0.0182692 114 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 7.97 vpr 65.19 MiB -1 -1 0.16 20168 1 0.03 -1 -1 33876 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66756 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 26.8 MiB 3.16 1073 14072 3847 8138 2087 65.2 MiB 0.11 0.00 4.82103 -137.111 -4.82103 4.82103 0.90 0.000477174 0.000435917 0.0376543 0.0343938 34 2766 23 6.87369e+06 307425 618332. 2139.56 1.60 0.137189 0.119797 25762 151098 -1 2315 22 1603 2279 167129 38418 3.85576 3.85576 -132.18 -3.85576 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0225401 0.0198227 132 27 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 7.61 vpr 65.05 MiB -1 -1 0.15 20708 1 0.03 -1 -1 33464 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66616 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 26.5 MiB 3.12 938 11346 3139 7252 955 65.1 MiB 0.09 0.00 4.10263 -113.928 -4.10263 4.10263 0.87 0.000467598 0.00042873 0.0279375 0.025573 34 2292 21 6.87369e+06 405241 618332. 2139.56 1.46 0.123418 0.107763 25762 151098 -1 1865 18 985 1663 101328 25310 3.08831 3.08831 -105.918 -3.08831 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0188781 0.0166375 123 49 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 8.48 vpr 65.46 MiB -1 -1 0.16 20780 1 0.03 -1 -1 33632 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67028 32 32 393 312 1 215 86 17 17 289 -1 unnamed_device 27.0 MiB 3.37 1137 15773 5092 8347 2334 65.5 MiB 0.15 0.00 5.16181 -165.054 -5.16181 5.16181 0.87 0.000551003 0.000495389 0.0471888 0.0427977 34 3224 24 6.87369e+06 307425 618332. 2139.56 1.95 0.175105 0.153937 25762 151098 -1 2506 23 1972 3000 246393 55956 4.23626 4.23626 -156.047 -4.23626 0 0 787024. 2723.27 0.30 0.09 0.14 -1 -1 0.30 0.0267467 0.0235845 151 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 5.21 vpr 64.46 MiB -1 -1 0.15 20244 1 0.03 -1 -1 33680 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66008 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 25.9 MiB 0.78 812 10400 2700 6281 1419 64.5 MiB 0.07 0.00 3.6213 -110.383 -3.6213 3.6213 0.88 0.000372362 0.000341788 0.0241452 0.0220839 34 1771 19 6.87369e+06 237555 618332. 2139.56 1.40 0.0992655 0.0864373 25762 151098 -1 1572 19 861 1344 90065 21187 2.78501 2.78501 -102.459 -2.78501 0 0 787024. 2723.27 0.30 0.04 0.14 -1 -1 0.30 0.015821 0.0140148 92 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 6.58 vpr 65.59 MiB -1 -1 0.16 20628 1 0.03 -1 -1 33688 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67168 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 27.1 MiB 2.30 1097 18567 5571 11084 1912 65.6 MiB 0.15 0.00 4.4584 -148.753 -4.4584 4.4584 0.91 0.000575565 0.000517558 0.0491253 0.0446951 30 2603 24 6.87369e+06 489084 556674. 1926.21 1.08 0.124944 0.109987 25186 138497 -1 2091 22 1434 2068 140013 31232 3.72316 3.72316 -139.913 -3.72316 0 0 706193. 2443.58 0.28 0.07 0.13 -1 -1 0.28 0.0259083 0.0228355 145 87 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 10.00 vpr 65.04 MiB -1 -1 0.15 20804 1 0.03 -1 -1 33604 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66596 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 26.5 MiB 5.21 823 13152 5512 7421 219 65.0 MiB 0.11 0.00 3.7595 -132.319 -3.7595 3.7595 0.90 0.000513791 0.000468889 0.0417603 0.0380815 34 2123 27 6.87369e+06 223581 618332. 2139.56 1.61 0.151394 0.132011 25762 151098 -1 1805 19 1496 2160 182254 40246 3.05731 3.05731 -125.203 -3.05731 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0212228 0.0187184 114 93 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 8.25 vpr 64.95 MiB -1 -1 0.16 20472 1 0.03 -1 -1 33616 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 32 32 360 293 1 182 96 17 17 289 -1 unnamed_device 26.6 MiB 3.45 1010 10827 2581 6963 1283 65.0 MiB 0.10 0.00 4.11773 -126.026 -4.11773 4.11773 0.92 0.000521868 0.000467758 0.0282521 0.0257437 34 2332 20 6.87369e+06 447163 618332. 2139.56 1.59 0.1381 0.120602 25762 151098 -1 1913 20 1166 1887 120654 28634 2.75641 2.75641 -108.206 -2.75641 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0232081 0.0205076 134 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 9.99 vpr 65.42 MiB -1 -1 0.17 20528 1 0.03 -1 -1 33784 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66992 32 32 396 299 1 240 89 17 17 289 -1 unnamed_device 26.9 MiB 4.82 1280 16127 4711 8958 2458 65.4 MiB 0.16 0.00 5.89191 -180.703 -5.89191 5.89191 0.90 0.00055824 0.00050839 0.048551 0.0443055 34 3352 23 6.87369e+06 349346 618332. 2139.56 1.87 0.176558 0.154968 25762 151098 -1 2806 23 2166 3316 300140 64406 5.0795 5.0795 -171.863 -5.0795 0 0 787024. 2723.27 0.31 0.10 0.15 -1 -1 0.31 0.0288812 0.0256148 171 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 5.51 vpr 64.46 MiB -1 -1 0.14 20628 1 0.03 -1 -1 33840 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66004 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 26.0 MiB 1.52 668 8716 2078 6018 620 64.5 MiB 0.06 0.00 3.01966 -95.583 -3.01966 3.01966 0.91 0.000347311 0.000316669 0.0237263 0.0219344 30 1784 17 6.87369e+06 209608 556674. 1926.21 0.94 0.0667109 0.0588246 25186 138497 -1 1450 18 757 999 78556 18489 2.57366 2.57366 -100.628 -2.57366 0 0 706193. 2443.58 0.28 0.04 0.13 -1 -1 0.28 0.0145612 0.0128461 81 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 5.69 vpr 64.55 MiB -1 -1 0.14 20560 1 0.03 -1 -1 33900 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66100 30 32 286 239 1 151 81 17 17 289 -1 unnamed_device 26.2 MiB 1.27 599 7081 1635 4909 537 64.6 MiB 0.06 0.00 4.05453 -121.132 -4.05453 4.05453 0.87 0.000434546 0.000392265 0.0186563 0.0170678 34 1802 23 6.87369e+06 265503 618332. 2139.56 1.43 0.104988 0.0906821 25762 151098 -1 1344 22 1125 1743 107136 27099 2.90001 2.90001 -110.666 -2.90001 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0198256 0.0174491 105 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 5.46 vpr 64.79 MiB -1 -1 0.15 20132 1 0.03 -1 -1 33816 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 32 32 296 247 1 158 87 17 17 289 -1 unnamed_device 26.3 MiB 1.23 913 15639 4952 8936 1751 64.8 MiB 0.12 0.00 3.6323 -121.89 -3.6323 3.6323 0.91 0.000444903 0.00040235 0.038183 0.0347282 32 2483 25 6.87369e+06 321398 586450. 2029.24 1.05 0.0967275 0.0851387 25474 144626 -1 2082 23 1398 2534 242205 51921 3.19991 3.19991 -122.936 -3.19991 0 0 744469. 2576.02 0.29 0.08 0.14 -1 -1 0.29 0.0213071 0.0186433 109 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 4.86 vpr 64.50 MiB -1 -1 0.15 20232 1 0.03 -1 -1 33676 -1 -1 29 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66052 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 26.0 MiB 0.91 516 9536 2821 4714 2001 64.5 MiB 0.06 0.00 3.5473 -82.6349 -3.5473 3.5473 0.90 0.000346225 0.000316471 0.0191146 0.0174719 28 1443 23 6.87369e+06 405241 531479. 1839.03 0.93 0.0640127 0.0558886 24610 126494 -1 1276 16 742 1274 86553 21057 3.05256 3.05256 -82.6649 -3.05256 0 0 648988. 2245.63 0.26 0.04 0.13 -1 -1 0.26 0.0128296 0.0112984 87 19 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 7.87 vpr 64.66 MiB -1 -1 0.15 20348 1 0.03 -1 -1 33876 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66208 32 32 376 307 1 193 84 17 17 289 -1 unnamed_device 26.3 MiB 2.97 974 10332 2610 6542 1180 64.7 MiB 0.10 0.00 4.3434 -128.294 -4.3434 4.3434 0.87 0.000517589 0.000472175 0.031418 0.028699 34 2904 44 6.87369e+06 279477 618332. 2139.56 1.81 0.167174 0.14616 25762 151098 -1 2481 22 1620 2847 226586 52091 3.79676 3.79676 -132.011 -3.79676 0 0 787024. 2723.27 0.30 0.08 0.14 -1 -1 0.30 0.0246473 0.0216764 133 69 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 7.86 vpr 64.97 MiB -1 -1 0.17 20756 1 0.03 -1 -1 33992 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66528 31 32 409 331 1 193 94 17 17 289 -1 unnamed_device 26.5 MiB 3.60 978 9679 2433 6610 636 65.0 MiB 0.10 0.00 4.12463 -132.597 -4.12463 4.12463 0.90 0.000556611 0.000506819 0.0272673 0.0248424 28 2440 23 6.87369e+06 433189 531479. 1839.03 1.14 0.101903 0.0892661 24610 126494 -1 2090 22 1828 2808 189300 45189 3.19976 3.19976 -123.169 -3.19976 0 0 648988. 2245.63 0.26 0.07 0.11 -1 -1 0.26 0.0259817 0.0228819 143 86 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 7.91 vpr 64.38 MiB -1 -1 0.14 20728 1 0.03 -1 -1 33900 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65928 32 32 354 285 1 223 88 17 17 289 -1 unnamed_device 26.1 MiB 2.90 1101 11203 3178 6921 1104 64.4 MiB 0.11 0.00 5.42457 -156.316 -5.42457 5.42457 0.88 0.000515179 0.000471352 0.0314436 0.0287064 34 2918 37 6.89349e+06 338252 618332. 2139.56 1.92 0.163024 0.142749 25762 151098 -1 2330 21 1708 2520 163764 40336 4.34515 4.34515 -149.16 -4.34515 0 0 787024. 2723.27 0.31 0.07 0.14 -1 -1 0.31 0.0234365 0.0207034 149 47 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 7.13 vpr 64.71 MiB -1 -1 0.18 20428 1 0.03 -1 -1 33704 -1 -1 26 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66264 30 32 363 293 1 228 88 17 17 289 -1 unnamed_device 26.3 MiB 1.94 1174 12178 3196 7626 1356 64.7 MiB 0.12 0.00 4.90208 -149.95 -4.90208 4.90208 0.91 0.000535788 0.000489745 0.0346287 0.0315505 34 3129 45 6.89349e+06 366440 618332. 2139.56 1.92 0.168028 0.146288 25762 151098 -1 2525 20 1896 2817 195635 44278 4.54103 4.54103 -152.393 -4.54103 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0235111 0.0208631 156 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 7.10 vpr 64.51 MiB -1 -1 0.15 20388 1 0.03 -1 -1 34004 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66060 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 26.1 MiB 2.24 1048 13663 4160 7949 1554 64.5 MiB 0.11 0.00 4.2044 -120.612 -4.2044 4.2044 0.91 0.00045288 0.000413873 0.0354413 0.0323118 34 2461 28 6.89349e+06 295971 618332. 2139.56 1.69 0.140671 0.123026 25762 151098 -1 2068 17 1174 1629 125136 28487 3.6043 3.6043 -118.534 -3.6043 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0183595 0.01629 125 26 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 6.80 vpr 64.91 MiB -1 -1 0.14 20116 1 0.03 -1 -1 33848 -1 -1 24 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 29 32 308 248 1 195 85 17 17 289 -1 unnamed_device 26.4 MiB 2.13 1070 14593 4351 8219 2023 64.9 MiB 0.12 0.00 4.83618 -131.951 -4.83618 4.83618 0.88 0.000440922 0.000403078 0.0368247 0.0335981 34 2512 27 6.89349e+06 338252 618332. 2139.56 1.58 0.139474 0.122176 25762 151098 -1 2085 21 1310 2112 150521 33470 3.83566 3.83566 -123.468 -3.83566 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0209886 0.0185354 134 25 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 7.70 vpr 64.99 MiB -1 -1 0.15 20268 1 0.03 -1 -1 33412 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 336 268 1 212 87 17 17 289 -1 unnamed_device 26.5 MiB 1.72 1121 10839 3086 5720 2033 65.0 MiB 0.11 0.00 5.28221 -151.791 -5.28221 5.28221 0.92 0.000488934 0.000446083 0.0297489 0.0271673 36 3048 26 6.89349e+06 324158 648988. 2245.63 2.73 0.144367 0.12558 26050 158493 -1 2547 20 1919 3437 271377 58237 4.29409 4.29409 -144.18 -4.29409 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.0217688 0.0192005 142 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 7.53 vpr 64.85 MiB -1 -1 0.15 20736 1 0.03 -1 -1 33892 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66408 32 32 366 295 1 231 97 17 17 289 -1 unnamed_device 26.4 MiB 2.38 1263 20077 7001 10670 2406 64.9 MiB 0.17 0.00 3.92406 -127.128 -3.92406 3.92406 0.80 0.000523393 0.000476156 0.0497989 0.0451948 34 3484 24 6.89349e+06 465097 618332. 2139.56 2.00 0.166157 0.145116 25762 151098 -1 2789 22 1642 2691 272873 55199 3.27965 3.27965 -126.713 -3.27965 0 0 787024. 2723.27 0.32 0.09 0.15 -1 -1 0.32 0.025058 0.0219494 162 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 6.41 vpr 64.64 MiB -1 -1 0.15 20164 1 0.03 -1 -1 34264 -1 -1 21 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66188 27 32 259 221 1 160 80 17 17 289 -1 unnamed_device 26.1 MiB 1.54 795 13496 4096 7659 1741 64.6 MiB 0.10 0.00 4.14623 -113.724 -4.14623 4.14623 0.91 0.000389566 0.000354356 0.0334058 0.0305084 34 1922 21 6.89349e+06 295971 618332. 2139.56 1.52 0.11658 0.101967 25762 151098 -1 1665 19 1209 1767 145110 32540 3.09466 3.09466 -107.031 -3.09466 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0164836 0.0145664 107 26 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 5.23 vpr 64.69 MiB -1 -1 0.15 20176 1 0.03 -1 -1 33848 -1 -1 32 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66244 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 26.2 MiB 0.89 908 11759 3095 6971 1693 64.7 MiB 0.08 0.00 3.40307 -102.549 -3.40307 3.40307 0.90 0.000397526 0.000360928 0.0239586 0.0217081 26 2334 21 6.89349e+06 451003 503264. 1741.40 1.14 0.0810737 0.0710986 24322 120374 -1 2119 20 1170 2104 171783 38298 2.69355 2.69355 -101.086 -2.69355 0 0 618332. 2139.56 0.25 0.04 0.12 -1 -1 0.25 0.0117715 0.010363 119 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 7.09 vpr 64.59 MiB -1 -1 0.16 20288 1 0.03 -1 -1 33924 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66140 31 32 317 271 1 207 83 17 17 289 -1 unnamed_device 26.1 MiB 2.02 1042 10703 3845 4978 1880 64.6 MiB 0.09 0.00 3.68945 -124.167 -3.68945 3.68945 0.89 0.000461732 0.000419103 0.0291141 0.0265369 34 2732 28 6.89349e+06 281877 618332. 2139.56 1.92 0.110672 0.0965447 25762 151098 -1 2160 20 1579 2113 170875 38070 2.94946 2.94946 -119.188 -2.94946 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0202018 0.0178049 130 60 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 7.12 vpr 64.90 MiB -1 -1 0.15 20264 1 0.03 -1 -1 33984 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66456 32 32 298 248 1 185 82 17 17 289 -1 unnamed_device 26.4 MiB 2.36 928 7914 1841 5211 862 64.9 MiB 0.08 0.00 4.05148 -133.476 -4.05148 4.05148 0.88 0.000450551 0.000412523 0.0215894 0.0198075 34 2363 46 6.89349e+06 253689 618332. 2139.56 1.74 0.138982 0.121392 25762 151098 -1 1967 18 1068 1435 118944 26570 3.2697 3.2697 -123.949 -3.2697 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0186312 0.0165758 120 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 7.32 vpr 64.89 MiB -1 -1 0.16 20384 1 0.03 -1 -1 33840 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66444 30 32 303 262 1 191 83 17 17 289 -1 unnamed_device 26.4 MiB 2.45 867 6563 1487 4637 439 64.9 MiB 0.06 0.00 4.47797 -127.666 -4.47797 4.47797 0.91 0.000415553 0.000363314 0.0173238 0.0157566 34 2468 30 6.89349e+06 295971 618332. 2139.56 1.76 0.119436 0.103106 25762 151098 -1 1954 18 1246 1652 117850 27065 3.58625 3.58625 -124.145 -3.58625 0 0 787024. 2723.27 0.32 0.05 0.14 -1 -1 0.32 0.0179167 0.0157826 124 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 6.57 vpr 64.80 MiB -1 -1 0.13 20616 1 0.03 -1 -1 33672 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66356 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 26.4 MiB 1.77 849 7781 1935 5506 340 64.8 MiB 0.07 0.00 3.6807 -111.961 -3.6807 3.6807 0.87 0.000403207 0.00036767 0.0201238 0.0183877 34 2156 24 6.89349e+06 239595 618332. 2139.56 1.81 0.116169 0.101098 25762 151098 -1 1837 18 1097 1520 113918 26887 3.08901 3.08901 -112.434 -3.08901 0 0 787024. 2723.27 0.32 0.05 0.14 -1 -1 0.32 0.0175541 0.0155241 108 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 7.78 vpr 64.88 MiB -1 -1 0.15 20688 1 0.03 -1 -1 33756 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66432 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 26.3 MiB 2.46 1060 16407 4994 8930 2483 64.9 MiB 0.14 0.00 4.09068 -131.143 -4.09068 4.09068 0.92 0.000522804 0.00047528 0.0459086 0.0418864 34 2942 46 6.89349e+06 324158 618332. 2139.56 2.05 0.179022 0.156918 25762 151098 -1 2312 19 1654 2518 184499 42386 3.22401 3.22401 -123.401 -3.22401 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0221056 0.0196319 143 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 9.49 vpr 65.14 MiB -1 -1 0.16 20628 1 0.03 -1 -1 33628 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66700 32 32 363 295 1 232 88 17 17 289 -1 unnamed_device 26.8 MiB 2.24 1222 15298 4935 8519 1844 65.1 MiB 0.14 0.00 5.57191 -161.898 -5.57191 5.57191 0.90 0.00050621 0.000460503 0.042297 0.0385646 44 2654 22 6.89349e+06 338252 787024. 2723.27 3.90 0.204456 0.177606 27778 195446 -1 2226 18 1228 1749 116448 26023 4.17965 4.17965 -143.988 -4.17965 0 0 997811. 3452.63 0.38 0.06 0.19 -1 -1 0.38 0.0213578 0.0189539 153 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 6.62 vpr 64.67 MiB -1 -1 0.15 20296 1 0.03 -1 -1 33392 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66224 29 32 248 215 1 160 79 17 17 289 -1 unnamed_device 26.1 MiB 2.13 847 11909 3522 6229 2158 64.7 MiB 0.08 0.00 3.19582 -98.7926 -3.19582 3.19582 0.88 0.000369834 0.000338146 0.028192 0.0257899 34 1978 21 6.89349e+06 253689 618332. 2139.56 1.50 0.108576 0.0948409 25762 151098 -1 1713 20 983 1407 102917 23465 2.73986 2.73986 -96.8501 -2.73986 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0167047 0.0147173 102 21 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 10.14 vpr 65.30 MiB -1 -1 0.16 20596 1 0.03 -1 -1 33896 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66872 32 32 370 297 1 234 88 17 17 289 -1 unnamed_device 26.9 MiB 2.60 1270 15103 4761 8086 2256 65.3 MiB 0.13 0.00 4.1162 -136.486 -4.1162 4.1162 0.90 0.000539052 0.00048468 0.0422336 0.0384289 38 3035 24 6.89349e+06 338252 678818. 2348.85 4.26 0.213084 0.18531 26626 170182 -1 2635 18 1851 2943 211103 45834 3.459 3.459 -129.009 -3.459 0 0 902133. 3121.57 0.34 0.07 0.17 -1 -1 0.34 0.0217922 0.0192599 159 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 9.59 vpr 64.84 MiB -1 -1 0.16 20788 1 0.03 -1 -1 34056 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66400 32 32 338 269 1 205 86 17 17 289 -1 unnamed_device 26.3 MiB 2.36 1061 15017 4935 7452 2630 64.8 MiB 0.12 0.00 4.12104 -133.123 -4.12104 4.12104 0.90 0.000498366 0.000456422 0.0410704 0.0375113 36 2514 26 6.89349e+06 310065 648988. 2245.63 4.01 0.189552 0.16462 26050 158493 -1 2201 18 1382 2001 156507 34318 3.04636 3.04636 -120.145 -3.04636 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0206654 0.0183065 142 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 7.70 vpr 65.00 MiB -1 -1 0.14 20208 1 0.03 -1 -1 33436 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66560 32 32 323 276 1 215 85 17 17 289 -1 unnamed_device 26.5 MiB 2.07 1121 14407 4796 7561 2050 65.0 MiB 0.12 0.00 3.60799 -127.319 -3.60799 3.60799 0.93 0.000468869 0.000428022 0.0390201 0.0356253 36 2593 20 6.89349e+06 295971 648988. 2245.63 2.38 0.152466 0.13445 26050 158493 -1 2266 19 1560 2114 154286 34059 3.02646 3.02646 -124.23 -3.02646 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0206142 0.0182037 131 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 9.08 vpr 64.23 MiB -1 -1 0.13 20392 1 0.03 -1 -1 33540 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65772 30 32 222 206 1 141 77 17 17 289 -1 unnamed_device 25.8 MiB 1.18 565 9205 3754 4929 522 64.2 MiB 0.06 0.00 2.67033 -85.3827 -2.67033 2.67033 0.91 0.000357875 0.000325993 0.0218612 0.0199723 38 1394 30 6.89349e+06 211408 678818. 2348.85 4.81 0.181924 0.156635 26626 170182 -1 1159 13 560 635 58152 13020 2.05307 2.05307 -80.887 -2.05307 0 0 902133. 3121.57 0.35 0.03 0.16 -1 -1 0.35 0.0112064 0.00996965 82 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 7.31 vpr 64.70 MiB -1 -1 0.15 20244 1 0.03 -1 -1 34128 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66256 31 32 291 243 1 179 82 17 17 289 -1 unnamed_device 26.3 MiB 2.48 986 14322 4290 8044 1988 64.7 MiB 0.11 0.00 4.76552 -144.771 -4.76552 4.76552 0.87 0.000418743 0.000382837 0.036184 0.0330712 34 2322 29 6.89349e+06 267783 618332. 2139.56 1.79 0.137959 0.120894 25762 151098 -1 2014 20 1276 1972 146102 33382 3.479 3.479 -129.696 -3.479 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0194601 0.0171498 117 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 6.37 vpr 65.05 MiB -1 -1 0.14 20464 1 0.03 -1 -1 34048 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66616 32 32 342 271 1 207 98 17 17 289 -1 unnamed_device 26.5 MiB 1.32 1121 13823 3432 8585 1806 65.1 MiB 0.11 0.00 4.71322 -150.624 -4.71322 4.71322 0.90 0.000510305 0.000463511 0.0331911 0.0302227 34 2727 22 6.89349e+06 479191 618332. 2139.56 1.88 0.140003 0.121834 25762 151098 -1 2334 20 1481 2227 174544 39115 4.00824 4.00824 -143.79 -4.00824 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0218108 0.0191272 151 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 6.87 vpr 64.75 MiB -1 -1 0.15 20756 1 0.03 -1 -1 33796 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 32 32 372 300 1 229 87 17 17 289 -1 unnamed_device 26.4 MiB 1.52 1277 12375 3467 7863 1045 64.7 MiB 0.12 0.00 4.43295 -138.206 -4.43295 4.43295 0.87 0.000547 0.000501104 0.0357371 0.0326587 36 3078 26 6.89349e+06 324158 648988. 2245.63 2.22 0.160668 0.141149 26050 158493 -1 2617 21 2034 3206 249894 52894 3.89554 3.89554 -137.73 -3.89554 0 0 828058. 2865.25 0.32 0.08 0.14 -1 -1 0.32 0.0248548 0.0219394 155 59 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 8.04 vpr 64.43 MiB -1 -1 0.13 19988 1 0.03 -1 -1 33940 -1 -1 19 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65972 26 32 190 182 1 126 77 17 17 289 -1 unnamed_device 26.0 MiB 1.41 448 11324 4682 5071 1571 64.4 MiB 0.06 0.00 2.70371 -73.039 -2.70371 2.70371 0.93 0.000309526 0.000282134 0.022769 0.0207806 40 1106 23 6.89349e+06 267783 706193. 2443.58 3.46 0.120786 0.10429 26914 176310 -1 982 22 792 952 75437 18340 2.39095 2.39095 -69.6367 -2.39095 0 0 926341. 3205.33 0.34 0.04 0.18 -1 -1 0.34 0.0146172 0.012786 76 21 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 5.90 vpr 64.61 MiB -1 -1 0.14 20108 1 0.03 -1 -1 33940 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66164 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 26.3 MiB 1.05 989 9879 2312 6247 1320 64.6 MiB 0.09 0.00 4.42392 -127.052 -4.42392 4.42392 0.91 0.000433013 0.0003954 0.0243814 0.0222603 34 2328 22 6.89349e+06 324158 618332. 2139.56 1.71 0.118377 0.102868 25762 151098 -1 1979 21 1206 2295 156747 36159 3.50885 3.50885 -121.305 -3.50885 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.020173 0.0177894 119 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 4.29 vpr 64.20 MiB -1 -1 0.13 19856 1 0.02 -1 -1 33612 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65744 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 25.7 MiB 0.42 477 9356 3828 5185 343 64.2 MiB 0.05 0.00 2.35052 -74.7133 -2.35052 2.35052 0.92 0.000302185 0.000274082 0.0177176 0.0160242 30 1271 33 6.89349e+06 169126 556674. 1926.21 0.91 0.0588033 0.0510992 25186 138497 -1 917 13 471 601 34359 9289 1.85746 1.85746 -71.2035 -1.85746 0 0 706193. 2443.58 0.29 0.02 0.12 -1 -1 0.29 0.00915238 0.00813441 65 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 6.84 vpr 64.64 MiB -1 -1 0.16 20188 1 0.03 -1 -1 33632 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66192 32 32 300 245 1 187 84 17 17 289 -1 unnamed_device 26.2 MiB 1.96 1046 9966 2582 6701 683 64.6 MiB 0.09 0.00 4.91481 -138.303 -4.91481 4.91481 0.92 0.000466719 0.000426875 0.0271521 0.0248085 34 2316 22 6.89349e+06 281877 618332. 2139.56 1.71 0.129273 0.113116 25762 151098 -1 1980 19 1004 1540 102606 24225 3.76736 3.76736 -123.228 -3.76736 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0195068 0.0172583 125 21 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 6.84 vpr 64.47 MiB -1 -1 0.14 20124 1 0.03 -1 -1 34012 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66016 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 26.0 MiB 0.87 1030 18239 5331 10544 2364 64.5 MiB 0.14 0.00 3.48935 -111.917 -3.48935 3.48935 0.90 0.00044961 0.000410018 0.0400424 0.0363427 30 2299 29 6.89349e+06 436909 556674. 1926.21 2.87 0.165377 0.143993 25186 138497 -1 1943 18 1002 1825 117062 25649 2.62651 2.62651 -101.154 -2.62651 0 0 706193. 2443.58 0.28 0.05 0.12 -1 -1 0.28 0.0182899 0.0161967 130 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 7.98 vpr 65.11 MiB -1 -1 0.14 20788 1 0.03 -1 -1 33980 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66672 32 32 338 277 1 215 87 17 17 289 -1 unnamed_device 26.6 MiB 2.58 1031 15255 4057 8092 3106 65.1 MiB 0.13 0.00 4.82008 -133.501 -4.82008 4.82008 0.91 0.000490467 0.0004496 0.0414621 0.0378409 34 2929 28 6.89349e+06 324158 618332. 2139.56 2.18 0.162845 0.143009 25762 151098 -1 2406 20 1641 2502 180517 44433 4.15846 4.15846 -138.48 -4.15846 0 0 787024. 2723.27 0.31 0.07 0.14 -1 -1 0.31 0.0222578 0.0197248 142 47 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 6.54 vpr 64.67 MiB -1 -1 0.14 20224 1 0.03 -1 -1 33488 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66220 32 32 284 241 1 177 81 17 17 289 -1 unnamed_device 26.3 MiB 1.97 1042 13556 4378 7182 1996 64.7 MiB 0.11 0.00 3.7536 -126.104 -3.7536 3.7536 0.88 0.000423475 0.000387287 0.0348091 0.0317082 34 2426 26 6.89349e+06 239595 618332. 2139.56 1.54 0.127869 0.111536 25762 151098 -1 2062 21 1231 1775 140537 30780 3.10151 3.10151 -121.28 -3.10151 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0190397 0.0166792 112 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 6.78 vpr 64.43 MiB -1 -1 0.14 20164 1 0.03 -1 -1 33756 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65980 30 32 262 227 1 161 79 17 17 289 -1 unnamed_device 25.9 MiB 2.05 868 13092 4092 7012 1988 64.4 MiB 0.10 0.00 4.03552 -117.607 -4.03552 4.03552 0.87 0.000406238 0.000372263 0.033216 0.0303892 34 2273 22 6.89349e+06 239595 618332. 2139.56 1.71 0.12525 0.110228 25762 151098 -1 1875 20 958 1604 132449 28430 3.37775 3.37775 -111.98 -3.37775 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0178219 0.0157376 104 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 6.15 vpr 64.32 MiB -1 -1 0.15 20420 1 0.03 -1 -1 33496 -1 -1 20 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65860 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 25.8 MiB 1.97 757 6960 1669 4834 457 64.3 MiB 0.06 0.00 4.17394 -114.526 -4.17394 4.17394 0.92 0.00039784 0.000362913 0.0177823 0.0162284 30 2142 28 6.89349e+06 281877 556674. 1926.21 1.06 0.074364 0.0649195 25186 138497 -1 1666 20 1033 1810 114421 26114 3.22555 3.22555 -108.797 -3.22555 0 0 706193. 2443.58 0.29 0.05 0.13 -1 -1 0.29 0.0173537 0.0153042 107 27 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 7.01 vpr 64.34 MiB -1 -1 0.13 20124 1 0.03 -1 -1 33416 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65880 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 25.8 MiB 0.69 835 13031 3792 7568 1671 64.3 MiB 0.09 0.00 3.90738 -121.629 -3.90738 3.90738 0.93 0.000384935 0.000352652 0.0311697 0.0283307 32 2291 36 6.89349e+06 239595 586450. 2029.24 3.19 0.149855 0.129812 25474 144626 -1 1971 20 1241 2047 177578 39376 2.97946 2.97946 -115.239 -2.97946 0 0 744469. 2576.02 0.30 0.06 0.13 -1 -1 0.30 0.0175582 0.0154551 101 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 7.93 vpr 64.70 MiB -1 -1 0.15 20464 1 0.03 -1 -1 33660 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66256 31 32 271 231 1 172 81 17 17 289 -1 unnamed_device 26.4 MiB 1.88 912 9006 2499 5943 564 64.7 MiB 0.07 0.00 3.63671 -112.55 -3.63671 3.63671 0.94 0.000486916 0.000454778 0.0235694 0.0215307 30 2196 23 6.89349e+06 253689 556674. 1926.21 2.94 0.151249 0.131139 25186 138497 -1 1882 16 885 1325 85929 19971 2.81636 2.81636 -109.416 -2.81636 0 0 706193. 2443.58 0.28 0.04 0.14 -1 -1 0.28 0.0155308 0.0137405 108 26 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 9.38 vpr 64.70 MiB -1 -1 0.15 20616 1 0.03 -1 -1 33784 -1 -1 22 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66256 29 32 291 250 1 185 83 17 17 289 -1 unnamed_device 26.2 MiB 2.23 982 10163 2807 6505 851 64.7 MiB 0.08 0.00 3.48715 -105.954 -3.48715 3.48715 0.91 0.000430221 0.000393195 0.0259756 0.0237365 36 2114 24 6.89349e+06 310065 648988. 2245.63 3.99 0.150788 0.130215 26050 158493 -1 1893 17 1056 1446 109106 24335 2.53636 2.53636 -101.077 -2.53636 0 0 828058. 2865.25 0.32 0.05 0.15 -1 -1 0.32 0.0167574 0.0148016 120 48 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 6.61 vpr 65.18 MiB -1 -1 0.14 20424 1 0.03 -1 -1 33792 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 32 32 367 282 1 224 89 17 17 289 -1 unnamed_device 26.8 MiB 1.85 1339 15137 4138 9246 1753 65.2 MiB 0.14 0.00 4.47915 -132.321 -4.47915 4.47915 0.87 0.000524397 0.000477889 0.0422276 0.0385313 34 2963 23 6.89349e+06 352346 618332. 2139.56 1.66 0.160668 0.140999 25762 151098 -1 2512 21 1427 2365 176883 38523 3.84576 3.84576 -128.825 -3.84576 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0245685 0.0218043 159 26 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 7.85 vpr 65.16 MiB -1 -1 0.15 20592 1 0.03 -1 -1 33876 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 32 32 391 311 1 250 88 17 17 289 -1 unnamed_device 26.7 MiB 2.42 1289 13933 4065 8243 1625 65.2 MiB 0.14 0.00 4.58977 -156.464 -4.58977 4.58977 0.93 0.000562243 0.000512903 0.0419003 0.0382553 36 2961 23 6.89349e+06 338252 648988. 2245.63 2.14 0.175689 0.15488 26050 158493 -1 2768 19 2118 2977 227249 49577 3.80435 3.80435 -151.02 -3.80435 0 0 828058. 2865.25 0.33 0.08 0.15 -1 -1 0.33 0.0247769 0.0219922 168 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 8.51 vpr 64.79 MiB -1 -1 0.14 20288 1 0.03 -1 -1 33332 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 26.4 MiB 1.45 765 12506 3068 7484 1954 64.8 MiB 0.10 0.00 3.98848 -116.551 -3.98848 3.98848 0.90 0.000417168 0.000380521 0.0321117 0.0293082 36 1999 20 6.89349e+06 253689 648988. 2245.63 3.92 0.156113 0.135274 26050 158493 -1 1708 21 1218 1874 142062 32163 3.20796 3.20796 -111.26 -3.20796 0 0 828058. 2865.25 0.31 0.06 0.16 -1 -1 0.31 0.0191581 0.0168337 109 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 7.59 vpr 64.78 MiB -1 -1 0.15 20460 1 0.03 -1 -1 33716 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 31 32 370 297 1 235 88 17 17 289 -1 unnamed_device 26.4 MiB 2.49 1249 10813 2744 7185 884 64.8 MiB 0.10 0.00 4.24063 -135.696 -4.24063 4.24063 0.92 0.000527779 0.000480205 0.0315807 0.0288431 34 3153 26 6.89349e+06 352346 618332. 2139.56 1.86 0.151221 0.13196 25762 151098 -1 2661 18 1662 2449 211819 44945 3.88885 3.88885 -140.681 -3.88885 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0213258 0.0188579 160 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 8.74 vpr 65.03 MiB -1 -1 0.16 20388 1 0.03 -1 -1 34004 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66588 31 32 377 302 1 241 88 17 17 289 -1 unnamed_device 26.6 MiB 2.91 1247 16273 5220 8383 2670 65.0 MiB 0.16 0.00 5.45989 -162.138 -5.45989 5.45989 0.88 0.000523942 0.000478616 0.0461034 0.0421193 36 3304 23 6.89349e+06 352346 648988. 2245.63 2.63 0.18344 0.16272 26050 158493 -1 2788 22 2139 3182 279459 58032 4.86768 4.86768 -161.55 -4.86768 0 0 828058. 2865.25 0.31 0.09 0.14 -1 -1 0.31 0.0262488 0.0232094 163 60 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 9.46 vpr 65.10 MiB -1 -1 0.15 20448 1 0.02 -1 -1 34020 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 31 32 383 305 1 240 88 17 17 289 -1 unnamed_device 26.7 MiB 2.56 1201 15298 5197 6778 3323 65.1 MiB 0.14 0.00 5.99918 -171.098 -5.99918 5.99918 0.94 0.000527795 0.000479148 0.045585 0.041563 36 3723 40 6.89349e+06 352346 648988. 2245.63 3.57 0.192238 0.168904 26050 158493 -1 2576 21 1820 2714 210431 54047 5.27384 5.27384 -170.652 -5.27384 0 0 828058. 2865.25 0.32 0.08 0.16 -1 -1 0.32 0.0248285 0.0218177 166 60 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 7.77 vpr 64.86 MiB -1 -1 0.17 20504 1 0.03 -1 -1 33884 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66416 31 32 352 285 1 223 87 17 17 289 -1 unnamed_device 26.3 MiB 2.30 1173 16983 5747 8489 2747 64.9 MiB 0.15 0.00 4.05378 -126.496 -4.05378 4.05378 0.91 0.000505257 0.000460872 0.0475022 0.043385 36 2746 23 6.89349e+06 338252 648988. 2245.63 2.19 0.172756 0.152595 26050 158493 -1 2384 20 1786 2593 194371 42478 3.12356 3.12356 -117.448 -3.12356 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0232749 0.0205625 148 51 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 7.24 vpr 64.71 MiB -1 -1 0.15 20320 1 0.03 -1 -1 33704 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66260 32 32 291 242 1 188 84 17 17 289 -1 unnamed_device 26.3 MiB 2.22 909 14358 5137 7007 2214 64.7 MiB 0.11 0.00 4.5826 -118.27 -4.5826 4.5826 0.90 0.000426108 0.000388611 0.0361049 0.0329036 34 2771 28 6.89349e+06 281877 618332. 2139.56 1.87 0.135435 0.118137 25762 151098 -1 2020 19 1141 1651 146263 32423 3.57426 3.57426 -114.046 -3.57426 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0187297 0.0164734 120 24 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 10.25 vpr 65.47 MiB -1 -1 0.15 20384 1 0.03 -1 -1 33760 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67044 32 32 457 356 1 296 95 17 17 289 -1 unnamed_device 27.1 MiB 2.55 1620 14567 4267 9425 875 65.5 MiB 0.16 0.00 5.31355 -171.75 -5.31355 5.31355 0.87 0.000610483 0.000556402 0.0447057 0.0406754 36 4099 33 6.89349e+06 436909 648988. 2245.63 4.44 0.251492 0.218862 26050 158493 -1 3468 24 2609 3895 304456 64358 4.55769 4.55769 -169.039 -4.55769 0 0 828058. 2865.25 0.32 0.10 0.15 -1 -1 0.32 0.0319746 0.0281919 203 84 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 8.94 vpr 64.78 MiB -1 -1 0.15 20168 1 0.03 -1 -1 33672 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66332 31 32 261 225 1 171 81 17 17 289 -1 unnamed_device 26.2 MiB 2.01 935 8481 2198 5465 818 64.8 MiB 0.07 0.00 3.78206 -112.802 -3.78206 3.78206 0.91 0.000389049 0.000354191 0.0210125 0.0191604 36 2118 26 6.89349e+06 253689 648988. 2245.63 3.79 0.142169 0.122553 26050 158493 -1 1959 17 1073 1447 108695 23866 3.15881 3.15881 -112.939 -3.15881 0 0 828058. 2865.25 0.33 0.05 0.15 -1 -1 0.33 0.0166298 0.0147383 106 24 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 6.29 vpr 65.09 MiB -1 -1 0.16 20648 1 0.03 -1 -1 33528 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66656 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 26.6 MiB 1.74 1159 12749 3392 7336 2021 65.1 MiB 0.11 0.00 4.75882 -144.088 -4.75882 4.75882 0.93 0.000500694 0.00045804 0.035623 0.0325451 30 3158 41 6.89349e+06 324158 556674. 1926.21 1.31 0.119642 0.105251 25186 138497 -1 2457 20 1461 2296 169002 35554 3.7423 3.7423 -131.29 -3.7423 0 0 706193. 2443.58 0.28 0.07 0.14 -1 -1 0.28 0.0217803 0.0192031 140 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 8.01 vpr 65.07 MiB -1 -1 0.15 20328 1 0.03 -1 -1 33972 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 32 32 349 284 1 222 87 17 17 289 -1 unnamed_device 26.7 MiB 2.45 1195 16023 5389 8481 2153 65.1 MiB 0.14 0.00 4.23925 -128.06 -4.23925 4.23925 0.88 0.000484787 0.000441345 0.0431845 0.0394058 36 2964 25 6.89349e+06 324158 648988. 2245.63 2.44 0.16791 0.148078 26050 158493 -1 2426 20 1358 2187 165444 36651 3.58905 3.58905 -124.791 -3.58905 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0220677 0.0194775 149 50 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 5.00 vpr 64.92 MiB -1 -1 0.16 20088 1 0.03 -1 -1 33960 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66480 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 26.5 MiB 0.70 1056 13758 4414 7436 1908 64.9 MiB 0.11 0.00 4.26729 -130.845 -4.26729 4.26729 0.91 0.000453537 0.000413187 0.0332003 0.0301934 30 2527 28 6.89349e+06 366440 556674. 1926.21 1.16 0.102473 0.0905827 25186 138497 -1 2219 22 1208 2191 168479 35056 3.595 3.595 -126.769 -3.595 0 0 706193. 2443.58 0.29 0.07 0.13 -1 -1 0.29 0.0215889 0.0190048 123 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 9.53 vpr 65.15 MiB -1 -1 0.16 20584 1 0.03 -1 -1 33540 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66716 32 32 353 287 1 220 87 17 17 289 -1 unnamed_device 26.8 MiB 2.13 1207 10455 2579 6753 1123 65.2 MiB 0.10 0.00 4.44301 -131.225 -4.44301 4.44301 0.91 0.000494456 0.000452158 0.0297516 0.027163 36 2616 21 6.89349e+06 324158 648988. 2245.63 4.19 0.187234 0.162196 26050 158493 -1 2300 19 1441 2046 153148 33477 3.18886 3.18886 -120.986 -3.18886 0 0 828058. 2865.25 0.33 0.06 0.15 -1 -1 0.33 0.0221924 0.0196708 148 52 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 7.74 vpr 65.18 MiB -1 -1 0.15 20536 1 0.03 -1 -1 33908 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 32 32 361 291 1 233 88 17 17 289 -1 unnamed_device 26.8 MiB 2.44 1187 14518 4859 6825 2834 65.2 MiB 0.13 0.00 4.27293 -132.833 -4.27293 4.27293 0.90 0.00052851 0.000482972 0.0400265 0.0364634 34 3445 26 6.89349e+06 338252 618332. 2139.56 2.11 0.15803 0.13716 25762 151098 -1 2538 19 1645 2465 186566 42784 3.4704 3.4704 -126.55 -3.4704 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0216523 0.0191077 154 52 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 7.20 vpr 65.29 MiB -1 -1 0.15 20896 1 0.03 -1 -1 33768 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66860 32 32 382 305 1 243 90 17 17 289 -1 unnamed_device 26.9 MiB 2.05 1246 9336 2230 6513 593 65.3 MiB 0.10 0.00 4.12904 -136.238 -4.12904 4.12904 0.87 0.000545319 0.00049831 0.0265155 0.0241558 34 3265 27 6.89349e+06 366440 618332. 2139.56 2.04 0.155827 0.136257 25762 151098 -1 2627 24 1955 2681 199538 45676 3.39606 3.39606 -133.734 -3.39606 0 0 787024. 2723.27 0.30 0.08 0.14 -1 -1 0.30 0.0271674 0.0239257 164 59 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 6.55 vpr 64.91 MiB -1 -1 0.14 20372 1 0.03 -1 -1 33572 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66464 32 32 306 248 1 188 85 17 17 289 -1 unnamed_device 26.4 MiB 1.83 1001 8641 2091 5830 720 64.9 MiB 0.08 0.00 4.50695 -131.282 -4.50695 4.50695 0.88 0.000474476 0.00043527 0.0227421 0.0208116 34 2625 20 6.89349e+06 295971 618332. 2139.56 1.68 0.119526 0.104205 25762 151098 -1 2079 21 1304 2062 140160 33197 3.71836 3.71836 -125.299 -3.71836 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0211386 0.0186441 128 21 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 6.96 vpr 65.04 MiB -1 -1 0.15 20864 1 0.03 -1 -1 33744 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66604 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 26.5 MiB 1.94 1119 14450 4565 7826 2059 65.0 MiB 0.12 0.00 4.84598 -139.753 -4.84598 4.84598 0.90 0.000475429 0.000433105 0.0386457 0.035237 34 2751 32 6.89349e+06 310065 618332. 2139.56 1.81 0.150979 0.131942 25762 151098 -1 2320 19 1445 2039 150966 33994 3.94096 3.94096 -133.357 -3.94096 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0206262 0.0182985 135 26 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 6.81 vpr 65.12 MiB -1 -1 0.17 20800 1 0.03 -1 -1 33768 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 31 32 373 299 1 227 87 17 17 289 -1 unnamed_device 26.7 MiB 1.59 1292 15447 4870 8199 2378 65.1 MiB 0.14 0.00 4.72898 -145.597 -4.72898 4.72898 0.91 0.000515455 0.000469674 0.0441199 0.0402438 34 3305 38 6.89349e+06 338252 618332. 2139.56 1.96 0.172844 0.150821 25762 151098 -1 2664 22 1683 2685 217728 46549 4.1093 4.1093 -142.399 -4.1093 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0243176 0.0212994 156 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 9.06 vpr 65.40 MiB -1 -1 0.16 20460 1 0.03 -1 -1 33864 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66968 32 32 387 315 1 249 89 17 17 289 -1 unnamed_device 26.9 MiB 2.96 1374 13553 4031 8630 892 65.4 MiB 0.13 0.00 4.3848 -136.299 -4.3848 4.3848 0.92 0.000566713 0.0005178 0.0397734 0.0363463 36 3546 21 6.89349e+06 352346 648988. 2245.63 2.78 0.174405 0.153881 26050 158493 -1 3131 35 2877 4359 347677 74272 3.85536 3.85536 -136.421 -3.85536 0 0 828058. 2865.25 0.33 0.13 0.15 -1 -1 0.33 0.0379774 0.0332215 166 74 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 6.80 vpr 64.71 MiB -1 -1 0.15 20232 1 0.03 -1 -1 33700 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66264 32 32 251 219 1 156 79 17 17 289 -1 unnamed_device 26.2 MiB 1.93 841 8022 2262 5194 566 64.7 MiB 0.07 0.00 3.56029 -109.346 -3.56029 3.56029 0.92 0.000410923 0.000376707 0.0208245 0.0190669 36 1876 16 6.89349e+06 211408 648988. 2245.63 1.75 0.102423 0.0892126 26050 158493 -1 1781 20 889 1394 102255 23750 2.58651 2.58651 -99.1772 -2.58651 0 0 828058. 2865.25 0.32 0.05 0.15 -1 -1 0.32 0.0171238 0.0150965 96 20 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 6.89 vpr 64.83 MiB -1 -1 0.16 20772 1 0.03 -1 -1 33528 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66388 32 32 341 285 1 219 84 17 17 289 -1 unnamed_device 26.3 MiB 1.55 1155 11979 3435 7133 1411 64.8 MiB 0.11 0.00 4.30741 -149.256 -4.30741 4.30741 0.90 0.00049109 0.000447597 0.0334827 0.0305345 34 2804 26 6.89349e+06 281877 618332. 2139.56 2.17 0.149604 0.130859 25762 151098 -1 2340 20 1904 2594 200265 44004 3.6786 3.6786 -144.817 -3.6786 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0214487 0.0189471 138 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 7.75 vpr 65.10 MiB -1 -1 0.17 20896 1 0.03 -1 -1 34148 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66664 32 32 387 293 1 237 89 17 17 289 -1 unnamed_device 26.6 MiB 2.14 1337 12167 3186 7820 1161 65.1 MiB 0.13 0.00 5.53202 -162.159 -5.53202 5.53202 0.91 0.000575948 0.000523598 0.037165 0.0338915 34 3534 45 6.89349e+06 352346 618332. 2139.56 2.31 0.180992 0.157641 25762 151098 -1 2896 34 2519 3992 292876 64073 4.7323 4.7323 -160.064 -4.7323 0 0 787024. 2723.27 0.32 0.11 0.14 -1 -1 0.32 0.038065 0.0333611 168 28 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 8.21 vpr 64.91 MiB -1 -1 0.15 20608 1 0.03 -1 -1 33608 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 32 32 340 270 1 212 86 17 17 289 -1 unnamed_device 26.4 MiB 2.24 981 15773 5650 7566 2557 64.9 MiB 0.14 0.00 4.48922 -138.529 -4.48922 4.48922 0.89 0.000498201 0.000453776 0.0435476 0.0397382 36 2706 29 6.89349e+06 310065 648988. 2245.63 2.76 0.158641 0.138789 26050 158493 -1 2148 21 1650 2368 177031 41003 3.31991 3.31991 -126.449 -3.31991 0 0 828058. 2865.25 0.31 0.07 0.16 -1 -1 0.31 0.0227222 0.0200309 144 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 6.75 vpr 64.84 MiB -1 -1 0.16 20616 1 0.03 -1 -1 33852 -1 -1 27 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66400 30 32 278 235 1 175 89 17 17 289 -1 unnamed_device 26.4 MiB 1.68 892 10781 3144 6961 676 64.8 MiB 0.09 0.00 4.18863 -126.692 -4.18863 4.18863 0.91 0.000428073 0.000391509 0.0246593 0.0225079 36 2083 22 6.89349e+06 380534 648988. 2245.63 1.92 0.123708 0.108073 26050 158493 -1 1865 22 1178 1877 144664 32149 3.40385 3.40385 -122.331 -3.40385 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0199768 0.0175463 118 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 10.58 vpr 65.62 MiB -1 -1 0.16 21036 1 0.03 -1 -1 33756 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67196 32 32 431 332 1 270 91 17 17 289 -1 unnamed_device 26.8 MiB 3.79 1573 16207 5526 8946 1735 65.6 MiB 0.18 0.00 6.36902 -185.345 -6.36902 6.36902 0.91 0.000596927 0.00054321 0.0507701 0.0461982 34 4174 50 6.89349e+06 380534 618332. 2139.56 3.43 0.216034 0.189453 25762 151098 -1 3178 20 2450 3885 284990 62516 5.14154 5.14154 -178.922 -5.14154 0 0 787024. 2723.27 0.31 0.10 0.15 -1 -1 0.31 0.0281897 0.0250888 188 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 6.57 vpr 64.99 MiB -1 -1 0.14 20324 1 0.03 -1 -1 33984 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 32 32 336 268 1 205 85 17 17 289 -1 unnamed_device 26.5 MiB 1.72 1035 15151 5099 7891 2161 65.0 MiB 0.12 0.00 4.71732 -144.131 -4.71732 4.71732 0.90 0.000483243 0.000440883 0.0419427 0.0382974 34 2637 24 6.89349e+06 295971 618332. 2139.56 1.64 0.148956 0.130346 25762 151098 -1 2128 21 1700 2398 160101 36685 3.8815 3.8815 -138.492 -3.8815 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0230264 0.0203888 139 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 5.09 vpr 64.45 MiB -1 -1 0.15 20432 1 0.03 -1 -1 33628 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66000 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 26.0 MiB 0.67 851 9838 2581 6658 599 64.5 MiB 0.07 0.00 3.70876 -106.292 -3.70876 3.70876 0.93 0.000379809 0.000347318 0.0209822 0.0191519 26 2030 30 6.89349e+06 338252 503264. 1741.40 1.36 0.0807795 0.0708927 24322 120374 -1 1868 17 917 1511 170021 48717 2.84421 2.84421 -106.234 -2.84421 0 0 618332. 2139.56 0.26 0.06 0.12 -1 -1 0.26 0.0151776 0.0133872 94 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 8.24 vpr 65.20 MiB -1 -1 0.15 20588 1 0.03 -1 -1 33824 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66768 32 32 349 273 1 214 87 17 17 289 -1 unnamed_device 26.6 MiB 2.24 1097 14679 5479 6928 2272 65.2 MiB 0.13 0.00 5.34057 -137.648 -5.34057 5.34057 0.93 0.000514688 0.000468686 0.0417962 0.0380928 34 3407 33 6.89349e+06 324158 618332. 2139.56 2.74 0.170979 0.150358 25762 151098 -1 2311 21 1355 2353 209044 46222 4.38625 4.38625 -135.864 -4.38625 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0243623 0.0215628 149 26 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 5.40 vpr 64.51 MiB -1 -1 0.14 20416 1 0.03 -1 -1 33732 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66060 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 26.0 MiB 0.77 790 8543 2077 5745 721 64.5 MiB 0.07 0.00 3.60525 -112.744 -3.60525 3.60525 0.92 0.00042167 0.000381355 0.0208713 0.0190656 34 2095 22 6.89349e+06 267783 618332. 2139.56 1.52 0.103779 0.0901101 25762 151098 -1 1917 20 1208 2137 152743 35026 2.88036 2.88036 -109.901 -2.88036 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0170818 0.0150428 98 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 6.44 vpr 64.52 MiB -1 -1 0.16 20068 1 0.03 -1 -1 33664 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66068 30 32 278 235 1 175 82 17 17 289 -1 unnamed_device 26.2 MiB 1.58 900 11118 2938 7199 981 64.5 MiB 0.10 0.00 4.05078 -116.815 -4.05078 4.05078 0.91 0.000431216 0.000395132 0.0282771 0.0257452 34 2168 28 6.89349e+06 281877 618332. 2139.56 1.70 0.123006 0.107025 25762 151098 -1 1812 20 1256 1803 152268 33469 3.11246 3.11246 -112.985 -3.11246 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0185267 0.0162497 113 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 8.60 vpr 64.50 MiB -1 -1 0.17 20832 1 0.03 -1 -1 33848 -1 -1 26 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66048 29 32 355 287 1 224 87 17 17 289 -1 unnamed_device 26.2 MiB 3.66 1189 14871 4290 8850 1731 64.5 MiB 0.13 0.00 4.52181 -133.377 -4.52181 4.52181 0.89 0.000491693 0.000447691 0.0405354 0.036988 34 2841 25 6.89349e+06 366440 618332. 2139.56 1.76 0.149558 0.130376 25762 151098 -1 2250 19 1473 2119 135906 32124 3.54234 3.54234 -126.145 -3.54234 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0212392 0.0187307 154 56 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 7.47 vpr 64.86 MiB -1 -1 0.16 20632 1 0.03 -1 -1 33916 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66420 32 32 358 289 1 230 86 17 17 289 -1 unnamed_device 26.5 MiB 2.20 1209 16340 4806 9520 2014 64.9 MiB 0.14 0.00 5.15268 -160.098 -5.15268 5.15268 0.91 0.000523556 0.000476336 0.045859 0.0417434 36 2942 21 6.89349e+06 310065 648988. 2245.63 2.00 0.143261 0.125975 26050 158493 -1 2466 20 1667 2432 179214 39064 4.17665 4.17665 -150.568 -4.17665 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0235596 0.0207786 151 51 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 9.66 vpr 64.93 MiB -1 -1 0.17 20540 1 0.03 -1 -1 33556 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66484 32 32 353 285 1 228 87 17 17 289 -1 unnamed_device 26.5 MiB 1.93 1151 8919 1954 6160 805 64.9 MiB 0.09 0.00 5.44797 -153.538 -5.44797 5.44797 0.92 0.000530484 0.000482884 0.025914 0.0236522 36 2961 43 6.89349e+06 324158 648988. 2245.63 4.47 0.208658 0.180968 26050 158493 -1 2536 20 1772 2694 216458 46150 4.81329 4.81329 -151.9 -4.81329 0 0 828058. 2865.25 0.31 0.07 0.16 -1 -1 0.31 0.0222936 0.0197026 150 48 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 8.74 vpr 64.50 MiB -1 -1 0.15 20168 1 0.03 -1 -1 33680 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66052 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 25.9 MiB 2.00 948 12416 4023 6894 1499 64.5 MiB 0.10 0.00 4.44301 -126.97 -4.44301 4.44301 0.93 0.000436737 0.00039972 0.0333251 0.0304355 34 2281 31 6.89349e+06 211408 618332. 2139.56 3.52 0.155353 0.135353 25762 151098 -1 1975 18 938 1316 114947 24563 3.09196 3.09196 -114.975 -3.09196 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0177174 0.015648 105 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 6.76 vpr 64.72 MiB -1 -1 0.16 20620 1 0.03 -1 -1 33812 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 31 32 319 272 1 203 83 17 17 289 -1 unnamed_device 26.2 MiB 1.87 1059 14483 4851 7224 2408 64.7 MiB 0.11 0.00 3.67535 -124.181 -3.67535 3.67535 0.91 0.000468268 0.000426434 0.0389668 0.0355533 34 2699 22 6.89349e+06 281877 618332. 2139.56 1.69 0.142147 0.12439 25762 151098 -1 2149 19 1458 2031 146792 32793 3.23845 3.23845 -122.463 -3.23845 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0200421 0.0177055 131 60 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 9.90 vpr 65.13 MiB -1 -1 0.15 20636 1 0.03 -1 -1 33772 -1 -1 26 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66696 30 32 329 273 1 213 88 17 17 289 -1 unnamed_device 26.6 MiB 2.51 1024 15493 4307 9520 1666 65.1 MiB 0.12 0.00 3.806 -108.658 -3.806 3.806 0.92 0.000446943 0.000410885 0.039993 0.0363992 36 2360 20 6.89349e+06 366440 648988. 2245.63 4.13 0.192819 0.167053 26050 158493 -1 2000 19 1287 2025 142728 32893 3.04661 3.04661 -105.245 -3.04661 0 0 828058. 2865.25 0.33 0.06 0.15 -1 -1 0.33 0.0206384 0.018266 142 52 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 6.37 vpr 64.54 MiB -1 -1 0.15 20288 1 0.03 -1 -1 34008 -1 -1 23 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66092 28 32 277 229 1 171 83 17 17 289 -1 unnamed_device 26.1 MiB 1.57 918 12323 3941 6490 1892 64.5 MiB 0.09 0.00 4.39675 -112.391 -4.39675 4.39675 0.93 0.000433295 0.00039776 0.0306922 0.0280059 34 2147 21 6.89349e+06 324158 618332. 2139.56 1.60 0.119001 0.103849 25762 151098 -1 1908 20 1138 1995 161837 33568 3.70146 3.70146 -109.98 -3.70146 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0188192 0.0165957 119 20 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 7.89 vpr 64.76 MiB -1 -1 0.15 20468 1 0.03 -1 -1 33528 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66316 30 32 317 269 1 202 83 17 17 289 -1 unnamed_device 26.3 MiB 2.87 924 9083 2508 6037 538 64.8 MiB 0.09 0.00 4.56532 -133.276 -4.56532 4.56532 0.90 0.00044996 0.000410079 0.0248138 0.0226449 34 2736 29 6.89349e+06 295971 618332. 2139.56 1.88 0.129395 0.112496 25762 151098 -1 2186 20 1812 2507 189331 42418 4.31514 4.31514 -143.22 -4.31514 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.020237 0.0177991 130 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 8.12 vpr 64.96 MiB -1 -1 0.16 20600 1 0.03 -1 -1 33588 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66516 32 32 335 282 1 222 84 17 17 289 -1 unnamed_device 26.4 MiB 2.46 1216 6123 1500 4259 364 65.0 MiB 0.07 0.00 3.91264 -134.898 -3.91264 3.91264 0.91 0.000493189 0.000450589 0.018287 0.0166719 36 2645 23 6.89349e+06 281877 648988. 2245.63 2.43 0.137606 0.120787 26050 158493 -1 2362 29 2125 2874 333718 104841 3.00176 3.00176 -122.65 -3.00176 0 0 828058. 2865.25 0.32 0.12 0.15 -1 -1 0.32 0.0295196 0.0259611 138 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 4.90 vpr 64.20 MiB -1 -1 0.16 20000 1 0.03 -1 -1 33956 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65736 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 25.8 MiB 0.79 941 8614 1787 6108 719 64.2 MiB 0.08 0.00 4.73282 -132.206 -4.73282 4.73282 0.91 0.000454731 0.000415188 0.0203598 0.0185437 30 2255 21 6.89349e+06 436909 556674. 1926.21 1.00 0.0782981 0.0684347 25186 138497 -1 1974 21 1018 1913 116086 27921 3.52565 3.52565 -121.514 -3.52565 0 0 706193. 2443.58 0.29 0.06 0.14 -1 -1 0.29 0.0201692 0.0178121 129 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 9.99 vpr 64.86 MiB -1 -1 0.15 20436 1 0.03 -1 -1 33988 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66412 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 26.2 MiB 2.42 946 14295 4865 6147 3283 64.9 MiB 0.12 0.00 4.80372 -148.142 -4.80372 4.80372 0.90 0.000494335 0.000450718 0.0392866 0.0358666 38 2827 33 6.89349e+06 324158 678818. 2348.85 4.33 0.200178 0.173888 26626 170182 -1 2148 20 1613 2415 172416 40549 3.8457 3.8457 -136.281 -3.8457 0 0 902133. 3121.57 0.33 0.07 0.16 -1 -1 0.33 0.0220588 0.0194669 148 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 9.82 vpr 65.11 MiB -1 -1 0.16 20564 1 0.03 -1 -1 33768 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66676 32 32 385 308 1 244 91 17 17 289 -1 unnamed_device 26.6 MiB 2.20 1348 15391 4691 8221 2479 65.1 MiB 0.15 0.00 5.48061 -170.804 -5.48061 5.48061 0.91 0.000538051 0.000486763 0.051502 0.0476288 36 2971 28 6.89349e+06 380534 648988. 2245.63 4.31 0.229235 0.200842 26050 158493 -1 2521 21 1856 2673 200167 44694 4.23189 4.23189 -155.088 -4.23189 0 0 828058. 2865.25 0.34 0.08 0.15 -1 -1 0.34 0.0253981 0.0224896 164 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 9.99 vpr 65.29 MiB -1 -1 0.16 20444 1 0.03 -1 -1 33916 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66852 32 32 387 309 1 248 90 17 17 289 -1 unnamed_device 26.8 MiB 2.34 1348 16572 5279 8759 2534 65.3 MiB 0.15 0.00 4.59633 -149.535 -4.59633 4.59633 0.91 0.000542029 0.000492716 0.0475503 0.0432808 36 3220 22 6.89349e+06 366440 648988. 2245.63 4.33 0.217605 0.189312 26050 158493 -1 2729 22 1927 2866 248487 51644 3.7334 3.7334 -140.921 -3.7334 0 0 828058. 2865.25 0.32 0.09 0.15 -1 -1 0.32 0.026619 0.0235422 164 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 7.00 vpr 64.38 MiB -1 -1 0.14 20692 1 0.03 -1 -1 34056 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65928 30 32 272 232 1 176 83 17 17 289 -1 unnamed_device 26.0 MiB 2.16 929 11603 3304 7249 1050 64.4 MiB 0.10 0.00 4.22559 -126.079 -4.22559 4.22559 0.91 0.0004284 0.000392859 0.0294275 0.0269077 34 2274 21 6.89349e+06 295971 618332. 2139.56 1.69 0.121218 0.106063 25762 151098 -1 1994 21 1138 1586 126934 27558 3.29711 3.29711 -116.443 -3.29711 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0193843 0.0170703 112 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 8.05 vpr 65.25 MiB -1 -1 0.16 20868 1 0.03 -1 -1 33944 -1 -1 26 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 30 32 375 299 1 236 88 17 17 289 -1 unnamed_device 26.9 MiB 3.12 1157 9838 2412 6479 947 65.2 MiB 0.10 0.00 5.48387 -163.439 -5.48387 5.48387 0.91 0.000529417 0.000482479 0.029272 0.026675 34 2914 31 6.89349e+06 366440 618332. 2139.56 1.68 0.131967 0.114779 25762 151098 -1 2394 19 1932 2689 190948 42993 4.36915 4.36915 -156.668 -4.36915 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0235807 0.0209205 162 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 6.94 vpr 64.85 MiB -1 -1 0.15 20460 1 0.03 -1 -1 33588 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66404 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 26.3 MiB 1.54 1128 9303 2368 6110 825 64.8 MiB 0.09 0.00 5.14805 -150.89 -5.14805 5.14805 0.92 0.00049571 0.000451587 0.026231 0.0239012 34 2876 34 6.89349e+06 324158 618332. 2139.56 2.19 0.149706 0.13046 25762 151098 -1 2362 19 1593 2666 208387 46147 3.97449 3.97449 -137.61 -3.97449 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0211728 0.0187012 139 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 7.24 vpr 64.65 MiB -1 -1 0.17 20604 1 0.03 -1 -1 33760 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66200 31 32 340 275 1 211 86 17 17 289 -1 unnamed_device 26.1 MiB 2.18 1160 14828 4291 8520 2017 64.6 MiB 0.13 0.00 5.04939 -147.832 -5.04939 5.04939 0.90 0.000502443 0.000458195 0.0416159 0.0378506 34 2696 30 6.89349e+06 324158 618332. 2139.56 1.80 0.153844 0.134094 25762 151098 -1 2222 21 1562 2377 151469 35667 4.18485 4.18485 -141.313 -4.18485 0 0 787024. 2723.27 0.33 0.07 0.16 -1 -1 0.33 0.0233412 0.0205666 142 43 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 7.99 vpr 65.00 MiB -1 -1 0.17 20584 1 0.03 -1 -1 33924 -1 -1 27 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66556 30 32 377 310 1 241 89 17 17 289 -1 unnamed_device 26.6 MiB 2.39 1280 15731 5729 7457 2545 65.0 MiB 0.15 0.00 4.67272 -140.819 -4.67272 4.67272 0.92 0.000518267 0.000471045 0.0448646 0.0408829 36 2891 31 6.89349e+06 380534 648988. 2245.63 2.31 0.174184 0.152862 26050 158493 -1 2460 19 1798 2628 192195 42175 3.84329 3.84329 -132.966 -3.84329 0 0 828058. 2865.25 0.31 0.07 0.15 -1 -1 0.31 0.0223213 0.0197217 162 78 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 8.70 vpr 65.04 MiB -1 -1 0.16 20432 1 0.03 -1 -1 33748 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66596 32 32 365 294 1 230 87 17 17 289 -1 unnamed_device 26.7 MiB 3.47 1143 12183 3367 8279 537 65.0 MiB 0.12 0.00 5.41467 -156.077 -5.41467 5.41467 0.89 0.000535616 0.000488837 0.0353168 0.032128 34 3317 24 6.89349e+06 324158 618332. 2139.56 1.98 0.131411 0.114886 25762 151098 -1 2550 21 1877 2841 221059 51776 4.56189 4.56189 -155.485 -4.56189 0 0 787024. 2723.27 0.31 0.08 0.16 -1 -1 0.31 0.0236245 0.020824 155 54 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 9.25 vpr 65.36 MiB -1 -1 0.17 20620 1 0.03 -1 -1 33752 -1 -1 30 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66932 29 32 378 310 1 247 91 17 17 289 -1 unnamed_device 26.9 MiB 2.02 1279 8047 1945 5583 519 65.4 MiB 0.08 0.00 4.65125 -137.416 -4.65125 4.65125 0.90 0.000511352 0.000465794 0.022532 0.0205703 36 2926 21 6.89349e+06 422815 648988. 2245.63 4.02 0.177834 0.153411 26050 158493 -1 2441 18 1475 2021 137313 30895 3.6201 3.6201 -125.951 -3.6201 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0215036 0.0190201 166 79 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 4.71 vpr 64.48 MiB -1 -1 0.14 20224 1 0.03 -1 -1 34028 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66032 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 26.0 MiB 0.62 782 13906 5117 6523 2266 64.5 MiB 0.10 0.00 4.15903 -122.769 -4.15903 4.15903 0.89 0.000398928 0.000365223 0.033202 0.0303036 30 2007 46 6.89349e+06 239595 556674. 1926.21 1.01 0.0981745 0.0860039 25186 138497 -1 1575 20 861 1362 93836 21337 2.75456 2.75456 -106.315 -2.75456 0 0 706193. 2443.58 0.28 0.05 0.14 -1 -1 0.28 0.0171472 0.0151031 96 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 7.94 vpr 65.09 MiB -1 -1 0.15 20796 1 0.03 -1 -1 33712 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66656 32 32 373 302 1 241 89 17 17 289 -1 unnamed_device 26.7 MiB 2.00 1307 13157 3552 8195 1410 65.1 MiB 0.13 0.00 5.64852 -169.418 -5.64852 5.64852 0.91 0.000521722 0.000475996 0.0377615 0.0345314 36 3147 47 6.89349e+06 352346 648988. 2245.63 2.68 0.192948 0.169745 26050 158493 -1 2616 22 1989 2734 228443 48831 4.51639 4.51639 -156.045 -4.51639 0 0 828058. 2865.25 0.33 0.09 0.15 -1 -1 0.33 0.0267745 0.023679 156 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 9.56 vpr 65.29 MiB -1 -1 0.17 20776 1 0.03 -1 -1 33956 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66852 32 32 397 314 1 256 89 17 17 289 -1 unnamed_device 26.8 MiB 3.73 1377 7415 1651 5387 377 65.3 MiB 0.09 0.00 5.30157 -175.126 -5.30157 5.30157 0.90 0.000510888 0.000461465 0.0233232 0.0212761 36 3393 25 6.89349e+06 352346 648988. 2245.63 2.57 0.152323 0.132413 26050 158493 -1 2835 22 2229 3205 258901 54853 4.72005 4.72005 -173.543 -4.72005 0 0 828058. 2865.25 0.32 0.09 0.16 -1 -1 0.32 0.0266574 0.0234914 171 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 7.90 vpr 64.42 MiB -1 -1 0.14 20636 1 0.03 -1 -1 33920 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65968 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 25.8 MiB 2.97 743 12720 4130 6895 1695 64.4 MiB 0.10 0.00 4.14342 -113.505 -4.14342 4.14342 0.91 0.000404422 0.000367657 0.0313488 0.0285786 34 2089 40 6.89349e+06 253689 618332. 2139.56 1.77 0.123321 0.107838 25762 151098 -1 1703 20 1004 1324 102159 24850 3.09861 3.09861 -104.339 -3.09861 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0187969 0.0165966 108 26 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 4.92 vpr 64.68 MiB -1 -1 0.14 20100 1 0.03 -1 -1 33988 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66232 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 26.1 MiB 0.71 706 7823 1736 5421 666 64.7 MiB 0.06 0.00 4.10083 -117.838 -4.10083 4.10083 0.91 0.000381919 0.000349067 0.018342 0.0167644 30 1853 22 6.89349e+06 281877 556674. 1926.21 0.97 0.068233 0.0596094 25186 138497 -1 1635 19 956 1623 99531 23093 2.83491 2.83491 -105.508 -2.83491 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.0163872 0.0144339 99 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 7.52 vpr 65.16 MiB -1 -1 0.15 20436 1 0.03 -1 -1 33868 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66724 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 26.6 MiB 2.32 1103 13719 4794 6980 1945 65.2 MiB 0.12 0.00 4.58942 -145.059 -4.58942 4.58942 0.94 0.000518355 0.000471592 0.039185 0.0357693 34 2800 20 6.89349e+06 324158 618332. 2139.56 1.72 0.125463 0.110115 25762 151098 -1 2436 19 1793 2593 211212 45957 3.5781 3.5781 -137.613 -3.5781 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0226975 0.0201782 145 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 7.18 vpr 65.07 MiB -1 -1 0.14 20492 1 0.03 -1 -1 33772 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66636 32 32 356 289 1 224 87 17 17 289 -1 unnamed_device 26.8 MiB 2.07 1083 8919 2056 5474 1389 65.1 MiB 0.08 0.00 4.89424 -142.728 -4.89424 4.89424 0.94 0.000528096 0.000480377 0.026587 0.0242552 34 3008 43 6.89349e+06 324158 618332. 2139.56 1.91 0.158614 0.137926 25762 151098 -1 2323 19 1527 2220 172266 41413 4.43665 4.43665 -142.524 -4.43665 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0222926 0.0197292 149 53 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 9.42 vpr 65.01 MiB -1 -1 0.16 20608 1 0.03 -1 -1 33596 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66572 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 26.4 MiB 0.79 1033 19356 5199 10890 3267 65.0 MiB 0.17 0.00 5.32917 -146.087 -5.32917 5.32917 0.92 0.000530921 0.00048738 0.0455868 0.0415565 30 3041 40 6.89349e+06 507378 556674. 1926.21 5.39 0.228303 0.200677 25186 138497 -1 2185 22 1788 3363 221964 52375 4.11544 4.11544 -138.805 -4.11544 0 0 706193. 2443.58 0.29 0.08 0.13 -1 -1 0.29 0.0246977 0.0217333 157 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 6.64 vpr 64.78 MiB -1 -1 0.17 20296 1 0.03 -1 -1 33696 -1 -1 25 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 30 32 316 264 1 208 87 17 17 289 -1 unnamed_device 26.2 MiB 1.77 1151 13143 3782 7948 1413 64.8 MiB 0.11 0.00 3.95739 -118.903 -3.95739 3.95739 0.91 0.000455253 0.000415964 0.0328957 0.0299806 34 2659 22 6.89349e+06 352346 618332. 2139.56 1.68 0.130924 0.113994 25762 151098 -1 2150 18 1518 2207 150480 33588 3.0457 3.0457 -108.49 -3.0457 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.018766 0.0165526 136 47 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 6.61 vpr 64.63 MiB -1 -1 0.15 20188 1 0.03 -1 -1 34244 -1 -1 20 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66180 27 32 255 219 1 162 79 17 17 289 -1 unnamed_device 26.1 MiB 1.66 755 13768 6057 6665 1046 64.6 MiB 0.09 0.00 4.43859 -116.143 -4.43859 4.43859 0.91 0.000386406 0.000351898 0.0332255 0.0303163 34 2141 23 6.89349e+06 281877 618332. 2139.56 1.80 0.118803 0.103478 25762 151098 -1 1630 19 1192 1703 130803 31060 3.6153 3.6153 -113.605 -3.6153 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0164976 0.0145081 106 26 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 8.86 vpr 65.41 MiB -1 -1 0.15 20988 1 0.03 -1 -1 33712 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66976 32 32 421 327 1 271 91 17 17 289 -1 unnamed_device 26.9 MiB 3.21 1514 18043 5658 10071 2314 65.4 MiB 0.18 0.00 4.58581 -147.507 -4.58581 4.58581 0.88 0.000560038 0.00051087 0.0537383 0.0490532 34 4194 50 6.89349e+06 380534 618332. 2139.56 2.40 0.190931 0.16852 25762 151098 -1 3210 21 1923 3102 270129 56903 4.10359 4.10359 -149.648 -4.10359 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0274047 0.0241109 185 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 7.69 vpr 65.01 MiB -1 -1 0.17 20588 1 0.03 -1 -1 33728 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66572 31 32 365 296 1 233 87 17 17 289 -1 unnamed_device 26.7 MiB 2.27 1122 15639 4714 8375 2550 65.0 MiB 0.14 0.00 5.51467 -162.715 -5.51467 5.51467 0.94 0.00052549 0.000479335 0.0447808 0.0408054 34 2973 28 6.89349e+06 338252 618332. 2139.56 2.10 0.167834 0.147189 25762 151098 -1 2496 20 2015 2776 220362 49269 4.51165 4.51165 -152.253 -4.51165 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0231239 0.020389 155 60 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 7.44 vpr 64.73 MiB -1 -1 0.16 20508 1 0.03 -1 -1 33988 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66280 32 32 331 280 1 221 85 17 17 289 -1 unnamed_device 26.2 MiB 2.31 1207 14779 4497 8341 1941 64.7 MiB 0.13 0.00 4.36565 -143.578 -4.36565 4.36565 0.92 0.000484965 0.000441592 0.0403824 0.0367636 34 2807 25 6.89349e+06 295971 618332. 2139.56 1.90 0.147697 0.128997 25762 151098 -1 2289 22 1533 2072 160406 36055 3.3748 3.3748 -129.801 -3.3748 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0218574 0.0192134 137 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 7.42 vpr 64.93 MiB -1 -1 0.15 20296 1 0.03 -1 -1 33828 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66488 32 32 326 263 1 203 85 17 17 289 -1 unnamed_device 26.4 MiB 2.33 1106 13291 3686 7595 2010 64.9 MiB 0.11 0.00 5.17406 -143.598 -5.17406 5.17406 0.92 0.000486425 0.000445236 0.036721 0.0335385 34 2843 37 6.89349e+06 295971 618332. 2139.56 1.88 0.138566 0.122052 25762 151098 -1 2401 20 1346 2012 169798 37394 3.71046 3.71046 -130.057 -3.71046 0 0 787024. 2723.27 0.31 0.07 0.14 -1 -1 0.31 0.0220506 0.019502 135 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 7.15 vpr 65.04 MiB -1 -1 0.16 20520 1 0.03 -1 -1 33824 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66604 31 32 373 294 1 231 89 17 17 289 -1 unnamed_device 26.7 MiB 2.21 1277 13949 4663 6540 2746 65.0 MiB 0.12 0.00 4.6119 -129.607 -4.6119 4.6119 0.90 0.000525543 0.000478349 0.0388922 0.0354516 34 2960 24 6.89349e+06 366440 618332. 2139.56 1.71 0.153666 0.133864 25762 151098 -1 2590 20 1709 2564 186340 41948 3.79686 3.79686 -129.409 -3.79686 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0230019 0.0202709 163 46 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 7.27 vpr 64.58 MiB -1 -1 0.16 20756 1 0.03 -1 -1 33800 -1 -1 24 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66128 30 32 325 268 1 210 86 17 17 289 -1 unnamed_device 26.1 MiB 2.21 1057 10103 2410 7187 506 64.6 MiB 0.09 0.00 4.37294 -118.646 -4.37294 4.37294 0.91 0.000473147 0.000431155 0.0269305 0.0245655 34 2982 24 6.89349e+06 338252 618332. 2139.56 1.88 0.130906 0.113886 25762 151098 -1 2173 23 1384 2295 155687 36909 3.6794 3.6794 -116.416 -3.6794 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0230132 0.0202117 140 46 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 8.71 vpr 65.03 MiB -1 -1 0.14 20544 1 0.03 -1 -1 33976 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66588 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 26.5 MiB 2.76 1146 16340 5897 7961 2482 65.0 MiB 0.15 0.00 4.90628 -154.007 -4.90628 4.90628 0.92 0.000510493 0.000464111 0.0461621 0.0420963 34 3223 50 6.89349e+06 310065 618332. 2139.56 2.71 0.191136 0.166451 25762 151098 -1 2505 20 1732 2711 217498 48057 3.8815 3.8815 -143.675 -3.8815 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.022952 0.020209 148 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 10.00 vpr 65.14 MiB -1 -1 0.14 20604 1 0.03 -1 -1 34024 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 32 32 386 307 1 246 90 17 17 289 -1 unnamed_device 26.7 MiB 2.81 1236 16371 6869 8593 909 65.1 MiB 0.15 0.00 4.19324 -136.834 -4.19324 4.19324 0.89 0.000534336 0.000486731 0.0462261 0.042145 36 2890 25 6.89349e+06 366440 648988. 2245.63 4.02 0.225383 0.197217 26050 158493 -1 2431 20 1700 2341 156685 36663 3.17181 3.17181 -126.921 -3.17181 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0244416 0.0217171 167 59 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 6.18 vpr 64.13 MiB -1 -1 0.14 20212 1 0.03 -1 -1 33564 -1 -1 20 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65672 29 32 269 229 1 173 81 17 17 289 -1 unnamed_device 25.6 MiB 1.57 881 7081 1573 4782 726 64.1 MiB 0.06 0.00 4.21387 -125.832 -4.21387 4.21387 0.91 0.000406231 0.000371462 0.0183224 0.0167999 34 1947 20 6.89349e+06 281877 618332. 2139.56 1.50 0.102336 0.0888373 25762 151098 -1 1668 20 1336 1773 132678 29656 3.02156 3.02156 -111.286 -3.02156 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0180219 0.0158987 110 28 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 8.77 vpr 64.75 MiB -1 -1 0.16 20632 1 0.03 -1 -1 33672 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 32 32 310 266 1 200 84 17 17 289 -1 unnamed_device 26.3 MiB 1.41 868 7770 1747 5581 442 64.7 MiB 0.07 0.00 4.24583 -126.348 -4.24583 4.24583 0.89 0.000468732 0.000428405 0.0213421 0.0194611 36 2425 28 6.89349e+06 281877 648988. 2245.63 4.23 0.190323 0.16525 26050 158493 -1 1953 21 1685 2287 171941 40763 3.4029 3.4029 -121.453 -3.4029 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0210934 0.0185946 125 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 6.82 vpr 64.57 MiB -1 -1 0.15 20148 1 0.03 -1 -1 33800 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66124 31 32 326 261 1 204 85 17 17 289 -1 unnamed_device 26.1 MiB 1.67 954 15337 5910 7043 2384 64.6 MiB 0.12 0.00 4.83108 -133.604 -4.83108 4.83108 0.88 0.000460406 0.000420907 0.0404204 0.0368873 34 3035 40 6.89349e+06 310065 618332. 2139.56 2.05 0.172696 0.151828 25762 151098 -1 2125 23 1627 2422 177736 47190 3.74936 3.74936 -130.315 -3.74936 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0239492 0.0211413 137 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 8.09 vpr 64.34 MiB -1 -1 0.14 20312 1 0.03 -1 -1 33644 -1 -1 19 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65880 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 25.8 MiB 3.14 859 12636 4650 6385 1601 64.3 MiB 0.10 0.00 4.13932 -113.849 -4.13932 4.13932 0.94 0.000371527 0.000339345 0.0312884 0.0285447 34 2181 32 6.89349e+06 267783 618332. 2139.56 1.73 0.128541 0.11205 25762 151098 -1 1805 22 1129 1557 124622 29306 2.97321 2.97321 -102.396 -2.97321 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0190872 0.0166954 108 25 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 9.51 vpr 64.51 MiB -1 -1 0.15 20372 1 0.03 -1 -1 33860 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66056 32 32 278 238 1 182 82 17 17 289 -1 unnamed_device 26.1 MiB 2.31 931 12898 3547 7775 1576 64.5 MiB 0.10 0.00 4.14413 -130.005 -4.14413 4.14413 0.91 0.000421956 0.000385364 0.0327135 0.0298696 36 2328 29 6.89349e+06 253689 648988. 2245.63 4.03 0.163736 0.141703 26050 158493 -1 2011 21 1443 2040 168261 36117 3.30996 3.30996 -124.621 -3.30996 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.019428 0.0170894 114 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 7.23 vpr 64.90 MiB -1 -1 0.17 20724 1 0.03 -1 -1 33708 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66460 31 32 373 300 1 236 89 17 17 289 -1 unnamed_device 26.5 MiB 1.90 1223 9197 2351 6452 394 64.9 MiB 0.09 0.00 4.60737 -145.998 -4.60737 4.60737 0.88 0.00052783 0.000472976 0.0271268 0.0247183 34 2913 27 6.89349e+06 366440 618332. 2139.56 1.85 0.157723 0.138144 25762 151098 -1 2414 23 2100 2928 239147 52425 4.03295 4.03295 -146.125 -4.03295 0 0 787024. 2723.27 0.30 0.08 0.14 -1 -1 0.30 0.0268279 0.0234725 160 60 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 6.08 vpr 64.63 MiB -1 -1 0.14 20124 1 0.03 -1 -1 34044 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66184 31 32 265 230 1 175 80 17 17 289 -1 unnamed_device 26.0 MiB 2.13 913 11088 2855 7004 1229 64.6 MiB 0.08 0.00 3.57635 -113.738 -3.57635 3.57635 0.88 0.000408377 0.000373616 0.0274304 0.0249949 30 2273 20 6.89349e+06 239595 556674. 1926.21 0.95 0.0783912 0.068854 25186 138497 -1 1905 20 1065 1491 97174 22413 2.89331 2.89331 -107.732 -2.89331 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.0170135 0.0150109 108 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 7.46 vpr 65.15 MiB -1 -1 0.16 20380 1 0.03 -1 -1 33796 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66712 32 32 349 286 1 221 86 17 17 289 -1 unnamed_device 26.6 MiB 2.16 1210 14261 3846 8261 2154 65.1 MiB 0.13 0.00 4.18989 -126.928 -4.18989 4.18989 0.93 0.000503017 0.000458739 0.0404924 0.0369117 34 3022 24 6.89349e+06 310065 618332. 2139.56 1.67 0.128633 0.112786 25762 151098 -1 2489 20 1414 2094 158378 34676 3.45175 3.45175 -125.893 -3.45175 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0220667 0.0194551 146 54 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 7.73 vpr 65.18 MiB -1 -1 0.18 20456 1 0.03 -1 -1 33868 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66740 31 32 396 325 1 259 89 17 17 289 -1 unnamed_device 26.7 MiB 2.32 1307 17117 5534 9059 2524 65.2 MiB 0.16 0.00 4.84686 -157.681 -4.84686 4.84686 0.91 0.000538049 0.000488859 0.0502798 0.0457149 34 3332 30 6.89349e+06 366440 618332. 2139.56 2.07 0.184135 0.161139 25762 151098 -1 2667 23 2249 3229 236032 53031 4.41039 4.41039 -159.173 -4.41039 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0282068 0.0248612 170 87 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 7.64 vpr 64.89 MiB -1 -1 0.15 20252 1 0.03 -1 -1 33984 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66452 32 32 303 262 1 200 82 17 17 289 -1 unnamed_device 26.4 MiB 2.83 1086 13432 3424 8813 1195 64.9 MiB 0.11 0.00 3.821 -117.953 -3.821 3.821 0.91 0.000439208 0.000400276 0.0347212 0.031595 34 2606 27 6.89349e+06 253689 618332. 2139.56 1.67 0.137605 0.119949 25762 151098 -1 2143 20 1427 1932 136459 31615 2.80696 2.80696 -111.298 -2.80696 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0210199 0.0185709 124 54 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 8.57 vpr 64.70 MiB -1 -1 0.15 20404 1 0.03 -1 -1 33704 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66252 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 26.3 MiB 1.32 871 12898 3868 7278 1752 64.7 MiB 0.10 0.00 4.12213 -126.038 -4.12213 4.12213 0.92 0.000451206 0.00041309 0.0342206 0.0312897 36 2177 21 6.89349e+06 253689 648988. 2245.63 4.03 0.168656 0.146798 26050 158493 -1 1933 21 1325 1987 169565 36435 3.23035 3.23035 -113.999 -3.23035 0 0 828058. 2865.25 0.32 0.06 0.16 -1 -1 0.32 0.0197822 0.0173805 115 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 6.81 vpr 65.00 MiB -1 -1 0.15 20256 1 0.03 -1 -1 33636 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66556 32 32 318 257 1 198 86 17 17 289 -1 unnamed_device 26.5 MiB 2.01 1006 10292 2539 6455 1298 65.0 MiB 0.09 0.00 4.93133 -134.302 -4.93133 4.93133 0.93 0.000485107 0.000441747 0.0280248 0.0254941 34 2482 22 6.89349e+06 310065 618332. 2139.56 1.61 0.132024 0.114876 25762 151098 -1 2102 18 1269 1785 114938 27680 3.75856 3.75856 -129.967 -3.75856 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0199988 0.0177511 133 27 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 7.06 vpr 64.99 MiB -1 -1 0.16 20496 1 0.03 -1 -1 33712 -1 -1 25 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 29 32 324 268 1 207 86 17 17 289 -1 unnamed_device 26.4 MiB 2.26 1105 14450 4218 8203 2029 65.0 MiB 0.12 0.00 4.04968 -110.899 -4.04968 4.04968 0.90 0.000459865 0.000420367 0.0370905 0.0338478 34 2657 23 6.89349e+06 352346 618332. 2139.56 1.64 0.142206 0.124197 25762 151098 -1 2195 21 1346 1980 146862 32855 3.15146 3.15146 -109.077 -3.15146 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0223471 0.0197396 138 49 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 15.12 vpr 64.76 MiB -1 -1 0.16 20672 1 0.03 -1 -1 33456 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66312 32 32 393 312 1 243 88 17 17 289 -1 unnamed_device 26.3 MiB 2.30 1170 10033 2409 6880 744 64.8 MiB 0.10 0.00 5.6505 -176.695 -5.6505 5.6505 0.90 0.000558091 0.000506719 0.0305673 0.0278868 34 3979 39 6.89349e+06 338252 618332. 2139.56 9.57 0.29377 0.253877 25762 151098 -1 2902 23 2152 3336 270669 62426 4.84719 4.84719 -171.492 -4.84719 0 0 787024. 2723.27 0.32 0.09 0.15 -1 -1 0.32 0.0271785 0.0239091 166 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 5.24 vpr 64.61 MiB -1 -1 0.14 20084 1 0.03 -1 -1 33740 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66160 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 26.1 MiB 0.65 815 9368 2443 5733 1192 64.6 MiB 0.07 0.00 3.49795 -108.682 -3.49795 3.49795 0.90 0.000381949 0.00034856 0.0216447 0.0197439 34 1814 25 6.89349e+06 239595 618332. 2139.56 1.52 0.103031 0.0895431 25762 151098 -1 1577 19 774 1207 83395 19438 2.56436 2.56436 -99.3758 -2.56436 0 0 787024. 2723.27 0.31 0.04 0.14 -1 -1 0.31 0.0156408 0.0137878 92 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 7.60 vpr 65.50 MiB -1 -1 0.16 20576 1 0.03 -1 -1 33756 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67076 32 32 412 334 1 269 91 17 17 289 -1 unnamed_device 27.0 MiB 2.20 1425 17431 5130 10160 2141 65.5 MiB 0.17 0.00 5.66786 -177.951 -5.66786 5.66786 0.90 0.000566549 0.00051475 0.0510133 0.0465494 34 3494 40 6.89349e+06 380534 618332. 2139.56 2.08 0.192951 0.168638 25762 151098 -1 2800 23 2105 2897 221520 49926 5.00324 5.00324 -174.642 -5.00324 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0278375 0.0244536 175 87 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 10.21 vpr 64.88 MiB -1 -1 0.16 20392 1 0.03 -1 -1 33580 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66440 32 32 376 318 1 259 87 17 17 289 -1 unnamed_device 26.5 MiB 2.60 1387 11223 3117 6896 1210 64.9 MiB 0.10 0.00 4.854 -168.258 -4.854 4.854 0.90 0.000528965 0.000482425 0.0326197 0.0297221 38 2917 25 6.89349e+06 324158 678818. 2348.85 4.36 0.234696 0.203999 26626 170182 -1 2562 24 1921 2497 168616 37648 4.42073 4.42073 -166.036 -4.42073 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.0272939 0.0240571 160 93 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 9.69 vpr 65.12 MiB -1 -1 0.16 20476 1 0.03 -1 -1 33868 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66688 32 32 360 293 1 227 86 17 17 289 -1 unnamed_device 26.8 MiB 2.22 1228 16529 5130 9253 2146 65.1 MiB 0.15 0.00 4.18062 -130.52 -4.18062 4.18062 0.93 0.000528953 0.000479595 0.047758 0.0435006 36 2679 46 6.89349e+06 310065 648988. 2245.63 4.19 0.230286 0.200561 26050 158493 -1 2371 19 1474 2061 158969 34359 3.14201 3.14201 -122.314 -3.14201 0 0 828058. 2865.25 0.32 0.06 0.16 -1 -1 0.32 0.022436 0.0198614 152 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 8.30 vpr 65.00 MiB -1 -1 0.17 20328 1 0.03 -1 -1 33704 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66556 32 32 396 299 1 241 90 17 17 289 -1 unnamed_device 26.6 MiB 2.96 1277 13758 3654 8100 2004 65.0 MiB 0.15 0.00 5.8432 -174.13 -5.8432 5.8432 0.91 0.000543408 0.000494105 0.0410499 0.0374694 36 3134 30 6.89349e+06 366440 648988. 2245.63 2.02 0.160903 0.140916 26050 158493 -1 2741 21 2065 3322 272282 57654 4.69455 4.69455 -160.869 -4.69455 0 0 828058. 2865.25 0.31 0.09 0.16 -1 -1 0.31 0.0260269 0.0229415 172 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 5.65 vpr 64.24 MiB -1 -1 0.15 20404 1 0.03 -1 -1 33736 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65784 30 32 224 207 1 138 77 17 17 289 -1 unnamed_device 25.8 MiB 1.01 693 11650 3455 7011 1184 64.2 MiB 0.08 0.00 3.03066 -95.0101 -3.03066 3.03066 0.91 0.000355575 0.000325685 0.0270215 0.024705 34 1802 38 6.89349e+06 211408 618332. 2139.56 1.54 0.0943984 0.082015 25762 151098 -1 1455 17 687 909 76685 16928 2.15212 2.15212 -89.3307 -2.15212 0 0 787024. 2723.27 0.30 0.04 0.15 -1 -1 0.30 0.0139454 0.0122573 82 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 6.23 vpr 64.86 MiB -1 -1 0.15 20256 1 0.03 -1 -1 33644 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66420 30 32 286 239 1 176 82 17 17 289 -1 unnamed_device 26.5 MiB 1.42 726 8270 1936 5996 338 64.9 MiB 0.07 0.00 4.60327 -135.822 -4.60327 4.60327 0.91 0.000437168 0.000397525 0.0218836 0.0199621 34 1980 21 6.89349e+06 281877 618332. 2139.56 1.61 0.11251 0.0973858 25762 151098 -1 1602 32 1870 2906 352863 137449 3.522 3.522 -126.735 -3.522 0 0 787024. 2723.27 0.30 0.12 0.15 -1 -1 0.30 0.0275969 0.0240551 119 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 7.43 vpr 64.77 MiB -1 -1 0.14 20496 1 0.03 -1 -1 33556 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 32 32 296 247 1 187 82 17 17 289 -1 unnamed_device 26.3 MiB 2.11 1036 12008 3645 6699 1664 64.8 MiB 0.11 0.00 4.33865 -139.218 -4.33865 4.33865 0.92 0.000459522 0.000418766 0.0324184 0.0295656 34 2978 44 6.89349e+06 253689 618332. 2139.56 2.11 0.149675 0.130275 25762 151098 -1 2428 21 1589 2812 229790 50098 3.72055 3.72055 -142.277 -3.72055 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0204283 0.0179497 120 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 5.95 vpr 64.45 MiB -1 -1 0.14 20316 1 0.03 -1 -1 33864 -1 -1 21 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65992 25 32 216 194 1 138 78 17 17 289 -1 unnamed_device 26.0 MiB 1.29 532 11034 4110 4271 2653 64.4 MiB 0.07 0.00 3.6784 -85.8398 -3.6784 3.6784 0.89 0.000340654 0.000309309 0.0239586 0.0218907 34 1620 27 6.89349e+06 295971 618332. 2139.56 1.62 0.100809 0.0872769 25762 151098 -1 1248 20 849 1302 92392 24875 2.98371 2.98371 -81.2823 -2.98371 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0151488 0.0132978 92 19 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 10.00 vpr 65.28 MiB -1 -1 0.17 20464 1 0.03 -1 -1 33728 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 32 32 376 307 1 242 87 17 17 289 -1 unnamed_device 26.9 MiB 2.54 1378 14871 4869 7700 2302 65.3 MiB 0.14 0.00 4.565 -139.747 -4.565 4.565 0.88 0.000508007 0.000461897 0.0416996 0.0380571 38 3057 23 6.89349e+06 324158 678818. 2348.85 4.24 0.211108 0.183605 26626 170182 -1 2632 19 1727 2576 176374 38187 3.68256 3.68256 -131.929 -3.68256 0 0 902133. 3121.57 0.32 0.07 0.17 -1 -1 0.32 0.0227228 0.0200685 161 69 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 7.23 vpr 65.32 MiB -1 -1 0.13 20592 1 0.03 -1 -1 33692 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:59:23 gh-actions-runner-vtr-auto-spawned238 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66884 31 32 409 331 1 264 92 17 17 289 -1 unnamed_device 26.8 MiB 2.33 1414 15617 4439 9113 2065 65.3 MiB 0.14 0.00 4.8901 -157.733 -4.8901 4.8901 0.85 0.000502205 0.000459814 0.0407768 0.0370707 34 3269 24 6.89349e+06 408721 618332. 2139.56 1.75 0.166597 0.14485 25762 151098 -1 2694 20 1849 2547 181701 41207 4.21289 4.21289 -153.322 -4.21289 0 0 787024. 2723.27 0.30 0.07 0.16 -1 -1 0.30 0.0249888 0.0220473 179 86 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 14.99 vpr 63.93 MiB -1 -1 0.81 21584 14 0.83 -1 -1 37040 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65460 32 32 277 309 1 204 91 17 17 289 -1 unnamed_device 25.3 MiB 1.14 1316 5599 1118 4072 409 63.9 MiB 0.07 0.00 8.11929 -167.236 -8.11929 8.11929 2.04 0.000250645 0.0002076 0.00930375 0.00788038 36 3168 18 6.55708e+06 325485 612192. 2118.31 4.32 0.254613 0.243725 22750 144809 -1 2907 16 1166 3648 221231 48915 6.88996 6.88996 -156.901 -6.88996 0 0 782063. 2706.10 0.43 0.06 0.14 -1 -1 0.43 0.0252893 0.0199655 183 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 16.05 vpr 64.01 MiB -1 -1 0.59 22040 14 1.39 -1 -1 36700 -1 -1 31 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65544 30 32 272 304 1 210 93 17 17 289 -1 unnamed_device 25.3 MiB 1.75 1284 6813 1396 4664 753 64.0 MiB 0.15 0.00 8.17826 -159.503 -8.17826 8.17826 2.14 0.000229998 0.000188138 0.0116499 0.00989239 28 3899 33 6.55708e+06 373705 500653. 1732.36 4.58 0.206682 0.198006 21310 115450 -1 3202 29 1492 4434 488528 184977 7.05196 7.05196 -154.725 -7.05196 0 0 612192. 2118.31 0.28 0.13 0.10 -1 -1 0.28 0.0244321 0.0218532 184 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 16.93 vpr 64.02 MiB -1 -1 0.54 21432 11 0.75 -1 -1 36740 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65560 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 25.3 MiB 1.75 1318 12150 2688 7851 1611 64.0 MiB 0.15 0.00 7.09041 -141.994 -7.09041 7.09041 2.99 0.00021919 0.000176129 0.0170755 0.0142001 36 3257 49 6.55708e+06 313430 612192. 2118.31 5.15 0.161418 0.14644 22750 144809 -1 2763 18 1188 4033 209919 48995 6.21958 6.21958 -137.181 -6.21958 0 0 782063. 2706.10 0.43 0.07 0.17 -1 -1 0.43 0.0171308 0.015608 186 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 17.37 vpr 63.94 MiB -1 -1 0.53 21584 12 1.11 -1 -1 36740 -1 -1 30 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65476 29 32 275 307 1 205 91 17 17 289 -1 unnamed_device 25.3 MiB 2.06 1291 8659 1933 5978 748 63.9 MiB 0.15 0.00 7.59163 -142.516 -7.59163 7.59163 2.61 0.000237955 0.000194649 0.0135612 0.0113422 34 3427 47 6.55708e+06 361650 585099. 2024.56 4.21 0.141263 0.117775 22462 138074 -1 2944 20 1447 4783 267879 64966 6.45858 6.45858 -135.37 -6.45858 0 0 742403. 2568.87 0.44 0.10 0.14 -1 -1 0.44 0.0354681 0.0336491 190 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 16.06 vpr 64.21 MiB -1 -1 0.63 21736 13 0.91 -1 -1 36588 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65748 32 32 302 334 1 233 95 17 17 289 -1 unnamed_device 25.5 MiB 1.47 1517 10247 2681 6332 1234 64.2 MiB 0.17 0.00 7.78538 -167.201 -7.78538 7.78538 2.41 0.000280345 0.0002255 0.121306 0.0142674 30 3963 42 6.55708e+06 373705 526063. 1820.29 4.45 0.176265 0.0622064 21886 126133 -1 3369 18 1586 4655 233556 54083 6.7183 6.7183 -159.433 -6.7183 0 0 666494. 2306.21 0.60 0.10 0.13 -1 -1 0.60 0.0196487 0.0179784 210 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 23.37 vpr 64.00 MiB -1 -1 0.85 21432 13 1.02 -1 -1 36540 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65540 32 32 292 324 1 217 96 17 17 289 -1 unnamed_device 25.3 MiB 0.92 1424 8199 1838 5705 656 64.0 MiB 0.19 0.00 7.59163 -154.292 -7.59163 7.59163 2.57 0.000298971 0.000253415 0.125279 0.12332 30 3692 44 6.55708e+06 385760 526063. 1820.29 12.37 0.530437 0.509033 21886 126133 -1 2951 17 1311 4081 200727 47055 6.4805 6.4805 -147.355 -6.4805 0 0 666494. 2306.21 0.25 0.05 0.08 -1 -1 0.25 0.0152681 0.0137409 198 198 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 15.87 vpr 63.65 MiB -1 -1 0.70 21432 12 1.08 -1 -1 36220 -1 -1 27 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65176 27 32 229 261 1 176 86 17 17 289 -1 unnamed_device 24.9 MiB 0.98 1035 6512 1527 4332 653 63.6 MiB 0.14 0.00 7.17186 -130.596 -7.17186 7.17186 2.48 9.2588e-05 7.3799e-05 0.0053792 0.00449752 28 2878 33 6.55708e+06 325485 500653. 1732.36 4.45 0.0773257 0.0708081 21310 115450 -1 2508 16 1094 2903 172289 39877 6.43104 6.43104 -125.532 -6.43104 0 0 612192. 2118.31 0.72 0.08 0.26 -1 -1 0.72 0.0128645 0.0117338 152 150 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 19.05 vpr 63.57 MiB -1 -1 0.61 21584 12 0.65 -1 -1 36356 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65096 31 32 229 261 1 184 85 17 17 289 -1 unnamed_device 24.9 MiB 0.83 1249 5107 1019 3661 427 63.6 MiB 0.09 0.00 6.39885 -135.828 -6.39885 6.39885 2.22 0.000195832 0.00015921 0.00763114 0.00638149 36 2917 29 6.55708e+06 265210 612192. 2118.31 9.17 0.46378 0.454104 22750 144809 -1 2534 14 1014 3099 164622 37748 5.56006 5.56006 -128.182 -5.56006 0 0 782063. 2706.10 0.65 0.07 0.18 -1 -1 0.65 0.0374872 0.03645 140 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 16.23 vpr 63.67 MiB -1 -1 0.72 21280 12 0.46 -1 -1 36432 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65196 31 32 235 267 1 192 89 17 17 289 -1 unnamed_device 25.0 MiB 0.94 1208 12167 3615 7245 1307 63.7 MiB 0.21 0.00 6.4388 -137.229 -6.4388 6.4388 2.57 0.000220228 0.000181404 0.168754 0.166189 28 3215 28 6.55708e+06 313430 500653. 1732.36 4.92 0.380326 0.373049 21310 115450 -1 2672 18 1117 2854 165121 38557 5.75926 5.75926 -133.58 -5.75926 0 0 612192. 2118.31 0.91 0.14 0.23 -1 -1 0.91 0.0143963 0.0131338 150 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 17.42 vpr 63.75 MiB -1 -1 0.69 21432 13 0.63 -1 -1 36588 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65280 32 32 250 282 1 193 89 17 17 289 -1 unnamed_device 25.0 MiB 1.05 1179 13949 3758 7924 2267 63.8 MiB 0.25 0.00 7.37832 -161.437 -7.37832 7.37832 2.38 9.599e-05 7.6318e-05 0.119345 0.116725 28 3430 36 6.55708e+06 301375 500653. 1732.36 4.74 0.293365 0.285342 21310 115450 -1 2902 18 1151 3063 181567 42392 6.49978 6.49978 -160.111 -6.49978 0 0 612192. 2118.31 0.68 0.11 0.16 -1 -1 0.68 0.0152348 0.0138431 157 156 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 16.24 vpr 63.22 MiB -1 -1 0.59 21432 12 0.52 -1 -1 36400 -1 -1 24 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64740 30 32 216 248 1 168 86 17 17 289 -1 unnamed_device 24.9 MiB 0.81 981 5378 1128 4037 213 63.2 MiB 0.21 0.00 7.10558 -136.499 -7.10558 7.10558 2.45 0.000172321 0.000139139 0.181602 0.180431 28 2857 37 6.55708e+06 289320 500653. 1732.36 4.93 0.400055 0.3933 21310 115450 -1 2456 20 1059 3011 230424 69009 6.18298 6.18298 -135.053 -6.18298 0 0 612192. 2118.31 0.71 0.06 0.08 -1 -1 0.71 0.0108761 0.0096872 132 128 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 15.76 vpr 63.22 MiB -1 -1 0.79 21584 12 0.40 -1 -1 36532 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64740 32 32 236 268 1 183 86 17 17 289 -1 unnamed_device 24.9 MiB 0.88 1197 6890 1537 4796 557 63.2 MiB 0.07 0.00 6.77748 -151.802 -6.77748 6.77748 2.62 0.000185316 0.000149828 0.041666 0.0399195 28 3023 34 6.55708e+06 265210 500653. 1732.36 4.20 0.0762246 0.0698229 21310 115450 -1 2655 25 1046 2873 228066 76603 6.12952 6.12952 -149.175 -6.12952 0 0 612192. 2118.31 0.98 0.18 0.28 -1 -1 0.98 0.0227078 0.0210598 146 142 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 17.87 vpr 63.82 MiB -1 -1 0.51 21584 13 1.06 -1 -1 36496 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65348 32 32 283 315 1 223 94 17 17 289 -1 unnamed_device 25.2 MiB 0.88 1356 7123 1389 5311 423 63.8 MiB 0.07 0.00 8.23449 -171.323 -8.23449 8.23449 2.35 0.000243511 0.000198708 0.0359604 0.0342467 28 3890 40 6.55708e+06 361650 500653. 1732.36 5.65 0.205475 0.196524 21310 115450 -1 3255 17 1399 4014 246791 56259 6.96836 6.96836 -162.616 -6.96836 0 0 612192. 2118.31 0.84 0.22 0.12 -1 -1 0.84 0.0189513 0.0172631 191 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 29.78 vpr 64.23 MiB -1 -1 0.62 21888 14 1.04 -1 -1 36524 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65768 32 32 303 335 1 241 94 17 17 289 -1 unnamed_device 25.5 MiB 1.81 1483 9892 2515 6721 656 64.2 MiB 0.32 0.00 8.67238 -180.492 -8.67238 8.67238 2.33 0.000277293 0.000230932 0.132532 0.0125186 28 4160 43 6.55708e+06 361650 500653. 1732.36 18.60 0.399221 0.261397 21310 115450 -1 3424 19 1558 4418 249183 58613 7.71769 7.71769 -175.116 -7.71769 0 0 612192. 2118.31 0.27 0.06 0.08 -1 -1 0.27 0.0193934 0.0176474 210 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 17.84 vpr 63.53 MiB -1 -1 0.42 21280 11 0.77 -1 -1 36216 -1 -1 27 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65052 29 32 225 257 1 174 88 17 17 289 -1 unnamed_device 25.0 MiB 0.88 1052 8473 2221 5229 1023 63.5 MiB 0.24 0.00 6.75495 -130.804 -6.75495 6.75495 2.09 0.000186347 0.000143367 0.0568755 0.054588 26 3163 38 6.55708e+06 325485 477104. 1650.88 7.03 0.196024 0.090564 21022 109990 -1 2641 18 1106 3044 195220 44709 5.89878 5.89878 -129.109 -5.89878 0 0 585099. 2024.56 0.83 0.14 0.30 -1 -1 0.83 0.142459 0.141024 147 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 24.43 vpr 64.20 MiB -1 -1 0.75 22040 12 0.90 -1 -1 36384 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65740 32 32 301 333 1 230 97 17 17 289 -1 unnamed_device 25.5 MiB 1.42 1418 15859 4433 8623 2803 64.2 MiB 0.19 0.00 7.2388 -152.411 -7.2388 7.2388 2.44 0.000246247 0.000201596 0.0224514 0.0186579 38 3937 42 6.55708e+06 397815 638502. 2209.35 11.61 0.490081 0.47489 23326 155178 -1 3172 19 1543 5081 250926 58666 6.31284 6.31284 -144.952 -6.31284 0 0 851065. 2944.86 0.84 0.15 0.22 -1 -1 0.84 0.061565 0.0599219 209 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 14.97 vpr 63.89 MiB -1 -1 0.59 21736 14 0.65 -1 -1 36480 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65424 32 32 277 309 1 217 93 17 17 289 -1 unnamed_device 25.2 MiB 1.00 1479 5553 1093 3977 483 63.9 MiB 0.05 0.00 7.46703 -157.396 -7.46703 7.46703 2.16 0.000215532 0.000174512 0.00882704 0.0074498 30 3622 19 6.55708e+06 349595 526063. 1820.29 3.64 0.0545283 0.0418286 21886 126133 -1 3092 20 1468 4351 216807 50395 6.51004 6.51004 -150.243 -6.51004 0 0 666494. 2306.21 0.80 0.15 0.48 -1 -1 0.80 0.0171737 0.0155255 184 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 14.91 vpr 63.70 MiB -1 -1 0.51 21280 12 0.63 -1 -1 36152 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65228 32 32 227 259 1 178 87 17 17 289 -1 unnamed_device 24.9 MiB 1.04 1106 10647 2481 6612 1554 63.7 MiB 0.12 0.00 7.21601 -163.068 -7.21601 7.21601 2.54 0.000187149 0.000150026 0.0132073 0.0108813 30 2675 16 6.55708e+06 277265 526063. 1820.29 2.51 0.271777 0.26609 21886 126133 -1 2211 14 913 2619 128595 30382 6.0827 6.0827 -149.905 -6.0827 0 0 666494. 2306.21 0.86 0.09 0.46 -1 -1 0.86 0.0708267 0.0698649 140 133 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 13.04 vpr 63.02 MiB -1 -1 0.31 21128 10 0.42 -1 -1 36008 -1 -1 16 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64532 30 32 175 207 1 131 78 17 17 289 -1 unnamed_device 24.4 MiB 0.51 832 5390 1191 3544 655 63.0 MiB 0.17 0.00 5.518 -123.291 -5.518 5.518 2.63 0.000152041 0.000120499 0.00890047 0.00777637 26 2051 19 6.55708e+06 192880 477104. 1650.88 2.88 0.109942 0.0347068 21022 109990 -1 1867 14 674 1612 92831 22529 4.88266 4.88266 -120.898 -4.88266 0 0 585099. 2024.56 0.73 0.06 0.29 -1 -1 0.73 0.0398073 0.038899 91 87 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 14.37 vpr 63.63 MiB -1 -1 0.59 21432 13 0.45 -1 -1 36228 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65160 31 32 231 263 1 184 87 17 17 289 -1 unnamed_device 24.9 MiB 1.49 1110 11991 2880 6757 2354 63.6 MiB 0.09 0.00 6.78754 -145.779 -6.78754 6.78754 2.18 0.000196194 0.000160243 0.0160642 0.0133819 30 2893 20 6.55708e+06 289320 526063. 1820.29 2.61 0.275191 0.26788 21886 126133 -1 2396 23 1175 3120 155208 36586 6.34238 6.34238 -146.063 -6.34238 0 0 666494. 2306.21 0.86 0.33 0.20 -1 -1 0.86 0.224556 0.222885 144 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 17.87 vpr 64.18 MiB -1 -1 0.80 21736 13 0.98 -1 -1 37016 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65724 32 32 304 336 1 224 95 17 17 289 -1 unnamed_device 25.6 MiB 1.47 1342 7223 1422 5428 373 64.2 MiB 0.16 0.00 8.47343 -161.189 -8.47343 8.47343 2.81 0.000250521 0.000205034 0.128684 0.126853 28 3766 23 6.55708e+06 373705 500653. 1732.36 4.48 0.405878 0.398506 21310 115450 -1 3211 18 1501 4368 238128 57322 7.45116 7.45116 -159.426 -7.45116 0 0 612192. 2118.31 0.85 0.06 0.26 -1 -1 0.85 0.0183187 0.0167523 211 210 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 20.39 vpr 64.12 MiB -1 -1 0.63 21888 13 1.14 -1 -1 36612 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65660 32 32 288 320 1 221 91 17 17 289 -1 unnamed_device 25.5 MiB 1.78 1497 6415 1520 4239 656 64.1 MiB 0.07 0.00 7.98903 -167.855 -7.98903 7.98903 2.04 0.000323605 0.000262002 0.0112534 0.00944675 40 3422 18 6.55708e+06 325485 666494. 2306.21 7.61 0.198638 0.165212 23614 160646 -1 3409 19 1476 4945 367187 102218 6.7993 6.7993 -155.211 -6.7993 0 0 872365. 3018.56 0.99 0.35 0.29 -1 -1 0.99 0.156283 0.154534 194 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 14.77 vpr 62.78 MiB -1 -1 0.49 20824 9 0.54 -1 -1 36212 -1 -1 24 26 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64284 26 32 152 184 1 120 82 17 17 289 -1 unnamed_device 24.2 MiB 0.79 608 5066 1233 3547 286 62.8 MiB 0.02 0.00 4.88957 -92.6709 -4.88957 4.88957 2.35 0.000133007 9.854e-05 0.00499856 0.00407266 26 1805 25 6.55708e+06 289320 477104. 1650.88 3.97 0.0276024 0.0233125 21022 109990 -1 1575 17 648 1573 109617 25292 4.37994 4.37994 -93.4687 -4.37994 0 0 585099. 2024.56 0.70 0.27 0.47 -1 -1 0.70 0.00860853 0.00762772 87 76 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 16.99 vpr 63.90 MiB -1 -1 0.72 21736 13 0.87 -1 -1 36664 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65436 32 32 287 319 1 210 89 17 17 289 -1 unnamed_device 25.3 MiB 0.90 1399 12365 2949 7626 1790 63.9 MiB 0.16 0.00 7.71183 -153.087 -7.71183 7.71183 2.32 0.000240156 0.000189192 0.0726536 0.0692838 30 3944 35 6.55708e+06 301375 526063. 1820.29 5.68 0.122996 0.112997 21886 126133 -1 3008 16 1345 4034 208784 46996 6.6837 6.6837 -146.667 -6.6837 0 0 666494. 2306.21 0.67 0.21 0.25 -1 -1 0.67 0.0656513 0.0642845 193 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 15.13 vpr 62.72 MiB -1 -1 0.42 20976 8 0.55 -1 -1 36284 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64228 32 32 154 186 1 120 80 17 17 289 -1 unnamed_device 24.3 MiB 0.38 748 11432 3918 5733 1781 62.7 MiB 0.14 0.00 4.04251 -94.2802 -4.04251 4.04251 2.74 5.5568e-05 4.227e-05 0.00616164 0.00489562 26 1864 42 6.55708e+06 192880 477104. 1650.88 3.68 0.184232 0.178598 21022 109990 -1 1673 21 698 1622 148867 52760 3.61128 3.61128 -96.2364 -3.61128 0 0 585099. 2024.56 0.84 0.17 0.29 -1 -1 0.84 0.00892278 0.00792332 77 60 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 20.32 vpr 63.86 MiB -1 -1 0.41 21432 15 0.78 -1 -1 36360 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65392 32 32 254 286 1 199 92 17 17 289 -1 unnamed_device 25.2 MiB 1.11 1245 4853 801 3926 126 63.9 MiB 0.21 0.00 8.34392 -162.215 -8.34392 8.34392 2.94 0.000228798 0.000182974 0.00810016 0.00680192 36 3046 29 6.55708e+06 337540 612192. 2118.31 8.11 0.292767 0.191697 22750 144809 -1 2703 17 1198 3396 181585 42343 7.3199 7.3199 -156.187 -7.3199 0 0 782063. 2706.10 0.80 0.26 0.22 -1 -1 0.80 0.143782 0.142284 165 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 18.30 vpr 63.91 MiB -1 -1 0.47 21736 13 0.83 -1 -1 36524 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65448 32 32 260 292 1 207 90 17 17 289 -1 unnamed_device 25.2 MiB 1.06 1269 7326 1600 4999 727 63.9 MiB 0.12 0.00 6.99575 -156.984 -6.99575 6.99575 2.56 0.000272806 0.000225815 0.0536456 0.0516748 38 2907 28 6.55708e+06 313430 638502. 2209.35 5.81 0.438504 0.360134 23326 155178 -1 2573 15 1095 3179 157613 36582 6.05878 6.05878 -145.261 -6.05878 0 0 851065. 2944.86 1.10 0.39 0.42 -1 -1 1.10 0.0152471 0.0136767 168 166 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 17.94 vpr 64.05 MiB -1 -1 0.59 21736 13 0.92 -1 -1 36404 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65588 32 32 279 311 1 212 93 17 17 289 -1 unnamed_device 25.3 MiB 0.97 1254 7023 1455 4777 791 64.1 MiB 0.12 0.00 7.90752 -158.46 -7.90752 7.90752 2.44 0.00024355 0.000200794 0.0840947 0.0823705 28 3963 35 6.55708e+06 349595 500653. 1732.36 5.47 0.278187 0.270082 21310 115450 -1 3108 24 1793 5650 321202 75149 6.97296 6.97296 -156.634 -6.97296 0 0 612192. 2118.31 0.90 0.16 0.27 -1 -1 0.90 0.0206062 0.0184945 187 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 23.86 vpr 63.64 MiB -1 -1 0.94 21432 12 0.59 -1 -1 36216 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65164 32 32 238 270 1 189 87 17 17 289 -1 unnamed_device 24.9 MiB 0.86 1268 6039 1228 4546 265 63.6 MiB 0.05 0.00 6.67895 -148.946 -6.67895 6.67895 2.35 0.000190361 0.000155114 0.0240746 0.0226558 34 3542 37 6.55708e+06 277265 585099. 2024.56 12.51 0.114243 0.103952 22462 138074 -1 2861 18 1194 3516 235049 51260 5.84732 5.84732 -144.45 -5.84732 0 0 742403. 2568.87 0.86 0.09 0.44 -1 -1 0.86 0.0146786 0.0133221 147 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 15.82 vpr 63.39 MiB -1 -1 0.46 21280 11 0.52 -1 -1 36216 -1 -1 23 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64916 30 32 213 245 1 165 85 17 17 289 -1 unnamed_device 24.7 MiB 0.59 950 9199 2047 6588 564 63.4 MiB 0.30 0.00 6.46258 -131.985 -6.46258 6.46258 2.18 0.000175295 0.000140354 0.236808 0.234731 26 2917 23 6.55708e+06 277265 477104. 1650.88 5.71 0.338338 0.331592 21022 109990 -1 2253 16 947 2456 142297 33659 5.84932 5.84932 -128.893 -5.84932 0 0 585099. 2024.56 0.73 0.08 0.32 -1 -1 0.73 0.00708358 0.00648819 131 125 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 17.35 vpr 63.62 MiB -1 -1 0.58 21584 11 0.74 -1 -1 36388 -1 -1 28 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65144 28 32 227 259 1 175 88 17 17 289 -1 unnamed_device 25.0 MiB 1.17 1027 5548 1148 3763 637 63.6 MiB 0.04 0.00 6.55329 -127.208 -6.55329 6.55329 2.60 0.000191834 0.000156447 0.00804838 0.00670483 24 3402 39 6.55708e+06 337540 448715. 1552.65 4.50 0.0818455 0.0748876 20734 103517 -1 2645 17 1143 3034 196743 45248 6.18298 6.18298 -132.987 -6.18298 0 0 554710. 1919.41 0.50 0.17 0.50 -1 -1 0.50 0.00923821 0.0083866 150 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 14.71 vpr 63.95 MiB -1 -1 0.77 21280 12 0.95 -1 -1 36912 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65488 32 32 274 306 1 206 90 17 17 289 -1 unnamed_device 25.2 MiB 0.87 1316 8331 2003 5453 875 64.0 MiB 0.25 0.00 7.36014 -161.452 -7.36014 7.36014 1.87 0.000225881 0.000179942 0.0117248 0.00968874 28 3531 24 6.55708e+06 313430 500653. 1732.36 3.73 0.100884 0.0927577 21310 115450 -1 3128 17 1351 3514 217723 49912 6.51204 6.51204 -165.193 -6.51204 0 0 612192. 2118.31 0.62 0.31 0.18 -1 -1 0.62 0.22437 0.223004 181 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 16.32 vpr 63.64 MiB -1 -1 0.61 21280 12 0.81 -1 -1 36220 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65168 31 32 237 269 1 179 86 17 17 289 -1 unnamed_device 24.9 MiB 2.05 1054 7268 1685 4837 746 63.6 MiB 0.11 0.00 7.17381 -146.631 -7.17381 7.17381 2.27 0.000214669 0.000167288 0.0102319 0.00840821 28 2898 38 6.55708e+06 277265 500653. 1732.36 4.27 0.0536111 0.0458587 21310 115450 -1 2411 16 1060 2835 167693 41951 6.1239 6.1239 -140.345 -6.1239 0 0 612192. 2118.31 0.72 0.10 0.15 -1 -1 0.72 0.0917908 0.0911649 149 146 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 14.96 vpr 63.23 MiB -1 -1 0.67 21432 10 0.58 -1 -1 36280 -1 -1 22 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64748 29 32 220 252 1 163 83 17 17 289 -1 unnamed_device 24.7 MiB 0.75 1026 7463 1753 4811 899 63.2 MiB 0.08 0.00 5.795 -123.2 -5.795 5.795 2.57 0.000183162 0.000148206 0.0104414 0.00867176 28 2799 27 6.55708e+06 265210 500653. 1732.36 4.49 0.343749 0.337303 21310 115450 -1 2318 15 862 2491 156851 35739 5.15966 5.15966 -121.068 -5.15966 0 0 612192. 2118.31 0.79 0.11 0.17 -1 -1 0.79 0.0102541 0.00927236 137 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 17.41 vpr 64.05 MiB -1 -1 0.82 22192 13 0.90 -1 -1 36856 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65588 32 32 315 347 1 239 95 17 17 289 -1 unnamed_device 25.5 MiB 1.36 1543 8303 1822 5923 558 64.1 MiB 0.24 0.00 7.75344 -163.706 -7.75344 7.75344 2.25 0.000265666 0.000212728 0.132232 0.130695 30 3739 28 6.55708e+06 373705 526063. 1820.29 5.42 0.498812 0.491204 21886 126133 -1 3152 19 1483 4706 232308 53814 6.7595 6.7595 -157.725 -6.7595 0 0 666494. 2306.21 0.78 0.29 0.28 -1 -1 0.78 0.0205875 0.0187715 221 221 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 20.13 vpr 64.11 MiB -1 -1 0.56 22192 14 1.03 -1 -1 36796 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65652 32 32 282 314 1 220 92 17 17 289 -1 unnamed_device 25.3 MiB 1.50 1334 6095 1239 4218 638 64.1 MiB 0.07 0.00 7.39355 -163.567 -7.39355 7.39355 2.47 0.000234887 0.000189243 0.0104702 0.00869405 36 3537 22 6.55708e+06 337540 612192. 2118.31 6.93 0.25808 0.246451 22750 144809 -1 3005 17 1412 4093 215219 50717 6.65518 6.65518 -154.201 -6.65518 0 0 782063. 2706.10 1.21 0.29 0.23 -1 -1 1.21 0.0526924 0.0510832 191 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 14.55 vpr 63.66 MiB -1 -1 0.50 21584 12 0.28 -1 -1 36256 -1 -1 29 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65188 31 32 241 273 1 189 92 17 17 289 -1 unnamed_device 25.0 MiB 0.59 1163 7958 1799 5552 607 63.7 MiB 0.02 0.00 7.47368 -147.272 -7.47368 7.47368 2.74 9.2641e-05 7.5569e-05 0.00750833 0.00669275 30 2894 20 6.55708e+06 349595 526063. 1820.29 3.31 0.038813 0.0338137 21886 126133 -1 2412 14 945 2660 131405 30625 6.4819 6.4819 -139.307 -6.4819 0 0 666494. 2306.21 0.88 0.15 0.16 -1 -1 0.88 0.0119178 0.0108661 156 150 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 15.73 vpr 63.97 MiB -1 -1 0.52 22040 12 0.79 -1 -1 36540 -1 -1 33 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65504 31 32 307 339 1 235 96 17 17 289 -1 unnamed_device 25.5 MiB 1.36 1468 11922 3374 7097 1451 64.0 MiB 0.15 0.00 7.8013 -160.233 -7.8013 7.8013 2.45 0.000122797 9.9447e-05 0.0095185 0.00773894 30 3747 34 6.55708e+06 397815 526063. 1820.29 3.74 0.064967 0.0565504 21886 126133 -1 3088 18 1392 3987 196092 45720 6.7601 6.7601 -154.181 -6.7601 0 0 666494. 2306.21 0.88 0.22 0.33 -1 -1 0.88 0.0714129 0.0698807 218 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 16.46 vpr 64.17 MiB -1 -1 0.67 22192 14 1.41 -1 -1 36384 -1 -1 29 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65708 31 32 293 325 1 224 92 17 17 289 -1 unnamed_device 25.5 MiB 1.02 1386 14996 4276 8243 2477 64.2 MiB 0.18 0.00 8.29295 -162.632 -8.29295 8.29295 1.99 0.000266032 0.000221603 0.0212762 0.0174012 30 3602 23 6.55708e+06 349595 526063. 1820.29 4.52 0.175185 0.165434 21886 126133 -1 2932 17 1464 4453 204275 49023 7.4421 7.4421 -155.552 -7.4421 0 0 666494. 2306.21 1.05 0.03 0.67 -1 -1 1.05 0.00948041 0.00856926 202 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 19.06 vpr 63.71 MiB -1 -1 0.83 22040 13 1.12 -1 -1 36368 -1 -1 28 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65240 31 32 276 308 1 223 91 17 17 289 -1 unnamed_device 25.2 MiB 1.02 1440 7639 1723 5234 682 63.7 MiB 0.23 0.00 7.87383 -161.518 -7.87383 7.87383 2.54 0.000226965 0.000177067 0.0506055 0.0484879 36 3587 30 6.55708e+06 337540 612192. 2118.31 6.56 0.335546 0.323666 22750 144809 -1 3109 20 1413 4024 228012 52562 6.82884 6.82884 -152.617 -6.82884 0 0 782063. 2706.10 0.73 0.31 0.34 -1 -1 0.73 0.0184968 0.0167916 185 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 17.21 vpr 63.46 MiB -1 -1 0.76 21584 13 0.62 -1 -1 36512 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64980 31 32 269 301 1 203 89 17 17 289 -1 unnamed_device 24.9 MiB 1.62 1318 11375 3119 6567 1689 63.5 MiB 0.18 0.00 7.15329 -140.404 -7.15329 7.15329 2.07 0.000208219 0.00016891 0.069416 0.0667563 30 3610 35 6.55708e+06 313430 526063. 1820.29 5.92 0.118316 0.108947 21886 126133 -1 2841 17 1212 4040 206173 47346 6.10964 6.10964 -133.356 -6.10964 0 0 666494. 2306.21 0.82 0.14 0.24 -1 -1 0.82 0.016796 0.0154272 179 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 14.96 vpr 63.80 MiB -1 -1 0.64 21736 12 0.51 -1 -1 36504 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65328 32 32 264 296 1 196 88 17 17 289 -1 unnamed_device 25.2 MiB 0.72 1298 13348 3331 7818 2199 63.8 MiB 0.38 0.00 7.05352 -145.133 -7.05352 7.05352 2.61 9.3972e-05 7.6073e-05 0.225936 0.223059 30 2991 25 6.55708e+06 289320 526063. 1820.29 3.09 0.278448 0.2707 21886 126133 -1 2438 15 1115 3199 150136 35932 6.21758 6.21758 -138.799 -6.21758 0 0 666494. 2306.21 1.08 0.02 0.43 -1 -1 1.08 0.00859725 0.00797514 171 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 31.49 vpr 64.26 MiB -1 -1 0.57 22648 14 1.69 -1 -1 37236 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65800 32 32 324 356 1 249 95 17 17 289 -1 unnamed_device 25.8 MiB 1.84 1672 6791 1273 5168 350 64.3 MiB 0.10 0.00 8.30332 -177.675 -8.30332 8.30332 2.29 0.000257115 0.000209385 0.0605124 0.0586785 36 4717 39 6.55708e+06 373705 612192. 2118.31 17.89 0.150156 0.13635 22750 144809 -1 3779 17 1578 5239 295382 66337 6.80696 6.80696 -165.263 -6.80696 0 0 782063. 2706.10 1.14 0.18 0.49 -1 -1 1.14 0.0681389 0.0664953 230 230 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 16.21 vpr 63.78 MiB -1 -1 0.36 21432 11 0.56 -1 -1 36288 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65312 31 32 249 281 1 192 89 17 17 289 -1 unnamed_device 25.0 MiB 1.07 1193 12761 3444 7164 2153 63.8 MiB 0.06 0.00 6.7976 -143.12 -6.7976 6.7976 2.55 0.000214399 0.000174452 0.0168284 0.0137851 30 3532 31 6.55708e+06 313430 526063. 1820.29 4.66 0.0530741 0.0450625 21886 126133 -1 2773 16 1151 3356 185089 44645 6.14118 6.14118 -140.277 -6.14118 0 0 666494. 2306.21 1.17 0.24 0.21 -1 -1 1.17 0.218687 0.218009 163 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 29.73 vpr 64.07 MiB -1 -1 0.67 21584 13 1.18 -1 -1 37116 -1 -1 28 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65612 31 32 284 316 1 206 91 17 17 289 -1 unnamed_device 25.3 MiB 1.12 1353 4987 879 3661 447 64.1 MiB 0.20 0.00 8.21906 -157.673 -8.21906 8.21906 2.60 0.000250076 0.000208563 0.00876377 0.00744684 30 3230 17 6.55708e+06 337540 526063. 1820.29 16.21 0.772674 0.759543 21886 126133 -1 2967 17 1184 3879 195213 44958 7.17156 7.17156 -150.888 -7.17156 0 0 666494. 2306.21 1.14 0.19 0.24 -1 -1 1.14 0.0171481 0.0156243 193 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 34.50 vpr 64.04 MiB -1 -1 0.55 21736 12 0.78 -1 -1 36540 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65576 32 32 303 335 1 222 93 17 17 289 -1 unnamed_device 25.5 MiB 1.50 1498 9753 2481 6035 1237 64.0 MiB 0.13 0.00 7.14558 -152.066 -7.14558 7.14558 2.43 0.000231845 0.00018863 0.0144424 0.0120127 38 3600 24 6.55708e+06 349595 638502. 2209.35 22.01 0.256602 0.237007 23326 155178 -1 3037 27 1318 4614 456379 202726 6.43304 6.43304 -143.219 -6.43304 0 0 851065. 2944.86 0.97 0.35 0.25 -1 -1 0.97 0.056061 0.0540156 210 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 19.32 vpr 64.02 MiB -1 -1 0.71 21432 13 0.86 -1 -1 36500 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65552 32 32 272 304 1 203 93 17 17 289 -1 unnamed_device 25.3 MiB 0.89 1297 6813 1586 4608 619 64.0 MiB 0.09 0.00 7.48135 -156.262 -7.48135 7.48135 2.51 0.000234673 0.000194611 0.0106816 0.00890808 28 3823 45 6.55708e+06 349595 500653. 1732.36 6.71 0.0599986 0.051646 21310 115450 -1 3148 50 2968 10537 948366 364515 6.70864 6.70864 -156.965 -6.70864 0 0 612192. 2118.31 1.16 0.62 0.19 -1 -1 1.16 0.222713 0.219997 183 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 17.04 vpr 63.94 MiB -1 -1 0.79 21736 13 0.81 -1 -1 36676 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65476 32 32 271 303 1 212 90 17 17 289 -1 unnamed_device 25.2 MiB 1.09 1336 8733 2203 5909 621 63.9 MiB 0.17 0.00 7.1624 -156.518 -7.1624 7.1624 2.75 0.00023066 0.000188295 0.0131387 0.0109622 30 3329 42 6.55708e+06 313430 526063. 1820.29 4.71 0.202045 0.193331 21886 126133 -1 2751 17 1169 3376 161624 38182 6.13918 6.13918 -146.674 -6.13918 0 0 666494. 2306.21 0.64 0.19 0.37 -1 -1 0.64 0.162788 0.161418 178 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 24.77 vpr 64.28 MiB -1 -1 1.07 21584 12 0.81 -1 -1 36388 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65824 32 32 288 320 1 223 94 17 17 289 -1 unnamed_device 25.6 MiB 1.36 1360 10531 2375 7022 1134 64.3 MiB 0.20 0.00 7.39995 -157.446 -7.39995 7.39995 2.36 0.000239352 0.000191892 0.0797961 0.0770977 34 3908 49 6.55708e+06 361650 585099. 2024.56 10.61 0.198538 0.184351 22462 138074 -1 3165 29 1382 4606 460541 182677 6.65918 6.65918 -152.88 -6.65918 0 0 742403. 2568.87 1.20 0.47 0.24 -1 -1 1.20 0.133076 0.130756 197 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 22.30 vpr 64.08 MiB -1 -1 0.74 22040 13 0.93 -1 -1 37212 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65620 32 32 306 338 1 233 95 17 17 289 -1 unnamed_device 25.3 MiB 1.31 1514 8087 1653 5822 612 64.1 MiB 0.27 0.00 7.8424 -163.45 -7.8424 7.8424 2.74 0.000264498 0.000217875 0.0132645 0.0110633 36 3909 42 6.55708e+06 373705 612192. 2118.31 10.15 0.270623 0.246172 22750 144809 -1 3194 16 1545 4822 245446 57058 7.03004 7.03004 -158.179 -7.03004 0 0 782063. 2706.10 0.91 0.06 0.44 -1 -1 0.91 0.0134039 0.0123141 212 212 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 19.07 vpr 63.90 MiB -1 -1 0.66 21432 14 1.30 -1 -1 36368 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65436 32 32 262 294 1 191 88 17 17 289 -1 unnamed_device 25.2 MiB 0.66 1270 6328 1321 4213 794 63.9 MiB 0.09 0.00 8.25686 -165.075 -8.25686 8.25686 2.45 0.000215573 0.000167457 0.0102148 0.00840408 36 3201 36 6.55708e+06 289320 612192. 2118.31 6.64 0.163844 0.152244 22750 144809 -1 2629 17 1114 3456 183339 42268 7.17216 7.17216 -154.805 -7.17216 0 0 782063. 2706.10 1.10 0.17 0.38 -1 -1 1.10 0.0150727 0.013776 168 168 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 19.31 vpr 64.12 MiB -1 -1 0.68 21584 13 1.02 -1 -1 36948 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65656 32 32 291 323 1 224 94 17 17 289 -1 unnamed_device 25.5 MiB 1.08 1492 5845 1128 4445 272 64.1 MiB 0.12 0.00 8.14181 -162.894 -8.14181 8.14181 2.88 0.000305495 0.000206887 0.0109095 0.00917872 30 3707 27 6.55708e+06 361650 526063. 1820.29 5.69 0.167922 0.159794 21886 126133 -1 3113 28 1502 4504 339845 128741 6.93376 6.93376 -156.281 -6.93376 0 0 666494. 2306.21 0.88 0.19 0.32 -1 -1 0.88 0.134558 0.132516 198 197 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 23.19 vpr 64.18 MiB -1 -1 1.08 22040 13 0.88 -1 -1 36480 -1 -1 31 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65720 31 32 302 334 1 235 94 17 17 289 -1 unnamed_device 25.6 MiB 0.98 1346 6910 1355 5304 251 64.2 MiB 0.12 0.00 7.86512 -160.397 -7.86512 7.86512 2.22 0.00027271 0.000225967 0.0116621 0.00977571 36 3748 41 6.55708e+06 373705 612192. 2118.31 10.67 0.519042 0.505558 22750 144809 -1 3175 17 1501 4433 254001 59081 6.8411 6.8411 -154.25 -6.8411 0 0 782063. 2706.10 1.17 0.20 0.27 -1 -1 1.17 0.0185331 0.0170229 213 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 16.21 vpr 64.22 MiB -1 -1 0.67 22192 12 1.31 -1 -1 36540 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65764 32 32 308 340 1 238 97 17 17 289 -1 unnamed_device 25.5 MiB 0.96 1434 5869 1120 4385 364 64.2 MiB 0.26 0.00 7.65261 -158.289 -7.65261 7.65261 2.82 0.000263311 0.000207925 0.0103096 0.00864459 30 3474 18 6.55708e+06 397815 526063. 1820.29 3.65 0.156344 0.040551 21886 126133 -1 3042 18 1420 3930 177067 43130 6.71064 6.71064 -152.19 -6.71064 0 0 666494. 2306.21 0.72 0.27 0.24 -1 -1 0.72 0.0152312 0.0139051 216 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 16.28 vpr 63.12 MiB -1 -1 0.70 21432 11 0.49 -1 -1 36216 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64640 32 32 216 248 1 160 82 17 17 289 -1 unnamed_device 24.7 MiB 0.82 938 4354 809 3198 347 63.1 MiB 0.26 0.00 6.12166 -126.096 -6.12166 6.12166 2.58 0.000171101 0.000136213 0.00610813 0.00510208 26 2897 47 6.55708e+06 216990 477104. 1650.88 5.12 0.248103 0.241724 21022 109990 -1 2246 24 996 2582 215122 70691 5.29012 5.29012 -126.877 -5.29012 0 0 585099. 2024.56 0.84 0.07 0.30 -1 -1 0.84 0.0237992 0.0118264 125 122 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 16.99 vpr 63.66 MiB -1 -1 0.54 21584 13 0.65 -1 -1 36168 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65184 32 32 254 286 1 194 88 17 17 289 -1 unnamed_device 25.0 MiB 1.17 1244 6913 1456 4785 672 63.7 MiB 0.31 0.00 7.60641 -160.262 -7.60641 7.60641 2.39 0.000259354 0.000220131 0.00774441 0.00638308 30 2996 21 6.55708e+06 289320 526063. 1820.29 3.17 0.0450548 0.0388259 21886 126133 -1 2594 16 1049 3039 145132 34838 6.38724 6.38724 -146.837 -6.38724 0 0 666494. 2306.21 1.29 0.41 0.27 -1 -1 1.29 0.379267 0.337094 161 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 18.90 vpr 64.51 MiB -1 -1 0.91 22040 14 1.68 -1 -1 36812 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66056 32 32 338 370 1 252 97 17 17 289 -1 unnamed_device 25.8 MiB 1.02 1644 9865 2502 6499 864 64.5 MiB 0.17 0.00 8.53135 -177.728 -8.53135 8.53135 2.66 0.000277105 0.000229784 0.121284 0.118597 30 4291 29 6.55708e+06 397815 526063. 1820.29 6.73 0.418134 0.408261 21886 126133 -1 3602 17 1729 5456 262006 60865 7.3591 7.3591 -165.422 -7.3591 0 0 666494. 2306.21 0.96 0.24 0.19 -1 -1 0.96 0.0203461 0.0186193 245 244 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 20.65 vpr 64.07 MiB -1 -1 0.69 22040 13 1.12 -1 -1 36524 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65604 32 32 271 303 1 212 91 17 17 289 -1 unnamed_device 25.3 MiB 1.23 1387 8863 2093 6011 759 64.1 MiB 0.16 0.00 7.926 -171.401 -7.926 7.926 2.23 0.000224463 0.000185258 0.0770665 0.0107625 36 3165 17 6.55708e+06 325485 612192. 2118.31 8.13 0.418835 0.343493 22750 144809 -1 2855 15 1125 3293 180680 41408 6.9587 6.9587 -159.721 -6.9587 0 0 782063. 2706.10 1.00 0.21 0.48 -1 -1 1.00 0.0159113 0.014596 178 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 23.65 vpr 63.25 MiB -1 -1 0.61 21432 11 0.98 -1 -1 36708 -1 -1 23 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64768 30 32 224 256 1 165 85 17 17 289 -1 unnamed_device 24.7 MiB 0.57 1027 8641 2218 5647 776 63.2 MiB 0.08 0.00 6.67134 -137.606 -6.67134 6.67134 2.52 0.000185245 0.000151747 0.0487789 0.0468227 30 2408 35 6.55708e+06 277265 526063. 1820.29 12.15 0.462091 0.211644 21886 126133 -1 2006 16 836 2500 120266 28573 5.92772 5.92772 -132.802 -5.92772 0 0 666494. 2306.21 0.73 0.06 0.37 -1 -1 0.73 0.039015 0.0379287 139 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 22.35 vpr 63.96 MiB -1 -1 0.62 22496 15 2.30 -1 -1 36816 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65492 32 32 351 383 1 268 98 17 17 289 -1 unnamed_device 25.9 MiB 0.83 1739 8198 1861 5696 641 64.0 MiB 0.08 0.00 9.48099 -183.773 -9.48099 9.48099 2.27 0.000393793 0.000326572 0.0152582 0.0129286 30 4842 45 6.55708e+06 409870 526063. 1820.29 9.12 0.0878706 0.0762725 21886 126133 -1 3846 19 2218 7365 378356 84596 8.21781 8.21781 -174.493 -8.21781 0 0 666494. 2306.21 0.69 0.23 0.10 -1 -1 0.69 0.04138 0.039349 257 257 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 19.59 vpr 63.97 MiB -1 -1 0.64 21888 13 0.97 -1 -1 36348 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65508 32 32 297 329 1 215 92 17 17 289 -1 unnamed_device 25.5 MiB 1.06 1439 6509 1332 4682 495 64.0 MiB 0.08 0.00 8.18652 -164.372 -8.18652 8.18652 2.34 0.000239808 0.000197306 0.0110964 0.00935483 28 3956 45 6.55708e+06 337540 500653. 1732.36 8.19 0.210958 0.201628 21310 115450 -1 3396 19 1656 5038 310374 70106 7.4441 7.4441 -166.884 -7.4441 0 0 612192. 2118.31 0.67 0.25 0.30 -1 -1 0.67 0.24297 0.242014 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 14.49 vpr 63.32 MiB -1 -1 0.77 21128 11 0.50 -1 -1 36244 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64840 32 32 231 263 1 176 86 17 17 289 -1 unnamed_device 24.7 MiB 0.97 1055 6512 1402 4966 144 63.3 MiB 0.17 0.00 6.21838 -133.407 -6.21838 6.21838 2.46 0.000180908 0.000144444 0.121739 0.12007 28 3026 28 6.55708e+06 265210 500653. 1732.36 3.42 0.281054 0.274966 21310 115450 -1 2445 16 1058 2966 177272 41624 5.68992 5.68992 -134.582 -5.68992 0 0 612192. 2118.31 0.73 0.11 0.35 -1 -1 0.73 0.0124398 0.0113336 141 137 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 19.76 vpr 64.24 MiB -1 -1 0.71 21736 12 1.04 -1 -1 36320 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65780 32 32 305 337 1 231 94 17 17 289 -1 unnamed_device 25.5 MiB 1.78 1408 8188 1789 5868 531 64.2 MiB 0.16 0.00 7.58418 -153.318 -7.58418 7.58418 2.65 0.000273585 0.000227731 0.014541 0.0122114 30 3802 49 6.55708e+06 361650 526063. 1820.29 6.02 0.0697067 0.0596566 21886 126133 -1 3014 16 1306 4296 205583 47349 6.8823 6.8823 -149.116 -6.8823 0 0 666494. 2306.21 1.01 0.11 0.27 -1 -1 1.01 0.0180854 0.0166347 213 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 30.15 vpr 63.76 MiB -1 -1 0.49 21432 12 0.58 -1 -1 36228 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65288 32 32 243 275 1 186 90 17 17 289 -1 unnamed_device 25.0 MiB 0.99 1181 8733 2191 5537 1005 63.8 MiB 0.10 0.00 7.34198 -153.7 -7.34198 7.34198 2.27 0.000284073 0.000245447 0.0134034 0.0108118 28 3451 25 6.55708e+06 313430 500653. 1732.36 18.65 0.1461 0.131578 21310 115450 -1 2819 17 1129 3314 185185 43189 6.47284 6.47284 -151.063 -6.47284 0 0 612192. 2118.31 0.74 0.24 0.29 -1 -1 0.74 0.171431 0.17017 153 149 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 16.90 vpr 63.52 MiB -1 -1 0.58 21584 12 0.70 -1 -1 36352 -1 -1 21 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65040 30 32 228 260 1 161 83 17 17 289 -1 unnamed_device 24.7 MiB 0.52 977 10163 2498 5973 1692 63.5 MiB 0.12 0.00 7.03389 -140.137 -7.03389 7.03389 2.89 0.000180603 0.00014552 0.0821045 0.0110786 26 2674 45 6.55708e+06 253155 477104. 1650.88 5.31 0.33595 0.144389 21022 109990 -1 2235 19 900 2564 151191 35379 6.23184 6.23184 -136.811 -6.23184 0 0 585099. 2024.56 1.27 0.14 0.29 -1 -1 1.27 0.0141995 0.0129324 140 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 15.57 vpr 64.05 MiB -1 -1 0.70 21736 12 1.03 -1 -1 36356 -1 -1 31 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65584 29 32 275 307 1 206 92 17 17 289 -1 unnamed_device 25.3 MiB 0.72 1286 8165 1985 5620 560 64.0 MiB 0.19 0.00 6.66378 -127.805 -6.66378 6.66378 2.21 0.000265504 0.000223022 0.157749 0.114161 30 3497 38 6.55708e+06 373705 526063. 1820.29 4.02 0.206106 0.155828 21886 126133 -1 2685 18 1204 3985 199862 45719 5.82238 5.82238 -124.619 -5.82238 0 0 666494. 2306.21 0.81 0.16 0.37 -1 -1 0.81 0.0498197 0.0483227 191 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 20.60 vpr 64.41 MiB -1 -1 0.67 21736 13 0.86 -1 -1 36380 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65960 32 32 330 362 1 256 97 17 17 289 -1 unnamed_device 25.6 MiB 1.80 1575 8089 1792 5648 649 64.4 MiB 0.31 0.13 8.199 -173.718 -8.199 8.199 2.81 0.129128 0.129066 0.14304 0.140801 30 4366 46 6.55708e+06 397815 526063. 1820.29 6.44 0.41256 0.402106 21886 126133 -1 3389 25 1746 4854 343466 119381 7.16956 7.16956 -166.873 -7.16956 0 0 666494. 2306.21 0.85 0.25 0.25 -1 -1 0.85 0.125728 0.124294 238 236 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 21.88 vpr 63.96 MiB -1 -1 0.66 21736 12 0.61 -1 -1 36516 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65492 32 32 290 322 1 220 96 17 17 289 -1 unnamed_device 25.3 MiB 1.33 1304 13674 3198 8447 2029 64.0 MiB 0.23 0.00 7.70392 -150.607 -7.70392 7.70392 2.62 0.000287756 0.000243993 0.0156864 0.0131775 36 3558 36 6.55708e+06 385760 612192. 2118.31 10.03 0.140172 0.0835049 22750 144809 -1 2907 21 1684 5666 329352 73961 6.79104 6.79104 -144.906 -6.79104 0 0 782063. 2706.10 0.97 0.18 0.37 -1 -1 0.97 0.0190456 0.0172129 200 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 17.17 vpr 63.38 MiB -1 -1 0.28 21584 12 0.72 -1 -1 36536 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64904 32 32 214 246 1 164 84 17 17 289 -1 unnamed_device 24.7 MiB 1.82 1050 7587 1832 5326 429 63.4 MiB 0.08 0.00 6.64951 -139.656 -6.64951 6.64951 2.79 0.000174859 0.000141086 0.00982881 0.00812266 28 2914 43 6.55708e+06 241100 500653. 1732.36 5.09 0.0518456 0.0444756 21310 115450 -1 2569 21 989 2719 224458 66094 5.72972 5.72972 -139.691 -5.72972 0 0 612192. 2118.31 0.61 0.45 0.24 -1 -1 0.61 0.405671 0.40421 126 120 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 17.94 vpr 63.74 MiB -1 -1 0.74 21432 12 0.86 -1 -1 36188 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65268 31 32 244 276 1 182 87 17 17 289 -1 unnamed_device 25.0 MiB 1.21 1153 6039 1205 4356 478 63.7 MiB 0.14 0.00 6.87029 -138.197 -6.87029 6.87029 2.28 0.000202327 0.000164137 0.00945293 0.00786813 28 3361 44 6.55708e+06 289320 500653. 1732.36 6.30 0.154211 0.146761 21310 115450 -1 2772 17 1156 3559 199622 46561 6.42138 6.42138 -144.612 -6.42138 0 0 612192. 2118.31 0.72 0.11 0.13 -1 -1 0.72 0.0136977 0.012436 154 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 19.58 vpr 63.81 MiB -1 -1 0.74 21280 11 0.73 -1 -1 36512 -1 -1 30 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65344 30 32 276 308 1 210 92 17 17 289 -1 unnamed_device 25.2 MiB 0.43 1269 13340 3337 7820 2183 63.8 MiB 0.20 0.00 6.87709 -132.09 -6.87709 6.87709 2.44 0.000243462 0.000198361 0.0204075 0.0170615 36 3124 36 6.55708e+06 361650 612192. 2118.31 7.91 0.381597 0.163625 22750 144809 -1 2680 15 1122 3678 200840 45836 6.15344 6.15344 -128.496 -6.15344 0 0 782063. 2706.10 1.16 0.19 0.28 -1 -1 1.16 0.162084 0.014053 190 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 18.52 vpr 63.81 MiB -1 -1 0.59 21432 11 0.46 -1 -1 36348 -1 -1 27 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65340 28 32 253 285 1 181 87 17 17 289 -1 unnamed_device 25.2 MiB 0.65 1130 7959 1993 5244 722 63.8 MiB 0.13 0.00 6.52095 -121.312 -6.52095 6.52095 2.30 0.000215182 0.000169722 0.0966236 0.0946183 28 3267 50 6.55708e+06 325485 500653. 1732.36 7.89 0.302792 0.133017 21310 115450 -1 2607 21 1291 4624 265920 59926 6.02298 6.02298 -121.386 -6.02298 0 0 612192. 2118.31 0.70 0.25 0.21 -1 -1 0.70 0.094331 0.0927083 172 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 27.39 vpr 63.68 MiB -1 -1 0.81 21584 13 0.61 -1 -1 36484 -1 -1 25 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65208 30 32 235 267 1 174 87 17 17 289 -1 unnamed_device 25.2 MiB 0.84 1062 5655 1187 4180 288 63.7 MiB 0.22 0.00 7.51524 -139.468 -7.51524 7.51524 2.18 9.3136e-05 7.5513e-05 0.00720594 0.00606239 30 2774 25 6.55708e+06 301375 526063. 1820.29 16.46 0.20291 0.175792 21886 126133 -1 2453 31 1002 3188 344719 155581 6.43104 6.43104 -133.612 -6.43104 0 0 666494. 2306.21 0.90 0.26 0.21 -1 -1 0.90 0.0172822 0.0153141 148 147 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 17.61 vpr 63.89 MiB -1 -1 0.57 21584 12 0.66 -1 -1 36704 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65420 32 32 264 296 1 207 92 17 17 289 -1 unnamed_device 25.2 MiB 0.71 1223 6923 1491 4662 770 63.9 MiB 0.08 0.00 7.37241 -157.796 -7.37241 7.37241 2.53 0.000235551 0.000191972 0.0108155 0.00907941 28 3438 19 6.55708e+06 337540 500653. 1732.36 6.57 0.0505002 0.0437114 21310 115450 -1 2927 15 1236 3365 193788 45715 6.4427 6.4427 -155.406 -6.4427 0 0 612192. 2118.31 0.62 0.15 0.40 -1 -1 0.62 0.0215211 0.0203 174 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 19.66 vpr 64.04 MiB -1 -1 0.80 21584 13 1.13 -1 -1 36712 -1 -1 27 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65572 31 32 278 310 1 202 90 17 17 289 -1 unnamed_device 25.3 MiB 1.16 1253 5919 1160 4308 451 64.0 MiB 0.02 0.00 8.10858 -155.032 -8.10858 8.10858 2.93 9.9363e-05 8.0103e-05 0.00460606 0.00385389 28 3477 40 6.55708e+06 325485 500653. 1732.36 6.03 0.275341 0.155675 21310 115450 -1 2926 18 1294 3788 266712 71814 7.24996 7.24996 -156.034 -7.24996 0 0 612192. 2118.31 0.85 0.14 0.14 -1 -1 0.85 0.0173078 0.0157634 187 187 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 14.49 vpr 63.93 MiB -1 -1 0.84 21888 14 0.79 -1 -1 36636 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65468 32 32 290 322 1 214 92 17 17 289 -1 unnamed_device 25.3 MiB 0.99 1284 10442 2916 6424 1102 63.9 MiB 0.17 0.00 8.2513 -166.21 -8.2513 8.2513 2.53 0.000114041 9.1017e-05 0.0138308 0.0115221 28 3487 25 6.55708e+06 337540 500653. 1732.36 3.67 0.0549611 0.0471063 21310 115450 -1 3128 21 1567 4269 260536 59014 7.4395 7.4395 -165.331 -7.4395 0 0 612192. 2118.31 0.69 0.32 0.23 -1 -1 0.69 0.013333 0.0120216 196 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 39.21 vpr 63.95 MiB -1 -1 0.75 22192 14 1.00 -1 -1 36832 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65488 32 32 269 301 1 199 89 17 17 289 -1 unnamed_device 25.3 MiB 1.16 1345 13751 3514 7977 2260 64.0 MiB 0.19 0.00 7.89392 -157.269 -7.89392 7.89392 2.69 0.000218832 0.00017508 0.136029 0.132626 28 3938 44 6.55708e+06 301375 500653. 1732.36 25.85 0.240042 0.220753 21310 115450 -1 3166 45 2401 8589 1037444 427254 7.26844 7.26844 -156.544 -7.26844 0 0 612192. 2118.31 0.71 0.82 0.20 -1 -1 0.71 0.164016 0.160598 175 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 16.66 vpr 64.11 MiB -1 -1 0.60 21888 13 1.34 -1 -1 36260 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65652 32 32 296 328 1 221 93 17 17 289 -1 unnamed_device 25.6 MiB 1.47 1380 7443 1649 5147 647 64.1 MiB 0.20 0.00 8.01781 -156.923 -8.01781 8.01781 2.19 0.000253427 0.000209441 0.0128526 0.0108606 30 3412 19 6.55708e+06 349595 526063. 1820.29 3.34 0.0563902 0.0485874 21886 126133 -1 2981 16 1289 4003 190097 45381 6.97036 6.97036 -150.248 -6.97036 0 0 666494. 2306.21 0.88 0.17 0.28 -1 -1 0.88 0.0168691 0.0154788 205 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 15.50 vpr 63.66 MiB -1 -1 0.44 21432 13 0.71 -1 -1 36264 -1 -1 24 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65184 30 32 234 266 1 186 86 17 17 289 -1 unnamed_device 25.2 MiB 1.49 1107 9158 2494 5916 748 63.7 MiB 0.13 0.00 7.35655 -149.828 -7.35655 7.35655 2.75 0.000262176 0.000216583 0.0554604 0.053026 30 2818 21 6.55708e+06 289320 526063. 1820.29 3.38 0.091842 0.0844766 21886 126133 -1 2341 16 962 2571 120557 29483 6.50744 6.50744 -141.672 -6.50744 0 0 666494. 2306.21 0.77 0.06 0.28 -1 -1 0.77 0.155731 0.0121329 147 146 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 21.33 vpr 64.20 MiB -1 -1 0.64 22040 13 1.46 -1 -1 36388 -1 -1 32 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 30 32 291 323 1 232 94 17 17 289 -1 unnamed_device 25.6 MiB 1.01 1381 6484 1204 4933 347 64.2 MiB 0.49 0.00 8.19984 -161.023 -8.19984 8.19984 2.13 0.00026095 0.000215637 0.00782817 0.00655675 36 3648 26 6.55708e+06 385760 612192. 2118.31 7.77 0.265722 0.25413 22750 144809 -1 3201 17 1547 4352 233422 54419 7.04936 7.04936 -153.097 -7.04936 0 0 782063. 2706.10 1.00 0.36 0.35 -1 -1 1.00 0.0182814 0.0169265 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 18.70 vpr 64.01 MiB -1 -1 0.70 22040 14 1.32 -1 -1 36532 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65548 32 32 274 306 1 210 91 17 17 289 -1 unnamed_device 25.3 MiB 1.65 1305 5599 950 4386 263 64.0 MiB 0.14 0.00 8.03849 -165.113 -8.03849 8.03849 2.30 0.000228771 0.000188167 0.106627 0.10508 30 3350 18 6.55708e+06 325485 526063. 1820.29 5.63 0.225627 0.21883 21886 126133 -1 2845 17 1252 4156 204492 47404 6.93176 6.93176 -158.794 -6.93176 0 0 666494. 2306.21 0.93 0.29 0.27 -1 -1 0.93 0.252371 0.250949 181 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 17.87 vpr 63.89 MiB -1 -1 0.63 22040 13 0.82 -1 -1 36360 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65428 31 32 266 298 1 204 88 17 17 289 -1 unnamed_device 25.2 MiB 0.79 1143 8473 2254 5090 1129 63.9 MiB 0.16 0.00 7.8048 -151.404 -7.8048 7.8048 2.31 0.000313906 0.000265347 0.00642095 0.00525225 36 3221 20 6.55708e+06 301375 612192. 2118.31 7.08 0.0681647 0.059318 22750 144809 -1 2693 17 1231 3664 204139 47159 7.1997 7.1997 -150.348 -7.1997 0 0 782063. 2706.10 0.69 0.20 0.28 -1 -1 0.69 0.0282677 0.0269425 175 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 20.90 vpr 63.82 MiB -1 -1 0.57 21736 13 0.83 -1 -1 36676 -1 -1 27 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65352 30 32 266 298 1 204 89 17 17 289 -1 unnamed_device 25.2 MiB 1.43 1313 4445 808 3252 385 63.8 MiB 0.15 0.00 7.65777 -143.701 -7.65777 7.65777 2.59 0.00020558 0.00016777 0.0081875 0.00688493 28 3663 37 6.55708e+06 325485 500653. 1732.36 8.21 0.234629 0.129027 21310 115450 -1 3035 17 1282 3751 215756 50319 6.8013 6.8013 -143.19 -6.8013 0 0 612192. 2118.31 0.70 0.21 0.20 -1 -1 0.70 0.0151123 0.0137949 178 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 45.30 vpr 64.34 MiB -1 -1 0.63 22040 14 1.64 -1 -1 36380 -1 -1 37 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65880 32 32 310 342 1 238 101 17 17 289 -1 unnamed_device 25.6 MiB 1.28 1488 10441 2580 6390 1471 64.3 MiB 0.28 0.00 8.09286 -167.507 -8.09286 8.09286 2.76 0.000263127 0.000203516 0.198848 0.196182 30 3818 36 6.55708e+06 446035 526063. 1820.29 32.31 0.852786 0.829196 21886 126133 -1 3099 18 1565 4417 210129 50150 7.06724 7.06724 -157.302 -7.06724 0 0 666494. 2306.21 0.81 0.11 0.17 -1 -1 0.81 0.0192087 0.0176027 218 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 17.62 vpr 63.88 MiB -1 -1 0.54 21888 11 0.87 -1 -1 36436 -1 -1 29 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65412 29 32 262 294 1 203 90 17 17 289 -1 unnamed_device 24.9 MiB 1.48 1205 8130 1875 5560 695 63.9 MiB 0.05 0.00 6.90974 -135.543 -6.90974 6.90974 2.56 0.000216654 0.000177734 0.0122832 0.0101735 28 3454 29 6.55708e+06 349595 500653. 1732.36 5.26 0.137545 0.12948 21310 115450 -1 2951 16 1464 4326 256241 59312 6.18098 6.18098 -136.432 -6.18098 0 0 612192. 2118.31 0.85 0.15 0.25 -1 -1 0.85 0.109371 0.107951 177 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 20.04 vpr 63.26 MiB -1 -1 0.55 21280 13 0.58 -1 -1 36372 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64776 32 32 222 254 1 180 88 17 17 289 -1 unnamed_device 24.6 MiB 0.98 1186 6328 1272 4421 635 63.3 MiB 0.05 0.00 7.14789 -159.983 -7.14789 7.14789 2.68 0.000173826 0.000139063 0.00908981 0.00769341 26 3313 36 6.55708e+06 289320 477104. 1650.88 9.52 0.367453 0.360281 21022 109990 -1 2803 19 1167 3155 260805 62504 6.33838 6.33838 -161.077 -6.33838 0 0 585099. 2024.56 0.76 0.24 0.16 -1 -1 0.76 0.00941676 0.00853264 138 128 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 23.88 vpr 63.79 MiB -1 -1 0.84 22040 14 0.87 -1 -1 36588 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65316 32 32 267 299 1 205 92 17 17 289 -1 unnamed_device 25.2 MiB 1.62 1337 6509 1295 4681 533 63.8 MiB 0.04 0.00 7.98458 -168.027 -7.98458 7.98458 2.26 0.000209332 0.000169761 0.0092842 0.00773734 36 3424 21 6.55708e+06 337540 612192. 2118.31 11.37 0.589778 0.579204 22750 144809 -1 2895 15 1148 3462 205457 45599 7.1187 7.1187 -160.111 -7.1187 0 0 782063. 2706.10 0.80 0.07 0.42 -1 -1 0.80 0.0154346 0.0141391 179 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 34.93 vpr 64.30 MiB -1 -1 0.61 22040 15 1.44 -1 -1 36548 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65848 32 32 334 366 1 263 97 17 17 289 -1 unnamed_device 25.6 MiB 1.16 1610 8311 1730 5798 783 64.3 MiB 0.17 0.00 9.07969 -190.885 -9.07969 9.07969 2.45 0.000135824 0.000110209 0.137955 0.136462 34 5238 35 6.55708e+06 397815 585099. 2024.56 21.23 0.463497 0.443696 22462 138074 -1 3827 17 1741 5120 299981 68588 8.10021 8.10021 -185.163 -8.10021 0 0 742403. 2568.87 0.94 0.39 0.36 -1 -1 0.94 0.160426 0.158717 241 240 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 14.63 vpr 63.39 MiB -1 -1 0.53 21128 11 0.56 -1 -1 36216 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64908 32 32 220 252 1 157 86 17 17 289 -1 unnamed_device 24.9 MiB 1.31 979 5945 1142 4535 268 63.4 MiB 0.13 0.00 6.54888 -132.473 -6.54888 6.54888 2.54 0.000176056 0.000141464 0.00771292 0.0064609 28 2730 19 6.55708e+06 265210 500653. 1732.36 2.97 0.0385242 0.0330155 21310 115450 -1 2351 19 899 2612 163258 37580 6.17332 6.17332 -135.267 -6.17332 0 0 612192. 2118.31 0.65 0.16 0.36 -1 -1 0.65 0.013447 0.0117404 129 126 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 17.94 vpr 63.50 MiB -1 -1 0.71 21128 12 1.31 -1 -1 36552 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65028 31 32 244 276 1 193 89 17 17 289 -1 unnamed_device 25.0 MiB 0.68 1184 5435 1029 3992 414 63.5 MiB 0.12 0.00 6.88026 -147.814 -6.88026 6.88026 2.72 0.000197667 0.000161384 0.0969983 0.00664193 34 3286 21 6.55708e+06 313430 585099. 2024.56 5.65 0.270517 0.173041 22462 138074 -1 2758 16 1351 3898 222252 50537 6.34238 6.34238 -146.944 -6.34238 0 0 742403. 2568.87 1.04 0.17 0.15 -1 -1 1.04 0.0139047 0.012623 156 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 16.70 vpr 64.19 MiB -1 -1 0.62 21432 12 1.26 -1 -1 36372 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65732 32 32 300 332 1 237 96 17 17 289 -1 unnamed_device 25.6 MiB 1.16 1451 10608 2638 6974 996 64.2 MiB 0.23 0.00 7.23744 -159.275 -7.23744 7.23744 2.53 0.000266829 0.000219688 0.0470763 0.0442255 30 3847 24 6.55708e+06 385760 526063. 1820.29 4.26 0.259313 0.219445 21886 126133 -1 3154 17 1634 4863 229621 53777 6.11164 6.11164 -150.417 -6.11164 0 0 666494. 2306.21 0.83 0.07 0.22 -1 -1 0.83 0.0310462 0.0293725 213 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 20.53 vpr 63.94 MiB -1 -1 0.57 21888 12 0.78 -1 -1 36364 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65476 32 32 271 303 1 211 90 17 17 289 -1 unnamed_device 25.2 MiB 1.04 1398 8733 1967 5833 933 63.9 MiB 0.09 0.00 7.43539 -158.721 -7.43539 7.43539 2.42 0.000101209 8.1922e-05 0.0367919 0.0346588 36 3499 50 6.55708e+06 313430 612192. 2118.31 9.03 0.119948 0.106485 22750 144809 -1 2978 18 1249 3803 214372 48233 6.50944 6.50944 -152.45 -6.50944 0 0 782063. 2706.10 0.85 0.22 0.18 -1 -1 0.85 0.164066 0.163122 181 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 32.50 vpr 64.48 MiB -1 -1 0.48 22040 14 1.63 -1 -1 36584 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66028 32 32 327 359 1 242 95 17 17 289 -1 unnamed_device 25.6 MiB 1.74 1665 7871 1657 5890 324 64.5 MiB 0.08 0.00 8.95358 -178.735 -8.95358 8.95358 2.64 0.000284162 0.000233941 0.0150876 0.0127451 36 4345 46 6.55708e+06 373705 612192. 2118.31 17.57 0.396241 0.380917 22750 144809 -1 3738 21 1755 5604 309051 70573 7.56735 7.56735 -165.176 -7.56735 0 0 782063. 2706.10 1.02 0.27 0.50 -1 -1 1.02 0.236488 0.234385 234 233 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 21.24 vpr 63.82 MiB -1 -1 0.41 21432 12 0.70 -1 -1 36312 -1 -1 25 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65352 30 32 246 278 1 191 87 17 17 289 -1 unnamed_device 25.2 MiB 1.62 1243 8727 1998 5960 769 63.8 MiB 0.05 0.00 7.13411 -137.801 -7.13411 7.13411 2.76 0.000214917 0.00017616 0.0124163 0.0103993 28 3796 35 6.55708e+06 301375 500653. 1732.36 9.10 0.0560087 0.0482166 21310 115450 -1 3051 19 1280 3899 258917 56182 6.07244 6.07244 -135.214 -6.07244 0 0 612192. 2118.31 0.84 0.13 0.34 -1 -1 0.84 0.0158643 0.01436 160 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 14.64 vpr 63.50 MiB -1 -1 0.65 21584 11 0.91 -1 -1 36376 -1 -1 26 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65020 27 32 219 251 1 163 85 17 17 289 -1 unnamed_device 24.9 MiB 1.10 979 9199 2492 5781 926 63.5 MiB 0.22 0.00 6.86503 -123.275 -6.86503 6.86503 2.41 0.000148718 0.000119219 0.0880429 0.0858612 28 2433 14 6.55708e+06 313430 500653. 1732.36 3.45 0.122087 0.115606 21310 115450 -1 2270 16 958 2833 142761 34649 6.11164 6.11164 -124.578 -6.11164 0 0 612192. 2118.31 0.84 0.17 0.23 -1 -1 0.84 0.0123848 0.0112841 140 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 25.81 vpr 64.21 MiB -1 -1 0.73 22648 13 1.74 -1 -1 36944 -1 -1 40 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65748 32 32 380 412 1 282 104 17 17 289 -1 unnamed_device 26.1 MiB 1.66 1739 8400 1898 5561 941 64.2 MiB 0.10 0.00 7.90403 -157.442 -7.90403 7.90403 2.69 0.000145006 0.000116969 0.00711472 0.00594781 40 4484 27 6.55708e+06 482200 666494. 2306.21 10.92 0.576451 0.417348 23614 160646 -1 4165 48 2168 7136 946474 418918 6.98824 6.98824 -160.523 -6.98824 0 0 872365. 3018.56 0.90 0.86 0.37 -1 -1 0.90 0.291696 0.286513 286 286 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 21.51 vpr 63.98 MiB -1 -1 0.60 22040 14 0.81 -1 -1 36316 -1 -1 28 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65520 31 32 277 309 1 210 91 17 17 289 -1 unnamed_device 25.2 MiB 0.59 1261 11107 2450 7308 1349 64.0 MiB 0.10 0.00 8.13646 -161.778 -8.13646 8.13646 2.93 0.000303035 0.000248085 0.0173497 0.0143451 26 3804 44 6.55708e+06 337540 477104. 1650.88 9.56 0.437548 0.427134 21022 109990 -1 3218 21 1579 4615 281022 64145 7.1207 7.1207 -158.888 -7.1207 0 0 585099. 2024.56 0.64 0.31 0.30 -1 -1 0.64 0.0183211 0.0165306 188 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 16.59 vpr 63.49 MiB -1 -1 0.66 21432 12 0.62 -1 -1 36308 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65012 32 32 229 261 1 178 91 17 17 289 -1 unnamed_device 24.9 MiB 0.97 1200 9883 2726 6549 608 63.5 MiB 0.08 0.00 7.16941 -157.701 -7.16941 7.16941 2.56 0.000216681 0.000179978 0.0128806 0.0106838 28 3138 32 6.55708e+06 325485 500653. 1732.36 5.23 0.0539984 0.0460065 21310 115450 -1 2690 20 1031 2884 216722 59938 6.22984 6.22984 -151.345 -6.22984 0 0 612192. 2118.31 0.95 0.24 0.16 -1 -1 0.95 0.0151819 0.0137866 145 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 16.04 vpr 63.93 MiB -1 -1 0.53 21432 13 0.87 -1 -1 36516 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65464 32 32 263 295 1 201 90 17 17 289 -1 unnamed_device 25.2 MiB 1.70 1270 7326 1666 5130 530 63.9 MiB 0.20 0.00 7.85381 -158.457 -7.85381 7.85381 2.17 0.000317738 0.000277571 0.00849541 0.00711264 30 3165 23 6.55708e+06 313430 526063. 1820.29 3.27 0.113822 0.107585 21886 126133 -1 2770 17 1193 3505 177808 41085 6.6837 6.6837 -148.567 -6.6837 0 0 666494. 2306.21 0.99 0.21 0.35 -1 -1 0.99 0.199937 0.19853 169 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 20.90 vpr 64.28 MiB -1 -1 0.68 22040 13 1.19 -1 -1 36724 -1 -1 35 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65824 31 32 321 353 1 256 98 17 17 289 -1 unnamed_device 25.6 MiB 0.98 1567 6848 1250 5272 326 64.3 MiB 0.26 0.00 7.93997 -162.463 -7.93997 7.93997 2.85 0.000299121 0.000246874 0.0121347 0.0102921 38 3708 19 6.55708e+06 421925 638502. 2209.35 6.17 0.159794 0.148938 23326 155178 -1 3143 17 1425 4356 200675 47264 6.7993 6.7993 -151.68 -6.7993 0 0 851065. 2944.86 0.87 0.11 0.32 -1 -1 0.87 0.0627839 0.0612129 233 230 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 26.17 vpr 63.89 MiB -1 -1 0.56 21280 11 0.79 -1 -1 36508 -1 -1 31 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65428 30 32 287 319 1 212 93 17 17 289 -1 unnamed_device 25.1 MiB 1.06 1431 6393 1248 4502 643 63.9 MiB 0.18 0.00 6.69021 -132.692 -6.69021 6.69021 2.41 0.000247256 0.000203975 0.0195902 0.0179785 36 3521 32 6.55708e+06 373705 612192. 2118.31 14.36 0.497843 0.293119 22750 144809 -1 3125 16 1366 4654 263593 59413 5.61352 5.61352 -125.306 -5.61352 0 0 782063. 2706.10 0.94 0.24 0.16 -1 -1 0.94 0.0155604 0.0141295 199 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 17.22 vpr 64.23 MiB -1 -1 0.81 22040 15 1.49 -1 -1 36540 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65768 32 32 296 328 1 223 93 17 17 289 -1 unnamed_device 25.5 MiB 1.47 1449 8493 1841 5572 1080 64.2 MiB 0.10 0.00 8.92955 -182.976 -8.92955 8.92955 2.39 0.000266432 0.000222595 0.0137991 0.0114588 30 3750 34 6.55708e+06 349595 526063. 1820.29 4.98 0.270437 0.260407 21886 126133 -1 3091 17 1328 4240 214055 52083 7.85721 7.85721 -175.244 -7.85721 0 0 666494. 2306.21 0.87 0.16 0.35 -1 -1 0.87 0.0139463 0.0126962 202 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 42.74 vpr 64.14 MiB -1 -1 0.53 22192 13 1.32 -1 -1 36540 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65676 32 32 285 317 1 224 94 17 17 289 -1 unnamed_device 25.5 MiB 1.26 1371 7123 1421 5075 627 64.1 MiB 0.04 0.00 7.82963 -168.646 -7.82963 7.82963 2.74 0.000268144 0.000204209 0.0115893 0.00966903 28 3926 46 6.55708e+06 361650 500653. 1732.36 30.07 0.726607 0.709572 21310 115450 -1 3335 19 1629 4866 338502 84493 7.0789 7.0789 -166.74 -7.0789 0 0 612192. 2118.31 0.97 0.06 0.26 -1 -1 0.97 0.0137997 0.0124569 194 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 17.53 vpr 63.73 MiB -1 -1 0.62 21128 12 0.70 -1 -1 36568 -1 -1 29 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65264 29 32 239 271 1 189 90 17 17 289 -1 unnamed_device 25.0 MiB 1.76 1076 11145 2707 7146 1292 63.7 MiB 0.19 0.00 7.48815 -152.335 -7.48815 7.48815 2.54 0.000202076 0.000164647 0.0101914 0.00843458 28 3225 39 6.55708e+06 349595 500653. 1732.36 5.57 0.054545 0.0459509 21310 115450 -1 2808 31 1706 5012 357270 109600 6.8013 6.8013 -150.093 -6.8013 0 0 612192. 2118.31 0.83 0.30 0.24 -1 -1 0.83 0.0198867 0.0175138 157 154 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 15.74 vpr 63.53 MiB -1 -1 0.57 21280 11 0.50 -1 -1 36568 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65052 32 32 235 267 1 176 85 17 17 289 -1 unnamed_device 24.9 MiB 0.78 1137 9013 2200 5776 1037 63.5 MiB 0.12 0.00 6.83529 -140.07 -6.83529 6.83529 2.41 0.000261816 0.000189468 0.08647 0.0843987 28 3006 21 6.55708e+06 253155 500653. 1732.36 4.09 0.121576 0.114766 21310 115450 -1 2732 20 1198 3249 245239 65915 5.99344 5.99344 -138.61 -5.99344 0 0 612192. 2118.31 0.74 0.08 0.23 -1 -1 0.74 0.013749 0.0124021 145 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 18.46 vpr 64.16 MiB -1 -1 0.44 21432 13 1.10 -1 -1 36676 -1 -1 29 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 31 32 294 326 1 226 92 17 17 289 -1 unnamed_device 25.5 MiB 1.54 1445 8165 2047 5274 844 64.2 MiB 0.09 0.00 8.06583 -161.677 -8.06583 8.06583 2.45 0.000227039 0.000183839 0.0451328 0.0429252 30 3916 30 6.55708e+06 349595 526063. 1820.29 5.98 0.335156 0.326465 21886 126133 -1 3095 19 1441 4607 229808 53551 7.2409 7.2409 -157.975 -7.2409 0 0 666494. 2306.21 0.81 0.26 0.15 -1 -1 0.81 0.243106 0.241879 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 16.66 vpr 63.45 MiB -1 -1 0.47 21432 10 0.70 -1 -1 36428 -1 -1 24 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64976 29 32 219 251 1 164 85 17 17 289 -1 unnamed_device 24.9 MiB 0.95 1034 4921 1106 3348 467 63.5 MiB 0.06 0.00 5.68406 -116.659 -5.68406 5.68406 2.65 0.000194951 0.000154172 0.0072483 0.00599133 28 2904 50 6.55708e+06 289320 500653. 1732.36 5.17 0.13373 0.126419 21310 115450 -1 2328 20 1017 3150 214868 53978 4.85252 4.85252 -113.547 -4.85252 0 0 612192. 2118.31 0.83 0.14 0.27 -1 -1 0.83 0.00851497 0.00779482 137 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 33.77 vpr 63.58 MiB -1 -1 0.64 21584 14 0.58 -1 -1 36564 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65104 32 32 239 271 1 186 88 17 17 289 -1 unnamed_device 25.0 MiB 1.83 1088 10813 2512 6516 1785 63.6 MiB 0.12 0.00 7.85572 -162.036 -7.85572 7.85572 2.21 8.8625e-05 7.1171e-05 0.0760038 0.0737786 30 3060 27 6.55708e+06 289320 526063. 1820.29 20.47 0.576154 0.514953 21886 126133 -1 2356 20 1065 3088 150557 36243 6.94764 6.94764 -155.495 -6.94764 0 0 666494. 2306.21 1.11 0.12 0.33 -1 -1 1.11 0.223001 0.221609 146 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 16.90 vpr 63.97 MiB -1 -1 0.85 21736 13 0.73 -1 -1 36532 -1 -1 30 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65508 31 32 266 298 1 208 93 17 17 289 -1 unnamed_device 25.3 MiB 0.93 1286 9333 2274 5926 1133 64.0 MiB 0.02 0.00 7.57111 -160.828 -7.57111 7.57111 2.66 9.6321e-05 7.7635e-05 0.00577312 0.00477365 30 3224 26 6.55708e+06 361650 526063. 1820.29 4.20 0.0508096 0.0440078 21886 126133 -1 2739 31 1261 3631 322025 126066 6.78964 6.78964 -157.409 -6.78964 0 0 666494. 2306.21 0.95 0.20 0.24 -1 -1 0.95 0.0145648 0.0130551 180 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 16.05 vpr 63.50 MiB -1 -1 0.49 21432 12 0.42 -1 -1 36432 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65024 31 32 225 257 1 178 89 17 17 289 -1 unnamed_device 24.9 MiB 1.16 1206 10385 2702 6390 1293 63.5 MiB 0.14 0.00 6.65202 -141.569 -6.65202 6.65202 2.44 0.00017718 0.000142804 0.0906394 0.0108084 28 3085 18 6.55708e+06 313430 500653. 1732.36 4.95 0.126224 0.0414493 21310 115450 -1 2720 16 1096 2873 182715 40890 6.21052 6.21052 -143.237 -6.21052 0 0 612192. 2118.31 0.79 0.09 0.30 -1 -1 0.79 0.0127089 0.0115179 138 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 20.78 vpr 64.00 MiB -1 -1 0.68 21736 12 0.84 -1 -1 36880 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65536 32 32 288 320 1 216 90 17 17 289 -1 unnamed_device 25.5 MiB 1.06 1371 5718 1045 4451 222 64.0 MiB 0.15 0.00 7.06387 -150.59 -7.06387 7.06387 2.52 0.000114925 9.1852e-05 0.00983158 0.00812829 36 3301 40 6.55708e+06 313430 612192. 2118.31 8.58 0.435218 0.313633 22750 144809 -1 2800 18 1332 4379 231281 52794 6.35464 6.35464 -143.763 -6.35464 0 0 782063. 2706.10 0.86 0.25 0.38 -1 -1 0.86 0.0170465 0.0154706 195 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 19.26 vpr 64.26 MiB -1 -1 0.82 21888 13 1.01 -1 -1 36316 -1 -1 29 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65804 31 32 282 314 1 222 92 17 17 289 -1 unnamed_device 25.5 MiB 1.83 1352 12719 3295 7542 1882 64.3 MiB 0.09 0.00 7.66758 -155.332 -7.66758 7.66758 2.58 0.000246481 0.000200712 0.0189413 0.0156962 34 3530 22 6.55708e+06 349595 585099. 2024.56 6.54 0.243093 0.198409 22462 138074 -1 2931 15 1284 3916 202762 47937 6.6811 6.6811 -148.35 -6.6811 0 0 742403. 2568.87 0.89 0.07 0.46 -1 -1 0.89 0.0171879 0.0158956 193 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 24.33 vpr 63.64 MiB -1 -1 0.59 21280 11 0.56 -1 -1 36396 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65172 32 32 233 265 1 183 89 17 17 289 -1 unnamed_device 24.9 MiB 0.87 1082 7415 1581 5155 679 63.6 MiB 0.15 0.00 6.31359 -143.036 -6.31359 6.31359 2.53 9.2361e-05 7.3812e-05 0.0101807 0.00838108 28 3145 30 6.55708e+06 301375 500653. 1732.36 12.17 0.43249 0.417527 21310 115450 -1 2638 23 1177 3451 274589 87116 5.57232 5.57232 -137.488 -5.57232 0 0 612192. 2118.31 0.60 0.25 0.31 -1 -1 0.60 0.00998682 0.00912745 148 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 22.53 vpr 63.64 MiB -1 -1 0.40 21280 13 0.99 -1 -1 36544 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65172 32 32 254 286 1 196 88 17 17 289 -1 unnamed_device 25.0 MiB 1.25 1235 12763 3469 7332 1962 63.6 MiB 0.33 0.00 7.41461 -156.931 -7.41461 7.41461 2.43 0.000196035 0.000159111 0.0910167 0.0879632 28 4307 47 6.55708e+06 289320 500653. 1732.36 10.79 0.141304 0.131292 21310 115450 -1 3200 23 1577 4702 304620 67065 6.55124 6.55124 -157.29 -6.55124 0 0 612192. 2118.31 0.73 0.21 0.24 -1 -1 0.73 0.017403 0.0156288 164 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 20.85 vpr 64.09 MiB -1 -1 0.58 21584 13 1.01 -1 -1 36796 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65628 32 32 285 317 1 216 92 17 17 289 -1 unnamed_device 25.5 MiB 2.61 1388 6302 1254 4414 634 64.1 MiB 0.02 0.00 7.89081 -170.839 -7.89081 7.89081 2.57 0.000116871 9.4236e-05 0.00503171 0.00421225 36 3241 19 6.55708e+06 337540 612192. 2118.31 6.67 0.261633 0.251399 22750 144809 -1 2886 17 1230 3457 177414 41371 7.0397 7.0397 -161.129 -7.0397 0 0 782063. 2706.10 0.70 0.08 0.29 -1 -1 0.70 0.0170939 0.0156853 193 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 25.91 vpr 63.74 MiB -1 -1 0.91 21736 11 0.67 -1 -1 36216 -1 -1 27 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65268 29 32 243 275 1 185 88 17 17 289 -1 unnamed_device 25.0 MiB 0.75 1142 12958 3537 7390 2031 63.7 MiB 0.26 0.00 6.51109 -124.99 -6.51109 6.51109 2.45 0.000196599 0.000158198 0.00898598 0.00731972 28 3194 50 6.55708e+06 325485 500653. 1732.36 14.43 0.131746 0.115841 21310 115450 -1 2802 20 1392 4118 270857 60473 5.90278 5.90278 -123.786 -5.90278 0 0 612192. 2118.31 0.99 0.16 0.19 -1 -1 0.99 0.0954845 0.0938832 160 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 20.07 vpr 64.51 MiB -1 -1 0.79 22192 14 1.40 -1 -1 36796 -1 -1 35 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66056 32 32 318 350 1 251 99 17 17 289 -1 unnamed_device 25.8 MiB 1.40 1576 7851 1546 5933 372 64.5 MiB 0.06 0.00 8.33526 -182.394 -8.33526 8.33526 2.51 0.000252892 0.000201319 0.0122387 0.0103391 30 4450 35 6.55708e+06 421925 526063. 1820.29 6.61 0.169597 0.161469 21886 126133 -1 3611 19 2114 6505 329298 76485 7.4375 7.4375 -177.262 -7.4375 0 0 666494. 2306.21 0.93 0.20 0.19 -1 -1 0.93 0.0438397 0.0419185 224 224 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 17.39 vpr 63.51 MiB -1 -1 0.31 21280 12 0.56 -1 -1 36420 -1 -1 28 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65036 31 32 222 254 1 184 91 17 17 289 -1 unnamed_device 24.9 MiB 1.21 1099 11311 2604 7322 1385 63.5 MiB 0.10 0.00 6.85552 -147.848 -6.85552 6.85552 2.41 0.000253518 0.000215242 0.0129724 0.0106323 28 3319 44 6.55708e+06 337540 500653. 1732.36 6.22 0.128867 0.120467 21310 115450 -1 2599 16 1007 2535 159007 36657 5.94058 5.94058 -140.231 -5.94058 0 0 612192. 2118.31 0.62 0.14 0.23 -1 -1 0.62 0.0127789 0.0116796 138 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 21.00 vpr 64.04 MiB -1 -1 0.72 22040 13 1.05 -1 -1 36476 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65580 32 32 282 314 1 218 89 17 17 289 -1 unnamed_device 25.3 MiB 1.20 1274 9395 2232 5867 1296 64.0 MiB 0.09 0.00 7.81266 -155.924 -7.81266 7.81266 2.08 0.000241124 0.000189534 0.0142489 0.0116792 30 3950 46 6.55708e+06 301375 526063. 1820.29 7.59 0.149933 0.139424 21886 126133 -1 2874 18 1346 4256 223788 52651 6.7575 6.7575 -149.517 -6.7575 0 0 666494. 2306.21 1.02 0.11 0.18 -1 -1 1.02 0.0174635 0.0159086 189 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 16.17 vpr 63.66 MiB -1 -1 0.72 21736 13 0.54 -1 -1 36328 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65192 32 32 238 270 1 186 90 17 17 289 -1 unnamed_device 25.0 MiB 1.10 1170 8130 1915 5523 692 63.7 MiB 0.10 0.00 7.51063 -158.904 -7.51063 7.51063 2.53 0.000237302 0.0002003 0.0834198 0.0824587 28 3271 29 6.55708e+06 313430 500653. 1732.36 3.72 0.121986 0.115319 21310 115450 -1 2765 19 1149 3037 195902 43669 6.4015 6.4015 -153.619 -6.4015 0 0 612192. 2118.31 1.23 0.19 0.23 -1 -1 1.23 0.156756 0.15548 151 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 16.14 vpr 63.95 MiB -1 -1 0.60 21736 12 0.55 -1 -1 36644 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65480 32 32 269 301 1 199 90 17 17 289 -1 unnamed_device 25.2 MiB 1.12 1308 9336 2430 5918 988 63.9 MiB 0.23 0.00 6.8413 -150.87 -6.8413 6.8413 2.54 0.000238638 0.000196606 0.188629 0.186352 30 3266 30 6.55708e+06 313430 526063. 1820.29 4.79 0.366116 0.219908 21886 126133 -1 2614 15 969 2999 146300 33820 6.02098 6.02098 -141.15 -6.02098 0 0 666494. 2306.21 1.01 0.06 0.14 -1 -1 1.01 0.0396405 0.0384656 176 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 20.36 vpr 64.23 MiB -1 -1 0.79 22648 15 1.52 -1 -1 36972 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65776 32 32 350 382 1 272 100 17 17 289 -1 unnamed_device 25.9 MiB 0.96 1721 13324 3640 7906 1778 64.2 MiB 0.18 0.00 8.79929 -171.347 -8.79929 8.79929 2.10 0.000331813 0.000264381 0.0230625 0.0192312 42 4722 27 6.55708e+06 433980 701300. 2426.64 6.32 0.122376 0.105414 23902 167433 -1 3406 18 1713 5652 297793 70623 7.57196 7.57196 -160.34 -7.57196 0 0 896083. 3100.63 1.30 0.16 0.31 -1 -1 1.30 0.089046 0.0870372 256 256 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 14.53 vpr 62.89 MiB -1 -1 0.44 21280 10 0.40 -1 -1 36224 -1 -1 18 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64404 30 32 174 206 1 139 80 17 17 289 -1 unnamed_device 24.4 MiB 0.25 909 3864 801 2776 287 62.9 MiB 0.02 0.00 5.1986 -120.097 -5.1986 5.1986 2.07 0.00013744 0.000109457 0.00471201 0.00389925 26 2630 39 6.55708e+06 216990 477104. 1650.88 5.35 0.0397896 0.0289415 21022 109990 -1 2051 24 908 2419 229724 74560 4.57854 4.57854 -120.707 -4.57854 0 0 585099. 2024.56 0.51 0.24 0.25 -1 -1 0.51 0.0095774 0.00836982 92 86 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 14.34 vpr 63.56 MiB -1 -1 0.59 21432 13 0.72 -1 -1 36228 -1 -1 25 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65084 30 32 228 260 1 171 87 17 17 289 -1 unnamed_device 24.9 MiB 0.65 1036 7575 1525 5019 1031 63.6 MiB 0.14 0.00 7.36426 -147.717 -7.36426 7.36426 2.60 0.000200261 0.000162076 0.00680068 0.00561287 28 2807 17 6.55708e+06 301375 500653. 1732.36 3.28 0.30259 0.29688 21310 115450 -1 2630 19 1085 3009 178566 41937 6.89818 6.89818 -147.006 -6.89818 0 0 612192. 2118.31 0.70 0.13 0.22 -1 -1 0.70 0.048305 0.0470081 143 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 18.31 vpr 63.75 MiB -1 -1 0.57 21280 12 1.11 -1 -1 36552 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65284 32 32 264 296 1 204 88 17 17 289 -1 unnamed_device 25.0 MiB 0.80 1153 10813 3047 5880 1886 63.8 MiB 0.26 0.00 7.55494 -153.61 -7.55494 7.55494 2.35 0.000205015 0.000165666 0.217296 0.214747 34 3390 41 6.55708e+06 289320 585099. 2024.56 6.49 0.6696 0.657872 22462 138074 -1 2527 16 1208 3085 158441 40340 6.53698 6.53698 -151.4 -6.53698 0 0 742403. 2568.87 0.95 0.15 0.22 -1 -1 0.95 0.13273 0.13205 171 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 12.79 vpr 63.16 MiB -1 -1 0.68 21280 9 0.50 -1 -1 36052 -1 -1 22 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64672 25 32 183 215 1 140 79 17 17 289 -1 unnamed_device 24.6 MiB 0.45 830 9374 2202 6391 781 63.2 MiB 0.02 0.00 5.41683 -98.6163 -5.41683 5.41683 2.25 6.612e-05 5.28e-05 0.00476596 0.00388661 30 1933 18 6.55708e+06 265210 526063. 1820.29 2.56 0.0303849 0.0257861 21886 126133 -1 1678 18 701 2000 93548 22278 4.64166 4.64166 -93.7436 -4.64166 0 0 666494. 2306.21 0.91 0.05 0.23 -1 -1 0.91 0.0288552 0.027802 111 110 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 27.84 vpr 64.16 MiB -1 -1 0.65 21584 12 1.23 -1 -1 36696 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65696 32 32 300 332 1 233 97 17 17 289 -1 unnamed_device 25.5 MiB 1.08 1426 9865 2341 6996 528 64.2 MiB 0.21 0.00 7.21898 -157.037 -7.21898 7.21898 2.43 0.000272854 0.000224147 0.0711103 0.0685632 36 3904 23 6.55708e+06 397815 612192. 2118.31 14.40 0.240858 0.223214 22750 144809 -1 3229 18 1463 4336 244473 57297 6.2833 6.2833 -150.434 -6.2833 0 0 782063. 2706.10 0.96 0.29 0.41 -1 -1 0.96 0.148595 0.146946 212 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 19.32 vpr 64.16 MiB -1 -1 0.79 22192 13 1.16 -1 -1 36384 -1 -1 30 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 31 32 290 322 1 226 93 17 17 289 -1 unnamed_device 25.5 MiB 0.95 1441 7863 1836 5236 791 64.2 MiB 0.14 0.00 8.16309 -168.172 -8.16309 8.16309 2.01 0.000118535 9.5207e-05 0.00623797 0.00519187 36 3766 31 6.55708e+06 361650 612192. 2118.31 7.09 0.133697 0.121616 22750 144809 -1 3302 19 1605 5170 286230 64164 6.8385 6.8385 -155.599 -6.8385 0 0 782063. 2706.10 0.95 0.16 0.20 -1 -1 0.95 0.0595597 0.0578422 200 199 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 14.02 vpr 63.95 MiB -1 -1 0.28 21432 1 0.11 -1 -1 33732 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65484 32 32 354 285 1 202 96 17 17 289 -1 unnamed_device 25.4 MiB 1.10 1016 11703 2995 7482 1226 63.9 MiB 0.24 0.00 5.5261 -159.162 -5.5261 5.5261 2.69 0.000199142 0.000148429 0.0547026 0.0525283 32 2517 20 6.64007e+06 401856 554710. 1919.41 2.60 0.220658 0.213887 22834 132086 -1 2177 23 1613 2478 162394 38899 4.28389 4.28389 -145.187 -4.28389 0 0 701300. 2426.64 0.83 0.13 0.26 -1 -1 0.83 0.0141837 0.0126231 154 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 13.70 vpr 64.03 MiB -1 -1 0.42 21432 1 0.25 -1 -1 33892 -1 -1 25 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65564 30 32 363 293 1 196 87 17 17 289 -1 unnamed_device 25.5 MiB 0.63 1071 13527 3636 8473 1418 64.0 MiB 0.23 0.00 4.97921 -144.408 -4.97921 4.97921 2.22 0.000188257 0.000152253 0.0151584 0.0123761 32 2462 22 6.64007e+06 313950 554710. 1919.41 2.57 0.185138 0.0523855 22834 132086 -1 2136 20 1596 2436 165467 39561 4.22989 4.22989 -144.826 -4.22989 0 0 701300. 2426.64 0.85 0.21 0.58 -1 -1 0.85 0.0126255 0.0112347 141 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 12.34 vpr 63.71 MiB -1 -1 0.33 21280 1 0.07 -1 -1 33860 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65244 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 25.2 MiB 0.93 1074 15639 5003 8705 1931 63.7 MiB 0.23 0.00 4.31513 -125.567 -4.31513 4.31513 2.17 0.000153124 0.000121434 0.013837 0.0111992 32 2473 24 6.64007e+06 288834 554710. 1919.41 2.19 0.0332637 0.0276406 22834 132086 -1 2087 22 1207 1679 121084 27669 3.58462 3.58462 -122.891 -3.58462 0 0 701300. 2426.64 0.74 0.05 0.37 -1 -1 0.74 0.034181 0.0331543 126 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 13.00 vpr 63.84 MiB -1 -1 0.43 21280 1 0.02 -1 -1 33796 -1 -1 27 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65372 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 25.2 MiB 0.11 931 15103 4868 7954 2281 63.8 MiB 0.25 0.00 4.52953 -121.776 -4.52953 4.52953 2.18 0.000243489 0.000133266 0.0143754 0.0115775 32 2343 23 6.64007e+06 339066 554710. 1919.41 2.21 0.0304969 0.025206 22834 132086 -1 2027 20 1332 2473 182462 40684 3.68663 3.68663 -118.519 -3.68663 0 0 701300. 2426.64 1.06 0.27 0.20 -1 -1 1.06 0.0094445 0.00832293 126 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 13.64 vpr 64.02 MiB -1 -1 0.45 21280 1 0.03 -1 -1 33724 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65556 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 25.2 MiB 0.08 1007 10071 2662 6608 801 64.0 MiB 0.22 0.00 4.57112 -132.997 -4.57112 4.57112 2.57 0.000153706 0.000123216 0.0105035 0.00854908 32 2451 20 6.64007e+06 288834 554710. 1919.41 2.62 0.122666 0.116991 22834 132086 -1 2111 23 1634 3182 210560 47673 3.68143 3.68143 -129.344 -3.68143 0 0 701300. 2426.64 0.92 0.17 0.33 -1 -1 0.92 0.0626375 0.061067 130 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 14.18 vpr 64.16 MiB -1 -1 0.37 21584 1 0.04 -1 -1 33696 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 32 32 366 295 1 189 98 17 17 289 -1 unnamed_device 25.5 MiB 0.38 1015 12248 3024 8320 904 64.2 MiB 0.17 0.00 3.5011 -120.544 -3.5011 3.5011 2.18 0.000170627 0.000136834 0.0121241 0.00999843 28 2553 23 6.64007e+06 426972 500653. 1732.36 3.70 0.303422 0.296356 21970 115934 -1 2229 18 1361 2235 156699 36852 2.86697 2.86697 -117.824 -2.86697 0 0 612192. 2118.31 0.73 0.16 0.30 -1 -1 0.73 0.132936 0.131511 142 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 12.24 vpr 63.58 MiB -1 -1 0.32 21128 1 0.06 -1 -1 34172 -1 -1 19 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65108 27 32 259 221 1 130 78 17 17 289 -1 unnamed_device 24.9 MiB 0.33 708 9374 2595 5724 1055 63.6 MiB 0.25 0.00 4.05083 -102.502 -4.05083 4.05083 2.49 0.000158 0.000128677 0.00974979 0.00793241 32 1565 22 6.64007e+06 238602 554710. 1919.41 2.12 0.0308785 0.0260617 22834 132086 -1 1374 20 859 1459 94904 22873 2.69757 2.69757 -93.296 -2.69757 0 0 701300. 2426.64 1.00 0.03 0.21 -1 -1 1.00 0.00953158 0.00839753 93 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 13.66 vpr 63.84 MiB -1 -1 0.27 20976 1 0.15 -1 -1 33844 -1 -1 31 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65368 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 25.2 MiB 0.26 827 11383 2423 8400 560 63.8 MiB 0.32 0.00 3.48559 -101.391 -3.48559 3.48559 2.84 0.000150132 0.000117586 0.0119231 0.0100775 28 2232 37 6.64007e+06 389298 500653. 1732.36 3.02 0.150056 0.109857 21970 115934 -1 1893 16 957 1699 120491 27748 2.88597 2.88597 -100.419 -2.88597 0 0 612192. 2118.31 0.92 0.11 0.22 -1 -1 0.92 0.0086401 0.00769204 115 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 13.87 vpr 63.96 MiB -1 -1 0.35 21432 1 0.18 -1 -1 33900 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65496 31 32 317 271 1 167 83 17 17 289 -1 unnamed_device 25.4 MiB 0.76 888 14123 4595 7521 2007 64.0 MiB 0.23 0.00 3.62422 -120.034 -3.62422 3.62422 2.77 0.000136738 0.000107672 0.0138099 0.011095 32 1942 19 6.64007e+06 251160 554710. 1919.41 2.05 0.07235 0.06559 22834 132086 -1 1735 19 1183 1753 113197 25999 3.07917 3.07917 -116.763 -3.07917 0 0 701300. 2426.64 0.77 0.15 0.16 -1 -1 0.77 0.0101034 0.00888188 111 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 13.34 vpr 63.81 MiB -1 -1 0.39 21432 1 0.20 -1 -1 33556 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65344 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 25.1 MiB 0.48 874 11631 3631 6742 1258 63.8 MiB 0.16 0.00 3.92955 -127.77 -3.92955 3.92955 2.91 7.4847e-05 5.8313e-05 0.126775 0.125018 32 1924 20 6.64007e+06 213486 554710. 1919.41 2.27 0.147771 0.142884 22834 132086 -1 1758 17 1045 1692 112022 26273 2.88977 2.88977 -116.793 -2.88977 0 0 701300. 2426.64 0.97 0.08 0.48 -1 -1 0.97 0.0100006 0.00888423 112 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 13.04 vpr 63.79 MiB -1 -1 0.45 21280 1 0.11 -1 -1 33556 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65324 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 25.2 MiB 0.34 729 11571 3200 7477 894 63.8 MiB 0.24 0.00 4.09995 -111.19 -4.09995 4.09995 3.04 0.000149469 0.00011699 0.143407 0.140961 28 1721 20 6.64007e+06 213486 500653. 1732.36 2.12 0.200653 0.194605 21970 115934 -1 1497 19 809 1291 80635 19647 3.03316 3.03316 -103.694 -3.03316 0 0 612192. 2118.31 0.75 0.11 0.15 -1 -1 0.75 0.0102693 0.00910464 98 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 14.55 vpr 63.83 MiB -1 -1 0.41 21128 1 0.08 -1 -1 33744 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65364 32 32 276 237 1 166 82 17 17 289 -1 unnamed_device 25.1 MiB 0.68 793 12008 4624 6064 1320 63.8 MiB 0.17 0.00 3.82041 -120.561 -3.82041 3.82041 2.70 0.000174605 0.000118395 0.0116815 0.00940972 32 2319 19 6.64007e+06 226044 554710. 1919.41 2.54 0.0357017 0.0298223 22834 132086 -1 1793 18 1119 1519 109025 25250 3.04617 3.04617 -114.291 -3.04617 0 0 701300. 2426.64 0.94 0.02 0.43 -1 -1 0.94 0.00564448 0.00507263 109 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 14.74 vpr 64.17 MiB -1 -1 0.58 21128 1 0.12 -1 -1 33932 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65712 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 25.4 MiB 0.86 921 8863 1921 5548 1394 64.2 MiB 0.16 0.00 4.43584 -138.372 -4.43584 4.43584 3.06 0.000159144 0.000128163 0.00994967 0.00823373 32 2799 27 6.64007e+06 301392 554710. 1919.41 3.03 0.041536 0.0353973 22834 132086 -1 2064 19 1688 2550 183073 44808 3.29303 3.29303 -127.355 -3.29303 0 0 701300. 2426.64 1.03 0.06 0.18 -1 -1 1.03 0.011807 0.0105417 139 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 14.90 vpr 64.17 MiB -1 -1 0.44 21432 1 0.03 -1 -1 33696 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65712 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 25.4 MiB 0.52 885 17591 4750 10764 2077 64.2 MiB 0.36 0.00 4.98464 -139.028 -4.98464 4.98464 3.05 0.000235917 0.000196846 0.017372 0.01406 28 2431 24 6.64007e+06 389298 500653. 1732.36 3.28 0.165166 0.157571 21970 115934 -1 1980 21 1567 2474 160909 37169 3.86263 3.86263 -134.833 -3.86263 0 0 612192. 2118.31 0.63 0.16 0.13 -1 -1 0.63 0.0132013 0.011718 134 61 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 13.12 vpr 63.28 MiB -1 -1 0.42 21128 1 0.15 -1 -1 33608 -1 -1 21 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64800 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 24.8 MiB 0.32 748 11118 2695 7379 1044 63.3 MiB 0.28 0.00 3.28519 -94.0444 -3.28519 3.28519 2.73 0.000123249 9.761e-05 0.0104396 0.00848623 28 1638 21 6.64007e+06 263718 500653. 1732.36 2.22 0.0449587 0.0397738 21970 115934 -1 1444 20 818 1388 87790 20501 2.65757 2.65757 -90.3394 -2.65757 0 0 612192. 2118.31 0.73 0.13 0.21 -1 -1 0.73 0.111596 0.110375 98 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 13.19 vpr 64.18 MiB -1 -1 0.35 21280 1 0.14 -1 -1 33684 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65724 32 32 370 297 1 183 86 17 17 289 -1 unnamed_device 25.4 MiB 0.33 992 9914 2318 7193 403 64.2 MiB 0.18 0.08 4.02307 -125.622 -4.02307 4.02307 2.70 0.000173456 0.00013884 0.0117563 0.00960212 32 2532 20 6.64007e+06 276276 554710. 1919.41 2.64 0.0661736 0.0590957 22834 132086 -1 2139 19 1418 2476 173944 39189 3.03517 3.03517 -118.418 -3.03517 0 0 701300. 2426.64 0.81 0.10 0.44 -1 -1 0.81 0.0126859 0.011326 133 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 13.87 vpr 64.15 MiB -1 -1 0.48 21280 1 0.13 -1 -1 33716 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 32 32 338 269 1 196 87 17 17 289 -1 unnamed_device 25.4 MiB 0.61 1076 14679 4725 7906 2048 64.1 MiB 0.14 0.00 4.55604 -146.606 -4.55604 4.55604 2.38 0.000165186 0.00013192 0.0149448 0.0122204 28 2564 23 6.64007e+06 288834 500653. 1732.36 3.00 0.0442953 0.0376948 21970 115934 -1 2305 19 1419 1997 147886 33366 3.41523 3.41523 -130.731 -3.41523 0 0 612192. 2118.31 1.01 0.14 0.41 -1 -1 1.01 0.0121935 0.0106907 138 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 12.92 vpr 63.93 MiB -1 -1 0.35 21280 1 0.08 -1 -1 33688 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65464 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 25.2 MiB 0.23 793 7443 1484 5603 356 63.9 MiB 0.36 0.10 2.85064 -101.719 -2.85064 2.85064 2.51 0.0993528 0.0993126 0.106602 0.105223 30 1820 20 6.64007e+06 364182 526063. 1820.29 2.83 0.307575 0.30212 22546 126617 -1 1601 18 995 1636 84292 20439 2.03391 2.03391 -94.6392 -2.03391 0 0 666494. 2306.21 1.05 0.09 0.43 -1 -1 1.05 0.00959526 0.00847234 110 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 13.13 vpr 63.36 MiB -1 -1 0.46 21128 1 0.12 -1 -1 33544 -1 -1 15 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64880 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 24.6 MiB 0.05 601 7249 1675 5111 463 63.4 MiB 0.27 0.00 2.38033 -78.5571 -2.38033 2.38033 2.15 0.000120811 9.369e-05 0.149253 0.147855 28 1406 21 6.64007e+06 188370 500653. 1732.36 2.37 0.171004 0.16582 21970 115934 -1 1259 21 659 961 75275 17283 1.93811 1.93811 -80.7431 -1.93811 0 0 612192. 2118.31 0.81 0.12 0.28 -1 -1 0.81 0.00845134 0.00722996 81 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 13.43 vpr 63.89 MiB -1 -1 0.41 21432 1 0.10 -1 -1 33884 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65420 31 32 291 243 1 171 83 17 17 289 -1 unnamed_device 25.2 MiB 0.73 928 14123 4909 7107 2107 63.9 MiB 0.57 0.00 4.89847 -147.53 -4.89847 4.89847 2.66 0.000163803 0.000133719 0.0138283 0.0110452 30 2053 21 6.64007e+06 251160 526063. 1820.29 2.38 0.0398206 0.0332004 22546 126617 -1 1815 20 1083 1623 94455 22070 3.67843 3.67843 -136.048 -3.67843 0 0 666494. 2306.21 0.97 0.13 0.28 -1 -1 0.97 0.113405 0.112226 128 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 12.62 vpr 64.07 MiB -1 -1 0.44 21432 1 0.06 -1 -1 33968 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65612 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 25.5 MiB 0.11 927 7007 1409 5318 280 64.1 MiB 0.04 0.00 4.20815 -131.502 -4.20815 4.20815 2.64 0.000164372 0.000130898 0.00691655 0.00446861 30 2075 21 6.64007e+06 389298 526063. 1820.29 2.51 0.100907 0.0942374 22546 126617 -1 1916 21 1089 1828 106454 24448 3.50443 3.50443 -124.356 -3.50443 0 0 666494. 2306.21 0.60 0.05 0.25 -1 -1 0.60 0.0121851 0.010816 135 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 14.30 vpr 63.96 MiB -1 -1 0.49 21432 1 0.20 -1 -1 33964 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65500 32 32 372 300 1 204 89 17 17 289 -1 unnamed_device 25.4 MiB 0.97 1164 13949 4120 8434 1395 64.0 MiB 0.19 0.00 4.61182 -142.538 -4.61182 4.61182 2.45 0.000189308 0.000153941 0.0149428 0.0121387 32 2749 21 6.64007e+06 313950 554710. 1919.41 2.32 0.0420661 0.0350828 22834 132086 -1 2382 20 1492 2358 164989 37724 4.01422 4.01422 -134.266 -4.01422 0 0 701300. 2426.64 1.18 0.04 0.28 -1 -1 1.18 0.0128044 0.0114016 144 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 13.60 vpr 63.09 MiB -1 -1 0.40 21432 1 0.05 -1 -1 34280 -1 -1 18 26 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64600 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 24.6 MiB 0.31 372 9836 3040 4897 1899 63.1 MiB 0.08 0.00 2.3975 -64.6606 -2.3975 2.3975 2.15 9.7093e-05 7.3797e-05 0.00748263 0.00591588 32 1098 34 6.64007e+06 226044 554710. 1919.41 2.78 0.0264807 0.0215137 22834 132086 -1 833 22 664 959 61491 17296 1.91611 1.91611 -63.8808 -1.91611 0 0 701300. 2426.64 0.80 0.10 0.20 -1 -1 0.80 0.0079382 0.00691268 77 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 14.94 vpr 63.86 MiB -1 -1 0.44 21128 1 0.17 -1 -1 33420 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65392 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 25.1 MiB 0.21 962 9571 2597 6402 572 63.9 MiB 0.10 0.00 5.07715 -127.364 -5.07715 5.07715 3.16 0.000140406 0.000112436 0.00930876 0.00759333 26 2489 49 6.64007e+06 263718 477104. 1650.88 3.59 0.0472842 0.0393665 21682 110474 -1 2143 18 1204 2227 165254 36642 4.14842 4.14842 -134.356 -4.14842 0 0 585099. 2024.56 0.69 0.15 0.25 -1 -1 0.69 0.00904524 0.00800916 118 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 12.46 vpr 63.19 MiB -1 -1 0.35 20824 1 0.09 -1 -1 33540 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64708 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 24.5 MiB 0.10 489 9374 3820 5276 278 63.2 MiB 0.19 0.00 2.56853 -74.8406 -2.56853 2.56853 2.40 0.000104711 8.0703e-05 0.00697369 0.00546991 28 1211 17 6.64007e+06 175812 500653. 1732.36 2.44 0.0628252 0.059166 21970 115934 -1 1057 16 515 587 47034 11592 1.92111 1.92111 -73.3479 -1.92111 0 0 612192. 2118.31 0.97 0.18 0.42 -1 -1 0.97 0.0057727 0.00508576 79 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 12.81 vpr 63.91 MiB -1 -1 0.43 21128 1 0.04 -1 -1 33500 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65448 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 25.2 MiB 0.15 873 9040 2110 6495 435 63.9 MiB 0.11 0.00 4.62197 -125.344 -4.62197 4.62197 2.56 0.000159609 0.000126491 0.0653272 0.00673556 28 2023 22 6.64007e+06 376740 500653. 1732.36 2.46 0.249907 0.18766 21970 115934 -1 1797 21 990 1707 119519 26176 3.53223 3.53223 -116.512 -3.53223 0 0 612192. 2118.31 1.08 0.08 0.46 -1 -1 1.08 0.0584738 0.0572238 123 24 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 13.10 vpr 63.95 MiB -1 -1 0.32 21128 1 0.05 -1 -1 33848 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65484 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 25.2 MiB 0.28 1042 8735 1871 6045 819 63.9 MiB 0.12 0.00 3.82887 -111.523 -3.82887 3.82887 2.43 0.00014814 0.000119006 0.00802507 0.00654743 32 2314 22 6.64007e+06 389298 554710. 1919.41 2.73 0.294072 0.288443 22834 132086 -1 2058 21 1192 2083 149507 33934 2.77076 2.77076 -105.552 -2.77076 0 0 701300. 2426.64 1.26 0.19 0.21 -1 -1 1.26 0.011288 0.00989814 128 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 13.54 vpr 64.06 MiB -1 -1 0.55 21584 1 0.12 -1 -1 33820 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65596 32 32 338 277 1 179 91 17 17 289 -1 unnamed_device 25.4 MiB 0.40 1095 14371 4083 8488 1800 64.1 MiB 0.19 0.00 4.70658 -136.83 -4.70658 4.70658 2.76 0.000192621 0.000159106 0.0188175 0.0162845 32 2512 22 6.64007e+06 339066 554710. 1919.41 2.51 0.0485059 0.0415846 22834 132086 -1 2305 21 1361 2316 168554 36841 3.80283 3.80283 -132.416 -3.80283 0 0 701300. 2426.64 1.02 0.02 0.24 -1 -1 1.02 0.0188367 0.00516954 126 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 12.28 vpr 63.75 MiB -1 -1 0.50 21280 1 0.10 -1 -1 33668 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65276 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 25.1 MiB 0.24 785 11260 3393 5970 1897 63.7 MiB 0.13 0.00 3.03896 -100.907 -3.03896 3.03896 2.44 0.000148882 0.000117882 0.0110971 0.00895171 32 1733 18 6.64007e+06 200928 554710. 1919.41 2.74 0.280938 0.175077 22834 132086 -1 1542 17 742 1230 80790 18773 2.77597 2.77597 -101.487 -2.77597 0 0 701300. 2426.64 0.96 0.01 0.39 -1 -1 0.96 0.00575695 0.00510181 101 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 11.16 vpr 63.61 MiB -1 -1 0.47 21280 1 0.03 -1 -1 33756 -1 -1 23 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65132 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 24.9 MiB 0.08 760 10873 2730 7151 992 63.6 MiB 0.08 0.00 3.24119 -98.8846 -3.24119 3.24119 2.52 0.000156114 0.000123869 0.010338 0.0082996 32 1673 19 6.64007e+06 288834 554710. 1919.41 1.91 0.0351917 0.0293014 22834 132086 -1 1523 15 747 1145 76032 17223 2.68277 2.68277 -95.1674 -2.68277 0 0 701300. 2426.64 1.00 0.20 0.38 -1 -1 1.00 0.00495117 0.00445152 97 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 12.25 vpr 63.55 MiB -1 -1 0.62 20824 1 0.11 -1 -1 33436 -1 -1 23 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65080 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 24.9 MiB 0.04 598 14123 3741 8412 1970 63.6 MiB 0.27 0.00 3.43604 -92.6832 -3.43604 3.43604 2.27 0.000144052 0.000113818 0.0125319 0.00997179 28 1736 22 6.64007e+06 288834 500653. 1732.36 2.63 0.150119 0.144433 21970 115934 -1 1466 17 864 1511 96966 23302 3.08217 3.08217 -97.7481 -3.08217 0 0 612192. 2118.31 0.68 0.01 0.26 -1 -1 0.68 0.00410301 0.00363012 98 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 12.95 vpr 63.68 MiB -1 -1 0.54 21128 1 0.20 -1 -1 33728 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65204 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 24.9 MiB 0.12 729 8183 1849 5637 697 63.7 MiB 0.08 0.00 3.94895 -114.681 -3.94895 3.94895 2.82 0.000143534 0.000114161 0.00825563 0.00671299 28 2003 19 6.64007e+06 238602 500653. 1732.36 2.84 0.272777 0.267656 21970 115934 -1 1799 21 1146 1871 122649 29376 2.89097 2.89097 -111.719 -2.89097 0 0 612192. 2118.31 0.85 0.08 0.35 -1 -1 0.85 0.00955595 0.00837989 110 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 12.25 vpr 63.57 MiB -1 -1 0.39 21128 1 0.14 -1 -1 33464 -1 -1 27 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65092 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 24.9 MiB 0.18 868 7527 1581 5352 594 63.6 MiB 0.31 0.00 3.56847 -107.495 -3.56847 3.56847 2.28 6.6268e-05 5.1978e-05 0.0079333 0.00654043 30 1788 18 6.64007e+06 339066 526063. 1820.29 2.26 0.0331832 0.0281346 22546 126617 -1 1653 21 736 1288 67223 15752 2.91597 2.91597 -101.045 -2.91597 0 0 666494. 2306.21 0.78 0.11 0.33 -1 -1 0.78 0.0100359 0.00883265 103 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 13.91 vpr 63.70 MiB -1 -1 0.81 21280 1 0.20 -1 -1 33804 -1 -1 26 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65228 29 32 291 250 1 153 87 17 17 289 -1 unnamed_device 25.1 MiB 0.26 739 9495 2355 6085 1055 63.7 MiB 0.33 0.00 3.3589 -103.891 -3.3589 3.3589 2.31 0.000149647 0.000119008 0.00884932 0.00713222 28 1746 18 6.64007e+06 326508 500653. 1732.36 2.21 0.033907 0.0283431 21970 115934 -1 1647 16 885 1292 83362 20140 2.38151 2.38151 -96.3639 -2.38151 0 0 612192. 2118.31 0.70 0.01 0.25 -1 -1 0.70 0.00526488 0.00476692 105 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 17.31 vpr 64.29 MiB -1 -1 0.55 21280 1 0.13 -1 -1 34168 -1 -1 38 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65828 32 32 367 282 1 201 102 17 17 289 -1 unnamed_device 25.5 MiB 0.64 1107 10336 2265 7034 1037 64.3 MiB 0.21 0.00 4.35696 -123.755 -4.35696 4.35696 2.04 0.000217399 0.000181351 0.0105331 0.00880557 26 3217 50 6.64007e+06 477204 477104. 1650.88 5.70 0.243549 0.236092 21682 110474 -1 2430 20 1394 2554 184895 41388 3.94202 3.94202 -125.549 -3.94202 0 0 585099. 2024.56 0.68 0.22 0.30 -1 -1 0.68 0.097148 0.0115271 151 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 12.70 vpr 64.03 MiB -1 -1 0.57 21584 1 0.05 -1 -1 33556 -1 -1 37 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65564 32 32 391 311 1 192 101 17 17 289 -1 unnamed_device 25.3 MiB 0.42 971 9971 2311 7104 556 64.0 MiB 0.08 0.00 3.87558 -129.13 -3.87558 3.87558 1.60 0.000191473 0.000155165 0.0337501 0.0211453 26 2546 26 6.64007e+06 464646 477104. 1650.88 1.84 0.1875 0.16984 21682 110474 -1 2085 21 1581 2420 157485 36073 3.08017 3.08017 -124.613 -3.08017 0 0 585099. 2024.56 0.51 0.20 0.22 -1 -1 0.51 0.0145844 0.0129331 147 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 14.11 vpr 63.68 MiB -1 -1 0.75 21128 1 0.10 -1 -1 33716 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65212 31 32 279 237 1 161 82 17 17 289 -1 unnamed_device 25.1 MiB 1.10 966 12186 3700 6821 1665 63.7 MiB 0.07 0.00 4.35701 -128.732 -4.35701 4.35701 1.75 0.000138399 0.000109051 0.0111862 0.00894908 32 2082 19 6.64007e+06 238602 554710. 1919.41 1.36 0.035185 0.0293146 22834 132086 -1 1879 19 1113 1632 117971 27140 3.12563 3.12563 -115.654 -3.12563 0 0 701300. 2426.64 0.66 0.14 0.31 -1 -1 0.66 0.07853 0.0774681 112 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 15.59 vpr 64.20 MiB -1 -1 0.44 21280 1 0.20 -1 -1 34036 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65740 31 32 370 297 1 186 88 17 17 289 -1 unnamed_device 25.5 MiB 0.26 1053 13933 4032 7624 2277 64.2 MiB 0.34 0.00 4.30797 -133.935 -4.30797 4.30797 3.00 0.000222897 0.000182784 0.112058 0.109189 30 2300 22 6.64007e+06 313950 526063. 1820.29 2.26 0.145191 0.137476 22546 126617 -1 1981 18 1358 2350 138922 31524 2.76797 2.76797 -112.105 -2.76797 0 0 666494. 2306.21 0.70 0.14 0.30 -1 -1 0.70 0.0127393 0.0113077 138 61 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 15.72 vpr 63.82 MiB -1 -1 0.34 21584 1 0.08 -1 -1 33836 -1 -1 29 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65356 31 32 377 302 1 233 92 17 17 289 -1 unnamed_device 25.7 MiB 2.00 1119 14375 4168 8092 2115 63.8 MiB 0.18 0.00 5.89333 -172.903 -5.89333 5.89333 2.95 0.000174271 0.000139019 0.0155371 0.0127587 32 3473 30 6.64007e+06 364182 554710. 1919.41 1.79 0.0792757 0.0711823 22834 132086 -1 2375 21 2390 3588 239228 57632 4.68934 4.68934 -158.968 -4.68934 0 0 701300. 2426.64 0.85 0.17 0.21 -1 -1 0.85 0.0137103 0.0122178 172 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 15.41 vpr 64.33 MiB -1 -1 0.56 21584 1 0.03 -1 -1 33788 -1 -1 27 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65872 31 32 383 305 1 209 90 17 17 289 -1 unnamed_device 25.5 MiB 1.51 1191 15768 5423 8594 1751 64.3 MiB 0.20 0.00 5.08361 -153.384 -5.08361 5.08361 2.65 0.000201829 0.00016399 0.0172026 0.0140998 32 2811 23 6.64007e+06 339066 554710. 1919.41 1.06 0.112891 0.104888 22834 132086 -1 2395 21 1809 2783 211924 45230 4.56048 4.56048 -153.028 -4.56048 0 0 701300. 2426.64 1.02 0.22 0.34 -1 -1 1.02 0.0144434 0.0129432 164 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 15.13 vpr 64.00 MiB -1 -1 0.38 21280 1 0.11 -1 -1 33504 -1 -1 31 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65540 31 32 352 285 1 184 94 17 17 289 -1 unnamed_device 25.2 MiB 0.92 1006 12661 3249 8412 1000 64.0 MiB 0.28 0.08 4.68524 -135.636 -4.68524 4.68524 3.06 0.000193995 0.000158496 0.0133197 0.0110247 32 2363 21 6.64007e+06 389298 554710. 1919.41 1.91 0.0461921 0.0391972 22834 132086 -1 2116 17 995 1684 110019 25787 3.33983 3.33983 -121.897 -3.33983 0 0 701300. 2426.64 0.84 0.03 0.52 -1 -1 0.84 0.00968633 0.00858817 135 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 16.22 vpr 63.91 MiB -1 -1 0.45 21280 1 0.15 -1 -1 33884 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65448 32 32 291 242 1 179 87 17 17 289 -1 unnamed_device 25.2 MiB 0.85 1070 14679 4337 8393 1949 63.9 MiB 0.33 0.00 4.36796 -120.329 -4.36796 4.36796 2.79 0.000159796 0.00012668 0.11478 0.0118549 32 2358 21 6.64007e+06 288834 554710. 1919.41 2.97 0.213476 0.0337542 22834 132086 -1 2004 21 1171 1731 118584 26899 3.84083 3.84083 -121.035 -3.84083 0 0 701300. 2426.64 1.00 0.21 0.30 -1 -1 1.00 0.0116537 0.0104155 119 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 15.83 vpr 64.25 MiB -1 -1 0.70 21584 1 0.10 -1 -1 33796 -1 -1 40 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65796 32 32 457 356 1 223 104 17 17 289 -1 unnamed_device 26.0 MiB 0.76 1249 19868 5433 11877 2558 64.3 MiB 0.60 0.28 5.1415 -166.814 -5.1415 5.1415 2.63 0.000248789 0.00020764 0.021394 0.0174957 32 2903 23 6.64007e+06 502320 554710. 1919.41 1.66 0.0654387 0.051033 22834 132086 -1 2475 21 1616 2412 153796 35137 3.92729 3.92729 -147.478 -3.92729 0 0 701300. 2426.64 0.85 0.17 0.37 -1 -1 0.85 0.0158723 0.014163 174 87 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 14.95 vpr 63.68 MiB -1 -1 0.31 21128 1 0.03 -1 -1 33912 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65208 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 24.9 MiB 0.18 803 5025 1005 3649 371 63.7 MiB 0.15 0.00 3.83987 -104.767 -3.83987 3.83987 3.06 0.000136515 0.000107519 0.00602699 0.00497481 30 1771 17 6.64007e+06 263718 526063. 1820.29 2.98 0.0300062 0.0252814 22546 126617 -1 1613 18 779 1393 81598 18704 2.73857 2.73857 -99.0848 -2.73857 0 0 666494. 2306.21 0.85 0.03 0.26 -1 -1 0.85 0.00875297 0.00774801 101 28 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 17.37 vpr 64.16 MiB -1 -1 0.61 21432 1 0.03 -1 -1 33628 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65696 31 32 337 267 1 205 88 17 17 289 -1 unnamed_device 25.4 MiB 0.57 1162 10228 2647 6642 939 64.2 MiB 0.25 0.00 5.14752 -155.108 -5.14752 5.14752 2.87 0.000191031 0.000134154 0.0114316 0.00940382 26 2968 23 6.64007e+06 313950 477104. 1650.88 4.73 0.400076 0.134395 21682 110474 -1 2490 20 1430 2050 143308 32562 4.33708 4.33708 -147.453 -4.33708 0 0 585099. 2024.56 0.73 0.10 0.35 -1 -1 0.73 0.0675381 0.0661694 144 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 16.99 vpr 64.15 MiB -1 -1 0.68 21128 1 0.14 -1 -1 33876 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 25.4 MiB 0.51 1031 9643 2047 7145 451 64.1 MiB 0.48 0.00 4.0171 -121.518 -4.0171 4.0171 2.66 0.000161868 0.000130124 0.422908 0.301811 28 2635 19 6.64007e+06 414414 500653. 1732.36 3.82 0.453902 0.328294 21970 115934 -1 2235 20 1444 2574 170168 39668 3.08817 3.08817 -113.812 -3.08817 0 0 612192. 2118.31 0.87 0.12 0.09 -1 -1 0.87 0.0123934 0.0108191 131 53 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 15.58 vpr 63.88 MiB -1 -1 0.52 21432 1 0.04 -1 -1 33736 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65416 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 25.2 MiB 0.06 912 5938 1237 4353 348 63.9 MiB 0.13 0.00 4.13756 -120.743 -4.13756 4.13756 2.45 0.000185711 0.000130447 0.00636428 0.00525361 32 2155 20 6.64007e+06 301392 554710. 1919.41 3.16 0.131566 0.0293915 22834 132086 -1 1880 19 1203 2210 129597 30645 3.47223 3.47223 -118.931 -3.47223 0 0 701300. 2426.64 1.18 0.14 0.33 -1 -1 1.18 0.0114014 0.0101009 123 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 17.29 vpr 64.19 MiB -1 -1 1.00 21584 1 0.30 -1 -1 33776 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65732 32 32 353 287 1 198 88 17 17 289 -1 unnamed_device 25.4 MiB 0.63 1105 14713 4479 8365 1869 64.2 MiB 0.21 0.00 4.89735 -144.949 -4.89735 4.89735 2.90 0.000168871 0.000134126 0.0156264 0.0127157 32 2397 20 6.64007e+06 301392 554710. 1919.41 2.78 0.131745 0.124274 22834 132086 -1 2149 17 1067 1469 112692 24874 3.50943 3.50943 -128.789 -3.50943 0 0 701300. 2426.64 1.22 0.03 0.36 -1 -1 1.22 0.0114101 0.0103052 138 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 15.48 vpr 64.20 MiB -1 -1 1.30 21432 1 0.12 -1 -1 33544 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 32 32 361 291 1 185 96 17 17 289 -1 unnamed_device 25.4 MiB 0.26 1031 9513 2066 6737 710 64.2 MiB 0.31 0.00 3.7565 -124.965 -3.7565 3.7565 2.77 0.000183549 0.000150674 0.0100477 0.00825976 32 2453 19 6.64007e+06 401856 554710. 1919.41 2.91 0.151794 0.0352663 22834 132086 -1 2103 18 1153 1864 122502 28274 2.98197 2.98197 -117.268 -2.98197 0 0 701300. 2426.64 1.07 0.20 0.45 -1 -1 1.07 0.0125097 0.0112065 133 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 16.27 vpr 64.25 MiB -1 -1 0.59 21432 1 0.18 -1 -1 33732 -1 -1 37 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65796 32 32 382 305 1 192 101 17 17 289 -1 unnamed_device 25.5 MiB 1.36 1092 11616 2944 7805 867 64.3 MiB 0.26 0.00 4.776 -145.641 -4.776 4.776 2.43 0.000189539 0.000154761 0.0108773 0.00891344 30 2383 19 6.64007e+06 464646 526063. 1820.29 2.78 0.266334 0.259319 22546 126617 -1 2037 16 956 1502 76540 18706 3.47103 3.47103 -128.78 -3.47103 0 0 666494. 2306.21 1.37 0.03 0.48 -1 -1 1.37 0.0116124 0.0104606 145 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 20.02 vpr 63.93 MiB -1 -1 0.40 21432 1 0.14 -1 -1 34120 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65468 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 25.1 MiB 0.08 830 7023 1481 5311 231 63.9 MiB 0.24 0.00 4.19967 -120.859 -4.19967 4.19967 2.78 0.000157482 0.0001245 0.0069072 0.00562662 30 2090 21 6.64007e+06 364182 526063. 1820.29 3.23 0.0359906 0.0304569 22546 126617 -1 1637 18 960 1653 89780 21310 3.90303 3.90303 -116.463 -3.90303 0 0 666494. 2306.21 0.96 0.03 0.39 -1 -1 0.96 0.0135745 0.0124929 122 24 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 14.87 vpr 64.04 MiB -1 -1 0.78 21280 1 0.17 -1 -1 33648 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65572 32 32 319 257 1 198 88 17 17 289 -1 unnamed_device 25.4 MiB 0.67 1049 7498 1593 5357 548 64.0 MiB 0.35 0.17 5.183 -143.62 -5.183 5.183 2.42 0.000161802 0.000128753 0.00815827 0.00675629 28 2436 22 6.64007e+06 301392 500653. 1732.36 1.84 0.0955921 0.0900453 21970 115934 -1 2277 17 1337 1977 137691 32123 3.84302 3.84302 -134.69 -3.84302 0 0 612192. 2118.31 0.92 0.15 0.34 -1 -1 0.92 0.011473 0.0100386 133 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 15.98 vpr 64.27 MiB -1 -1 0.57 21432 1 0.03 -1 -1 33808 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65812 31 32 373 299 1 202 88 17 17 289 -1 unnamed_device 25.5 MiB 1.16 1063 10423 2679 6644 1100 64.3 MiB 0.12 0.00 5.14867 -149.951 -5.14867 5.14867 2.82 0.000187399 0.000152424 0.0114909 0.00944423 32 2827 22 6.64007e+06 313950 554710. 1919.41 2.18 0.0440822 0.0373757 22834 132086 -1 2429 19 1531 2436 167558 39145 4.38209 4.38209 -145.471 -4.38209 0 0 701300. 2426.64 0.92 0.11 0.55 -1 -1 0.92 0.0123503 0.0110317 148 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 15.48 vpr 64.17 MiB -1 -1 0.98 21736 1 0.12 -1 -1 33644 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65708 32 32 387 315 1 189 86 17 17 289 -1 unnamed_device 25.4 MiB 0.82 999 9347 2537 5990 820 64.2 MiB 0.34 0.00 4.30607 -131.887 -4.30607 4.30607 2.70 0.000191115 0.000154774 0.0115097 0.00955572 32 2621 18 6.64007e+06 276276 554710. 1919.41 2.05 0.0600607 0.0369295 22834 132086 -1 2135 21 1630 2937 190918 44267 3.45022 3.45022 -127.121 -3.45022 0 0 701300. 2426.64 0.96 0.09 0.46 -1 -1 0.96 0.0134535 0.0119462 136 77 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 14.97 vpr 63.26 MiB -1 -1 0.49 21280 1 0.13 -1 -1 33688 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64780 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 24.8 MiB 0.30 707 15103 5445 7308 2350 63.3 MiB 0.32 0.00 3.43127 -100.64 -3.43127 3.43127 2.78 0.000145001 0.000111646 0.0123216 0.00982106 30 1671 23 6.64007e+06 301392 526063. 1820.29 2.26 0.0642437 0.0579831 22546 126617 -1 1434 19 724 1170 74656 16740 2.77677 2.77677 -95.239 -2.77677 0 0 666494. 2306.21 1.13 0.02 0.19 -1 -1 1.13 0.00849099 0.00751566 97 23 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 15.24 vpr 64.27 MiB -1 -1 0.49 21128 1 0.09 -1 -1 33948 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65812 32 32 341 285 1 187 86 17 17 289 -1 unnamed_device 25.5 MiB 0.78 879 16907 6072 8286 2549 64.3 MiB 0.33 0.00 4.05536 -136.666 -4.05536 4.05536 2.54 0.000169209 0.000133494 0.117933 0.114598 30 2336 24 6.64007e+06 276276 526063. 1820.29 3.01 0.148276 0.140395 22546 126617 -1 1899 27 1588 2334 172460 38388 3.44717 3.44717 -125.656 -3.44717 0 0 666494. 2306.21 0.85 0.22 0.19 -1 -1 0.85 0.165319 0.163663 127 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 18.30 vpr 64.05 MiB -1 -1 0.49 21432 1 0.07 -1 -1 33680 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65584 32 32 387 293 1 234 93 17 17 289 -1 unnamed_device 25.8 MiB 0.95 1391 17943 5776 10036 2131 64.0 MiB 0.57 0.10 5.4603 -163.746 -5.4603 5.4603 2.99 0.000200748 0.000161365 0.0197282 0.0159715 26 3829 37 6.64007e+06 364182 477104. 1650.88 5.10 0.12643 0.116478 21682 110474 -1 2903 21 2212 3431 279508 61047 4.77288 4.77288 -159.713 -4.77288 0 0 585099. 2024.56 0.78 0.21 0.26 -1 -1 0.78 0.0152005 0.0136309 169 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 13.80 vpr 63.93 MiB -1 -1 0.40 21584 1 0.10 -1 -1 33988 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65464 32 32 340 270 1 181 96 17 17 289 -1 unnamed_device 25.2 MiB 0.66 899 8418 1747 6220 451 63.9 MiB 0.12 0.00 4.50246 -133.681 -4.50246 4.50246 2.39 0.00020338 0.000166538 0.0715383 0.069946 30 2214 19 6.64007e+06 401856 526063. 1820.29 2.72 0.123628 0.117608 22546 126617 -1 1757 20 950 1554 85616 20273 3.01637 3.01637 -112.762 -3.01637 0 0 666494. 2306.21 0.95 0.13 0.18 -1 -1 0.95 0.0128968 0.0115379 133 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 14.73 vpr 63.76 MiB -1 -1 0.44 21128 1 0.17 -1 -1 33760 -1 -1 26 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65288 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 25.1 MiB 0.14 644 6718 1441 4611 666 63.8 MiB 0.13 0.00 3.45804 -101.577 -3.45804 3.45804 3.27 0.000146923 0.000116831 0.0066095 0.00537478 32 1668 19 6.64007e+06 326508 554710. 1919.41 2.63 0.134918 0.129651 22834 132086 -1 1494 17 978 1572 96866 23828 2.87177 2.87177 -100.543 -2.87177 0 0 701300. 2426.64 0.55 0.06 0.26 -1 -1 0.55 0.00896691 0.00797922 104 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 17.93 vpr 63.96 MiB -1 -1 0.53 21280 1 0.13 -1 -1 33744 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65492 32 32 431 332 1 235 91 17 17 289 -1 unnamed_device 25.8 MiB 1.27 1258 17023 5454 8906 2663 64.0 MiB 0.48 0.00 6.52766 -186.909 -6.52766 6.52766 2.44 0.00021071 0.000171224 0.0211344 0.0174472 32 3197 27 6.64007e+06 339066 554710. 1919.41 4.23 0.141289 0.0515818 22834 132086 -1 2657 22 2151 3021 219961 49163 5.34414 5.34414 -174.228 -5.34414 0 0 701300. 2426.64 0.73 0.22 0.44 -1 -1 0.73 0.0167397 0.0148986 170 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 15.80 vpr 64.05 MiB -1 -1 0.48 21280 1 0.10 -1 -1 33616 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65592 32 32 336 268 1 174 97 17 17 289 -1 unnamed_device 25.3 MiB 0.41 911 6091 1101 4753 237 64.1 MiB 0.16 0.00 4.60401 -138.195 -4.60401 4.60401 2.97 0.000169471 0.000135364 0.00679144 0.00568019 26 2378 47 6.64007e+06 414414 477104. 1650.88 4.03 0.145776 0.138443 21682 110474 -1 2062 21 1448 2243 152231 34470 3.70502 3.70502 -129.318 -3.70502 0 0 585099. 2024.56 0.51 0.13 0.18 -1 -1 0.51 0.0128087 0.0114353 130 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 16.23 vpr 63.68 MiB -1 -1 0.49 20672 1 0.13 -1 -1 33648 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65204 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 24.9 MiB 0.23 820 12375 3515 6889 1971 63.7 MiB 0.11 0.00 3.58247 -102.931 -3.58247 3.58247 3.69 0.000132157 0.000104545 0.0101192 0.00806529 26 1931 26 6.64007e+06 288834 477104. 1650.88 3.88 0.144927 0.139074 21682 110474 -1 1824 20 946 1569 120750 26711 2.80577 2.80577 -101.898 -2.80577 0 0 585099. 2024.56 0.98 0.13 0.19 -1 -1 0.98 0.00900647 0.00783961 100 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 22.26 vpr 63.98 MiB -1 -1 0.51 21432 1 0.07 -1 -1 33448 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65516 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 25.4 MiB 0.25 1059 11573 2749 8139 685 64.0 MiB 0.20 0.00 5.58461 -136.884 -5.58461 5.58461 3.76 0.000259232 0.000217727 0.0117972 0.00968879 26 3084 26 6.64007e+06 426972 477104. 1650.88 9.48 0.0468167 0.0394879 21682 110474 -1 2444 21 1450 2812 206053 44907 4.99708 4.99708 -139.387 -4.99708 0 0 585099. 2024.56 1.14 0.33 0.27 -1 -1 1.14 0.0209779 0.015682 139 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 15.61 vpr 63.59 MiB -1 -1 0.40 21128 1 0.04 -1 -1 33856 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65112 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 24.9 MiB 0.12 692 7404 1537 5210 657 63.6 MiB 0.14 0.00 3.45624 -104.571 -3.45624 3.45624 3.37 0.000134082 0.000105468 0.00729556 0.00588096 28 1972 25 6.64007e+06 251160 500653. 1732.36 3.29 0.0323933 0.0271628 21970 115934 -1 1674 19 1142 1970 132697 34368 2.78177 2.78177 -106.065 -2.78177 0 0 612192. 2118.31 0.74 0.12 0.28 -1 -1 0.74 0.0141877 0.0131792 104 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 15.62 vpr 63.77 MiB -1 -1 0.70 21432 1 0.18 -1 -1 33912 -1 -1 33 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65296 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 25.1 MiB 0.19 661 13271 3491 8020 1760 63.8 MiB 0.36 0.00 4.08278 -107.388 -4.08278 4.08278 3.25 0.000154168 0.000122978 0.123273 0.121177 26 1782 23 6.64007e+06 414414 477104. 1650.88 3.28 0.2287 0.222436 21682 110474 -1 1560 18 844 1535 98500 23978 2.80376 2.80376 -99.1998 -2.80376 0 0 585099. 2024.56 0.92 0.03 0.43 -1 -1 0.92 0.0093052 0.00828504 105 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 16.32 vpr 64.20 MiB -1 -1 0.85 21432 1 0.11 -1 -1 33872 -1 -1 26 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65740 29 32 355 287 1 198 87 17 17 289 -1 unnamed_device 25.5 MiB 1.20 1051 14871 4721 7474 2676 64.2 MiB 0.26 0.00 4.65946 -136.547 -4.65946 4.65946 2.53 0.000172473 0.000137511 0.0152604 0.0124275 32 2635 26 6.64007e+06 326508 554710. 1919.41 3.76 0.466617 0.138305 22834 132086 -1 2198 18 1449 2156 149608 34012 3.61362 3.61362 -122.49 -3.61362 0 0 701300. 2426.64 1.02 0.21 0.31 -1 -1 1.02 0.0131463 0.0119163 139 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 14.33 vpr 64.03 MiB -1 -1 0.54 21432 1 0.17 -1 -1 33816 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65568 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 25.3 MiB 0.35 788 7108 1431 5495 182 64.0 MiB 0.15 0.00 4.47545 -132.712 -4.47545 4.47545 2.71 0.000178399 0.000143622 0.00841994 0.00695599 32 2149 22 6.64007e+06 301392 554710. 1919.41 2.20 0.0423484 0.0360955 22834 132086 -1 1836 22 1619 2505 199669 44463 3.78683 3.78683 -129.199 -3.78683 0 0 701300. 2426.64 1.41 0.32 0.28 -1 -1 1.41 0.013947 0.0124082 130 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 15.22 vpr 64.06 MiB -1 -1 0.50 21280 1 0.07 -1 -1 33692 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65596 32 32 353 285 1 181 92 17 17 289 -1 unnamed_device 25.5 MiB 0.51 1016 16652 4669 9876 2107 64.1 MiB 0.23 0.00 4.72138 -141.559 -4.72138 4.72138 2.57 0.000174713 0.000139391 0.126072 0.122738 32 2235 17 6.64007e+06 351624 554710. 1919.41 2.56 0.155042 0.147507 22834 132086 -1 2079 18 1060 1825 121513 27657 3.44402 3.44402 -125.897 -3.44402 0 0 701300. 2426.64 0.85 0.13 0.43 -1 -1 0.85 0.0115813 0.0104165 133 51 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 15.93 vpr 63.59 MiB -1 -1 0.42 21432 1 0.18 -1 -1 33872 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65116 32 32 276 237 1 159 81 17 17 289 -1 unnamed_device 25.1 MiB 0.59 739 10406 2871 6114 1421 63.6 MiB 0.26 0.00 4.77715 -129.788 -4.77715 4.77715 2.54 0.000130957 0.000103633 0.0100465 0.00812432 26 2464 34 6.64007e+06 213486 477104. 1650.88 4.10 0.195544 0.188982 21682 110474 -1 1874 21 1194 1673 136353 31626 3.37823 3.37823 -117.547 -3.37823 0 0 585099. 2024.56 0.76 0.19 0.22 -1 -1 0.76 0.0104379 0.0092344 105 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 15.74 vpr 63.82 MiB -1 -1 0.85 21280 1 0.03 -1 -1 33640 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65348 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 25.1 MiB 0.87 900 13966 4576 7232 2158 63.8 MiB 0.36 0.00 3.96736 -126.928 -3.96736 3.96736 3.04 0.000155506 0.000122347 0.0146695 0.0118338 32 2032 19 6.64007e+06 238602 554710. 1919.41 2.39 0.043114 0.0360288 22834 132086 -1 1796 19 1186 1711 121103 26352 3.03063 3.03063 -115.915 -3.03063 0 0 701300. 2426.64 1.01 0.07 0.24 -1 -1 1.01 0.0114055 0.0101854 113 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 15.57 vpr 64.00 MiB -1 -1 0.35 21584 1 0.07 -1 -1 33764 -1 -1 33 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65540 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 25.2 MiB 0.63 869 11759 2827 8114 818 64.0 MiB 0.19 0.00 3.56047 -98.9603 -3.56047 3.56047 3.06 0.000162187 0.000128606 0.0112268 0.00915129 26 2451 35 6.64007e+06 414414 477104. 1650.88 4.28 0.124398 0.117208 21682 110474 -1 1883 19 1046 1820 121515 28037 3.00517 3.00517 -101.278 -3.00517 0 0 585099. 2024.56 1.02 0.16 0.16 -1 -1 1.02 0.132944 0.131712 123 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 16.11 vpr 63.82 MiB -1 -1 0.59 21128 1 0.08 -1 -1 33768 -1 -1 35 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65352 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 25.2 MiB 0.64 923 12623 3556 7108 1959 63.8 MiB 0.29 0.00 4.42192 -107.107 -4.42192 4.42192 2.88 0.000154515 0.000123667 0.011005 0.00887745 26 2207 22 6.64007e+06 439530 477104. 1650.88 3.42 0.038703 0.0324006 21682 110474 -1 1846 21 1076 1977 144972 32111 3.60762 3.60762 -103.379 -3.60762 0 0 585099. 2024.56 0.71 0.04 0.18 -1 -1 0.71 0.0102956 0.00885177 115 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 16.31 vpr 63.78 MiB -1 -1 0.64 21584 1 0.14 -1 -1 33868 -1 -1 18 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65312 30 32 317 269 1 152 80 17 17 289 -1 unnamed_device 25.2 MiB 1.12 868 13152 3960 7274 1918 63.8 MiB 0.52 0.00 4.18997 -120.71 -4.18997 4.18997 3.07 0.000159962 0.000127892 0.458529 0.11426 30 1859 20 6.64007e+06 226044 526063. 1820.29 2.79 0.485888 0.137589 22546 126617 -1 1604 16 950 1642 89587 20645 2.88777 2.88777 -111.889 -2.88777 0 0 666494. 2306.21 0.74 0.13 0.49 -1 -1 0.74 0.107574 0.106506 108 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 17.94 vpr 63.89 MiB -1 -1 0.51 21128 1 0.03 -1 -1 33752 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65428 32 32 335 282 1 184 85 17 17 289 -1 unnamed_device 25.2 MiB 0.66 936 13105 4260 6168 2677 63.9 MiB 0.29 0.00 3.98936 -131.555 -3.98936 3.98936 3.43 0.000156337 0.000123429 0.0135869 0.0110377 32 2306 23 6.64007e+06 263718 554710. 1919.41 3.05 0.0426464 0.0355717 22834 132086 -1 1937 17 1188 1717 111112 25766 3.11317 3.11317 -120.016 -3.11317 0 0 701300. 2426.64 1.04 0.07 0.24 -1 -1 1.04 0.0119899 0.0109284 121 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 15.77 vpr 63.78 MiB -1 -1 0.52 21128 1 0.12 -1 -1 33872 -1 -1 32 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65308 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 25.1 MiB 0.21 1072 16295 4636 9641 2018 63.8 MiB 0.32 0.00 4.60183 -132.105 -4.60183 4.60183 2.76 0.000157977 0.000125883 0.0136171 0.0110441 32 2361 23 6.64007e+06 401856 554710. 1919.41 3.08 0.0425043 0.0357157 22834 132086 -1 2070 21 1298 2300 158131 35716 3.58143 3.58143 -121.596 -3.58143 0 0 701300. 2426.64 0.98 0.17 0.34 -1 -1 0.98 0.0120079 0.0107192 127 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 16.54 vpr 63.99 MiB -1 -1 0.47 21280 1 0.11 -1 -1 33628 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65528 32 32 350 275 1 209 88 17 17 289 -1 unnamed_device 25.4 MiB 1.12 1141 10618 2698 7154 766 64.0 MiB 0.21 0.00 5.38066 -169.108 -5.38066 5.38066 2.36 0.000187965 0.000153004 0.0789252 0.0768864 32 2828 24 6.64007e+06 301392 554710. 1919.41 3.28 0.138799 0.133123 22834 132086 -1 2471 20 1618 2374 162388 37377 4.22469 4.22469 -153.669 -4.22469 0 0 701300. 2426.64 1.02 0.12 0.34 -1 -1 1.02 0.0126606 0.0112805 146 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 15.80 vpr 64.25 MiB -1 -1 0.42 21584 1 0.10 -1 -1 33844 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65796 32 32 385 308 1 185 98 17 17 289 -1 unnamed_device 25.5 MiB 0.48 1093 17423 4766 10394 2263 64.3 MiB 0.32 0.00 5.20872 -147.682 -5.20872 5.20872 2.77 0.000211969 0.000174725 0.120411 0.117243 32 2487 20 6.64007e+06 426972 554710. 1919.41 2.98 0.351042 0.342995 22834 132086 -1 2176 22 1357 2464 161896 37754 4.13968 4.13968 -138.72 -4.13968 0 0 701300. 2426.64 1.14 0.33 0.33 -1 -1 1.14 0.0139973 0.0123757 144 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 20.38 vpr 64.29 MiB -1 -1 0.38 21280 1 0.21 -1 -1 33796 -1 -1 37 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65828 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 25.5 MiB 0.28 1020 5976 1067 4592 317 64.3 MiB 0.23 0.00 4.48481 -139.253 -4.48481 4.48481 2.65 0.000271766 0.000232292 0.00762352 0.00621737 26 3037 34 6.64007e+06 464646 477104. 1650.88 9.27 0.278558 0.271695 21682 110474 -1 2532 19 1528 2617 199141 44832 4.02223 4.02223 -142.177 -4.02223 0 0 585099. 2024.56 0.63 0.09 0.23 -1 -1 0.63 0.0128737 0.0114939 140 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 19.84 vpr 63.53 MiB -1 -1 0.49 21128 1 0.34 -1 -1 34048 -1 -1 19 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65056 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 24.9 MiB 0.97 720 9706 2873 5961 872 63.5 MiB 0.10 0.00 3.87875 -113.748 -3.87875 3.87875 3.20 0.000142299 0.000113822 0.0097933 0.00797525 26 2012 21 6.64007e+06 238602 477104. 1650.88 4.02 0.201287 0.195543 21682 110474 -1 1680 20 1072 1796 126030 29211 2.77977 2.77977 -103.879 -2.77977 0 0 585099. 2024.56 0.92 0.04 0.22 -1 -1 0.92 0.0099439 0.00876209 104 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 20.88 vpr 64.00 MiB -1 -1 0.36 21432 1 0.05 -1 -1 33908 -1 -1 23 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65540 30 32 375 299 1 187 85 17 17 289 -1 unnamed_device 25.5 MiB 0.44 943 11431 3023 6401 2007 64.0 MiB 0.16 0.00 4.78844 -139.402 -4.78844 4.78844 3.11 0.000186671 0.000151959 0.0145199 0.0119405 32 2200 19 6.64007e+06 288834 554710. 1919.41 3.61 0.047531 0.040402 22834 132086 -1 1954 22 1661 2537 190798 42661 3.78083 3.78083 -134.259 -3.78083 0 0 701300. 2426.64 0.98 0.10 0.26 -1 -1 0.98 0.0132331 0.0116885 138 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 21.02 vpr 63.92 MiB -1 -1 0.71 20976 1 0.05 -1 -1 33728 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65452 32 32 340 270 1 200 90 17 17 289 -1 unnamed_device 25.3 MiB 0.60 1173 16170 4393 9836 1941 63.9 MiB 0.38 0.00 5.44166 -158.46 -5.44166 5.44166 2.91 0.000235363 0.000199151 0.0169446 0.0138694 26 3066 44 6.64007e+06 326508 477104. 1650.88 7.70 0.163087 0.154107 21682 110474 -1 2530 20 1510 2361 214573 45177 4.20469 4.20469 -146.692 -4.20469 0 0 585099. 2024.56 0.78 0.06 0.10 -1 -1 0.78 0.0454405 0.0440837 140 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 17.06 vpr 64.02 MiB -1 -1 1.00 21584 1 0.03 -1 -1 33772 -1 -1 30 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65560 31 32 340 275 1 195 93 17 17 289 -1 unnamed_device 25.4 MiB 1.10 1218 15003 4568 8445 1990 64.0 MiB 0.48 0.00 5.37715 -156.36 -5.37715 5.37715 3.05 0.000182094 0.000146667 0.0149055 0.0122418 30 2584 21 6.64007e+06 376740 526063. 1820.29 3.43 0.0994961 0.0925531 22546 126617 -1 2097 19 945 1496 90295 19909 4.17788 4.17788 -140.711 -4.17788 0 0 666494. 2306.21 0.84 0.06 0.35 -1 -1 0.84 0.0118243 0.0106109 148 47 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 16.42 vpr 64.22 MiB -1 -1 0.91 21280 1 0.19 -1 -1 33648 -1 -1 33 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65764 30 32 377 310 1 177 95 17 17 289 -1 unnamed_device 25.5 MiB 0.67 896 9167 2079 5963 1125 64.2 MiB 0.24 0.00 4.45681 -129.866 -4.45681 4.45681 2.76 0.000180568 0.000142043 0.00790361 0.00646221 32 2155 17 6.64007e+06 414414 554710. 1919.41 2.83 0.0407063 0.0347473 22834 132086 -1 1914 20 1197 2020 120534 29155 3.30083 3.30083 -120.042 -3.30083 0 0 701300. 2426.64 1.57 0.18 0.40 -1 -1 1.57 0.0136899 0.012031 135 83 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 15.40 vpr 63.93 MiB -1 -1 0.44 21432 1 0.18 -1 -1 33708 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65468 32 32 365 294 1 185 85 17 17 289 -1 unnamed_device 25.2 MiB 0.34 1055 11059 3307 6879 873 63.9 MiB 0.12 0.00 5.0056 -144.674 -5.0056 5.0056 2.88 0.000173519 0.000140153 0.0150455 0.0128531 32 2576 22 6.64007e+06 263718 554710. 1919.41 2.57 0.127457 0.120909 22834 132086 -1 2335 18 1326 2304 163091 36087 3.94982 3.94982 -137.537 -3.94982 0 0 701300. 2426.64 1.32 0.44 0.24 -1 -1 1.32 0.0118253 0.0105433 134 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 16.24 vpr 64.13 MiB -1 -1 0.48 21736 1 0.27 -1 -1 33816 -1 -1 31 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65668 29 32 378 310 1 177 92 17 17 289 -1 unnamed_device 25.5 MiB 0.62 991 14168 3722 8736 1710 64.1 MiB 0.30 0.00 4.90164 -138.394 -4.90164 4.90164 2.61 0.000168324 0.000134752 0.189668 0.187041 26 2502 24 6.64007e+06 389298 477104. 1650.88 2.33 0.222331 0.214911 21682 110474 -1 2063 15 1013 1655 107542 24963 3.75663 3.75663 -132.162 -3.75663 0 0 585099. 2024.56 1.15 0.11 0.27 -1 -1 1.15 0.0116906 0.0105427 132 85 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 13.28 vpr 63.55 MiB -1 -1 0.60 20976 1 0.19 -1 -1 33912 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65072 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 24.9 MiB 0.22 698 12416 3955 6725 1736 63.5 MiB 0.17 0.00 3.88758 -112.897 -3.88758 3.88758 2.64 0.000133485 0.00010512 0.0114222 0.00915776 28 1787 17 6.64007e+06 188370 500653. 1732.36 3.09 0.0347648 0.0292322 21970 115934 -1 1611 20 959 1457 110874 25319 2.99497 2.99497 -107.803 -2.99497 0 0 612192. 2118.31 0.68 0.14 0.13 -1 -1 0.68 0.00911602 0.00808967 96 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 16.52 vpr 64.19 MiB -1 -1 0.48 21432 1 0.09 -1 -1 33704 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65728 32 32 373 302 1 176 96 17 17 289 -1 unnamed_device 25.4 MiB 0.67 964 13455 3168 8058 2229 64.2 MiB 0.27 0.00 4.65236 -138.008 -4.65236 4.65236 2.98 0.00016497 0.000131649 0.0127342 0.010377 32 2137 22 6.64007e+06 401856 554710. 1919.41 2.40 0.0733045 0.0661312 22834 132086 -1 1819 19 1275 2138 130681 30237 3.85002 3.85002 -129.858 -3.85002 0 0 701300. 2426.64 1.02 0.22 0.24 -1 -1 1.02 0.0114272 0.0101271 132 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 15.90 vpr 64.29 MiB -1 -1 0.59 21736 1 0.18 -1 -1 33792 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65832 32 32 397 314 1 196 86 17 17 289 -1 unnamed_device 25.5 MiB 0.80 1060 10103 2308 6560 1235 64.3 MiB 0.34 0.00 4.84241 -152.382 -4.84241 4.84241 2.76 0.000180796 0.000145089 0.0122441 0.0100669 32 2600 21 6.64007e+06 276276 554710. 1919.41 3.19 0.207791 0.20069 22834 132086 -1 2330 23 1974 3186 228432 52206 3.99923 3.99923 -143.607 -3.99923 0 0 701300. 2426.64 1.15 0.22 0.26 -1 -1 1.15 0.0148665 0.013219 148 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 15.54 vpr 63.82 MiB -1 -1 0.41 21280 1 0.10 -1 -1 33720 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65356 32 32 269 231 1 170 84 17 17 289 -1 unnamed_device 25.1 MiB 0.63 948 13992 4317 7911 1764 63.8 MiB 0.24 0.00 4.31784 -124.811 -4.31784 4.31784 2.96 0.000138163 0.000110108 0.0297505 0.0271951 32 2139 22 6.64007e+06 251160 554710. 1919.41 3.01 0.055222 0.0489866 22834 132086 -1 1864 17 941 1225 86209 19856 3.21283 3.21283 -114.944 -3.21283 0 0 701300. 2426.64 1.21 0.11 0.28 -1 -1 1.21 0.00974595 0.00874286 109 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 15.95 vpr 63.65 MiB -1 -1 0.44 21128 1 0.14 -1 -1 33644 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65180 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 24.9 MiB 0.14 781 9417 2297 6451 669 63.7 MiB 0.15 0.00 3.81035 -110.01 -3.81035 3.81035 3.05 0.000126892 0.000100235 0.108806 0.107235 32 1781 20 6.64007e+06 263718 554710. 1919.41 2.74 0.239682 0.234428 22834 132086 -1 1576 20 946 1624 103938 23927 2.61437 2.61437 -99.4048 -2.61437 0 0 701300. 2426.64 0.83 0.21 0.52 -1 -1 0.83 0.00918862 0.00810276 106 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 19.82 vpr 64.23 MiB -1 -1 0.44 21584 1 0.24 -1 -1 33980 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65768 32 32 348 274 1 211 90 17 17 289 -1 unnamed_device 25.7 MiB 1.01 895 10542 2890 7065 587 64.2 MiB 0.18 0.00 5.11544 -156.548 -5.11544 5.11544 2.76 0.00018834 0.000155804 0.0250306 0.0230352 26 3084 38 6.64007e+06 326508 477104. 1650.88 6.97 0.100407 0.0925314 21682 110474 -1 2430 24 1928 2531 182863 44364 4.40329 4.40329 -157.453 -4.40329 0 0 585099. 2024.56 1.00 0.15 0.28 -1 -1 1.00 0.0142369 0.0126004 144 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 16.84 vpr 64.21 MiB -1 -1 0.45 21432 1 0.20 -1 -1 33696 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65756 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 25.5 MiB 0.63 1180 8283 2004 5658 621 64.2 MiB 0.46 0.00 4.91139 -150.395 -4.91139 4.91139 2.94 0.000164407 0.00013181 0.00923235 0.00764545 26 3166 31 6.64007e+06 364182 477104. 1650.88 3.53 0.0641874 0.0573494 21682 110474 -1 2596 21 1653 2552 195854 42702 4.72769 4.72769 -160.09 -4.72769 0 0 585099. 2024.56 0.90 0.16 0.44 -1 -1 0.90 0.0118917 0.0105273 155 56 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 16.15 vpr 64.20 MiB -1 -1 0.72 21432 1 0.17 -1 -1 33824 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65744 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 25.5 MiB 0.37 1180 11932 3220 7881 831 64.2 MiB 0.41 0.00 5.49089 -148.419 -5.49089 5.49089 2.66 8.2603e-05 6.6418e-05 0.0107358 0.00881626 26 3069 24 6.64007e+06 452088 477104. 1650.88 4.66 0.0456321 0.0388008 21682 110474 -1 2506 19 1528 2735 230515 47745 4.29109 4.29109 -144.084 -4.29109 0 0 585099. 2024.56 0.89 0.15 0.20 -1 -1 0.89 0.10888 0.107563 153 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 15.13 vpr 63.76 MiB -1 -1 0.51 21432 1 0.13 -1 -1 33872 -1 -1 32 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65292 30 32 316 264 1 162 94 17 17 289 -1 unnamed_device 25.2 MiB 0.46 874 9892 2506 6506 880 63.8 MiB 0.17 0.00 3.51924 -104.27 -3.51924 3.51924 3.24 0.000150198 0.000118987 0.00985718 0.008063 30 1829 20 6.64007e+06 401856 526063. 1820.29 2.48 0.0541673 0.0483061 22546 126617 -1 1618 20 1032 1862 89124 21789 2.85117 2.85117 -98.5541 -2.85117 0 0 666494. 2306.21 0.96 0.18 0.23 -1 -1 0.96 0.0106496 0.00932537 121 52 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 15.57 vpr 63.57 MiB -1 -1 0.49 21128 1 0.15 -1 -1 33992 -1 -1 21 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65092 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 24.9 MiB 0.11 565 12120 3265 7503 1352 63.6 MiB 0.26 0.01 3.49724 -93.0073 -3.49724 3.49724 3.21 0.000207145 0.000119599 0.140462 0.0104618 28 1515 21 6.64007e+06 263718 500653. 1732.36 3.35 0.163059 0.0294724 21970 115934 -1 1345 20 1021 1500 104776 24885 2.81977 2.81977 -92.0925 -2.81977 0 0 612192. 2118.31 0.87 0.11 0.29 -1 -1 0.87 0.00902791 0.0079083 97 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 16.69 vpr 64.15 MiB -1 -1 0.51 21432 1 0.04 -1 -1 33832 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 26.0 MiB 0.80 1325 16572 5453 8679 2440 64.1 MiB 0.65 0.00 4.38715 -140.393 -4.38715 4.38715 3.08 0.000213999 0.000174654 0.0200508 0.0165729 30 3034 21 6.64007e+06 326508 526063. 1820.29 4.10 0.0571257 0.0483967 22546 126617 -1 2563 21 1577 2693 157209 34685 3.79562 3.79562 -131.292 -3.79562 0 0 666494. 2306.21 0.81 0.09 0.37 -1 -1 0.81 0.0150537 0.0134463 170 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 16.09 vpr 64.05 MiB -1 -1 0.54 21432 1 0.10 -1 -1 33820 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65584 31 32 365 296 1 193 86 17 17 289 -1 unnamed_device 25.4 MiB 1.09 1050 12371 3182 7852 1337 64.0 MiB 0.37 0.00 5.43386 -156.366 -5.43386 5.43386 2.63 0.000189602 0.000151836 0.0145547 0.0119459 32 2552 19 6.64007e+06 288834 554710. 1919.41 3.96 0.0833293 0.0760052 22834 132086 -1 2272 19 1328 2229 177284 38269 4.53868 4.53868 -149.07 -4.53868 0 0 701300. 2426.64 0.92 0.33 0.22 -1 -1 0.92 0.01275 0.0112861 152 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 15.00 vpr 63.86 MiB -1 -1 0.81 21280 1 0.09 -1 -1 33900 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65392 32 32 331 280 1 174 83 17 17 289 -1 unnamed_device 25.2 MiB 0.81 933 12503 3459 6938 2106 63.9 MiB 0.31 0.11 4.6127 -134.066 -4.6127 4.6127 2.69 0.000156579 0.000123722 0.0140047 0.011438 32 2147 19 6.64007e+06 238602 554710. 1919.41 2.51 0.0444918 0.037324 22834 132086 -1 1840 19 1044 1556 100816 23869 3.64062 3.64062 -129.026 -3.64062 0 0 701300. 2426.64 1.20 0.07 0.60 -1 -1 1.20 0.0114341 0.0102186 128 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 16.85 vpr 63.99 MiB -1 -1 1.27 21432 1 0.32 -1 -1 33896 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65524 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 25.4 MiB 0.14 1025 10744 3084 7154 506 64.0 MiB 0.53 0.00 5.21217 -134.409 -5.21217 5.21217 2.61 0.000187256 0.000150924 0.0104094 0.00850576 30 2159 18 6.64007e+06 376740 526063. 1820.29 2.98 0.330271 0.324297 22546 126617 -1 1910 16 853 1431 84040 19166 3.71062 3.71062 -116.778 -3.71062 0 0 666494. 2306.21 1.08 0.18 0.21 -1 -1 1.08 0.0102292 0.00920341 126 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 15.29 vpr 63.95 MiB -1 -1 0.75 21736 1 0.31 -1 -1 33644 -1 -1 34 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65488 31 32 373 294 1 196 97 17 17 289 -1 unnamed_device 25.4 MiB 0.70 1033 6757 1363 4872 522 64.0 MiB 0.17 0.01 5.06104 -138.95 -5.06104 5.06104 2.42 0.0002631 0.000224286 0.00784096 0.00647057 26 2561 28 6.64007e+06 426972 477104. 1650.88 3.10 0.106525 0.100029 21682 110474 -1 2314 22 1657 2659 173769 40695 3.98123 3.98123 -132.364 -3.98123 0 0 585099. 2024.56 1.12 0.28 0.10 -1 -1 1.12 0.0156275 0.0138381 145 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 14.55 vpr 64.01 MiB -1 -1 0.53 21280 1 0.22 -1 -1 33848 -1 -1 31 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65548 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 25.2 MiB 0.38 1000 10383 2504 6736 1143 64.0 MiB 0.20 0.00 3.67989 -112.635 -3.67989 3.67989 2.51 0.000150293 0.000120629 0.0748244 0.0730702 32 2161 21 6.64007e+06 389298 554710. 1919.41 2.77 0.105066 0.0990775 22834 132086 -1 1932 19 1040 1868 122635 27445 2.80577 2.80577 -103.61 -2.80577 0 0 701300. 2426.64 0.95 0.06 0.21 -1 -1 0.95 0.0112735 0.0100274 124 51 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 16.65 vpr 64.26 MiB -1 -1 0.55 21128 1 0.11 -1 -1 33572 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65800 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 25.4 MiB 0.94 1181 8207 1889 5862 456 64.3 MiB 0.45 0.00 5.21333 -162.921 -5.21333 5.21333 2.80 0.000172101 0.000137943 0.0097321 0.00814023 32 2904 26 6.64007e+06 313950 554710. 1919.41 2.70 0.0427823 0.0363362 22834 132086 -1 2532 20 1642 2507 198128 48981 4.24869 4.24869 -149.377 -4.24869 0 0 701300. 2426.64 1.25 0.29 0.70 -1 -1 1.25 0.0382263 0.0117094 148 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 16.37 vpr 64.29 MiB -1 -1 0.94 21280 1 0.16 -1 -1 33556 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65836 32 32 386 307 1 195 100 17 17 289 -1 unnamed_device 25.5 MiB 0.47 1091 17268 5141 9536 2591 64.3 MiB 0.26 0.00 4.75546 -148.32 -4.75546 4.75546 2.55 0.000185292 0.000148593 0.101831 0.0989298 26 2731 18 6.64007e+06 452088 477104. 1650.88 3.44 0.353629 0.345733 21682 110474 -1 2313 20 1346 2148 152692 34194 3.49323 3.49323 -133.83 -3.49323 0 0 585099. 2024.56 0.72 0.30 0.29 -1 -1 0.72 0.265859 0.264415 144 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 14.11 vpr 63.61 MiB -1 -1 0.50 21280 1 0.05 -1 -1 33980 -1 -1 17 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65132 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 25.1 MiB 0.36 588 12030 3358 7039 1633 63.6 MiB 0.17 0.00 3.76255 -108.245 -3.76255 3.76255 2.45 0.000137363 0.00010971 0.0112015 0.00903923 30 1298 16 6.64007e+06 213486 526063. 1820.29 3.23 0.115989 0.110395 22546 126617 -1 1213 18 814 1184 79092 17906 2.64337 2.64337 -97.4669 -2.64337 0 0 666494. 2306.21 0.67 0.08 0.23 -1 -1 0.67 0.0087734 0.00776095 91 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 15.77 vpr 63.81 MiB -1 -1 0.44 21584 1 0.15 -1 -1 33936 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65340 32 32 310 266 1 175 85 17 17 289 -1 unnamed_device 25.1 MiB 0.69 949 13477 3807 7672 1998 63.8 MiB 0.39 0.00 4.03956 -129.699 -4.03956 4.03956 3.13 0.000178409 0.000146207 0.0128127 0.0103408 32 2133 21 6.64007e+06 263718 554710. 1919.41 3.09 0.0407616 0.0340457 22834 132086 -1 1934 20 1418 1884 150949 33366 3.26203 3.26203 -124.39 -3.26203 0 0 701300. 2426.64 0.99 0.08 0.23 -1 -1 0.99 0.0108118 0.00962557 117 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 14.60 vpr 64.04 MiB -1 -1 0.42 21584 1 0.08 -1 -1 34012 -1 -1 37 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65580 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 25.4 MiB 0.14 995 9844 2080 6870 894 64.0 MiB 0.24 0.00 4.75944 -128.498 -4.75944 4.75944 2.95 0.000175967 0.000144685 0.0967692 0.0950938 26 2592 22 6.64007e+06 464646 477104. 1650.88 3.44 0.160522 0.121809 21682 110474 -1 2114 23 1575 2842 209005 45595 4.04523 4.04523 -131.074 -4.04523 0 0 585099. 2024.56 0.62 0.46 0.16 -1 -1 0.62 0.414673 0.41311 129 33 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 15.65 vpr 63.80 MiB -1 -1 0.37 21280 1 0.11 -1 -1 33852 -1 -1 22 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65332 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 25.1 MiB 0.82 751 14303 4644 7433 2226 63.8 MiB 0.16 0.00 4.32884 -115.621 -4.32884 4.32884 2.49 0.000132445 0.000104318 0.0129675 0.0104452 32 1888 19 6.64007e+06 276276 554710. 1919.41 3.29 0.0686792 0.0626623 22834 132086 -1 1653 16 948 1246 90708 21403 3.22283 3.22283 -105.877 -3.22283 0 0 701300. 2426.64 0.86 0.14 0.45 -1 -1 0.86 0.00847928 0.00758461 109 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 16.18 vpr 63.72 MiB -1 -1 0.35 21432 1 0.04 -1 -1 33668 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65252 32 32 278 238 1 149 81 17 17 289 -1 unnamed_device 25.1 MiB 0.83 868 10406 2691 6847 868 63.7 MiB 0.17 0.00 3.9428 -121.707 -3.9428 3.9428 2.93 0.000150632 0.000117836 0.0102124 0.00821785 32 1928 20 6.64007e+06 213486 554710. 1919.41 3.81 0.133181 0.0305639 22834 132086 -1 1672 22 1231 2092 145429 32765 2.92497 2.92497 -111.874 -2.92497 0 0 701300. 2426.64 0.63 0.10 0.41 -1 -1 0.63 0.0105003 0.00928887 108 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 15.97 vpr 64.21 MiB -1 -1 0.31 21280 1 0.20 -1 -1 33684 -1 -1 36 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65752 31 32 373 300 1 181 99 17 17 289 -1 unnamed_device 25.5 MiB 0.52 875 8079 1601 6137 341 64.2 MiB 0.09 0.00 4.17918 -122.781 -4.17918 4.17918 2.99 0.000183268 0.000147059 0.0401663 0.0386513 28 2428 45 6.64007e+06 452088 500653. 1732.36 3.79 0.181188 0.173418 21970 115934 -1 1818 21 1389 2252 139313 34864 3.21357 3.21357 -119.357 -3.21357 0 0 612192. 2118.31 0.78 0.10 0.50 -1 -1 0.78 0.0126824 0.0111577 136 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 14.58 vpr 63.63 MiB -1 -1 0.55 21432 1 0.11 -1 -1 33768 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65160 31 32 265 230 1 162 83 17 17 289 -1 unnamed_device 24.9 MiB 0.55 883 11423 3367 6862 1194 63.6 MiB 0.29 0.00 4.01573 -121.888 -4.01573 4.01573 2.96 0.0001487 0.000120504 0.0105262 0.00848528 26 2105 22 6.64007e+06 251160 477104. 1650.88 2.29 0.0349779 0.0291737 21682 110474 -1 1781 20 1084 1550 105200 24764 3.38823 3.38823 -119.287 -3.38823 0 0 585099. 2024.56 0.89 0.17 0.26 -1 -1 0.89 0.00999951 0.00880361 107 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 16.48 vpr 64.08 MiB -1 -1 0.42 21584 1 0.07 -1 -1 33512 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65616 32 32 349 286 1 171 96 17 17 289 -1 unnamed_device 25.4 MiB 0.52 851 8418 1678 5980 760 64.1 MiB 0.74 0.00 3.82753 -117.666 -3.82753 3.82753 2.48 0.000178865 0.0001431 0.0407285 0.0391382 28 2323 24 6.64007e+06 401856 500653. 1732.36 3.96 0.264858 0.258516 21970 115934 -1 1878 17 1091 1908 119655 28509 2.81677 2.81677 -108.693 -2.81677 0 0 612192. 2118.31 0.86 0.08 0.17 -1 -1 0.86 0.0507462 0.0495496 127 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 15.90 vpr 64.11 MiB -1 -1 0.39 21432 1 0.17 -1 -1 33688 -1 -1 32 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65648 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 25.5 MiB 0.61 892 11111 2659 7794 658 64.1 MiB 0.17 0.00 4.34696 -134.35 -4.34696 4.34696 3.12 0.000197662 0.000162007 0.110856 0.108595 30 2086 20 6.64007e+06 401856 526063. 1820.29 3.06 0.144481 0.137365 22546 126617 -1 1791 17 945 1349 73917 18038 3.11862 3.11862 -122.994 -3.11862 0 0 666494. 2306.21 0.97 0.04 0.25 -1 -1 0.97 0.0151819 0.0139036 138 91 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 16.20 vpr 63.65 MiB -1 -1 0.43 21280 1 0.04 -1 -1 33620 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65180 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 25.1 MiB 0.47 616 7781 1621 5271 889 63.7 MiB 0.27 0.00 3.3851 -100.212 -3.3851 3.3851 3.15 0.000151759 0.000119344 0.00912829 0.00749073 30 1724 20 6.64007e+06 213486 526063. 1820.29 2.90 0.304152 0.298238 22546 126617 -1 1320 19 756 1168 61265 15612 2.61977 2.61977 -93.8432 -2.61977 0 0 666494. 2306.21 1.11 0.11 0.31 -1 -1 1.11 0.0293754 0.00905729 104 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 16.57 vpr 63.68 MiB -1 -1 0.31 21280 1 0.03 -1 -1 33392 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65212 32 32 290 244 1 175 85 17 17 289 -1 unnamed_device 25.1 MiB 0.63 936 9013 2313 6000 700 63.7 MiB 0.41 0.00 4.41384 -137.504 -4.41384 4.41384 2.87 0.000190214 0.000144917 0.00915207 0.00745215 30 2092 23 6.64007e+06 263718 526063. 1820.29 3.31 0.0365093 0.03072 22546 126617 -1 1867 19 993 1485 95205 21004 3.29183 3.29183 -120.954 -3.29183 0 0 666494. 2306.21 1.56 0.18 0.35 -1 -1 1.56 0.0103605 0.00924106 117 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 14.70 vpr 64.02 MiB -1 -1 0.70 21280 1 0.20 -1 -1 33808 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65552 32 32 318 257 1 194 87 17 17 289 -1 unnamed_device 25.4 MiB 0.47 1056 7959 1858 5419 682 64.0 MiB 0.18 0.00 4.69663 -140.702 -4.69663 4.69663 2.31 0.000153511 0.000123346 0.00851277 0.00700839 28 2595 21 6.64007e+06 288834 500653. 1732.36 2.73 0.0367207 0.0312071 21970 115934 -1 2216 20 1459 2035 137683 32875 3.69682 3.69682 -132.71 -3.69682 0 0 612192. 2118.31 0.79 0.36 0.21 -1 -1 0.79 0.0111409 0.00992577 130 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 16.24 vpr 63.99 MiB -1 -1 0.53 21584 1 0.20 -1 -1 33736 -1 -1 29 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65528 29 32 324 268 1 168 90 17 17 289 -1 unnamed_device 25.2 MiB 0.80 961 12753 3692 7785 1276 64.0 MiB 0.28 0.00 4.75755 -125.045 -4.75755 4.75755 2.71 0.000156979 0.000123656 0.01285 0.0105713 32 1977 13 6.64007e+06 364182 554710. 1919.41 2.23 0.150423 0.144611 22834 132086 -1 1820 14 789 1389 83069 19772 3.08843 3.08843 -107.515 -3.08843 0 0 701300. 2426.64 1.40 0.03 0.19 -1 -1 1.40 0.00943411 0.00856831 122 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 20.80 vpr 64.22 MiB -1 -1 0.79 21432 1 0.10 -1 -1 33788 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65764 32 32 393 312 1 213 88 17 17 289 -1 unnamed_device 25.6 MiB 1.25 849 9058 1982 6341 735 64.2 MiB 0.23 0.00 5.51792 -167.558 -5.51792 5.51792 2.51 0.000208254 0.000166167 0.0700767 0.0681008 34 2671 46 6.64007e+06 301392 585099. 2024.56 6.11 0.137989 0.125942 23122 138558 -1 1962 23 1487 2165 142883 37471 4.39509 4.39509 -151.818 -4.39509 0 0 742403. 2568.87 1.30 0.12 0.52 -1 -1 1.30 0.0150196 0.0134157 154 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 15.99 vpr 63.51 MiB -1 -1 0.47 20976 1 0.11 -1 -1 33632 -1 -1 18 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65036 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 24.8 MiB 0.05 584 8131 1674 5502 955 63.5 MiB 0.03 0.00 3.68846 -96.2539 -3.68846 3.68846 3.24 0.000127466 9.9072e-05 0.00725995 0.00590741 32 1613 22 6.64007e+06 226044 554710. 1919.41 2.46 0.178637 0.173886 22834 132086 -1 1240 15 632 986 57380 15840 2.66977 2.66977 -91.5146 -2.66977 0 0 701300. 2426.64 1.34 0.07 0.29 -1 -1 1.34 0.0075319 0.00680643 96 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 16.90 vpr 64.20 MiB -1 -1 0.54 21584 1 0.15 -1 -1 33824 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 32 32 412 334 1 190 98 17 17 289 -1 unnamed_device 25.5 MiB 0.45 954 8873 1826 6622 425 64.2 MiB 0.17 0.00 4.24713 -140.193 -4.24713 4.24713 3.40 0.00022127 0.000181625 0.0104051 0.0086204 28 2512 22 6.64007e+06 426972 500653. 1732.36 3.22 0.128206 0.12116 21970 115934 -1 2185 21 1637 2506 175068 40804 4.00223 4.00223 -143.716 -4.00223 0 0 612192. 2118.31 0.73 0.20 0.35 -1 -1 0.73 0.0130283 0.0114867 145 90 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 16.35 vpr 64.05 MiB -1 -1 0.99 21280 1 0.17 -1 -1 33576 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65588 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 25.2 MiB 0.59 874 12856 4533 6666 1657 64.1 MiB 0.30 0.00 3.54047 -123.335 -3.54047 3.54047 2.60 0.000161236 0.000127686 0.132267 0.0117055 32 1862 20 6.64007e+06 213486 554710. 1919.41 2.31 0.162114 0.0371195 22834 132086 -1 1645 20 1353 1998 119332 28553 3.00817 3.00817 -121.982 -3.00817 0 0 701300. 2426.64 1.06 0.18 0.30 -1 -1 1.06 0.0113663 0.010009 114 96 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 15.09 vpr 64.07 MiB -1 -1 0.36 20976 1 0.03 -1 -1 33420 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65604 32 32 360 293 1 179 96 17 17 289 -1 unnamed_device 25.5 MiB 0.53 1033 11265 2868 7471 926 64.1 MiB 0.19 0.00 4.43584 -135.56 -4.43584 4.43584 2.91 0.000186085 0.000147101 0.0116245 0.00946355 28 2195 15 6.64007e+06 401856 500653. 1732.36 3.22 0.0421695 0.0355507 21970 115934 -1 2035 16 913 1446 97781 22288 3.21363 3.21363 -116.553 -3.21363 0 0 612192. 2118.31 0.84 0.10 0.28 -1 -1 0.84 0.0106319 0.00953271 131 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 16.76 vpr 63.82 MiB -1 -1 0.86 21432 1 0.13 -1 -1 33640 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65356 32 32 396 299 1 236 91 17 17 289 -1 unnamed_device 25.7 MiB 0.99 1320 13963 4550 7177 2236 63.8 MiB 0.24 0.00 6.49387 -193.286 -6.49387 6.49387 2.87 0.000194217 0.000156387 0.01635 0.0134433 30 3485 22 6.64007e+06 339066 526063. 1820.29 3.93 0.189669 0.181758 22546 126617 -1 2715 20 1534 2298 173997 36446 4.99934 4.99934 -169.413 -4.99934 0 0 666494. 2306.21 0.87 0.16 0.17 -1 -1 0.87 0.0665781 0.0651215 170 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 16.90 vpr 63.50 MiB -1 -1 0.40 20976 1 0.14 -1 -1 33400 -1 -1 18 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65024 30 32 224 207 1 137 80 17 17 289 -1 unnamed_device 24.8 MiB 0.68 724 10744 2773 6965 1006 63.5 MiB 0.23 0.00 3.31307 -103.25 -3.31307 3.31307 3.23 0.000123634 9.7195e-05 0.0830098 0.00696291 26 1680 19 6.64007e+06 226044 477104. 1650.88 3.36 0.104242 0.0247589 21682 110474 -1 1567 18 773 964 80532 17725 2.39717 2.39717 -95.4318 -2.39717 0 0 585099. 2024.56 0.73 0.15 0.18 -1 -1 0.73 0.0187949 0.0179225 87 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 15.28 vpr 63.73 MiB -1 -1 0.36 21432 1 0.14 -1 -1 33488 -1 -1 16 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65264 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 25.1 MiB 0.27 685 8544 2127 5949 468 63.7 MiB 0.24 0.00 4.40355 -125.154 -4.40355 4.40355 2.80 0.000164 0.000134532 0.0849194 0.083076 30 1556 19 6.64007e+06 200928 526063. 1820.29 3.10 0.109862 0.1043 22546 126617 -1 1335 19 701 1179 78223 17393 3.07117 3.07117 -110.206 -3.07117 0 0 666494. 2306.21 1.39 0.18 0.36 -1 -1 1.39 0.010628 0.00955447 92 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 15.61 vpr 63.82 MiB -1 -1 0.32 21584 1 0.06 -1 -1 33980 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65348 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 25.1 MiB 0.28 882 10687 2740 7287 660 63.8 MiB 0.17 0.00 3.50309 -113.66 -3.50309 3.50309 2.47 0.000147526 0.000116382 0.0111376 0.00906021 32 2027 19 6.64007e+06 263718 554710. 1919.41 3.42 0.0369167 0.0310546 22834 132086 -1 1870 19 1088 2046 147915 32093 2.80877 2.80877 -108.544 -2.80877 0 0 701300. 2426.64 1.01 0.07 0.19 -1 -1 1.01 0.00994882 0.00874326 115 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 16.61 vpr 63.43 MiB -1 -1 0.32 20976 1 0.03 -1 -1 33852 -1 -1 27 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64956 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 24.8 MiB 0.19 444 9966 3251 4492 2223 63.4 MiB 0.03 0.00 3.40927 -77.6354 -3.40927 3.40927 2.92 0.00010652 8.1951e-05 0.00771971 0.0060583 28 1404 24 6.64007e+06 339066 500653. 1732.36 3.88 0.0717446 0.0238516 21970 115934 -1 1178 23 799 1357 104165 31238 3.06137 3.06137 -79.3158 -3.06137 0 0 612192. 2118.31 0.83 0.03 0.17 -1 -1 0.83 0.00863211 0.00749013 89 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 16.13 vpr 63.93 MiB -1 -1 0.43 21432 1 0.09 -1 -1 33688 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65464 32 32 376 307 1 185 85 17 17 289 -1 unnamed_device 25.2 MiB 0.71 946 11431 2748 6950 1733 63.9 MiB 0.16 0.00 4.33313 -131.181 -4.33313 4.33313 2.57 0.000157662 0.000126492 0.0132089 0.010899 32 2425 18 6.64007e+06 263718 554710. 1919.41 3.09 0.0452021 0.0382412 22834 132086 -1 2140 19 1325 2354 148542 35047 3.66863 3.66863 -128.103 -3.66863 0 0 701300. 2426.64 1.52 0.09 0.51 -1 -1 1.52 0.0139287 0.0124668 136 72 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 16.22 vpr 64.34 MiB -1 -1 0.49 21432 1 0.17 -1 -1 33896 -1 -1 35 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65888 31 32 409 331 1 191 98 17 17 289 -1 unnamed_device 25.7 MiB 0.54 940 9773 2306 6923 544 64.3 MiB 0.31 0.00 4.49598 -141.547 -4.49598 4.49598 2.58 0.000191051 0.000155014 0.087405 0.00863012 30 2139 21 6.64007e+06 439530 526063. 1820.29 2.85 0.123488 0.0395336 22546 126617 -1 1891 19 1291 1959 105840 25694 3.20583 3.20583 -124.668 -3.20583 0 0 666494. 2306.21 1.41 0.21 0.37 -1 -1 1.41 0.194145 0.192668 143 90 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 17.19 vpr 63.97 MiB -1 -1 0.70 21584 1 0.08 -1 -1 33496 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65508 32 32 354 285 1 202 94 17 17 289 -1 unnamed_device 25.2 MiB 0.90 1148 17347 5352 9497 2498 64.0 MiB 0.79 0.00 5.20258 -155.665 -5.20258 5.20258 2.86 0.000179561 0.000145027 0.100205 0.0968258 28 2697 22 6.65987e+06 380340 500653. 1732.36 2.92 0.13314 0.125092 21970 115934 -1 2246 23 1620 2604 184581 41380 4.01751 4.01751 -143.08 -4.01751 0 0 612192. 2118.31 0.69 0.26 0.43 -1 -1 0.69 0.0149371 0.0131213 152 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 17.44 vpr 63.81 MiB -1 -1 0.85 21432 1 0.07 -1 -1 33596 -1 -1 24 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65340 30 32 363 293 1 196 86 17 17 289 -1 unnamed_device 25.2 MiB 0.92 865 5945 1132 3979 834 63.8 MiB 0.24 0.00 5.09836 -146.088 -5.09836 5.09836 3.04 0.000203994 0.000165875 0.00854599 0.00715284 30 2282 23 6.65987e+06 304272 526063. 1820.29 3.06 0.217249 0.211132 22546 126617 -1 1733 18 1185 1767 92489 24279 4.35403 4.35403 -145.141 -4.35403 0 0 666494. 2306.21 0.86 0.12 0.33 -1 -1 0.86 0.0124048 0.0111966 140 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 15.43 vpr 63.71 MiB -1 -1 0.55 21584 1 0.07 -1 -1 33696 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65236 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 25.1 MiB 0.55 1073 15639 4872 8576 2191 63.7 MiB 0.15 0.00 4.07261 -120.811 -4.07261 4.07261 2.27 0.000150452 0.000119432 0.0148377 0.012055 32 2319 23 6.65987e+06 291594 554710. 1919.41 2.83 0.343985 0.212468 22834 132086 -1 2108 20 1368 1925 135511 32120 3.46811 3.46811 -117.404 -3.46811 0 0 701300. 2426.64 1.51 0.13 0.44 -1 -1 1.51 0.0115277 0.0103075 126 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 15.48 vpr 63.94 MiB -1 -1 0.58 20976 1 0.13 -1 -1 33576 -1 -1 27 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65472 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 25.2 MiB 0.20 937 15298 4951 7764 2583 63.9 MiB 0.20 0.00 4.29337 -115.569 -4.29337 4.29337 1.89 0.000148416 0.000117747 0.0141417 0.0113086 32 2433 26 6.65987e+06 342306 554710. 1919.41 2.81 0.0893313 0.0822416 22834 132086 -1 2062 24 1536 2855 239531 54215 3.41691 3.41691 -112.046 -3.41691 0 0 701300. 2426.64 1.41 0.16 0.31 -1 -1 1.41 0.0133226 0.011774 126 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 15.75 vpr 63.88 MiB -1 -1 0.54 21280 1 0.19 -1 -1 33704 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65416 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 25.2 MiB 0.48 1058 13911 3755 8078 2078 63.9 MiB 0.17 0.00 4.32255 -126.417 -4.32255 4.32255 2.48 0.000159411 0.000127659 0.0691167 0.0663448 32 2597 23 6.65987e+06 291594 554710. 1919.41 2.73 0.101975 0.0946679 22834 132086 -1 2295 23 1608 3109 256524 56322 3.66831 3.66831 -122.767 -3.66831 0 0 701300. 2426.64 0.96 0.13 0.32 -1 -1 0.96 0.336612 0.335078 130 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 15.20 vpr 64.04 MiB -1 -1 0.76 21280 1 0.05 -1 -1 33528 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65572 32 32 366 295 1 189 97 17 17 289 -1 unnamed_device 25.4 MiB 0.34 958 9421 2191 6624 606 64.0 MiB 0.30 0.00 3.34181 -114.642 -3.34181 3.34181 2.49 0.000179488 0.000143496 0.0103435 0.00850247 32 2455 20 6.65987e+06 418374 554710. 1919.41 2.26 0.0423713 0.0352516 22834 132086 -1 2113 22 1382 2191 144878 35192 2.81871 2.81871 -111.688 -2.81871 0 0 701300. 2426.64 0.82 0.08 0.50 -1 -1 0.82 0.0471964 0.0454126 141 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 14.66 vpr 63.43 MiB -1 -1 0.44 21128 1 0.17 -1 -1 34156 -1 -1 18 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64952 27 32 259 221 1 130 77 17 17 289 -1 unnamed_device 24.8 MiB 0.46 714 11813 3623 6674 1516 63.4 MiB 0.29 0.00 3.92432 -101.72 -3.92432 3.92432 2.69 0.000126252 9.8073e-05 0.185001 0.182709 32 1461 21 6.65987e+06 228204 554710. 1919.41 2.19 0.208822 0.202992 22834 132086 -1 1355 22 821 1483 100332 23866 2.83591 2.83591 -93.514 -2.83591 0 0 701300. 2426.64 0.74 0.03 0.29 -1 -1 0.74 0.0104085 0.00929258 94 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 13.72 vpr 63.70 MiB -1 -1 0.42 20976 1 0.05 -1 -1 33524 -1 -1 31 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65224 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 25.1 MiB 0.08 810 8614 1793 6441 380 63.7 MiB 0.14 0.00 3.36433 -97.1483 -3.36433 3.36433 2.16 0.000146838 0.000116241 0.00782936 0.00635955 32 2074 22 6.65987e+06 393018 554710. 1919.41 2.99 0.146469 0.140952 22834 132086 -1 1804 17 894 1488 103345 23925 2.68271 2.68271 -92.3065 -2.68271 0 0 701300. 2426.64 1.35 0.07 0.21 -1 -1 1.35 0.00988687 0.0088434 115 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 15.33 vpr 63.82 MiB -1 -1 0.60 21736 1 0.10 -1 -1 33932 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65348 31 32 317 271 1 168 82 17 17 289 -1 unnamed_device 25.1 MiB 0.38 912 8092 2097 5494 501 63.8 MiB 0.10 0.06 3.4209 -115.906 -3.4209 3.4209 3.45 0.0549979 0.00011767 0.0633623 0.00697732 32 2102 20 6.65987e+06 240882 554710. 1919.41 2.58 0.089974 0.0296975 22834 132086 -1 1877 18 1142 1655 118718 27709 3.09771 3.09771 -123.044 -3.09771 0 0 701300. 2426.64 0.56 0.04 0.24 -1 -1 0.56 0.0203442 0.0191812 111 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 15.77 vpr 63.56 MiB -1 -1 0.65 21432 1 0.03 -1 -1 33680 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65084 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 25.1 MiB 0.79 719 10056 2390 7132 534 63.6 MiB 0.27 0.00 3.74029 -120.95 -3.74029 3.74029 3.30 0.000180479 0.000146681 0.0106483 0.00863791 28 2131 26 6.65987e+06 215526 500653. 1732.36 2.64 0.104691 0.0984446 21970 115934 -1 1778 21 1157 1754 122038 31706 2.74131 2.74131 -114.198 -2.74131 0 0 612192. 2118.31 0.43 0.05 0.19 -1 -1 0.43 0.01185 0.0104511 113 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 17.37 vpr 63.61 MiB -1 -1 0.33 21280 1 0.07 -1 -1 34000 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65140 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 24.9 MiB 0.96 580 9374 2318 6165 891 63.6 MiB 0.16 0.00 4.00989 -106.262 -4.00989 4.00989 3.01 6.3126e-05 4.7988e-05 0.00448149 0.00359068 32 1547 21 6.65987e+06 215526 554710. 1919.41 2.94 0.0303268 0.0255406 22834 132086 -1 1369 20 840 1257 79227 20487 2.82751 2.82751 -100.698 -2.82751 0 0 701300. 2426.64 1.11 0.05 0.22 -1 -1 1.11 0.0101538 0.00899845 98 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 14.95 vpr 63.68 MiB -1 -1 0.34 21432 1 0.03 -1 -1 33548 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65212 32 32 276 237 1 166 81 17 17 289 -1 unnamed_device 24.9 MiB 0.78 786 7256 1513 5550 193 63.7 MiB 0.27 0.00 3.75729 -118.293 -3.75729 3.75729 2.60 0.000163088 0.000133613 0.237591 0.236114 30 2178 26 6.65987e+06 215526 526063. 1820.29 2.80 0.415113 0.409558 22546 126617 -1 1724 20 995 1357 96858 22257 2.67471 2.67471 -103.361 -2.67471 0 0 666494. 2306.21 0.90 0.03 0.19 -1 -1 0.90 0.010287 0.00914634 106 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 17.10 vpr 64.03 MiB -1 -1 0.55 21280 1 0.36 -1 -1 33804 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65564 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 25.3 MiB 1.11 1144 13933 4321 8243 1369 64.0 MiB 0.30 0.00 4.40775 -144.129 -4.40775 4.40775 2.52 0.000181503 0.000149033 0.0146608 0.0119061 32 2600 23 6.65987e+06 304272 554710. 1919.41 3.28 0.0472459 0.0398395 22834 132086 -1 2311 20 1654 2470 190348 42509 3.33991 3.33991 -131.441 -3.33991 0 0 701300. 2426.64 0.46 0.05 0.24 -1 -1 0.46 0.0138104 0.0124334 139 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 17.19 vpr 63.78 MiB -1 -1 0.56 21280 1 0.20 -1 -1 33688 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65312 32 32 363 295 1 181 94 17 17 289 -1 unnamed_device 25.2 MiB 1.03 952 10957 2661 7671 625 63.8 MiB 0.32 0.00 4.65212 -132.497 -4.65212 4.65212 2.71 0.000220395 0.000148425 0.0117306 0.00939977 32 2382 23 6.65987e+06 380340 554710. 1919.41 3.29 0.0437524 0.0367922 22834 132086 -1 2069 23 1569 2538 191574 42780 3.49885 3.49885 -122.405 -3.49885 0 0 701300. 2426.64 0.41 0.11 0.21 -1 -1 0.41 0.0137863 0.0121765 133 61 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 15.73 vpr 63.41 MiB -1 -1 0.44 21280 1 0.13 -1 -1 33832 -1 -1 21 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64936 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 24.8 MiB 0.69 775 11118 2644 7385 1089 63.4 MiB 0.29 0.00 3.16393 -92.0469 -3.16393 3.16393 3.08 0.000123623 9.7143e-05 0.0104494 0.00844665 26 1825 24 6.65987e+06 266238 477104. 1650.88 3.12 0.0346417 0.0289449 21682 110474 -1 1612 20 961 1592 109887 26838 2.94405 2.94405 -95.715 -2.94405 0 0 585099. 2024.56 1.22 0.05 0.16 -1 -1 1.22 0.0096239 0.00836059 98 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 16.58 vpr 64.00 MiB -1 -1 0.44 21128 1 0.10 -1 -1 33976 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65532 32 32 370 297 1 183 85 17 17 289 -1 unnamed_device 25.4 MiB 1.44 1047 12733 3877 6886 1970 64.0 MiB 0.43 0.00 4.00819 -125.465 -4.00819 4.00819 2.60 0.000203841 0.00016432 0.052706 0.0499749 32 2583 22 6.65987e+06 266238 554710. 1919.41 2.86 0.227889 0.220489 22834 132086 -1 2258 21 1362 2537 186342 42439 3.30657 3.30657 -123.045 -3.30657 0 0 701300. 2426.64 1.15 0.24 0.50 -1 -1 1.15 0.126101 0.124562 132 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 15.94 vpr 63.76 MiB -1 -1 0.68 21432 1 0.04 -1 -1 33744 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65292 32 32 338 269 1 196 85 17 17 289 -1 unnamed_device 25.1 MiB 1.02 1072 15523 5016 8339 2168 63.8 MiB 0.32 0.00 4.31458 -139.763 -4.31458 4.31458 3.02 0.000202544 0.000168522 0.0181919 0.0150054 28 2776 23 6.65987e+06 266238 500653. 1732.36 3.37 0.197025 0.188835 21970 115934 -1 2298 21 1497 2160 165322 36545 3.24677 3.24677 -123.398 -3.24677 0 0 612192. 2118.31 0.89 0.08 0.20 -1 -1 0.89 0.0137994 0.0123673 137 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 14.77 vpr 63.79 MiB -1 -1 0.69 21128 1 0.15 -1 -1 33524 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65320 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 25.1 MiB 0.55 861 11433 2956 7633 844 63.8 MiB 0.35 0.00 2.85064 -102.994 -2.85064 2.85064 2.43 0.000149129 0.000118199 0.119171 0.117279 26 2084 22 6.65987e+06 367662 477104. 1650.88 2.54 0.222516 0.216352 21682 110474 -1 1813 18 1053 1731 134640 30044 2.15051 2.15051 -97.3318 -2.15051 0 0 585099. 2024.56 0.86 0.25 0.24 -1 -1 0.86 0.0103386 0.00911987 110 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 12.84 vpr 63.21 MiB -1 -1 0.51 20672 1 0.17 -1 -1 33544 -1 -1 15 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64724 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 24.8 MiB 0.47 624 5782 1334 4080 368 63.2 MiB 0.03 0.00 2.24807 -77.3192 -2.24807 2.24807 2.53 0.00010859 8.4963e-05 0.00521969 0.00421554 32 1391 22 6.65987e+06 190170 554710. 1919.41 2.21 0.169813 0.16544 22834 132086 -1 1272 19 694 987 78395 18403 1.77965 1.77965 -78.0343 -1.77965 0 0 701300. 2426.64 1.18 0.03 0.24 -1 -1 1.18 0.00793792 0.00697421 81 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 15.36 vpr 63.67 MiB -1 -1 0.50 21584 1 0.09 -1 -1 33880 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65200 31 32 291 243 1 171 82 17 17 289 -1 unnamed_device 25.1 MiB 0.91 827 15568 4612 9306 1650 63.7 MiB 0.22 0.00 4.77154 -139.927 -4.77154 4.77154 2.22 0.000169241 0.000138734 0.0876222 0.084674 28 2046 22 6.65987e+06 240882 500653. 1732.36 2.44 0.202408 0.195495 21970 115934 -1 1800 23 1198 1705 117969 27981 3.57911 3.57911 -129.346 -3.57911 0 0 612192. 2118.31 1.07 0.22 0.77 -1 -1 1.07 0.0807392 0.0793742 127 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 14.37 vpr 63.97 MiB -1 -1 0.43 21280 1 0.29 -1 -1 34104 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65504 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 25.4 MiB 0.12 945 6791 1317 5158 316 64.0 MiB 0.11 0.00 4.14893 -130.493 -4.14893 4.14893 2.95 0.00019616 0.000160055 0.00768591 0.00638099 30 2176 21 6.65987e+06 393018 526063. 1820.29 2.50 0.144408 0.138757 22546 126617 -1 1849 20 1024 1651 101279 23570 3.40723 3.40723 -121.542 -3.40723 0 0 666494. 2306.21 0.96 0.18 0.27 -1 -1 0.96 0.012827 0.0114798 135 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 25.23 vpr 64.14 MiB -1 -1 0.29 21432 1 0.22 -1 -1 33812 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65684 32 32 372 300 1 204 87 17 17 289 -1 unnamed_device 25.5 MiB 0.71 1176 13911 3816 8065 2030 64.1 MiB 0.30 0.00 4.32644 -135.935 -4.32644 4.32644 2.76 0.000189356 0.000155146 0.0151601 0.0124325 30 2785 22 6.65987e+06 291594 526063. 1820.29 13.66 0.309981 0.296455 22546 126617 -1 2302 18 1286 2013 127835 28465 3.48051 3.48051 -127.974 -3.48051 0 0 666494. 2306.21 0.88 0.26 0.32 -1 -1 0.88 0.0849454 0.0836129 142 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 15.12 vpr 62.93 MiB -1 -1 0.53 21128 1 0.02 -1 -1 34128 -1 -1 18 26 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64444 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 24.3 MiB 0.50 372 9836 3070 4693 2073 62.9 MiB 0.09 0.00 2.3895 -62.9737 -2.3895 2.3895 3.31 0.000117408 9.1811e-05 0.0076159 0.00601791 32 1122 48 6.65987e+06 228204 554710. 1919.41 3.42 0.0318307 0.0258784 22834 132086 -1 717 22 632 914 52787 14932 1.86985 1.86985 -59.8055 -1.86985 0 0 701300. 2426.64 0.69 0.11 0.27 -1 -1 0.69 0.00716709 0.00619496 77 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 13.79 vpr 63.70 MiB -1 -1 0.35 21280 1 0.04 -1 -1 33572 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65228 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 25.0 MiB 0.25 967 10501 2769 7029 703 63.7 MiB 0.19 0.00 4.91554 -122.72 -4.91554 4.91554 2.94 0.000159693 0.000129406 0.0106492 0.00864967 28 2269 24 6.65987e+06 266238 500653. 1732.36 2.85 0.0394979 0.0331405 21970 115934 -1 1962 20 924 1747 113203 26886 4.10317 4.10317 -126.625 -4.10317 0 0 612192. 2118.31 0.90 0.06 0.19 -1 -1 0.90 0.0111867 0.00997244 118 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 13.34 vpr 62.88 MiB -1 -1 0.34 20976 1 0.03 -1 -1 33612 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64392 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 24.3 MiB 0.03 415 10370 2763 4961 2646 62.9 MiB 0.03 0.00 2.50649 -71.6469 -2.50649 2.50649 2.89 9.8516e-05 7.5074e-05 0.00756378 0.00592364 30 1132 25 6.65987e+06 177492 526063. 1820.29 2.60 0.0236321 0.0194845 22546 126617 -1 827 15 404 449 30442 8479 1.90085 1.90085 -68.0593 -1.90085 0 0 666494. 2306.21 1.05 0.18 0.56 -1 -1 1.05 0.00589214 0.00525725 79 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 14.46 vpr 63.78 MiB -1 -1 0.49 21128 1 0.10 -1 -1 33684 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65308 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 25.1 MiB 0.26 867 9679 2178 7022 479 63.8 MiB 0.08 0.00 4.41865 -121.392 -4.41865 4.41865 2.74 0.000152688 0.000122798 0.00888374 0.00729756 28 2060 20 6.65987e+06 380340 500653. 1732.36 2.93 0.0376907 0.0319851 21970 115934 -1 1775 21 1090 1814 122823 28767 3.22685 3.22685 -110.815 -3.22685 0 0 612192. 2118.31 0.74 0.14 0.27 -1 -1 0.74 0.0115812 0.0102113 123 24 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 15.15 vpr 63.63 MiB -1 -1 0.40 21128 1 0.18 -1 -1 34080 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65160 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 25.1 MiB 0.37 1033 7655 1739 5270 646 63.6 MiB 0.07 0.00 3.58635 -107.341 -3.58635 3.58635 2.75 0.000184851 0.000152297 0.00758539 0.00621376 32 2402 25 6.65987e+06 393018 554710. 1919.41 3.68 0.0386437 0.0327177 22834 132086 -1 2155 22 1263 2296 199474 43488 3.00117 3.00117 -107.204 -3.00117 0 0 701300. 2426.64 0.76 0.59 0.28 -1 -1 0.76 0.0127388 0.0114327 128 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 13.47 vpr 63.96 MiB -1 -1 0.47 21432 1 0.24 -1 -1 33540 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65496 32 32 338 277 1 179 90 17 17 289 -1 unnamed_device 25.2 MiB 0.37 935 10542 2716 6648 1178 64.0 MiB 0.42 0.00 4.36243 -125.161 -4.36243 4.36243 2.90 0.000186999 0.000152595 0.0111785 0.00917024 28 2362 26 6.65987e+06 329628 500653. 1732.36 2.80 0.207602 0.200837 21970 115934 -1 2111 20 1333 2375 164568 39080 3.50419 3.50419 -120.066 -3.50419 0 0 612192. 2118.31 0.84 0.06 0.16 -1 -1 0.84 0.0121208 0.0106313 125 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 14.44 vpr 63.45 MiB -1 -1 0.32 21128 1 0.19 -1 -1 33688 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64976 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 24.9 MiB 0.19 787 11260 3658 5658 1944 63.5 MiB 0.15 0.00 2.93487 -99.6571 -2.93487 2.93487 2.67 0.000165954 0.000135375 0.0112483 0.0090505 32 1794 20 6.65987e+06 202848 554710. 1919.41 2.68 0.0851283 0.0792685 22834 132086 -1 1628 20 958 1510 115265 27294 2.69465 2.69465 -100.105 -2.69465 0 0 701300. 2426.64 0.83 0.14 0.48 -1 -1 0.83 0.0107991 0.00957092 101 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 13.23 vpr 63.67 MiB -1 -1 0.55 21280 1 0.04 -1 -1 33640 -1 -1 23 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65196 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 24.8 MiB 0.20 776 12175 3219 7698 1258 63.7 MiB 0.24 0.00 3.0379 -97.3625 -3.0379 3.0379 3.07 0.000135761 0.000104953 0.0110177 0.00878743 28 1731 21 6.65987e+06 291594 500653. 1732.36 3.09 0.136922 0.130941 21970 115934 -1 1604 18 795 1223 81805 19071 2.88285 2.88285 -98.5106 -2.88285 0 0 612192. 2118.31 1.04 0.03 0.18 -1 -1 1.04 0.00923751 0.0082151 97 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 14.93 vpr 63.53 MiB -1 -1 0.47 21128 1 0.02 -1 -1 33724 -1 -1 23 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65056 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 24.8 MiB 0.11 626 11963 3042 7355 1566 63.5 MiB 0.38 0.00 3.31478 -92.0347 -3.31478 3.31478 2.58 0.00013723 0.000108782 0.0559424 0.0538238 28 1757 31 6.65987e+06 291594 500653. 1732.36 4.27 0.0829624 0.076471 21970 115934 -1 1589 21 988 1711 135362 30962 2.61965 2.61965 -90.1158 -2.61965 0 0 612192. 2118.31 0.84 0.08 0.28 -1 -1 0.84 0.00980462 0.00867402 98 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 12.33 vpr 63.38 MiB -1 -1 0.38 20976 1 0.10 -1 -1 33580 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64904 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 24.9 MiB 0.29 729 7103 1637 4961 505 63.4 MiB 0.11 0.00 3.70643 -110.184 -3.70643 3.70643 2.26 0.000141823 0.000112466 0.00715445 0.00586376 30 1871 23 6.65987e+06 240882 526063. 1820.29 2.26 0.0326046 0.0276209 22546 126617 -1 1613 21 993 1651 87012 21207 2.64151 2.64151 -103.145 -2.64151 0 0 666494. 2306.21 1.20 0.14 0.22 -1 -1 1.20 0.0102392 0.00911968 110 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 13.86 vpr 63.58 MiB -1 -1 0.33 20976 1 0.13 -1 -1 33744 -1 -1 27 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65108 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 24.9 MiB 0.23 614 5517 1006 3965 546 63.6 MiB 0.03 0.00 3.32595 -96.9255 -3.32595 3.32595 2.14 0.000154739 0.000121759 0.00563213 0.00457195 28 1836 30 6.65987e+06 342306 500653. 1732.36 3.84 0.0324284 0.0272978 21970 115934 -1 1466 20 981 1631 107215 27748 2.94891 2.94891 -103.005 -2.94891 0 0 612192. 2118.31 0.98 0.14 0.21 -1 -1 0.98 0.00998875 0.00886027 103 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 13.52 vpr 63.45 MiB -1 -1 0.60 21584 1 0.07 -1 -1 33776 -1 -1 25 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64968 29 32 291 250 1 153 86 17 17 289 -1 unnamed_device 24.9 MiB 0.84 863 12938 3773 7467 1698 63.4 MiB 0.10 0.00 3.16555 -101.958 -3.16555 3.16555 2.32 0.000136808 0.000108074 0.00584544 0.00465234 28 1851 22 6.65987e+06 316950 500653. 1732.36 2.69 0.0659643 0.0280146 21970 115934 -1 1592 20 917 1356 89468 20919 2.31685 2.31685 -94.6108 -2.31685 0 0 612192. 2118.31 1.41 0.04 0.28 -1 -1 1.41 0.0217703 0.0203851 105 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 13.49 vpr 64.15 MiB -1 -1 0.49 21432 1 0.12 -1 -1 34016 -1 -1 37 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65692 32 32 367 282 1 201 101 17 17 289 -1 unnamed_device 25.5 MiB 0.79 1216 15846 3922 9942 1982 64.2 MiB 0.53 0.00 3.87192 -115.022 -3.87192 3.87192 2.48 8.6659e-05 6.8732e-05 0.0134507 0.011103 32 2924 23 6.65987e+06 469086 554710. 1919.41 2.27 0.186677 0.180493 22834 132086 -1 2469 21 1434 2524 186653 41350 3.44899 3.44899 -114.802 -3.44899 0 0 701300. 2426.64 0.86 0.24 0.21 -1 -1 0.86 0.158118 0.156612 150 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 15.32 vpr 63.96 MiB -1 -1 0.48 21736 1 0.19 -1 -1 33576 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65496 32 32 391 311 1 192 100 17 17 289 -1 unnamed_device 25.5 MiB 0.98 918 16804 4626 9521 2657 64.0 MiB 0.24 0.00 3.76954 -123.355 -3.76954 3.76954 2.40 7.9776e-05 6.3321e-05 0.0672828 0.0123736 26 2694 44 6.65987e+06 456408 477104. 1650.88 4.61 0.28569 0.224111 21682 110474 -1 2210 21 1913 2840 206323 49013 3.03737 3.03737 -121.107 -3.03737 0 0 585099. 2024.56 0.67 0.34 0.32 -1 -1 0.67 0.0152219 0.0133563 146 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 13.70 vpr 63.53 MiB -1 -1 0.54 21736 1 0.02 -1 -1 33736 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65056 31 32 279 237 1 161 80 17 17 289 -1 unnamed_device 24.9 MiB 0.99 795 7304 1575 5379 350 63.5 MiB 0.13 0.00 4.09732 -119.878 -4.09732 4.09732 2.36 0.000140843 0.00011156 0.0079465 0.00650795 28 2284 28 6.65987e+06 215526 500653. 1732.36 2.96 0.0696371 0.0639517 21970 115934 -1 1853 23 1163 1584 136433 31115 2.98331 2.98331 -112.101 -2.98331 0 0 612192. 2118.31 0.78 0.19 0.24 -1 -1 0.78 0.0110742 0.00979089 109 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 14.30 vpr 63.86 MiB -1 -1 0.36 21432 1 0.07 -1 -1 33896 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65396 31 32 370 297 1 186 87 17 17 289 -1 unnamed_device 25.4 MiB 0.71 960 9687 2384 6351 952 63.9 MiB 0.22 0.00 4.18671 -127.263 -4.18671 4.18671 2.52 0.000182253 0.000144715 0.00706702 0.00575115 32 2417 21 6.65987e+06 304272 554710. 1919.41 2.35 0.0975316 0.0919152 22834 132086 -1 2101 21 1488 2613 194175 44081 2.97097 2.97097 -112.473 -2.97097 0 0 701300. 2426.64 1.00 0.16 0.20 -1 -1 1.00 0.0117897 0.0103715 137 61 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 13.54 vpr 63.70 MiB -1 -1 0.61 21584 1 0.18 -1 -1 33872 -1 -1 27 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65228 31 32 377 302 1 233 90 17 17 289 -1 unnamed_device 25.5 MiB 1.10 1273 15165 4552 8275 2338 63.7 MiB 0.51 0.00 5.69001 -171.445 -5.69001 5.69001 2.48 0.000199303 0.000135675 0.0170398 0.0139331 32 3130 25 6.65987e+06 342306 554710. 1919.41 2.36 0.0510807 0.0428848 22834 132086 -1 2610 20 2120 3180 234125 53075 4.91423 4.91423 -162.467 -4.91423 0 0 701300. 2426.64 0.81 0.10 0.13 -1 -1 0.81 0.0146825 0.013251 170 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 16.40 vpr 64.08 MiB -1 -1 0.48 21736 1 0.06 -1 -1 33916 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65616 31 32 383 305 1 210 88 17 17 289 -1 unnamed_device 25.4 MiB 3.64 1090 15493 4707 8769 2017 64.1 MiB 0.20 0.00 4.85933 -146.856 -4.85933 4.85933 2.13 9.0883e-05 7.2769e-05 0.0129288 0.0106553 32 2614 24 6.65987e+06 316950 554710. 1919.41 2.54 0.104064 0.0974697 22834 132086 -1 2217 21 1679 2545 171031 40167 4.18782 4.18782 -145.076 -4.18782 0 0 701300. 2426.64 0.95 0.04 0.26 -1 -1 0.95 0.0135973 0.012176 162 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 13.02 vpr 64.01 MiB -1 -1 0.46 21280 1 0.03 -1 -1 33868 -1 -1 29 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65548 31 32 352 285 1 184 92 17 17 289 -1 unnamed_device 25.4 MiB 0.87 1049 11063 3132 7137 794 64.0 MiB 0.31 0.00 4.34966 -129.73 -4.34966 4.34966 2.63 0.00019874 0.000165017 0.172305 0.170247 28 2570 22 6.65987e+06 367662 500653. 1732.36 2.23 0.211767 0.205484 21970 115934 -1 2177 19 1173 1877 132044 30578 3.08745 3.08745 -117.736 -3.08745 0 0 612192. 2118.31 0.84 0.11 0.31 -1 -1 0.84 0.0111952 0.00988884 133 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 12.91 vpr 63.78 MiB -1 -1 0.49 21280 1 0.10 -1 -1 33628 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65308 32 32 291 242 1 179 86 17 17 289 -1 unnamed_device 25.1 MiB 0.48 919 8591 2074 6189 328 63.8 MiB 0.14 0.00 4.09946 -111.918 -4.09946 4.09946 2.32 7.575e-05 5.9687e-05 0.115528 0.114721 28 2411 28 6.65987e+06 278916 500653. 1732.36 2.47 0.186264 0.181335 21970 115934 -1 2081 20 1299 1915 141997 33631 3.64645 3.64645 -113.314 -3.64645 0 0 612192. 2118.31 0.88 0.11 0.19 -1 -1 0.88 0.113733 0.112557 118 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 13.33 vpr 63.94 MiB -1 -1 0.64 21432 1 0.11 -1 -1 33604 -1 -1 38 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65476 32 32 457 356 1 223 102 17 17 289 -1 unnamed_device 25.6 MiB 0.92 1261 14144 3520 9065 1559 63.9 MiB 0.30 0.00 4.86514 -159.483 -4.86514 4.86514 2.16 0.000224362 0.000185072 0.0167308 0.0138784 28 3016 22 6.65987e+06 481764 500653. 1732.36 3.19 0.156164 0.147907 21970 115934 -1 2644 20 1648 2541 201927 44131 3.89311 3.89311 -148.561 -3.89311 0 0 612192. 2118.31 0.74 0.16 0.11 -1 -1 0.74 0.141984 0.141091 172 87 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 13.49 vpr 63.33 MiB -1 -1 0.30 21280 1 0.03 -1 -1 34004 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64848 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 24.7 MiB 0.25 792 5391 1113 3866 412 63.3 MiB 0.18 0.00 3.45892 -99.4367 -3.45892 3.45892 2.78 0.000144451 0.000113627 0.15311 0.00456613 30 1714 21 6.65987e+06 266238 526063. 1820.29 2.50 0.298002 0.145893 22546 126617 -1 1569 16 794 1300 77888 17751 2.66565 2.66565 -95.9742 -2.66565 0 0 666494. 2306.21 0.82 0.09 0.34 -1 -1 0.82 0.00663432 0.00588571 101 28 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 13.64 vpr 63.91 MiB -1 -1 0.40 21280 1 0.11 -1 -1 33952 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65448 31 32 337 267 1 205 86 17 17 289 -1 unnamed_device 25.2 MiB 0.70 1174 9914 2716 6202 996 63.9 MiB 0.17 0.00 4.85749 -145.079 -4.85749 4.85749 2.51 0.000163223 0.000130909 0.0110224 0.00914394 30 2913 23 6.65987e+06 291594 526063. 1820.29 3.11 0.0391954 0.0334823 22546 126617 -1 2375 19 1093 1611 112346 24086 3.96531 3.96531 -132.462 -3.96531 0 0 666494. 2306.21 0.67 0.16 0.37 -1 -1 0.67 0.138033 0.00858171 142 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 15.65 vpr 63.39 MiB -1 -1 0.45 21432 1 0.08 -1 -1 33692 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64912 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 24.6 MiB 0.51 872 7423 1554 5596 273 63.4 MiB 0.16 0.00 3.91407 -115.681 -3.91407 3.91407 2.61 0.000172847 0.000138812 0.00800516 0.00666131 28 3018 33 6.65987e+06 418374 500653. 1732.36 5.49 0.0442897 0.0375343 21970 115934 -1 2118 22 1293 2233 170096 39537 3.03411 3.03411 -114.961 -3.03411 0 0 612192. 2118.31 0.78 0.12 0.18 -1 -1 0.78 0.013357 0.0118758 131 53 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 20.58 vpr 63.30 MiB -1 -1 0.45 21280 1 0.10 -1 -1 33464 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64820 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 24.6 MiB 0.28 855 6523 1368 4938 217 63.3 MiB 0.02 0.00 3.97641 -117.731 -3.97641 3.97641 3.51 7.4019e-05 5.9109e-05 0.00342594 0.00283336 28 2339 22 6.65987e+06 304272 500653. 1732.36 8.79 0.3109 0.297662 21970 115934 -1 2041 20 1400 2592 194446 45064 3.42425 3.42425 -119.8 -3.42425 0 0 612192. 2118.31 0.88 0.09 0.28 -1 -1 0.88 0.0112814 0.00992933 123 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 14.67 vpr 64.05 MiB -1 -1 0.53 21280 1 0.02 -1 -1 33508 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65592 32 32 353 287 1 198 86 17 17 289 -1 unnamed_device 25.4 MiB 1.04 1095 6890 1534 4949 407 64.1 MiB 0.27 0.00 4.41337 -130.677 -4.41337 4.41337 2.81 0.000173112 0.000139915 0.192159 0.19062 30 2410 22 6.65987e+06 278916 526063. 1820.29 2.77 0.22624 0.220082 22546 126617 -1 2078 18 950 1311 82288 18997 3.16671 3.16671 -118.385 -3.16671 0 0 666494. 2306.21 0.85 0.04 0.24 -1 -1 0.85 0.00999761 0.00890254 136 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 16.38 vpr 63.82 MiB -1 -1 0.44 21432 1 0.10 -1 -1 33692 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65348 32 32 361 291 1 185 95 17 17 289 -1 unnamed_device 25.2 MiB 1.31 1015 8519 1947 6079 493 63.8 MiB 0.24 0.00 3.70469 -120.936 -3.70469 3.70469 2.04 0.000183899 0.000150032 0.192242 0.19054 26 2629 44 6.65987e+06 393018 477104. 1650.88 3.76 0.26209 0.226057 21682 110474 -1 2300 19 1277 2162 203888 55415 3.09317 3.09317 -119.703 -3.09317 0 0 585099. 2024.56 0.90 0.15 0.20 -1 -1 0.90 0.11414 0.11291 132 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 15.41 vpr 63.98 MiB -1 -1 0.35 21584 1 0.15 -1 -1 33684 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65516 32 32 382 305 1 192 100 17 17 289 -1 unnamed_device 25.4 MiB 1.37 1095 17268 5091 9567 2610 64.0 MiB 0.39 0.00 4.49052 -137.752 -4.49052 4.49052 2.64 0.000179162 0.000142111 0.0168161 0.0137415 32 2622 20 6.65987e+06 456408 554710. 1919.41 2.67 0.0476195 0.0397119 22834 132086 -1 2238 21 1227 1882 151184 33669 3.11931 3.11931 -120.994 -3.11931 0 0 701300. 2426.64 0.92 0.25 0.29 -1 -1 0.92 0.0140044 0.0124851 144 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 14.25 vpr 63.79 MiB -1 -1 0.49 21432 1 0.20 -1 -1 33840 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65324 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 25.2 MiB 0.39 831 8703 1904 6510 289 63.8 MiB 0.14 0.00 3.98836 -116.458 -3.98836 3.98836 2.36 0.000153415 0.000122132 0.00915912 0.0076147 28 2509 34 6.65987e+06 367662 500653. 1732.36 3.49 0.191909 0.185407 21970 115934 -1 1950 22 1402 2368 181235 42277 3.31885 3.31885 -113.136 -3.31885 0 0 612192. 2118.31 0.80 0.09 0.36 -1 -1 0.80 0.0105699 0.00934149 122 24 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 12.90 vpr 63.45 MiB -1 -1 0.49 21584 1 0.20 -1 -1 33976 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64968 32 32 319 257 1 198 87 17 17 289 -1 unnamed_device 25.1 MiB 0.22 1096 5847 1077 4508 262 63.4 MiB 0.16 0.00 4.87249 -140.277 -4.87249 4.87249 2.45 7.4025e-05 5.8663e-05 0.00691967 0.00585821 32 2457 23 6.65987e+06 291594 554710. 1919.41 2.31 0.0358647 0.0306625 22834 132086 -1 2307 21 1758 2571 205261 48211 3.54631 3.54631 -128.876 -3.54631 0 0 701300. 2426.64 0.74 0.08 0.21 -1 -1 0.74 0.0128434 0.0115048 133 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 14.11 vpr 64.13 MiB -1 -1 0.62 21736 1 0.04 -1 -1 33536 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65672 31 32 373 299 1 202 86 17 17 289 -1 unnamed_device 25.5 MiB 0.75 1053 14450 4494 7381 2575 64.1 MiB 0.39 0.00 4.75055 -139.155 -4.75055 4.75055 2.64 0.000230927 0.000195819 0.0164111 0.0134797 32 2991 39 6.65987e+06 291594 554710. 1919.41 2.69 0.249189 0.238214 22834 132086 -1 2363 22 1536 2448 216971 46501 3.78511 3.78511 -128.69 -3.78511 0 0 701300. 2426.64 0.89 0.15 0.50 -1 -1 0.89 0.0139633 0.0123829 146 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 11.94 vpr 63.97 MiB -1 -1 0.46 21736 1 0.13 -1 -1 33644 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65508 32 32 387 315 1 189 85 17 17 289 -1 unnamed_device 25.4 MiB 0.34 892 8269 1866 5970 433 64.0 MiB 0.11 0.00 3.94229 -122.797 -3.94229 3.94229 2.35 0.000190103 0.000154106 0.0103669 0.00855183 32 2886 33 6.65987e+06 266238 554710. 1919.41 2.54 0.156958 0.149786 22834 132086 -1 2173 20 1592 2780 186378 45374 3.32485 3.32485 -123.339 -3.32485 0 0 701300. 2426.64 0.95 0.08 0.22 -1 -1 0.95 0.0142534 0.0128195 135 77 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 11.46 vpr 63.16 MiB -1 -1 0.39 21432 1 0.03 -1 -1 33560 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64676 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 24.9 MiB 0.29 757 15103 5160 7628 2315 63.2 MiB 0.28 0.00 3.22598 -97.9932 -3.22598 3.22598 2.50 0.000134302 0.000106416 0.0115374 0.00908968 30 1751 19 6.65987e+06 304272 526063. 1820.29 2.24 0.0347544 0.0288528 22546 126617 -1 1512 16 721 1176 73018 17086 2.41611 2.41611 -90.1114 -2.41611 0 0 666494. 2306.21 0.81 0.09 0.19 -1 -1 0.81 0.0739414 0.0731145 97 23 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 12.25 vpr 63.98 MiB -1 -1 0.36 21432 1 0.16 -1 -1 33740 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65516 32 32 341 285 1 187 84 17 17 289 -1 unnamed_device 25.1 MiB 0.29 854 11979 3325 7498 1156 64.0 MiB 0.14 0.00 4.00764 -134.08 -4.00764 4.00764 2.39 0.000166096 0.000132926 0.0130162 0.0105485 30 2116 21 6.65987e+06 253560 526063. 1820.29 2.57 0.132303 0.12564 22546 126617 -1 1874 15 1015 1416 75233 18300 3.45817 3.45817 -132.236 -3.45817 0 0 666494. 2306.21 0.98 0.14 0.14 -1 -1 0.98 0.0233491 0.0223815 125 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 15.15 vpr 63.70 MiB -1 -1 0.48 21432 1 0.03 -1 -1 33988 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65224 32 32 387 293 1 234 92 17 17 289 -1 unnamed_device 25.7 MiB 0.51 1274 10235 2662 6652 921 63.7 MiB 0.14 0.00 5.13258 -155.287 -5.13258 5.13258 2.61 9.2275e-05 7.3961e-05 0.00687844 0.00562595 32 3369 23 6.65987e+06 354984 554710. 1919.41 3.58 0.0906311 0.0846579 22834 132086 -1 2783 23 2186 3460 290827 63429 4.48925 4.48925 -150.111 -4.48925 0 0 701300. 2426.64 1.05 0.28 0.18 -1 -1 1.05 0.107691 0.10602 168 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 13.69 vpr 63.83 MiB -1 -1 0.63 21280 1 0.02 -1 -1 33972 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65360 32 32 340 270 1 181 95 17 17 289 -1 unnamed_device 25.1 MiB 0.60 923 6359 1257 4842 260 63.8 MiB 0.11 0.00 4.41432 -131.558 -4.41432 4.41432 2.44 0.000177047 0.000141783 0.00796312 0.00660099 28 2340 18 6.65987e+06 393018 500653. 1732.36 3.21 0.0388558 0.0335021 21970 115934 -1 2127 18 1059 1684 138744 33781 2.95411 2.95411 -115.043 -2.95411 0 0 612192. 2118.31 0.85 0.07 0.25 -1 -1 0.85 0.0122403 0.0110018 133 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 13.01 vpr 63.63 MiB -1 -1 0.42 20976 1 0.06 -1 -1 33908 -1 -1 26 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65160 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 24.8 MiB 0.15 662 8473 1902 5447 1124 63.6 MiB 0.04 0.00 3.33678 -100.036 -3.33678 3.33678 2.44 0.000147231 0.000116999 0.00780375 0.00638254 28 1883 24 6.65987e+06 329628 500653. 1732.36 2.41 0.120232 0.115061 21970 115934 -1 1588 23 1125 1833 133224 32129 2.83791 2.83791 -101.81 -2.83791 0 0 612192. 2118.31 0.93 0.26 0.28 -1 -1 0.93 0.0108435 0.00951964 104 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 15.30 vpr 64.06 MiB -1 -1 0.64 21888 1 0.18 -1 -1 33752 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65600 32 32 431 332 1 235 89 17 17 289 -1 unnamed_device 25.8 MiB 1.10 1210 14939 4355 8106 2478 64.1 MiB 0.22 0.00 6.10992 -175.279 -6.10992 6.10992 2.35 0.000208534 0.000169163 0.0191368 0.0159276 32 3495 33 6.65987e+06 316950 554710. 1919.41 2.75 0.0522444 0.0444883 22834 132086 -1 2638 21 2045 2939 210732 49019 4.76877 4.76877 -161.395 -4.76877 0 0 701300. 2426.64 1.03 0.15 0.22 -1 -1 1.03 0.0162987 0.0146932 168 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 13.10 vpr 63.95 MiB -1 -1 0.30 21280 1 0.34 -1 -1 33956 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65480 32 32 336 268 1 174 96 17 17 289 -1 unnamed_device 25.2 MiB 0.97 904 10389 2712 7035 642 63.9 MiB 0.20 0.03 4.42592 -132.293 -4.42592 4.42592 2.35 0.000161799 0.000128834 0.0106276 0.00856263 32 2174 23 6.65987e+06 405696 554710. 1919.41 2.62 0.0347434 0.0292961 22834 132086 -1 1862 21 1345 1981 126109 31018 3.49685 3.49685 -125.797 -3.49685 0 0 701300. 2426.64 0.91 0.08 0.22 -1 -1 0.91 0.0123833 0.010951 130 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 20.12 vpr 63.38 MiB -1 -1 0.41 21128 1 0.13 -1 -1 33636 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64900 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 24.8 MiB 0.03 663 8535 1816 6050 669 63.4 MiB 0.13 0.00 3.21869 -93.2403 -3.21869 3.21869 2.45 0.000121456 9.5237e-05 0.0068439 0.00553974 30 1794 24 6.65987e+06 291594 526063. 1820.29 10.47 0.0864911 0.0773777 22546 126617 -1 1375 17 756 1268 78704 19634 2.42405 2.42405 -87.4777 -2.42405 0 0 666494. 2306.21 0.95 0.11 0.28 -1 -1 0.95 0.00836202 0.00752134 100 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 15.68 vpr 64.06 MiB -1 -1 0.51 21432 1 0.20 -1 -1 33772 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65596 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 25.3 MiB 0.29 1094 11573 2846 8002 725 64.1 MiB 0.34 0.00 5.047 -126.982 -5.047 5.047 2.30 0.000175859 0.00014189 0.0503598 0.0483346 36 2322 21 6.65987e+06 431052 612192. 2118.31 5.10 0.297468 0.288372 23410 145293 -1 2134 22 1241 2482 160165 36292 3.91299 3.91299 -119.534 -3.91299 0 0 782063. 2706.10 1.08 0.22 0.34 -1 -1 1.08 0.0128943 0.0114938 139 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 12.93 vpr 63.50 MiB -1 -1 0.48 20976 1 0.33 -1 -1 33840 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65020 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 24.8 MiB 0.29 658 7038 1455 4830 753 63.5 MiB 0.03 0.00 3.29684 -99.2989 -3.29684 3.29684 2.24 0.000131378 0.000102416 0.00684499 0.00550857 28 1982 22 6.65987e+06 253560 500653. 1732.36 2.88 0.165407 0.160419 21970 115934 -1 1775 20 1165 1930 131320 32832 2.75245 2.75245 -106.269 -2.75245 0 0 612192. 2118.31 0.92 0.41 0.30 -1 -1 0.92 0.245432 0.244371 104 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 13.68 vpr 63.48 MiB -1 -1 0.49 20976 1 0.13 -1 -1 33948 -1 -1 33 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65004 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 24.9 MiB 0.57 652 14999 3898 8981 2120 63.5 MiB 0.34 0.00 3.84026 -101.059 -3.84026 3.84026 2.27 0.000131525 0.000102477 0.00917954 0.00725515 26 1964 30 6.65987e+06 418374 477104. 1650.88 2.91 0.0368554 0.0302919 21682 110474 -1 1645 21 1213 2151 149760 36190 2.71645 2.71645 -97.4677 -2.71645 0 0 585099. 2024.56 0.77 0.13 0.23 -1 -1 0.77 0.0104856 0.00927402 105 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 14.11 vpr 63.81 MiB -1 -1 0.56 21432 1 0.05 -1 -1 33816 -1 -1 24 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65340 29 32 355 287 1 198 85 17 17 289 -1 unnamed_device 25.4 MiB 0.89 1012 15523 4926 8107 2490 63.8 MiB 0.20 0.00 4.24664 -124.218 -4.24664 4.24664 2.19 0.000176174 0.00014147 0.0172995 0.0140543 32 2438 21 6.65987e+06 304272 554710. 1919.41 2.73 0.131585 0.125131 22834 132086 -1 2076 22 1471 2243 161387 37796 3.14991 3.14991 -109.854 -3.14991 0 0 701300. 2426.64 0.63 0.24 0.12 -1 -1 0.63 0.0141914 0.0126457 138 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 13.52 vpr 63.84 MiB -1 -1 0.61 21432 1 0.24 -1 -1 33852 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65368 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 25.1 MiB 0.45 997 13738 3661 8770 1307 63.8 MiB 0.23 0.00 4.3549 -132.453 -4.3549 4.3549 2.16 0.000188026 0.000151987 0.0166228 0.0129496 32 2264 21 6.65987e+06 304272 554710. 1919.41 2.08 0.0483022 0.0399724 22834 132086 -1 2017 21 1451 2287 177683 38721 3.59857 3.59857 -129.696 -3.59857 0 0 701300. 2426.64 0.79 0.14 0.38 -1 -1 0.79 0.0127704 0.0113522 130 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 13.57 vpr 64.01 MiB -1 -1 0.43 21584 1 0.10 -1 -1 33516 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65548 32 32 353 285 1 181 91 17 17 289 -1 unnamed_device 25.4 MiB 0.60 1038 14575 3612 9348 1615 64.0 MiB 0.21 0.00 4.46409 -135.318 -4.46409 4.46409 2.76 0.000167875 0.000134136 0.0153971 0.0126236 32 2489 24 6.65987e+06 342306 554710. 1919.41 2.24 0.203521 0.196379 22834 132086 -1 2235 18 1297 2209 162487 36695 3.47311 3.47311 -128.078 -3.47311 0 0 701300. 2426.64 0.81 0.10 0.17 -1 -1 0.81 0.0713858 0.070192 132 51 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 13.24 vpr 63.66 MiB -1 -1 0.38 21280 1 0.06 -1 -1 33816 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65192 32 32 276 237 1 159 80 17 17 289 -1 unnamed_device 24.9 MiB 0.80 846 7820 1845 5552 423 63.7 MiB 0.13 0.00 4.62977 -131.597 -4.62977 4.62977 2.86 0.000136232 0.000108364 0.00802058 0.00652091 30 1909 22 6.65987e+06 202848 526063. 1820.29 2.26 0.0605804 0.0554761 22546 126617 -1 1687 17 707 934 60758 14052 3.02351 3.02351 -112.559 -3.02351 0 0 666494. 2306.21 0.91 0.02 0.29 -1 -1 0.91 0.00962744 0.00868038 103 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 14.37 vpr 63.82 MiB -1 -1 0.57 21280 1 0.20 -1 -1 33740 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65352 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 25.1 MiB 0.79 962 14678 4724 7836 2118 63.8 MiB 0.27 0.00 3.69598 -121.08 -3.69598 3.69598 2.46 0.000189554 0.000154415 0.0155726 0.0126779 32 2230 19 6.65987e+06 240882 554710. 1919.41 2.24 0.0435526 0.0358624 22834 132086 -1 1907 19 1232 1854 137979 31545 3.00145 3.00145 -115.533 -3.00145 0 0 701300. 2426.64 0.94 0.09 0.41 -1 -1 0.94 0.0114774 0.0102167 111 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 15.14 vpr 63.86 MiB -1 -1 0.73 21584 1 0.16 -1 -1 33728 -1 -1 33 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65388 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 25.2 MiB 1.04 861 11975 2929 8226 820 63.9 MiB 0.19 0.00 3.34001 -95.8068 -3.34001 3.34001 2.67 0.000152813 0.000121528 0.0412169 0.0392008 28 2224 44 6.65987e+06 418374 500653. 1732.36 3.54 0.0763353 0.0687579 21970 115934 -1 1831 20 1251 2268 159057 37940 2.43405 2.43405 -93.0128 -2.43405 0 0 612192. 2118.31 0.64 0.27 0.12 -1 -1 0.64 0.011714 0.0103641 123 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 13.59 vpr 63.42 MiB -1 -1 0.43 21432 1 0.32 -1 -1 33732 -1 -1 35 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64940 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 24.9 MiB 0.38 923 12623 3487 7239 1897 63.4 MiB 0.19 0.00 4.05815 -100.085 -4.05815 4.05815 2.81 0.000137399 0.000109196 0.00982862 0.0079749 26 2148 42 6.65987e+06 443730 477104. 1650.88 2.97 0.0421143 0.0351627 21682 110474 -1 1872 23 1220 2281 180106 39360 3.35599 3.35599 -99.94 -3.35599 0 0 585099. 2024.56 0.86 0.14 0.28 -1 -1 0.86 0.0105986 0.00930434 115 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 14.11 vpr 63.45 MiB -1 -1 0.42 21128 1 0.17 -1 -1 33852 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64976 30 32 317 269 1 152 79 17 17 289 -1 unnamed_device 24.9 MiB 0.65 815 13937 5246 6335 2356 63.5 MiB 0.19 0.00 4.07397 -115.987 -4.07397 4.07397 2.78 0.000150362 0.000119532 0.0144295 0.0117043 26 2246 33 6.65987e+06 215526 477104. 1650.88 4.08 0.118012 0.110449 21682 110474 -1 1978 21 1324 2287 197957 43663 3.12231 3.12231 -114.295 -3.12231 0 0 585099. 2024.56 0.80 0.13 0.21 -1 -1 0.80 0.0953608 0.0940522 108 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 13.97 vpr 63.89 MiB -1 -1 0.80 21432 1 0.19 -1 -1 33432 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65420 32 32 335 282 1 184 84 17 17 289 -1 unnamed_device 25.2 MiB 0.73 969 14724 4160 8401 2163 63.9 MiB 0.43 0.00 3.82038 -130.284 -3.82038 3.82038 2.22 0.000181972 0.000148061 0.0152471 0.0123553 32 2416 22 6.65987e+06 253560 554710. 1919.41 2.21 0.0367014 0.0306724 22834 132086 -1 2034 18 1179 1689 134701 30772 3.10351 3.10351 -123.82 -3.10351 0 0 701300. 2426.64 1.11 0.05 0.23 -1 -1 1.11 0.0232836 0.0103366 120 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 15.42 vpr 63.79 MiB -1 -1 0.63 20976 1 0.05 -1 -1 33760 -1 -1 32 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65316 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 25.1 MiB 0.36 1068 16295 4538 9804 1953 63.8 MiB 0.21 0.00 4.27726 -124.118 -4.27726 4.27726 2.79 0.000169881 0.000124943 0.0138367 0.0112482 32 2503 22 6.65987e+06 405696 554710. 1919.41 3.20 0.136345 0.0341435 22834 132086 -1 2162 23 1409 2614 199248 44792 3.56625 3.56625 -116.588 -3.56625 0 0 701300. 2426.64 1.45 0.17 0.24 -1 -1 1.45 0.0576341 0.0562419 127 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 14.38 vpr 64.09 MiB -1 -1 0.50 21584 1 0.18 -1 -1 33824 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65624 32 32 350 275 1 209 86 17 17 289 -1 unnamed_device 25.5 MiB 0.72 1153 8402 1956 5598 848 64.1 MiB 0.47 0.00 5.15532 -161.668 -5.15532 5.15532 2.75 0.000181367 0.000145166 0.01102 0.00883895 32 3047 21 6.65987e+06 278916 554710. 1919.41 2.06 0.0429549 0.0356322 22834 132086 -1 2490 22 1763 2625 198538 46171 4.22151 4.22151 -150.599 -4.22151 0 0 701300. 2426.64 1.16 0.12 0.18 -1 -1 1.16 0.0943274 0.0931895 144 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 17.62 vpr 64.10 MiB -1 -1 0.41 21280 1 0.18 -1 -1 33404 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65640 32 32 385 308 1 185 96 17 17 289 -1 unnamed_device 25.5 MiB 0.68 1091 17397 4924 9824 2649 64.1 MiB 0.32 0.00 5.003 -142.071 -5.003 5.003 2.28 8.3064e-05 6.5811e-05 0.264952 0.262609 26 2869 27 6.65987e+06 405696 477104. 1650.88 5.54 0.318255 0.310812 21682 110474 -1 2401 24 1464 2631 218718 54156 4.38703 4.38703 -140.693 -4.38703 0 0 585099. 2024.56 0.74 0.17 0.20 -1 -1 0.74 0.0147885 0.0131075 142 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 19.45 vpr 64.14 MiB -1 -1 0.64 21432 1 0.16 -1 -1 33748 -1 -1 37 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65680 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 25.5 MiB 0.68 1090 6446 1272 4893 281 64.1 MiB 0.11 0.00 4.26912 -136.624 -4.26912 4.26912 2.71 0.000202363 0.000164588 0.00735051 0.00598336 26 3522 48 6.65987e+06 469086 477104. 1650.88 7.25 0.132344 0.123993 21682 110474 -1 2589 23 1584 2665 277874 61981 3.61031 3.61031 -137.059 -3.61031 0 0 585099. 2024.56 0.87 0.29 0.27 -1 -1 0.87 0.0843316 0.082049 140 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 13.71 vpr 63.71 MiB -1 -1 0.20 21128 1 0.02 -1 -1 33896 -1 -1 19 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65244 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 25.1 MiB 0.78 858 11106 2842 6749 1515 63.7 MiB 0.38 0.00 3.61906 -110.793 -3.61906 3.61906 2.59 0.000132116 0.000104254 0.0116341 0.0093416 30 1861 20 6.65987e+06 240882 526063. 1820.29 2.26 0.124363 0.11832 22546 126617 -1 1581 20 799 1273 70669 16439 2.45585 2.45585 -94.8069 -2.45585 0 0 666494. 2306.21 0.93 0.03 0.24 -1 -1 0.93 0.0104883 0.00938779 105 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 13.70 vpr 64.07 MiB -1 -1 0.28 21432 1 0.12 -1 -1 34108 -1 -1 21 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65608 30 32 375 299 1 187 83 17 17 289 -1 unnamed_device 25.4 MiB 0.56 983 13583 4344 7194 2045 64.1 MiB 0.28 0.00 4.78844 -139.067 -4.78844 4.78844 2.96 0.000172451 0.000136865 0.0166578 0.0136642 32 2247 22 6.65987e+06 266238 554710. 1919.41 2.13 0.0437133 0.0373687 22834 132086 -1 1997 21 1498 2374 164500 38258 3.52637 3.52637 -125.429 -3.52637 0 0 701300. 2426.64 0.97 0.11 0.33 -1 -1 0.97 0.0755178 0.0740837 137 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 17.09 vpr 64.03 MiB -1 -1 0.42 21584 1 0.04 -1 -1 33684 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65568 32 32 340 270 1 200 88 17 17 289 -1 unnamed_device 25.2 MiB 0.68 1116 12568 3071 7899 1598 64.0 MiB 0.19 0.00 5.00533 -148.1 -5.00533 5.00533 2.60 0.000165582 0.000131416 0.0131479 0.0107622 26 2981 27 6.65987e+06 304272 477104. 1650.88 5.86 0.189793 0.0382439 21682 110474 -1 2617 22 1808 2814 240240 50868 4.29371 4.29371 -140.82 -4.29371 0 0 585099. 2024.56 0.99 0.20 0.14 -1 -1 0.99 0.0131946 0.0117796 138 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 13.65 vpr 64.02 MiB -1 -1 0.45 21432 1 0.07 -1 -1 33924 -1 -1 28 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65556 31 32 340 275 1 195 91 17 17 289 -1 unnamed_device 25.4 MiB 1.11 1080 15187 4594 8064 2529 64.0 MiB 0.38 0.00 5.08067 -147.956 -5.08067 5.08067 2.26 0.000162498 0.00012834 0.0152056 0.0124501 32 2661 24 6.65987e+06 354984 554710. 1919.41 2.34 0.0431303 0.0366274 22834 132086 -1 2177 20 1429 2197 160708 36263 4.39417 4.39417 -144.217 -4.39417 0 0 701300. 2426.64 0.75 0.10 0.16 -1 -1 0.75 0.0689175 0.0676375 146 47 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 17.09 vpr 63.86 MiB -1 -1 0.40 21432 1 0.03 -1 -1 33832 -1 -1 31 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65396 30 32 377 310 1 177 93 17 17 289 -1 unnamed_device 25.4 MiB 3.74 989 11223 2996 7351 876 63.9 MiB 0.35 0.00 4.29269 -128.576 -4.29269 4.29269 2.35 0.000165075 0.000131308 0.0119329 0.00975812 32 2241 22 6.65987e+06 393018 554710. 1919.41 2.23 0.040926 0.0347302 22834 132086 -1 1978 20 1350 2182 152265 35695 2.90431 2.90431 -112.586 -2.90431 0 0 701300. 2426.64 1.23 0.33 0.27 -1 -1 1.23 0.0136675 0.0122227 133 83 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 14.60 vpr 64.02 MiB -1 -1 0.56 21432 1 0.35 -1 -1 33832 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65560 32 32 365 294 1 185 84 17 17 289 -1 unnamed_device 25.4 MiB 0.46 1059 15273 4721 8591 1961 64.0 MiB 0.28 0.00 4.76549 -137.908 -4.76549 4.76549 2.87 0.000173412 0.000139975 0.01927 0.0143363 32 2636 19 6.65987e+06 253560 554710. 1919.41 2.57 0.156738 0.147725 22834 132086 -1 2263 20 1357 2383 173914 39226 3.69631 3.69631 -131.863 -3.69631 0 0 701300. 2426.64 1.11 0.25 0.23 -1 -1 1.11 0.0155199 0.014364 133 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 14.12 vpr 64.05 MiB -1 -1 0.60 21432 1 0.09 -1 -1 33568 -1 -1 29 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65592 29 32 378 310 1 177 90 17 17 289 -1 unnamed_device 25.4 MiB 1.24 957 9336 2567 5788 981 64.1 MiB 0.15 0.00 4.45269 -125.553 -4.45269 4.45269 2.27 0.000190135 0.000157653 0.106214 0.104439 32 2212 21 6.65987e+06 367662 554710. 1919.41 2.33 0.357884 0.352346 22834 132086 -1 1885 20 1221 1963 136867 32931 3.04431 3.04431 -109.753 -3.04431 0 0 701300. 2426.64 1.18 0.19 0.21 -1 -1 1.18 0.122435 0.120953 131 85 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 12.68 vpr 63.40 MiB -1 -1 0.33 20976 1 0.11 -1 -1 33788 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64920 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 24.8 MiB 0.26 684 12416 3704 6939 1773 63.4 MiB 0.24 0.00 3.74649 -110.459 -3.74649 3.74649 2.51 0.000177207 0.000146202 0.0117666 0.00956856 32 1636 29 6.65987e+06 190170 554710. 1919.41 2.05 0.0640722 0.0594987 22834 132086 -1 1448 19 845 1255 94066 22494 2.92385 2.92385 -104.507 -2.92385 0 0 701300. 2426.64 0.99 0.29 0.29 -1 -1 0.99 0.216065 0.214845 96 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 15.33 vpr 64.04 MiB -1 -1 0.49 21280 1 0.03 -1 -1 33728 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65576 32 32 373 302 1 176 94 17 17 289 -1 unnamed_device 25.4 MiB 0.65 960 15004 4235 7978 2791 64.0 MiB 0.49 0.00 4.36949 -132.189 -4.36949 4.36949 2.82 0.000185384 0.000148506 0.19324 0.190425 32 2302 19 6.65987e+06 380340 554710. 1919.41 2.67 0.32009 0.314378 22834 132086 -1 2000 19 1289 2064 160145 35763 3.75771 3.75771 -128.564 -3.75771 0 0 701300. 2426.64 0.81 0.09 0.23 -1 -1 0.81 0.0128487 0.0115582 130 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 14.45 vpr 64.15 MiB -1 -1 0.77 21432 1 0.07 -1 -1 33804 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65692 32 32 397 314 1 196 84 17 17 289 -1 unnamed_device 25.5 MiB 0.76 1050 14907 5385 7856 1666 64.2 MiB 0.25 0.00 4.72838 -146.592 -4.72838 4.72838 2.62 0.000189865 0.000153789 0.0171167 0.0140155 32 2630 21 6.65987e+06 253560 554710. 1919.41 2.37 0.0689549 0.0614925 22834 132086 -1 2230 22 1840 2990 221471 50918 4.14117 4.14117 -142.698 -4.14117 0 0 701300. 2426.64 1.08 0.20 0.11 -1 -1 1.08 0.0135297 0.0120474 147 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 13.32 vpr 63.47 MiB -1 -1 0.65 21280 1 0.17 -1 -1 33416 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64996 32 32 269 231 1 170 83 17 17 289 -1 unnamed_device 24.9 MiB 0.74 894 13403 4479 6698 2226 63.5 MiB 0.11 0.00 4.19577 -118.859 -4.19577 4.19577 2.31 0.000147502 0.000109262 0.0126762 0.0101537 28 2196 21 6.65987e+06 240882 500653. 1732.36 2.77 0.0380579 0.031826 21970 115934 -1 1851 20 1036 1383 108668 24955 3.26225 3.26225 -110.746 -3.26225 0 0 612192. 2118.31 1.38 0.29 0.28 -1 -1 1.38 0.00974122 0.00864199 111 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 13.27 vpr 63.50 MiB -1 -1 0.59 20976 1 0.02 -1 -1 33780 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65024 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 24.9 MiB 0.34 776 8868 2239 6065 564 63.5 MiB 0.13 0.00 3.80235 -109.947 -3.80235 3.80235 2.61 6.3708e-05 4.9993e-05 0.00559361 0.00455718 26 1970 25 6.65987e+06 266238 477104. 1650.88 2.90 0.241068 0.236242 21682 110474 -1 1723 23 1176 1960 153298 34555 2.80565 2.80565 -104.334 -2.80565 0 0 585099. 2024.56 0.81 0.12 0.41 -1 -1 0.81 0.0100552 0.0088737 106 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 15.94 vpr 64.10 MiB -1 -1 0.38 21280 1 0.10 -1 -1 33952 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65640 32 32 348 274 1 211 89 17 17 289 -1 unnamed_device 25.4 MiB 0.49 1094 12167 3085 7463 1619 64.1 MiB 0.09 0.00 4.97701 -158.279 -4.97701 4.97701 2.53 0.000161312 0.000129816 0.0121909 0.00999423 26 3090 32 6.65987e+06 316950 477104. 1650.88 4.69 0.0534652 0.0428262 21682 110474 -1 2508 23 1898 2512 210561 46734 4.30183 4.30183 -155.617 -4.30183 0 0 585099. 2024.56 0.75 0.24 0.33 -1 -1 0.75 0.013143 0.0117014 144 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 17.61 vpr 63.81 MiB -1 -1 0.57 20976 1 0.21 -1 -1 33548 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65340 32 32 356 289 1 202 92 17 17 289 -1 unnamed_device 25.1 MiB 1.18 1053 6923 1467 5091 365 63.8 MiB 0.07 0.00 5.03847 -147.541 -5.03847 5.03847 2.98 0.000194142 0.000160188 0.00813949 0.00673389 28 2980 22 6.65987e+06 354984 500653. 1732.36 5.44 0.143717 0.137558 21970 115934 -1 2306 21 1618 2412 176317 40884 4.33597 4.33597 -146.027 -4.33597 0 0 612192. 2118.31 0.86 0.22 0.48 -1 -1 0.86 0.0128865 0.0114883 151 56 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 15.63 vpr 63.96 MiB -1 -1 0.50 21432 1 0.05 -1 -1 33788 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65496 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 25.4 MiB 0.30 1239 17268 4300 11396 1572 64.0 MiB 0.53 0.11 5.24834 -143.442 -5.24834 5.24834 2.60 0.00018549 0.000140778 0.0169858 0.0139239 30 2758 25 6.65987e+06 456408 526063. 1820.29 3.65 0.119954 0.112157 22546 126617 -1 2371 21 1238 2402 146964 32150 4.16083 4.16083 -133.389 -4.16083 0 0 666494. 2306.21 0.76 0.05 0.25 -1 -1 0.76 0.010236 0.00895383 153 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 13.14 vpr 63.72 MiB -1 -1 0.50 20976 1 0.04 -1 -1 33712 -1 -1 31 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65252 30 32 316 264 1 162 93 17 17 289 -1 unnamed_device 25.1 MiB 1.08 853 11223 2920 7020 1283 63.7 MiB 0.10 0.00 3.39798 -101.422 -3.39798 3.39798 2.36 0.000175899 0.000143298 0.0110945 0.0090861 26 2061 23 6.65987e+06 393018 477104. 1650.88 3.20 0.0357329 0.030183 21682 110474 -1 1868 18 1213 2055 145704 34724 2.80371 2.80371 -101.985 -2.80371 0 0 585099. 2024.56 0.65 0.18 0.27 -1 -1 0.65 0.0106915 0.00950961 120 52 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 12.02 vpr 63.34 MiB -1 -1 0.40 21128 1 0.11 -1 -1 34156 -1 -1 21 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64860 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 24.8 MiB 0.06 562 12120 3232 7522 1366 63.3 MiB 0.15 0.00 3.49724 -92.7291 -3.49724 3.49724 2.76 0.000160291 0.000127029 0.012295 0.0098888 28 1503 22 6.65987e+06 266238 500653. 1732.36 2.26 0.0362898 0.0302729 21970 115934 -1 1367 23 1081 1581 120522 28570 2.71577 2.71577 -91.1214 -2.71577 0 0 612192. 2118.31 0.77 0.08 0.34 -1 -1 0.77 0.0582219 0.0570086 97 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 16.31 vpr 64.01 MiB -1 -1 0.58 21736 1 0.09 -1 -1 33832 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65544 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 25.6 MiB 0.45 1323 15969 4617 8792 2560 64.0 MiB 0.25 0.00 4.09377 -133.735 -4.09377 4.09377 2.48 0.000216131 0.000176539 0.019158 0.0157759 28 3675 45 6.65987e+06 329628 500653. 1732.36 4.88 0.204784 0.194352 21970 115934 -1 2897 19 1932 3279 249002 53716 3.62139 3.62139 -131.023 -3.62139 0 0 612192. 2118.31 0.78 0.16 0.34 -1 -1 0.78 0.119617 0.0131375 170 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 16.38 vpr 64.02 MiB -1 -1 0.79 21736 1 0.06 -1 -1 33868 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65552 31 32 365 296 1 193 84 17 17 289 -1 unnamed_device 25.2 MiB 3.09 1078 12528 4327 6387 1814 64.0 MiB 0.31 0.23 5.17417 -151.407 -5.17417 5.17417 2.54 0.000181277 0.000144373 0.0149598 0.0122692 32 2753 22 6.65987e+06 266238 554710. 1919.41 2.38 0.246568 0.239404 22834 132086 -1 2282 21 1708 2595 216768 47454 4.38517 4.38517 -148.257 -4.38517 0 0 701300. 2426.64 0.89 0.32 0.34 -1 -1 0.89 0.0117034 0.010493 150 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 18.03 vpr 63.62 MiB -1 -1 0.61 21584 1 0.15 -1 -1 33904 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65144 32 32 331 280 1 175 82 17 17 289 -1 unnamed_device 25.1 MiB 3.05 964 14856 4683 7908 2265 63.6 MiB 0.34 0.00 4.1377 -130.564 -4.1377 4.1377 3.24 0.000147766 0.000117085 0.143536 0.140585 32 2171 20 6.65987e+06 228204 554710. 1919.41 2.71 0.199996 0.194208 22834 132086 -1 1934 19 1317 1944 141571 32307 3.53756 3.53756 -126.092 -3.53756 0 0 701300. 2426.64 1.03 0.02 0.42 -1 -1 1.03 0.00690963 0.00629059 126 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 13.48 vpr 63.91 MiB -1 -1 0.51 21432 1 0.02 -1 -1 33836 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65448 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 25.2 MiB 0.15 1012 18199 5227 11404 1568 63.9 MiB 0.22 0.00 4.85416 -126.382 -4.85416 4.85416 2.62 0.000163132 0.000130477 0.0166744 0.0133698 26 2667 26 6.65987e+06 380340 477104. 1650.88 3.39 0.309564 0.188835 21682 110474 -1 2147 22 1218 1993 155083 36118 3.76645 3.76645 -124.796 -3.76645 0 0 585099. 2024.56 1.03 0.25 0.21 -1 -1 1.03 0.0116192 0.010274 126 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 13.31 vpr 64.13 MiB -1 -1 0.43 21432 1 0.02 -1 -1 33796 -1 -1 33 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65672 31 32 373 294 1 196 96 17 17 289 -1 unnamed_device 25.4 MiB 0.72 1069 18054 5191 10505 2358 64.1 MiB 0.27 0.00 4.75754 -136.396 -4.75754 4.75754 2.50 0.000171813 0.000139055 0.0712609 0.0682239 32 2485 22 6.65987e+06 418374 554710. 1919.41 2.35 0.154525 0.14255 22834 132086 -1 2209 20 1432 2333 172652 38504 3.37811 3.37811 -123.135 -3.37811 0 0 701300. 2426.64 0.95 0.15 0.35 -1 -1 0.95 0.112079 0.110645 144 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 13.55 vpr 63.86 MiB -1 -1 0.63 21280 1 0.15 -1 -1 33924 -1 -1 31 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65396 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 25.2 MiB 0.31 999 9333 2113 6300 920 63.9 MiB 0.22 0.00 3.66846 -111.209 -3.66846 3.66846 2.73 0.000154665 0.000123545 0.0090687 0.00746416 32 2352 21 6.65987e+06 393018 554710. 1919.41 2.89 0.0321948 0.0270197 22834 132086 -1 2074 22 1327 2197 168002 37989 2.89191 2.89191 -104.742 -2.89191 0 0 701300. 2426.64 0.83 0.10 0.18 -1 -1 0.83 0.0500403 0.0486382 124 51 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 13.19 vpr 64.14 MiB -1 -1 0.44 21280 1 0.03 -1 -1 33696 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65684 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 25.5 MiB 0.33 1084 14713 4574 7744 2395 64.1 MiB 0.23 0.00 4.85897 -149.918 -4.85897 4.85897 2.86 0.000169494 0.000136511 0.140208 0.137434 32 3081 26 6.65987e+06 304272 554710. 1919.41 2.17 0.219811 0.212353 22834 132086 -1 2484 20 1987 3003 234271 54312 4.08025 4.08025 -143.874 -4.08025 0 0 701300. 2426.64 0.88 0.17 0.31 -1 -1 0.88 0.153278 0.151901 147 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 12.71 vpr 64.15 MiB -1 -1 0.43 21888 1 0.17 -1 -1 33712 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 32 32 386 307 1 195 98 17 17 289 -1 unnamed_device 25.5 MiB 0.83 1057 18773 5614 10501 2658 64.1 MiB 0.40 0.00 4.57498 -141.369 -4.57498 4.57498 2.63 0.000232753 0.000141082 0.139659 0.136217 28 2488 21 6.65987e+06 431052 500653. 1732.36 2.66 0.245547 0.238225 21970 115934 -1 2269 18 1269 1970 143696 32000 3.37091 3.37091 -127.74 -3.37091 0 0 612192. 2118.31 0.53 0.12 0.24 -1 -1 0.53 0.0135305 0.0121466 143 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 12.43 vpr 63.52 MiB -1 -1 0.29 20824 1 0.17 -1 -1 33688 -1 -1 17 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65040 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 24.8 MiB 0.61 520 12528 3273 8240 1015 63.5 MiB 0.10 0.00 3.78218 -105.823 -3.78218 3.78218 2.33 0.000183934 0.000154958 0.064558 0.00949455 32 1509 20 6.65987e+06 215526 554710. 1919.41 2.69 0.13071 0.0719715 22834 132086 -1 1340 20 951 1328 112971 27296 2.74517 2.74517 -94.6149 -2.74517 0 0 701300. 2426.64 0.76 0.11 0.16 -1 -1 0.76 0.0948997 0.093837 92 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 13.08 vpr 63.56 MiB -1 -1 0.55 21584 1 0.05 -1 -1 34084 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65084 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 25.1 MiB 0.75 961 12345 3304 7210 1831 63.6 MiB 0.16 0.00 3.97227 -126.423 -3.97227 3.97227 2.42 0.00015902 0.000126283 0.09809 0.0957955 32 2074 22 6.65987e+06 253560 554710. 1919.41 2.65 0.119794 0.114289 22834 132086 -1 1846 20 1382 1825 150330 33395 3.14377 3.14377 -116.8 -3.14377 0 0 701300. 2426.64 0.88 0.37 0.25 -1 -1 0.88 0.139341 0.138064 116 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 13.64 vpr 63.94 MiB -1 -1 0.32 21584 1 0.18 -1 -1 33788 -1 -1 37 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65476 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 25.2 MiB 0.38 918 7988 1511 6133 344 63.9 MiB 0.12 0.00 4.586 -121.831 -4.586 4.586 2.34 0.000167365 0.000135478 0.0074725 0.00621123 26 2466 46 6.65987e+06 469086 477104. 1650.88 4.09 0.12393 0.117216 21682 110474 -1 2051 21 1189 2186 143750 34653 3.66531 3.66531 -123.472 -3.66531 0 0 585099. 2024.56 0.55 0.14 0.14 -1 -1 0.55 0.111771 0.110396 129 33 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 13.27 vpr 63.44 MiB -1 -1 0.41 21280 1 0.02 -1 -1 34012 -1 -1 21 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64960 29 32 262 224 1 168 82 17 17 289 -1 unnamed_device 24.8 MiB 0.44 913 13076 3345 8177 1554 63.4 MiB 0.14 0.00 4.16472 -115.101 -4.16472 4.16472 2.03 0.000138953 0.000110049 0.0116361 0.00942224 26 2335 22 6.65987e+06 266238 477104. 1650.88 2.67 0.0853877 0.0792924 21682 110474 -1 1983 22 1201 1563 120338 28160 3.21591 3.21591 -110.777 -3.21591 0 0 585099. 2024.56 1.15 0.03 0.10 -1 -1 1.15 0.010151 0.00895864 110 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 13.37 vpr 63.43 MiB -1 -1 0.74 21432 1 0.05 -1 -1 33668 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64948 32 32 278 238 1 149 80 17 17 289 -1 unnamed_device 24.9 MiB 0.60 840 12980 3474 8543 963 63.4 MiB 0.19 0.00 3.73708 -117.005 -3.73708 3.73708 2.21 0.000153837 0.000122381 0.0126295 0.0102317 32 2039 20 6.65987e+06 202848 554710. 1919.41 3.14 0.0366303 0.0305555 22834 132086 -1 1895 20 1345 2275 189875 42263 2.87965 2.87965 -111.934 -2.87965 0 0 701300. 2426.64 0.92 0.19 0.32 -1 -1 0.92 0.00884211 0.00782272 109 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 12.17 vpr 63.91 MiB -1 -1 0.34 21736 1 0.07 -1 -1 33508 -1 -1 35 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65448 31 32 373 300 1 181 98 17 17 289 -1 unnamed_device 25.4 MiB 0.75 874 11348 2922 7210 1216 63.9 MiB 0.29 0.00 4.00794 -116.831 -4.00794 4.00794 2.11 0.000186902 0.00013989 0.0122115 0.00985808 26 2298 26 6.65987e+06 443730 477104. 1650.88 2.66 0.193576 0.0769079 21682 110474 -1 1930 23 1614 2486 162553 39680 3.11237 3.11237 -112.795 -3.11237 0 0 585099. 2024.56 0.88 0.08 0.25 -1 -1 0.88 0.0622346 0.0611406 135 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 12.02 vpr 63.64 MiB -1 -1 0.33 21432 1 0.03 -1 -1 33460 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65164 31 32 265 230 1 162 82 17 17 289 -1 unnamed_device 24.9 MiB 0.48 755 6846 1343 5305 198 63.6 MiB 0.15 0.00 3.8773 -116.608 -3.8773 3.8773 2.44 0.000137432 0.000109114 0.00730723 0.00596196 28 2204 28 6.65987e+06 240882 500653. 1732.36 2.91 0.123759 0.0247602 21970 115934 -1 1805 21 1124 1620 120174 28100 2.98957 2.98957 -109.832 -2.98957 0 0 612192. 2118.31 0.70 0.02 0.31 -1 -1 0.70 0.00482924 0.00425972 108 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 15.29 vpr 63.96 MiB -1 -1 0.37 21432 1 0.03 -1 -1 33540 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65500 32 32 349 286 1 171 95 17 17 289 -1 unnamed_device 25.2 MiB 0.92 979 15863 4619 8770 2474 64.0 MiB 0.11 0.00 3.70512 -117.413 -3.70512 3.70512 2.73 0.000172015 0.00013621 0.0107385 0.00863521 28 2346 22 6.65987e+06 393018 500653. 1732.36 3.86 0.0421255 0.0354034 21970 115934 -1 2005 21 1259 2252 173977 37393 2.77191 2.77191 -107.034 -2.77191 0 0 612192. 2118.31 0.83 0.12 0.53 -1 -1 0.83 0.0912774 0.0896702 126 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 15.37 vpr 63.99 MiB -1 -1 0.49 21432 1 0.09 -1 -1 33816 -1 -1 32 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65524 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 25.4 MiB 2.72 976 17159 4932 10231 1996 64.0 MiB 0.27 0.00 4.34696 -137.767 -4.34696 4.34696 2.40 0.000196074 0.000157189 0.0167079 0.013622 32 2144 23 6.65987e+06 405696 554710. 1919.41 2.97 0.076872 0.0691289 22834 132086 -1 1953 19 1355 1927 139366 32359 3.23882 3.23882 -127.364 -3.23882 0 0 701300. 2426.64 0.93 0.10 0.39 -1 -1 0.93 0.077748 0.0763407 138 91 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 13.34 vpr 63.70 MiB -1 -1 0.44 21432 1 0.21 -1 -1 33736 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65224 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 24.9 MiB 0.89 668 7781 1699 5777 305 63.7 MiB 0.12 0.00 3.26384 -99.6676 -3.26384 3.26384 2.54 0.000149886 0.000119017 0.00826082 0.00675345 28 1984 44 6.65987e+06 215526 500653. 1732.36 2.97 0.0732136 0.0673876 21970 115934 -1 1645 19 942 1437 123250 30526 3.00505 3.00505 -105.438 -3.00505 0 0 612192. 2118.31 0.81 0.03 0.21 -1 -1 0.81 0.0102581 0.00910319 104 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 13.02 vpr 63.61 MiB -1 -1 0.54 21128 1 0.04 -1 -1 33552 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65140 32 32 290 244 1 175 83 17 17 289 -1 unnamed_device 25.0 MiB 0.32 794 6203 1260 4522 421 63.6 MiB 0.19 0.00 4.22769 -129.19 -4.22769 4.22769 2.32 0.000159657 0.000129095 0.0826848 0.0814657 28 2579 36 6.65987e+06 240882 500653. 1732.36 2.83 0.112285 0.106537 21970 115934 -1 2036 24 1581 2366 175371 43562 3.11651 3.11651 -117.093 -3.11651 0 0 612192. 2118.31 0.90 0.18 0.17 -1 -1 0.90 0.109714 0.108376 115 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 13.50 vpr 63.79 MiB -1 -1 0.61 21432 1 0.22 -1 -1 33696 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65320 32 32 318 257 1 194 86 17 17 289 -1 unnamed_device 25.4 MiB 0.25 1125 13505 4132 7011 2362 63.8 MiB 0.28 0.00 4.57684 -138.254 -4.57684 4.57684 2.60 0.000155564 0.000124195 0.0102394 0.00831129 32 2501 22 6.65987e+06 278916 554710. 1919.41 2.48 0.11553 0.109428 22834 132086 -1 2218 19 1571 2245 176338 39928 3.59051 3.59051 -128.335 -3.59051 0 0 701300. 2426.64 0.89 0.11 0.41 -1 -1 0.89 0.0750705 0.0737898 130 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 13.64 vpr 63.85 MiB -1 -1 0.54 21432 1 0.18 -1 -1 33560 -1 -1 28 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65380 29 32 324 268 1 168 89 17 17 289 -1 unnamed_device 25.2 MiB 1.16 892 10583 2550 7235 798 63.8 MiB 0.05 0.00 4.50014 -117.038 -4.50014 4.50014 2.17 0.00022968 0.000196465 0.00752789 0.00617829 32 2080 20 6.65987e+06 354984 554710. 1919.41 2.22 0.0941201 0.0886319 22834 132086 -1 1828 19 866 1438 94511 22116 2.99731 2.99731 -103.782 -2.99731 0 0 701300. 2426.64 1.06 0.02 0.32 -1 -1 1.06 0.00553346 0.00496833 121 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 14.11 vpr 63.84 MiB -1 -1 0.50 21736 1 0.17 -1 -1 33820 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65368 32 32 393 312 1 213 87 17 17 289 -1 unnamed_device 25.6 MiB 0.67 1086 7383 1628 5394 361 63.8 MiB 0.18 0.00 5.16517 -163.631 -5.16517 5.16517 2.52 0.000180427 0.000144785 0.00951422 0.00796851 32 2920 23 6.65987e+06 291594 554710. 1919.41 2.38 0.245735 0.240064 22834 132086 -1 2367 23 1921 2795 213019 48739 3.76211 3.76211 -142.445 -3.76211 0 0 701300. 2426.64 1.02 0.06 0.32 -1 -1 1.02 0.0159285 0.0142205 153 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 12.43 vpr 63.36 MiB -1 -1 0.45 21128 1 0.02 -1 -1 33624 -1 -1 18 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64876 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 24.8 MiB 0.29 592 6556 1291 4487 778 63.4 MiB 0.05 0.00 3.5672 -94.4593 -3.5672 3.5672 2.37 0.000128058 0.000100838 0.00656656 0.00534122 32 1464 20 6.65987e+06 228204 554710. 1919.41 2.52 0.101444 0.0966026 22834 132086 -1 1272 17 683 1048 65988 18022 2.60051 2.60051 -92.4535 -2.60051 0 0 701300. 2426.64 1.14 0.10 0.45 -1 -1 1.14 0.086216 0.0853806 96 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 17.40 vpr 64.21 MiB -1 -1 0.38 21584 1 0.16 -1 -1 33640 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65748 32 32 412 334 1 190 97 17 17 289 -1 unnamed_device 25.5 MiB 1.81 1151 14083 3602 8814 1667 64.2 MiB 0.20 0.00 4.1637 -141.581 -4.1637 4.1637 2.49 0.000196167 0.000158828 0.0150689 0.0124102 26 2855 28 6.65987e+06 418374 477104. 1650.88 4.11 0.350284 0.225366 21682 110474 -1 2428 17 1540 2262 205281 43246 3.74877 3.74877 -142.669 -3.74877 0 0 585099. 2024.56 1.02 0.02 0.20 -1 -1 1.02 0.00616166 0.00552918 144 90 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 12.89 vpr 63.76 MiB -1 -1 0.63 21432 1 0.03 -1 -1 33144 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65292 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 25.2 MiB 0.64 838 12464 4352 6338 1774 63.8 MiB 0.20 0.00 3.54047 -123.895 -3.54047 3.54047 2.65 0.000177827 0.000142299 0.014836 0.0120821 30 1801 21 6.65987e+06 202848 526063. 1820.29 2.64 0.146909 0.139396 22546 126617 -1 1561 17 1049 1497 77220 22366 3.01617 3.01617 -121.021 -3.01617 0 0 666494. 2306.21 0.84 0.08 0.18 -1 -1 0.84 0.010939 0.00983523 115 96 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 13.75 vpr 64.02 MiB -1 -1 0.38 21280 1 0.16 -1 -1 33968 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65552 32 32 360 293 1 179 95 17 17 289 -1 unnamed_device 25.4 MiB 1.19 989 16079 4722 9035 2322 64.0 MiB 0.36 0.00 4.19332 -128.751 -4.19332 4.19332 2.52 0.000176067 0.000141488 0.0151648 0.0123052 32 2303 20 6.65987e+06 393018 554710. 1919.41 2.53 0.0401984 0.0337846 22834 132086 -1 1944 20 1024 1476 102935 24438 3.08031 3.08031 -112.745 -3.08031 0 0 701300. 2426.64 1.05 0.14 0.32 -1 -1 1.05 0.118487 0.0114678 130 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 17.79 vpr 63.93 MiB -1 -1 0.39 21432 1 0.02 -1 -1 33532 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65460 32 32 396 299 1 236 89 17 17 289 -1 unnamed_device 25.7 MiB 1.11 1359 11969 3395 7471 1103 63.9 MiB 0.25 0.00 6.16929 -186.366 -6.16929 6.16929 2.26 0.000209854 0.000173789 0.0107131 0.00882311 30 3043 24 6.65987e+06 316950 526063. 1820.29 2.94 0.161378 0.15445 22546 126617 -1 2616 22 1610 2379 143134 33077 4.59557 4.59557 -159.022 -4.59557 0 0 666494. 2306.21 0.92 0.17 0.15 -1 -1 0.92 0.0171735 0.0155679 168 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 12.43 vpr 63.34 MiB -1 -1 0.34 20976 1 0.03 -1 -1 33880 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64856 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 24.6 MiB 0.43 745 7177 1689 4856 632 63.3 MiB 0.05 0.00 3.31307 -103.404 -3.31307 3.31307 2.75 0.00012233 9.5761e-05 0.00610153 0.00491755 32 1675 19 6.65987e+06 215526 554710. 1919.41 2.39 0.179699 0.175286 22834 132086 -1 1453 19 628 782 64696 14673 2.39717 2.39717 -94.6099 -2.39717 0 0 701300. 2426.64 1.01 0.02 0.38 -1 -1 1.01 0.00765598 0.00676983 86 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 12.08 vpr 63.59 MiB -1 -1 0.44 21128 1 0.11 -1 -1 33868 -1 -1 16 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65112 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 24.9 MiB 0.35 650 12030 3133 7171 1726 63.6 MiB 0.26 0.00 4.01089 -115.329 -4.01089 4.01089 2.52 0.00014927 0.000119813 0.00743115 0.00584523 30 1505 18 6.65987e+06 202848 526063. 1820.29 2.52 0.0902766 0.0283283 22546 126617 -1 1346 15 670 1074 59031 14593 2.86577 2.86577 -104.259 -2.86577 0 0 666494. 2306.21 0.86 0.03 0.29 -1 -1 0.86 0.00968039 0.00871673 92 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 25.17 vpr 63.55 MiB -1 -1 0.15 21128 1 0.13 -1 -1 33884 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65080 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 25.1 MiB 0.33 882 9385 2433 6375 577 63.6 MiB 0.13 0.00 3.38183 -110.848 -3.38183 3.38183 2.40 0.000159156 0.000127222 0.086645 0.0848959 26 2437 26 6.65987e+06 266238 477104. 1650.88 3.90 0.174048 0.167893 21682 110474 -1 2088 20 1280 2284 187869 41747 2.89185 2.89185 -114.796 -2.89185 0 0 585099. 2024.56 0.64 0.15 0.21 -1 -1 0.64 0.0107937 0.00962254 115 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 25.54 vpr 63.29 MiB -1 -1 0.54 21128 1 0.11 -1 -1 33984 -1 -1 27 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64804 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 24.6 MiB 0.21 449 9966 3407 4404 2155 63.3 MiB 0.03 0.00 3.08755 -73.109 -3.08755 3.08755 2.81 4.9934e-05 3.8314e-05 0.00353064 0.0027907 30 1370 31 6.65987e+06 342306 526063. 1820.29 2.95 0.0242532 0.0200155 22546 126617 -1 1021 19 627 1055 55046 15357 2.58539 2.58539 -70.2122 -2.58539 0 0 666494. 2306.21 0.80 0.10 0.18 -1 -1 0.80 0.00815162 0.00717133 89 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 24.70 vpr 63.96 MiB -1 -1 0.47 21432 1 0.03 -1 -1 33708 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65496 32 32 376 307 1 185 84 17 17 289 -1 unnamed_device 25.2 MiB 1.01 1061 14724 4524 7950 2250 64.0 MiB 0.32 0.00 3.87115 -126.135 -3.87115 3.87115 2.43 0.000186387 0.000149318 0.0884326 0.085274 32 2737 23 6.65987e+06 253560 554710. 1919.41 2.76 0.203996 0.174324 22834 132086 -1 2306 23 1516 2740 212466 46393 3.42705 3.42705 -123.927 -3.42705 0 0 701300. 2426.64 0.90 0.15 0.21 -1 -1 0.90 0.0143289 0.0127044 135 72 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 16.44 vpr 64.05 MiB -1 -1 0.63 21280 1 0.07 -1 -1 33752 -1 -1 33 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65592 31 32 409 331 1 191 96 17 17 289 -1 unnamed_device 25.4 MiB 1.18 975 9075 1909 6647 519 64.1 MiB 0.28 0.00 4.32075 -139.498 -4.32075 4.32075 2.34 0.000183343 0.000146694 0.0104796 0.00864093 32 2278 20 6.65987e+06 418374 554710. 1919.41 2.33 0.0411834 0.0344837 22834 132086 -1 2040 20 1370 2126 149262 34342 3.08137 3.08137 -121.829 -3.08137 0 0 701300. 2426.64 1.20 0.14 0.60 -1 -1 1.20 0.0126774 0.0112057 142 90 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 25.09 vpr 64.76 MiB -1 -1 0.57 21584 1 0.38 -1 -1 33184 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66312 32 32 354 285 1 193 77 17 17 289 -1 unnamed_device 26.1 MiB 7.38 826 9531 3925 5345 261 64.8 MiB 0.13 0.00 5.4415 -158.508 -5.4415 5.4415 2.14 0.000180317 0.00014595 0.0612286 0.0590642 46 2558 41 6.95648e+06 188184 828058. 2865.25 7.88 0.313944 0.303477 28066 200906 -1 1864 24 1375 2137 175286 37772 4.36336 4.36336 -146.028 -4.36336 0 0 1.01997e+06 3529.29 1.23 0.21 0.35 -1 -1 1.23 0.00923027 0.0083153 81 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 34.44 vpr 64.59 MiB -1 -1 0.50 21280 1 0.04 -1 -1 33548 -1 -1 15 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66144 30 32 363 293 1 189 77 17 17 289 -1 unnamed_device 26.0 MiB 8.16 821 11487 4767 6319 401 64.6 MiB 0.19 0.00 4.63327 -139.023 -4.63327 4.63327 2.09 0.000204531 0.000167679 0.0134104 0.0109708 36 3133 47 6.95648e+06 217135 648988. 2245.63 16.04 0.120418 0.108607 26050 158493 -1 2274 24 2149 3039 368868 87190 4.58011 4.58011 -154.102 -4.58011 0 0 828058. 2865.25 0.78 0.35 0.44 -1 -1 0.78 0.0142113 0.0124625 80 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 29.97 vpr 64.55 MiB -1 -1 0.32 21432 1 0.07 -1 -1 33860 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66096 32 32 299 247 1 182 79 17 17 289 -1 unnamed_device 25.9 MiB 3.73 882 10726 4435 6115 176 64.5 MiB 0.13 0.00 3.82865 -122.325 -3.82865 3.82865 2.49 0.000220885 0.000186015 0.0119326 0.00964756 36 3082 32 6.95648e+06 217135 648988. 2245.63 16.47 0.357448 0.267405 26050 158493 -1 2213 21 1512 2041 243216 57764 4.14272 4.14272 -134.304 -4.14272 0 0 828058. 2865.25 0.91 0.36 0.23 -1 -1 0.91 0.0123253 0.0110278 76 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 32.54 vpr 64.52 MiB -1 -1 0.48 21280 1 0.20 -1 -1 33820 -1 -1 19 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66072 29 32 308 248 1 162 80 17 17 289 -1 unnamed_device 25.8 MiB 0.94 723 14356 5004 7145 2207 64.5 MiB 0.08 0.00 4.16078 -115.782 -4.16078 4.16078 2.41 0.000166705 0.000133671 0.0153969 0.0125432 40 1885 36 6.95648e+06 275038 706193. 2443.58 21.83 0.104445 0.0865984 26914 176310 -1 1616 30 1780 3002 329535 137320 3.83102 3.83102 -121.913 -3.83102 0 0 926341. 3205.33 1.05 0.19 0.28 -1 -1 1.05 0.0152318 0.0134246 71 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 23.90 vpr 64.67 MiB -1 -1 0.64 21432 1 0.08 -1 -1 33556 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66220 32 32 336 268 1 172 80 17 17 289 -1 unnamed_device 25.9 MiB 2.64 749 12292 4613 5164 2515 64.7 MiB 0.26 0.18 4.40715 -128.632 -4.40715 4.40715 2.11 7.1844e-05 5.5048e-05 0.00881126 0.00720305 46 2451 40 6.95648e+06 231611 828058. 2865.25 10.32 0.213437 0.203084 28066 200906 -1 1909 25 1380 2352 186265 40919 4.82586 4.82586 -139.578 -4.82586 0 0 1.01997e+06 3529.29 1.28 0.25 0.22 -1 -1 1.28 0.0627553 0.0615462 73 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 26.86 vpr 64.57 MiB -1 -1 0.40 21584 1 0.10 -1 -1 33696 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66124 32 32 366 295 1 182 85 17 17 289 -1 unnamed_device 25.9 MiB 3.08 768 12919 4485 6787 1647 64.6 MiB 0.16 0.01 3.0405 -113.87 -3.0405 3.0405 2.51 8.1882e-05 6.2273e-05 0.122687 0.120591 40 2304 25 6.95648e+06 303989 706193. 2443.58 6.37 0.357985 0.339446 26914 176310 -1 1976 19 1426 2147 191264 42628 3.78697 3.78697 -130.119 -3.78697 0 0 926341. 3205.33 1.24 0.12 0.35 -1 -1 1.24 0.0122775 0.0109902 79 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 31.61 vpr 63.91 MiB -1 -1 0.54 21128 1 0.01 -1 -1 33872 -1 -1 13 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65448 27 32 259 221 1 125 72 17 17 289 -1 unnamed_device 25.5 MiB 15.21 452 7969 3251 4260 458 63.9 MiB 0.03 0.00 3.56899 -94.1044 -3.56899 3.56899 2.44 0.000144858 0.000115729 0.00855758 0.00687269 36 1895 42 6.95648e+06 188184 648988. 2245.63 6.14 0.177575 0.168428 26050 158493 -1 1338 20 954 1459 126832 28456 3.21632 3.21632 -99.4111 -3.21632 0 0 828058. 2865.25 0.83 0.07 0.58 -1 -1 0.83 0.00961939 0.00840181 52 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 40.15 vpr 64.43 MiB -1 -1 0.33 21128 1 0.03 -1 -1 33712 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65972 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 25.8 MiB 1.35 666 12373 5100 6745 528 64.4 MiB 0.13 0.00 2.8601 -92.4221 -2.8601 2.8601 2.52 0.000232638 0.000194624 0.0436426 0.041499 38 2312 48 6.95648e+06 361892 678818. 2348.85 29.62 0.414307 0.324809 26626 170182 -1 1628 23 1279 2033 177106 42350 2.89252 2.89252 -101.096 -2.89252 0 0 902133. 3121.57 1.45 0.11 0.25 -1 -1 1.45 0.049976 0.0486464 69 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 23.61 vpr 64.17 MiB -1 -1 0.60 21584 1 0.20 -1 -1 33572 -1 -1 11 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65708 31 32 317 271 1 163 74 17 17 289 -1 unnamed_device 25.6 MiB 6.29 588 11234 4630 5959 645 64.2 MiB 0.15 0.00 3.43049 -116.456 -3.43049 3.43049 2.55 0.000149637 0.000117562 0.0126001 0.0101894 46 2204 40 6.95648e+06 159232 828058. 2865.25 6.40 0.0592473 0.048775 28066 200906 -1 1658 32 1457 2042 213244 64863 3.83306 3.83306 -128.52 -3.83306 0 0 1.01997e+06 3529.29 1.05 0.19 0.45 -1 -1 1.05 0.015197 0.0133318 66 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 19.02 vpr 64.37 MiB -1 -1 0.41 21280 1 0.03 -1 -1 33676 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65912 32 32 298 248 1 150 74 17 17 289 -1 unnamed_device 25.8 MiB 3.24 622 12629 5382 6987 260 64.4 MiB 0.13 0.00 3.30928 -114.751 -3.30928 3.30928 2.42 6.7812e-05 5.1403e-05 0.00817798 0.00646188 40 1847 26 6.95648e+06 144757 706193. 2443.58 5.70 0.0484958 0.0402336 26914 176310 -1 1509 18 1189 1666 138391 31163 3.20912 3.20912 -122.324 -3.20912 0 0 926341. 3205.33 1.00 0.17 0.42 -1 -1 1.00 0.00941837 0.00888705 59 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 21.31 vpr 64.35 MiB -1 -1 0.61 21128 1 0.19 -1 -1 33884 -1 -1 12 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65896 30 32 303 262 1 137 74 17 17 289 -1 unnamed_device 25.8 MiB 5.89 475 7824 3190 4249 385 64.4 MiB 0.19 0.00 3.43453 -102.36 -3.43453 3.43453 2.93 0.000242563 0.000205191 0.00899468 0.00733942 40 1597 27 6.95648e+06 173708 706193. 2443.58 5.11 0.11901 0.109945 26914 176310 -1 1395 25 1356 1880 165541 41571 3.47207 3.47207 -115.711 -3.47207 0 0 926341. 3205.33 0.97 0.31 0.38 -1 -1 0.97 0.077944 0.0764055 55 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 22.90 vpr 64.18 MiB -1 -1 0.48 21280 1 0.09 -1 -1 33712 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65716 32 32 276 237 1 160 74 17 17 289 -1 unnamed_device 25.6 MiB 4.51 640 8444 2709 4034 1701 64.2 MiB 0.04 0.00 3.41669 -115.288 -3.41669 3.41669 2.53 0.000135629 0.000106622 0.0106531 0.00865147 52 1767 33 6.95648e+06 144757 926341. 3205.33 6.90 0.0570838 0.0479341 29218 227130 -1 978 18 1011 1371 90377 24634 2.82377 2.82377 -99.8991 -2.82377 0 0 1.14541e+06 3963.36 1.29 0.13 0.47 -1 -1 1.29 0.112195 0.111101 62 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 26.60 vpr 64.56 MiB -1 -1 0.46 21128 1 0.09 -1 -1 33788 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66112 32 32 344 272 1 194 79 17 17 289 -1 unnamed_device 26.1 MiB 5.80 907 12247 3271 6962 2014 64.6 MiB 0.16 0.00 3.99843 -134.014 -3.99843 3.99843 2.78 0.000165649 0.00013291 0.115179 0.112516 38 2914 28 6.95648e+06 217135 678818. 2348.85 10.94 0.557115 0.46064 26626 170182 -1 2409 22 1853 2752 277052 55830 3.59291 3.59291 -134.501 -3.59291 0 0 902133. 3121.57 0.94 0.07 0.30 -1 -1 0.94 0.0130812 0.0116587 83 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 21.38 vpr 64.63 MiB -1 -1 0.37 21128 1 0.23 -1 -1 33976 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66180 32 32 363 295 1 174 86 17 17 289 -1 unnamed_device 25.9 MiB 2.39 823 10481 3378 5508 1595 64.6 MiB 0.26 0.00 4.48063 -137.796 -4.48063 4.48063 2.56 0.000165179 0.000131776 0.20283 0.00982467 38 2478 41 6.95648e+06 318465 678818. 2348.85 8.13 0.256258 0.0550947 26626 170182 -1 2026 19 1645 2369 215964 44090 4.00306 4.00306 -139.217 -4.00306 0 0 902133. 3121.57 1.14 0.16 0.33 -1 -1 1.14 0.0107719 0.00936293 75 61 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 20.67 vpr 64.16 MiB -1 -1 0.44 21432 1 0.05 -1 -1 33736 -1 -1 13 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 29 32 248 215 1 136 74 17 17 289 -1 unnamed_device 25.5 MiB 4.44 466 9684 3088 4807 1789 64.2 MiB 0.10 0.00 3.10275 -86.0877 -3.10275 3.10275 2.42 0.000117362 9.0968e-05 0.0473277 0.00810297 48 1267 42 6.95648e+06 188184 865456. 2994.66 6.01 0.0868663 0.0413431 28354 207349 -1 949 21 918 1382 105309 27477 2.94567 2.94567 -87.636 -2.94567 0 0 1.05005e+06 3633.38 1.19 0.05 0.37 -1 -1 1.19 0.00665505 0.00599003 55 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 44.89 vpr 64.66 MiB -1 -1 0.34 21280 1 0.18 -1 -1 33720 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66208 32 32 370 297 1 180 81 17 17 289 -1 unnamed_device 25.9 MiB 3.18 788 12681 5030 6764 887 64.7 MiB 0.28 0.10 3.0625 -114.371 -3.0625 3.0625 2.48 0.000172068 0.00013778 0.0688953 0.0659391 38 2632 33 6.95648e+06 246087 678818. 2348.85 32.17 0.48551 0.463963 26626 170182 -1 1938 25 1671 2610 207508 44448 3.38287 3.38287 -123.234 -3.38287 0 0 902133. 3121.57 1.04 0.24 0.33 -1 -1 1.04 0.0144955 0.0128404 76 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 23.87 vpr 64.56 MiB -1 -1 0.37 21584 1 0.03 -1 -1 33880 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66108 32 32 338 269 1 190 78 17 17 289 -1 unnamed_device 26.1 MiB 6.56 836 12528 5339 6666 523 64.6 MiB 0.45 0.00 4.46486 -139.906 -4.46486 4.46486 2.48 0.000159486 0.000127006 0.196689 0.193984 44 2451 47 6.95648e+06 202660 787024. 2723.27 7.02 0.369094 0.358193 27778 195446 -1 1678 19 1355 1818 134378 32319 3.59822 3.59822 -129.567 -3.59822 0 0 997811. 3452.63 0.85 0.23 0.26 -1 -1 0.85 0.0127178 0.0113932 79 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 37.69 vpr 64.27 MiB -1 -1 0.47 21280 1 0.15 -1 -1 33808 -1 -1 9 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65808 32 32 323 276 1 148 73 17 17 289 -1 unnamed_device 25.6 MiB 2.46 745 11777 4928 6289 560 64.3 MiB 0.17 0.00 2.28966 -95.4694 -2.28966 2.28966 2.30 0.000140264 0.000109957 0.131127 0.12827 36 2331 29 6.95648e+06 130281 648988. 2245.63 25.17 0.212364 0.195612 26050 158493 -1 1870 17 1174 1670 160724 31643 2.42898 2.42898 -107.619 -2.42898 0 0 828058. 2865.25 0.89 0.10 0.29 -1 -1 0.89 0.0740403 0.0729673 57 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 17.05 vpr 63.99 MiB -1 -1 0.44 21128 1 0.19 -1 -1 33540 -1 -1 10 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65524 30 32 222 206 1 116 72 17 17 289 -1 unnamed_device 25.3 MiB 0.91 461 10800 4629 5825 346 64.0 MiB 0.37 0.00 2.11601 -78.0433 -2.11601 2.11601 2.61 0.000106602 8.1517e-05 0.00983435 0.00780334 38 1429 35 6.95648e+06 144757 678818. 2348.85 5.53 0.0829316 0.074829 26626 170182 -1 1159 17 708 909 84578 18680 2.16688 2.16688 -81.8115 -2.16688 0 0 902133. 3121.57 0.95 0.02 0.23 -1 -1 0.95 0.00639601 0.00555174 44 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 27.30 vpr 64.47 MiB -1 -1 0.65 20976 1 0.11 -1 -1 33804 -1 -1 12 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66016 31 32 291 243 1 169 75 17 17 289 -1 unnamed_device 25.8 MiB 7.10 789 10187 2387 7192 608 64.5 MiB 0.13 0.00 4.13347 -134.928 -4.13347 4.13347 2.65 0.000155963 0.000125349 0.0120821 0.0099426 36 2600 48 6.95648e+06 173708 648988. 2245.63 9.38 0.177826 0.167833 26050 158493 -1 2040 22 1576 2124 222393 44934 4.05342 4.05342 -147.633 -4.05342 0 0 828058. 2865.25 1.09 0.15 0.36 -1 -1 1.09 0.00826646 0.00741969 69 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 22.59 vpr 64.70 MiB -1 -1 0.36 21584 1 0.02 -1 -1 33820 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66248 32 32 342 271 1 173 84 17 17 289 -1 unnamed_device 25.9 MiB 2.39 652 8868 3175 4368 1325 64.7 MiB 0.04 0.00 3.70824 -121.183 -3.70824 3.70824 2.22 0.000158029 0.000123789 0.0102702 0.00840471 46 2246 43 6.95648e+06 289514 828058. 2865.25 9.71 0.0818489 0.0712013 28066 200906 -1 1724 30 2028 2774 205603 48578 4.01126 4.01126 -132.855 -4.01126 0 0 1.01997e+06 3529.29 1.21 0.17 0.43 -1 -1 1.21 0.0159063 0.0140205 75 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 25.27 vpr 64.63 MiB -1 -1 0.53 21584 1 0.14 -1 -1 33632 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66184 32 32 372 300 1 197 78 17 17 289 -1 unnamed_device 26.1 MiB 4.90 828 13358 4005 7022 2331 64.6 MiB 0.21 0.00 4.7576 -136.611 -4.7576 4.7576 2.47 0.00019075 0.000153746 0.0167678 0.0136792 46 2529 29 6.95648e+06 202660 828058. 2865.25 9.94 0.103514 0.0930369 28066 200906 -1 1954 20 1551 2353 192336 41457 4.16201 4.16201 -134.339 -4.16201 0 0 1.01997e+06 3529.29 1.20 0.17 0.17 -1 -1 1.20 0.0102099 0.00907183 82 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 18.75 vpr 63.87 MiB -1 -1 0.64 21280 1 0.06 -1 -1 34128 -1 -1 13 26 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65404 26 32 190 182 1 104 71 17 17 289 -1 unnamed_device 25.2 MiB 2.71 312 9123 3811 4732 580 63.9 MiB 0.07 0.00 2.23646 -64.5107 -2.23646 2.23646 2.56 0.000136556 0.00010735 0.0076873 0.0059746 36 1287 42 6.95648e+06 188184 648988. 2245.63 5.19 0.0414417 0.0335937 26050 158493 -1 865 30 747 960 78704 19119 2.17168 2.17168 -71.8012 -2.17168 0 0 828058. 2865.25 1.05 0.03 0.45 -1 -1 1.05 0.0088907 0.00765066 44 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 22.39 vpr 64.44 MiB -1 -1 0.32 21432 1 0.03 -1 -1 33720 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65988 32 32 285 227 1 161 79 17 17 289 -1 unnamed_device 25.8 MiB 2.57 670 9543 3158 4645 1740 64.4 MiB 0.22 0.00 4.56626 -117.382 -4.56626 4.56626 2.61 7.089e-05 5.5352e-05 0.0106636 0.00868512 40 2631 34 6.95648e+06 217135 706193. 2443.58 8.91 0.0563683 0.047137 26914 176310 -1 1821 23 1440 2382 253237 57325 3.93516 3.93516 -131.834 -3.93516 0 0 926341. 3205.33 1.13 0.24 0.40 -1 -1 1.13 0.0121237 0.0106759 66 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 14.92 vpr 63.79 MiB -1 -1 0.34 20976 1 0.03 -1 -1 33628 -1 -1 8 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65324 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 25.2 MiB 0.83 434 9906 4167 5580 159 63.8 MiB 0.14 0.00 2.18446 -71.1933 -2.18446 2.18446 2.79 5.5202e-05 4.2717e-05 0.00489006 0.0037573 36 1117 24 6.95648e+06 115805 648988. 2245.63 3.79 0.0349974 0.0288713 26050 158493 -1 914 20 568 625 52661 12124 1.91188 1.91188 -72.1751 -1.91188 0 0 828058. 2865.25 1.21 0.02 0.52 -1 -1 1.21 0.00704261 0.00616133 42 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 23.51 vpr 64.49 MiB -1 -1 0.28 21280 1 0.08 -1 -1 33792 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66040 32 32 300 245 1 165 79 17 17 289 -1 unnamed_device 25.8 MiB 3.64 867 11740 4903 6637 200 64.5 MiB 0.15 0.00 4.50901 -127.321 -4.50901 4.50901 2.63 0.000152088 0.000118774 0.110916 0.108515 38 2433 43 6.95648e+06 217135 678818. 2348.85 9.56 0.161006 0.150691 26626 170182 -1 2061 21 1344 2103 203584 42173 3.50821 3.50821 -121.072 -3.50821 0 0 902133. 3121.57 0.84 0.10 0.26 -1 -1 0.84 0.0737198 0.0727076 68 24 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 20.86 vpr 64.52 MiB -1 -1 0.53 21280 1 0.02 -1 -1 33952 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66072 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 25.8 MiB 1.99 667 11989 4568 6203 1218 64.5 MiB 0.23 0.00 2.9573 -100.172 -2.9573 2.9573 2.53 0.000158547 0.000125065 0.0124529 0.0101261 46 1956 39 6.95648e+06 303989 828058. 2865.25 7.71 0.312686 0.200505 28066 200906 -1 1567 21 1225 1860 150608 36284 3.07617 3.07617 -107.856 -3.07617 0 0 1.01997e+06 3529.29 1.38 0.05 0.54 -1 -1 1.38 0.167538 0.166194 74 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 25.78 vpr 64.59 MiB -1 -1 0.45 21432 1 0.07 -1 -1 33660 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66144 32 32 338 277 1 172 83 17 17 289 -1 unnamed_device 25.9 MiB 2.51 817 10883 3081 7234 568 64.6 MiB 0.18 0.00 4.37923 -132.214 -4.37923 4.37923 2.34 0.000176878 0.000143696 0.0122121 0.0100259 38 2588 35 6.95648e+06 275038 678818. 2348.85 12.83 0.146318 0.0557197 26626 170182 -1 2061 22 1377 2142 194126 40526 4.13167 4.13167 -140.107 -4.13167 0 0 902133. 3121.57 1.01 0.26 0.39 -1 -1 1.01 0.102189 0.100666 72 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 20.71 vpr 64.27 MiB -1 -1 0.40 21280 1 0.17 -1 -1 33844 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65808 32 32 284 241 1 141 74 17 17 289 -1 unnamed_device 25.8 MiB 3.52 798 12319 4066 7178 1075 64.3 MiB 0.05 0.00 3.08875 -102.281 -3.08875 3.08875 2.78 0.000142028 0.000113032 0.00655544 0.00523641 38 2055 46 6.95648e+06 144757 678818. 2348.85 6.89 0.0540326 0.0451438 26626 170182 -1 1743 18 923 1401 116130 24584 2.88052 2.88052 -112.119 -2.88052 0 0 902133. 3121.57 0.96 0.36 0.36 -1 -1 0.96 0.127999 0.126763 55 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 22.40 vpr 64.08 MiB -1 -1 0.51 21432 1 0.06 -1 -1 33740 -1 -1 18 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65616 30 32 262 227 1 134 80 17 17 289 -1 unnamed_device 25.6 MiB 0.74 474 11260 3904 5427 1929 64.1 MiB 0.06 0.00 3.37953 -95.4258 -3.37953 3.37953 2.82 0.000147132 0.000105437 0.0281887 0.00854093 38 1685 40 6.95648e+06 260562 678818. 2348.85 10.03 0.151065 0.124137 26626 170182 -1 1269 21 1067 1427 140250 39315 2.97382 2.97382 -103.174 -2.97382 0 0 902133. 3121.57 1.15 0.24 0.51 -1 -1 1.15 0.00588751 0.00525448 57 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 20.58 vpr 64.20 MiB -1 -1 0.44 21128 1 0.09 -1 -1 33396 -1 -1 16 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65740 28 32 260 223 1 135 76 17 17 289 -1 unnamed_device 25.5 MiB 1.64 458 9196 2843 4647 1706 64.2 MiB 0.22 0.00 2.9532 -87.9712 -2.9532 2.9532 2.63 5.8546e-05 4.4221e-05 0.00976214 0.00781364 54 1159 22 6.95648e+06 231611 949917. 3286.91 6.90 0.0449387 0.0373362 29506 232905 -1 921 22 926 1480 101208 26110 2.93352 2.93352 -89.9663 -2.93352 0 0 1.17392e+06 4061.99 1.53 0.13 0.63 -1 -1 1.53 0.10735 0.106163 57 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 18.21 vpr 64.07 MiB -1 -1 0.35 21128 1 0.05 -1 -1 33708 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65604 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 25.6 MiB 1.56 491 8909 2630 4401 1878 64.1 MiB 0.16 0.00 3.37459 -106.492 -3.37459 3.37459 2.60 0.000130557 0.000101862 0.00949738 0.00770588 48 1553 41 6.95648e+06 144757 865456. 2994.66 6.10 0.253138 0.244497 28354 207349 -1 1197 22 1177 1684 149056 37525 3.21832 3.21832 -105.301 -3.21832 0 0 1.05005e+06 3633.38 1.31 0.04 0.45 -1 -1 1.31 0.0100224 0.00887651 58 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 21.71 vpr 64.23 MiB -1 -1 0.45 21128 1 0.02 -1 -1 33740 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65768 31 32 271 231 1 143 82 17 17 289 -1 unnamed_device 25.6 MiB 1.31 560 10050 4028 5496 526 64.2 MiB 0.09 0.00 3.19914 -99.6907 -3.19914 3.19914 2.76 0.000142968 0.000110602 0.00968266 0.00779378 42 2029 39 6.95648e+06 275038 744469. 2576.02 9.31 0.0536588 0.044824 27202 183097 -1 1449 20 1049 1599 141420 34038 2.77822 2.77822 -104.021 -2.77822 0 0 949917. 3286.91 0.94 0.24 0.41 -1 -1 0.94 0.0104231 0.00904372 61 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 21.27 vpr 64.34 MiB -1 -1 0.47 21432 1 0.13 -1 -1 33688 -1 -1 12 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65880 29 32 291 250 1 148 73 17 17 289 -1 unnamed_device 25.8 MiB 3.48 629 12233 5311 6328 594 64.3 MiB 0.35 0.00 3.03504 -103.283 -3.03504 3.03504 2.05 0.00014329 0.000113544 0.0134909 0.0108263 38 1951 30 6.95648e+06 173708 678818. 2348.85 8.66 0.164407 0.154074 26626 170182 -1 1437 20 1083 1454 106865 25564 2.96967 2.96967 -101.685 -2.96967 0 0 902133. 3121.57 1.10 0.02 0.22 -1 -1 1.10 0.00537695 0.0046934 61 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 29.92 vpr 64.82 MiB -1 -1 0.42 21432 1 0.02 -1 -1 33996 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66376 32 32 367 282 1 193 85 17 17 289 -1 unnamed_device 26.1 MiB 2.46 844 13477 4316 6348 2813 64.8 MiB 0.20 0.00 4.03548 -120.669 -4.03548 4.03548 2.31 8.2212e-05 6.3991e-05 0.0164757 0.0133736 38 3134 34 6.95648e+06 303989 678818. 2348.85 17.14 0.264644 0.252153 26626 170182 -1 2244 21 1609 2583 195045 43801 4.59892 4.59892 -133.905 -4.59892 0 0 902133. 3121.57 1.05 0.15 0.40 -1 -1 1.05 0.0132456 0.0118186 84 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 22.66 vpr 64.87 MiB -1 -1 0.39 21432 1 0.47 -1 -1 33868 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66428 32 32 391 311 1 184 88 17 17 289 -1 unnamed_device 26.1 MiB 2.91 735 14323 5482 6766 2075 64.9 MiB 0.17 0.00 3.31218 -116.99 -3.31218 3.31218 2.23 0.000185914 0.000144723 0.0176493 0.0142119 40 2593 40 6.95648e+06 347416 706193. 2443.58 9.88 0.191064 0.178748 26914 176310 -1 2187 24 2015 2867 290162 67024 3.44687 3.44687 -133.822 -3.44687 0 0 926341. 3205.33 0.98 0.18 0.45 -1 -1 0.98 0.0159455 0.0141762 82 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 25.13 vpr 64.09 MiB -1 -1 0.43 21128 1 0.12 -1 -1 33540 -1 -1 11 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65624 31 32 279 237 1 153 74 17 17 289 -1 unnamed_device 25.6 MiB 6.48 756 6739 2920 3620 199 64.1 MiB 0.13 0.00 4.04047 -128.247 -4.04047 4.04047 2.55 0.000142961 0.000111983 0.00777073 0.00628609 46 1804 26 6.95648e+06 159232 828058. 2865.25 7.51 0.366554 0.358671 28066 200906 -1 1574 24 1266 1712 177310 35097 3.68852 3.68852 -128.119 -3.68852 0 0 1.01997e+06 3529.29 1.14 0.14 0.49 -1 -1 1.14 0.0118565 0.0105354 63 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 20.74 vpr 64.77 MiB -1 -1 0.51 21584 1 0.23 -1 -1 33920 -1 -1 16 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66320 31 32 370 297 1 179 79 17 17 289 -1 unnamed_device 26.1 MiB 2.52 690 11233 3998 4949 2286 64.8 MiB 0.23 0.00 3.75886 -121.403 -3.75886 3.75886 2.62 0.000210014 0.00017189 0.014647 0.0120243 48 1910 44 6.95648e+06 231611 865456. 2994.66 7.10 0.10835 0.0626728 28354 207349 -1 1638 21 1439 2140 184840 44309 3.59617 3.59617 -123.904 -3.59617 0 0 1.05005e+06 3633.38 0.91 0.34 0.48 -1 -1 0.91 0.303923 0.302404 76 61 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 72.08 vpr 64.98 MiB -1 -1 0.43 21584 1 0.07 -1 -1 33672 -1 -1 16 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66540 31 32 377 302 1 225 79 17 17 289 -1 unnamed_device 26.2 MiB 6.78 951 13092 5540 7040 512 65.0 MiB 0.30 0.00 5.47516 -170.564 -5.47516 5.47516 2.34 0.000180667 0.000147712 0.016262 0.0133628 50 3027 43 6.95648e+06 231611 902133. 3121.57 54.88 0.496419 0.462103 28642 213929 -1 2459 21 2109 2977 337345 74279 5.3671 5.3671 -180.931 -5.3671 0 0 1.08113e+06 3740.92 1.13 0.29 0.49 -1 -1 1.13 0.132706 0.131131 97 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 35.88 vpr 64.88 MiB -1 -1 0.51 21736 1 0.23 -1 -1 33820 -1 -1 16 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66432 31 32 383 305 1 204 79 17 17 289 -1 unnamed_device 26.2 MiB 7.53 988 12754 4743 6080 1931 64.9 MiB 0.06 0.00 4.52202 -151.727 -4.52202 4.52202 2.32 0.000175381 0.000138478 0.0167621 0.0135621 36 3260 45 6.95648e+06 231611 648988. 2245.63 18.73 0.254401 0.241887 26050 158493 -1 2569 23 1984 2847 285723 56649 4.6114 4.6114 -162.122 -4.6114 0 0 828058. 2865.25 1.03 0.23 0.29 -1 -1 1.03 0.185308 0.183703 88 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 21.60 vpr 64.73 MiB -1 -1 0.40 21128 1 0.02 -1 -1 33812 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66280 31 32 352 285 1 177 85 17 17 289 -1 unnamed_device 26.1 MiB 3.24 777 14407 6123 7723 561 64.7 MiB 0.19 0.00 4.10748 -131.173 -4.10748 4.10748 2.20 0.000168737 0.000133504 0.0169845 0.0139415 50 2244 23 6.95648e+06 318465 902133. 3121.57 7.89 0.296209 0.285479 28642 213929 -1 1928 21 1292 1970 189186 39775 3.52322 3.52322 -125.888 -3.52322 0 0 1.08113e+06 3740.92 1.29 0.20 0.62 -1 -1 1.29 0.160392 0.158993 78 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 21.48 vpr 64.49 MiB -1 -1 0.32 21128 1 0.03 -1 -1 33452 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66040 32 32 291 242 1 173 78 17 17 289 -1 unnamed_device 25.8 MiB 4.23 772 10868 4143 4479 2246 64.5 MiB 0.09 0.00 4.03548 -115.263 -4.03548 4.03548 2.40 0.000140989 0.00011091 0.0114346 0.00923956 42 2879 40 6.95648e+06 202660 744469. 2576.02 7.17 0.22384 0.213613 27202 183097 -1 2056 23 1476 2027 193966 42342 4.17091 4.17091 -126.506 -4.17091 0 0 949917. 3286.91 1.21 0.17 0.40 -1 -1 1.21 0.0120883 0.0107435 71 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 32.75 vpr 64.90 MiB -1 -1 0.49 21736 1 0.06 -1 -1 33896 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66456 32 32 457 356 1 214 86 17 17 289 -1 unnamed_device 26.5 MiB 5.35 911 12938 4611 6181 2146 64.9 MiB 0.17 0.00 4.71507 -155.232 -4.71507 4.71507 2.22 0.000213556 0.000171152 0.114525 0.056996 46 3479 48 6.95648e+06 318465 828058. 2865.25 16.74 0.246827 0.178145 28066 200906 -1 2153 22 1843 2680 173959 40264 4.75421 4.75421 -160.818 -4.75421 0 0 1.01997e+06 3529.29 1.28 0.17 0.53 -1 -1 1.28 0.0687434 0.0669762 93 87 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 19.52 vpr 64.23 MiB -1 -1 0.25 21280 1 0.11 -1 -1 33796 -1 -1 15 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65768 31 32 261 225 1 137 78 17 17 289 -1 unnamed_device 25.6 MiB 2.92 547 8876 3201 4413 1262 64.2 MiB 0.11 0.00 3.29541 -98.1825 -3.29541 3.29541 2.63 0.000136082 0.000107338 0.0919861 0.090564 36 1853 25 6.95648e+06 217135 648988. 2245.63 6.34 0.465119 0.287536 26050 158493 -1 1398 20 999 1450 112276 25564 3.34072 3.34072 -106.44 -3.34072 0 0 828058. 2865.25 1.04 0.11 0.28 -1 -1 1.04 0.0834428 0.0823263 56 28 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 21.85 vpr 64.53 MiB -1 -1 0.55 21280 1 0.14 -1 -1 33616 -1 -1 15 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66076 31 32 337 267 1 199 78 17 17 289 -1 unnamed_device 25.9 MiB 4.41 894 14520 6369 7601 550 64.5 MiB 0.27 0.00 5.06497 -151.796 -5.06497 5.06497 2.96 0.000160744 0.00012862 0.0878159 0.084695 48 2677 22 6.95648e+06 217135 865456. 2994.66 6.47 0.313239 0.30327 28354 207349 -1 2173 23 1484 2113 186495 40122 4.75126 4.75126 -151.406 -4.75126 0 0 1.05005e+06 3633.38 1.18 0.06 0.37 -1 -1 1.18 0.0130294 0.0115917 84 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 22.91 vpr 64.69 MiB -1 -1 0.42 21584 1 0.17 -1 -1 33872 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66244 32 32 349 284 1 175 81 17 17 289 -1 unnamed_device 25.9 MiB 3.68 775 9181 3821 5035 325 64.7 MiB 0.15 0.00 3.20795 -111.611 -3.20795 3.20795 2.82 0.000184673 0.000150578 0.0111942 0.0090406 48 2346 24 6.95648e+06 246087 865456. 2994.66 8.00 0.45071 0.236101 28354 207349 -1 1949 22 1522 2444 236857 58133 3.30152 3.30152 -120.597 -3.30152 0 0 1.05005e+06 3633.38 1.32 0.13 0.50 -1 -1 1.32 0.0847944 0.0831365 73 53 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 21.13 vpr 64.49 MiB -1 -1 0.41 21280 1 0.06 -1 -1 33872 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66040 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 25.8 MiB 3.70 704 10744 4416 5915 413 64.5 MiB 0.02 0.00 4.49648 -123.271 -4.49648 4.49648 2.35 7.5646e-05 5.8969e-05 0.0054096 0.00436637 44 2256 33 6.95648e+06 231611 787024. 2723.27 6.32 0.0746261 0.067663 27778 195446 -1 1723 23 1279 2223 169514 37895 4.20871 4.20871 -130.003 -4.20871 0 0 997811. 3452.63 1.19 0.16 0.45 -1 -1 1.19 0.0110109 0.00969573 68 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 29.42 vpr 64.72 MiB -1 -1 0.55 21584 1 0.03 -1 -1 33660 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66272 32 32 353 287 1 185 78 17 17 289 -1 unnamed_device 26.1 MiB 8.58 756 9706 3472 4852 1382 64.7 MiB 0.46 0.00 4.40855 -135.153 -4.40855 4.40855 2.29 0.000162064 0.000128965 0.0122358 0.0100565 46 2655 50 6.95648e+06 202660 828058. 2865.25 10.36 0.261697 0.25051 28066 200906 -1 1947 22 1598 2149 169487 38892 3.72346 3.72346 -131.523 -3.72346 0 0 1.01997e+06 3529.29 1.08 0.21 0.35 -1 -1 1.08 0.0162515 0.0146633 78 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 30.05 vpr 64.75 MiB -1 -1 0.29 21280 1 0.03 -1 -1 33692 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66308 32 32 361 291 1 179 81 17 17 289 -1 unnamed_device 26.2 MiB 5.75 704 10581 3961 5357 1263 64.8 MiB 0.05 0.00 3.235 -113.84 -3.235 3.235 2.26 8.2e-05 6.3395e-05 0.00941343 0.00775223 46 2378 42 6.95648e+06 246087 828058. 2865.25 14.49 0.192493 0.181657 28066 200906 -1 1645 24 1607 2519 179902 42795 3.11217 3.11217 -112.864 -3.11217 0 0 1.01997e+06 3529.29 1.67 0.18 0.40 -1 -1 1.67 0.0139336 0.0123449 75 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 25.76 vpr 64.86 MiB -1 -1 0.35 21128 1 0.14 -1 -1 33540 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66412 32 32 382 305 1 184 90 17 17 289 -1 unnamed_device 26.1 MiB 3.08 773 14562 5644 6615 2303 64.9 MiB 0.08 0.00 4.29888 -138.783 -4.29888 4.29888 2.54 0.000244117 0.000202935 0.0161371 0.0132278 46 2580 45 6.95648e+06 376368 828058. 2865.25 12.15 0.351411 0.338914 28066 200906 -1 1915 24 1491 2210 174725 40106 3.59816 3.59816 -130.915 -3.59816 0 0 1.01997e+06 3529.29 1.11 0.22 0.27 -1 -1 1.11 0.0135474 0.0118346 83 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 22.34 vpr 64.39 MiB -1 -1 0.48 21432 1 0.06 -1 -1 33988 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65936 32 32 306 248 1 164 86 17 17 289 -1 unnamed_device 25.9 MiB 3.66 657 12749 3718 6154 2877 64.4 MiB 0.12 0.00 4.33949 -116.674 -4.33949 4.33949 2.69 0.000148146 0.000117958 0.0119211 0.00960856 44 2644 44 6.95648e+06 318465 787024. 2723.27 8.24 0.234144 0.223804 27778 195446 -1 1707 19 1197 1851 136613 33220 3.81066 3.81066 -121.672 -3.81066 0 0 997811. 3452.63 1.08 0.16 0.53 -1 -1 1.08 0.0107341 0.00954334 69 24 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 50.71 vpr 64.61 MiB -1 -1 0.79 21432 1 0.28 -1 -1 33936 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66164 32 32 319 257 1 191 77 17 17 289 -1 unnamed_device 25.9 MiB 9.50 755 11161 3299 5641 2221 64.6 MiB 0.23 0.00 4.21403 -126.931 -4.21403 4.21403 2.71 7.4662e-05 5.723e-05 0.215136 0.213398 48 1877 47 6.95648e+06 188184 865456. 2994.66 29.86 0.502974 0.382642 28354 207349 -1 1480 24 1603 2148 175864 45312 4.02842 4.02842 -127.258 -4.02842 0 0 1.05005e+06 3633.38 1.30 0.26 0.38 -1 -1 1.30 0.00950871 0.00864841 79 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 29.31 vpr 64.68 MiB -1 -1 0.76 21584 1 0.10 -1 -1 33724 -1 -1 15 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66228 31 32 373 299 1 194 78 17 17 289 -1 unnamed_device 26.1 MiB 4.19 798 12196 5085 6500 611 64.7 MiB 0.05 0.00 4.51577 -141.302 -4.51577 4.51577 2.88 0.000165923 0.00013048 0.0151022 0.0123217 50 2841 44 6.95648e+06 217135 902133. 3121.57 13.29 0.250632 0.0634794 28642 213929 -1 2084 21 1702 2688 263015 60779 4.12271 4.12271 -140.403 -4.12271 0 0 1.08113e+06 3740.92 1.12 0.27 0.41 -1 -1 1.12 0.0146224 0.0130904 85 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 27.58 vpr 64.66 MiB -1 -1 0.57 21584 1 0.02 -1 -1 33696 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66212 32 32 387 315 1 182 77 17 17 289 -1 unnamed_device 25.9 MiB 8.25 690 11813 3850 5742 2221 64.7 MiB 0.24 0.00 4.09452 -126.661 -4.09452 4.09452 2.73 7.7669e-05 6.0534e-05 0.0072616 0.00586672 56 2010 35 6.95648e+06 188184 973134. 3367.25 8.05 0.395351 0.29642 29794 239141 -1 1565 24 1655 2740 247244 69033 4.29002 4.29002 -129.692 -4.29002 0 0 1.19926e+06 4149.71 1.17 0.19 0.38 -1 -1 1.17 0.015418 0.013669 76 77 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 16.97 vpr 63.94 MiB -1 -1 0.36 21280 1 0.13 -1 -1 33556 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65476 32 32 251 219 1 136 82 17 17 289 -1 unnamed_device 25.5 MiB 0.64 504 11474 3617 5403 2454 63.9 MiB 0.13 0.00 3.14908 -93.1134 -3.14908 3.14908 2.19 0.000171849 0.000140917 0.0102481 0.00818877 44 1683 21 6.95648e+06 260562 787024. 2723.27 6.71 0.0465734 0.0386465 27778 195446 -1 1219 17 842 1222 94114 24359 2.94567 2.94567 -98.0108 -2.94567 0 0 997811. 3452.63 1.06 0.05 0.29 -1 -1 1.06 0.031839 0.0307792 57 23 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 23.90 vpr 64.68 MiB -1 -1 0.48 21280 1 0.07 -1 -1 33920 -1 -1 12 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66228 32 32 341 285 1 181 76 17 17 289 -1 unnamed_device 25.9 MiB 5.57 711 11916 5010 6585 321 64.7 MiB 0.15 0.00 3.75235 -135.897 -3.75235 3.75235 2.91 7.8991e-05 6.1368e-05 0.1273 0.125853 46 2052 24 6.95648e+06 173708 828058. 2865.25 7.01 0.223304 0.166056 28066 200906 -1 1721 20 1483 2090 167019 36124 3.45892 3.45892 -133.663 -3.45892 0 0 1.01997e+06 3529.29 1.46 0.11 0.39 -1 -1 1.46 0.0119142 0.0106725 76 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 27.39 vpr 64.71 MiB -1 -1 0.27 21432 1 0.14 -1 -1 33832 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66260 32 32 387 293 1 225 80 17 17 289 -1 unnamed_device 26.2 MiB 7.14 1199 14012 4660 7682 1670 64.7 MiB 0.45 0.00 4.91372 -159.538 -4.91372 4.91372 2.66 0.000181072 0.000145211 0.0191279 0.0158421 46 3151 21 6.95648e+06 231611 828058. 2865.25 9.30 0.196625 0.185068 28066 200906 -1 2670 24 2251 3456 277419 55404 4.64721 4.64721 -166.287 -4.64721 0 0 1.01997e+06 3529.29 1.11 0.35 0.45 -1 -1 1.11 0.0116863 0.0103946 97 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 25.64 vpr 64.39 MiB -1 -1 0.52 21584 1 0.03 -1 -1 33512 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65932 32 32 340 270 1 175 81 17 17 289 -1 unnamed_device 25.9 MiB 2.84 1033 10231 3254 5472 1505 64.4 MiB 0.34 0.00 4.59016 -151.92 -4.59016 4.59016 3.11 0.000163636 0.000131314 0.0123551 0.010147 36 2567 36 6.95648e+06 246087 648988. 2245.63 11.25 0.142227 0.131668 26050 158493 -1 2101 22 1460 1958 172883 34796 3.61822 3.61822 -144.487 -3.61822 0 0 828058. 2865.25 1.14 0.23 0.76 -1 -1 1.14 0.011179 0.00984238 74 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 21.74 vpr 64.16 MiB -1 -1 0.42 21128 1 0.02 -1 -1 33744 -1 -1 20 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 30 32 278 235 1 143 82 17 17 289 -1 unnamed_device 25.6 MiB 2.50 583 12008 4947 6630 431 64.2 MiB 0.19 0.00 2.944 -98.4118 -2.944 2.944 2.51 6.4978e-05 4.907e-05 0.00680389 0.00538636 38 2001 30 6.95648e+06 289514 678818. 2348.85 8.64 0.208696 0.201159 26626 170182 -1 1551 21 1156 1722 145132 32649 3.27952 3.27952 -110.436 -3.27952 0 0 902133. 3121.57 1.20 0.33 0.62 -1 -1 1.20 0.0101663 0.00899121 62 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 28.60 vpr 65.16 MiB -1 -1 0.69 21280 1 0.37 -1 -1 33884 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66720 32 32 431 332 1 224 79 17 17 289 -1 unnamed_device 26.4 MiB 5.28 1129 14782 6433 7988 361 65.2 MiB 0.33 0.07 5.84939 -174.305 -5.84939 5.84939 2.54 0.000189953 0.00015184 0.108803 0.10506 46 3159 27 6.95648e+06 217135 828058. 2865.25 10.52 0.50648 0.410851 28066 200906 -1 2667 25 2293 3415 432553 116380 5.4104 5.4104 -172.993 -5.4104 0 0 1.01997e+06 3529.29 1.57 0.28 0.37 -1 -1 1.57 0.160698 0.158814 95 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 22.63 vpr 64.68 MiB -1 -1 0.29 21280 1 0.08 -1 -1 33992 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66236 32 32 336 268 1 169 87 17 17 289 -1 unnamed_device 25.9 MiB 4.38 676 13335 4957 6249 2129 64.7 MiB 0.04 0.00 4.62011 -128.464 -4.62011 4.62011 2.96 0.000208698 0.000174487 0.0105295 0.0083893 46 2067 37 6.95648e+06 332941 828058. 2865.25 7.85 0.0583526 0.0490235 28066 200906 -1 1608 23 1319 1961 142969 34005 3.94516 3.94516 -127.516 -3.94516 0 0 1.01997e+06 3529.29 1.09 0.13 0.37 -1 -1 1.09 0.0127937 0.0112534 74 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 20.16 vpr 63.62 MiB -1 -1 0.42 21128 1 0.08 -1 -1 33480 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65148 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 25.2 MiB 0.91 533 10509 4362 5761 386 63.6 MiB 0.08 0.00 2.9282 -92.021 -2.9282 2.9282 2.44 0.000138062 0.000109488 0.0105231 0.00845243 40 1853 44 6.95648e+06 188184 706193. 2443.58 9.05 0.160772 0.151735 26914 176310 -1 1520 22 1124 1700 171214 43756 3.15227 3.15227 -103.082 -3.15227 0 0 926341. 3205.33 1.20 0.04 0.34 -1 -1 1.20 0.00990394 0.00855289 51 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 22.86 vpr 64.62 MiB -1 -1 0.46 21280 1 0.37 -1 -1 33752 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66172 32 32 349 273 1 184 88 17 17 289 -1 unnamed_device 25.9 MiB 1.69 923 15298 6195 8436 667 64.6 MiB 0.28 0.00 4.94787 -132.081 -4.94787 4.94787 2.26 0.000183632 0.000148222 0.123748 0.120352 40 2552 24 6.95648e+06 347416 706193. 2443.58 10.35 0.176296 0.164624 26914 176310 -1 2279 24 1815 3299 412663 96509 4.73826 4.73826 -139.776 -4.73826 0 0 926341. 3205.33 1.43 0.25 0.17 -1 -1 1.43 0.0137267 0.012153 80 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 22.42 vpr 64.05 MiB -1 -1 0.54 21128 1 0.10 -1 -1 33724 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65588 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 25.6 MiB 3.18 471 10702 3246 5052 2404 64.1 MiB 0.16 0.00 2.9972 -97.7732 -2.9972 2.9972 2.52 0.000134341 0.000105381 0.128014 0.125943 40 1681 41 6.95648e+06 202660 706193. 2443.58 7.56 0.223844 0.214781 26914 176310 -1 1409 22 1259 1765 152230 38560 3.41572 3.41572 -119.098 -3.41572 0 0 926341. 3205.33 1.16 0.27 0.59 -1 -1 1.16 0.0106945 0.00942995 57 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 21.47 vpr 63.99 MiB -1 -1 0.50 21280 1 0.30 -1 -1 33768 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65524 30 32 278 235 1 144 79 17 17 289 -1 unnamed_device 25.5 MiB 2.47 565 7684 3065 4335 284 64.0 MiB 0.08 0.00 3.45473 -106.14 -3.45473 3.45473 2.15 0.000148737 0.000116672 0.00884058 0.00724397 38 1970 44 6.95648e+06 246087 678818. 2348.85 8.89 0.131516 0.121878 26626 170182 -1 1387 22 1167 1759 135973 29786 3.05892 3.05892 -108.285 -3.05892 0 0 902133. 3121.57 0.97 0.11 0.46 -1 -1 0.97 0.00946937 0.00828096 60 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 24.53 vpr 64.76 MiB -1 -1 0.84 21432 1 0.21 -1 -1 33872 -1 -1 16 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66316 29 32 355 287 1 186 77 17 17 289 -1 unnamed_device 26.1 MiB 5.60 776 11161 4775 5773 613 64.8 MiB 0.05 0.00 3.81182 -119.714 -3.81182 3.81182 2.67 0.000168234 0.000133305 0.00906138 0.0073641 48 2520 32 6.95648e+06 231611 865456. 2994.66 8.17 0.0641456 0.0540454 28354 207349 -1 2042 21 1734 2563 216351 47635 3.70766 3.70766 -129.106 -3.70766 0 0 1.05005e+06 3633.38 1.03 0.07 0.52 -1 -1 1.03 0.0129978 0.0116099 80 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 20.05 vpr 64.57 MiB -1 -1 0.35 21280 1 0.21 -1 -1 33700 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66120 32 32 358 289 1 173 80 17 17 289 -1 unnamed_device 26.1 MiB 3.74 704 11948 4364 5551 2033 64.6 MiB 0.08 0.00 4.55468 -133.267 -4.55468 4.55468 2.82 0.000174282 0.000142125 0.0144908 0.0118849 44 2311 36 6.95648e+06 231611 787024. 2723.27 5.19 0.475624 0.4644 27778 195446 -1 1571 29 1467 2111 135992 33086 4.33832 4.33832 -137.368 -4.33832 0 0 997811. 3452.63 1.07 0.24 0.68 -1 -1 1.07 0.0155585 0.0136902 72 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 25.17 vpr 64.73 MiB -1 -1 0.52 21280 1 0.23 -1 -1 33832 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66284 32 32 353 285 1 178 78 17 17 289 -1 unnamed_device 26.1 MiB 6.12 786 12196 5134 6667 395 64.7 MiB 0.12 0.00 4.41959 -137.927 -4.41959 4.41959 2.71 0.000163449 0.000130532 0.0154123 0.01251 40 2597 31 6.95648e+06 202660 706193. 2443.58 7.44 0.176379 0.0582943 26914 176310 -1 1938 20 1471 2292 207490 44669 4.14326 4.14326 -138.835 -4.14326 0 0 926341. 3205.33 1.00 0.03 0.39 -1 -1 1.00 0.00779976 0.00708868 73 51 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 30.35 vpr 64.11 MiB -1 -1 0.56 21280 1 0.28 -1 -1 33848 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65652 32 32 276 237 1 155 74 17 17 289 -1 unnamed_device 25.6 MiB 10.33 758 11854 5230 6360 264 64.1 MiB 0.14 0.00 4.09208 -130.885 -4.09208 4.09208 2.66 0.000190098 0.000118405 0.100584 0.0981215 46 1948 30 6.95648e+06 144757 828058. 2865.25 8.72 0.144605 0.135346 28066 200906 -1 1561 20 1128 1465 123245 26968 3.61822 3.61822 -128.283 -3.61822 0 0 1.01997e+06 3529.29 1.22 0.14 0.41 -1 -1 1.22 0.0826738 0.0814191 61 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 26.45 vpr 64.38 MiB -1 -1 0.52 21432 1 0.03 -1 -1 33744 -1 -1 12 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65920 31 32 319 272 1 165 75 17 17 289 -1 unnamed_device 25.8 MiB 7.20 671 10661 4453 5894 314 64.4 MiB 0.32 0.00 3.79972 -122.825 -3.79972 3.79972 2.59 0.000160817 0.00012734 0.0125461 0.0101679 38 2325 23 6.95648e+06 173708 678818. 2348.85 9.21 0.0510394 0.0422196 26626 170182 -1 1701 20 1321 1951 157587 33834 3.40267 3.40267 -123.384 -3.40267 0 0 902133. 3121.57 1.29 0.06 0.40 -1 -1 1.29 0.0277522 0.0265017 68 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 26.96 vpr 64.44 MiB -1 -1 0.42 21280 1 0.22 -1 -1 33760 -1 -1 22 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65984 30 32 329 273 1 160 84 17 17 289 -1 unnamed_device 25.9 MiB 2.46 674 10881 3907 4742 2232 64.4 MiB 0.06 0.00 3.0162 -94.3766 -3.0162 3.0162 2.22 0.000168742 0.000135538 0.0117824 0.00968195 36 2545 30 6.95648e+06 318465 648988. 2245.63 14.19 0.0600729 0.050037 26050 158493 -1 1858 21 1240 1960 162018 36678 3.14637 3.14637 -107.389 -3.14637 0 0 828058. 2865.25 1.00 0.13 0.41 -1 -1 1.00 0.0124086 0.010958 71 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 22.16 vpr 64.43 MiB -1 -1 0.46 21280 1 0.06 -1 -1 33736 -1 -1 28 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65976 28 32 277 229 1 155 88 17 17 289 -1 unnamed_device 25.8 MiB 2.14 776 11788 2819 8132 837 64.4 MiB 0.09 0.00 3.64814 -102.196 -3.64814 3.64814 2.28 0.000143978 0.000114756 0.0102727 0.00834417 38 2283 49 6.95648e+06 405319 678818. 2348.85 9.89 0.0572746 0.047759 26626 170182 -1 1869 33 1402 2171 347796 149224 3.66166 3.66166 -111.163 -3.66166 0 0 902133. 3121.57 1.20 0.17 0.32 -1 -1 1.20 0.031921 0.0300982 72 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 14.87 vpr 64.32 MiB -1 -1 0.24 21280 1 0.05 -1 -1 33868 -1 -1 12 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65864 30 32 317 269 1 149 74 17 17 289 -1 unnamed_device 25.8 MiB 1.25 549 12629 5148 6195 1286 64.3 MiB 0.22 0.00 3.47909 -109.563 -3.47909 3.47909 2.55 0.000144752 0.000114363 0.0146333 0.0119252 40 1779 32 6.95648e+06 173708 706193. 2443.58 5.59 0.0538257 0.0448211 26914 176310 -1 1375 21 1365 1931 142075 34453 3.18402 3.18402 -117.065 -3.18402 0 0 926341. 3205.33 1.23 0.45 0.32 -1 -1 1.23 0.164476 0.163149 60 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 25.96 vpr 64.16 MiB -1 -1 0.24 21432 1 0.03 -1 -1 33564 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 32 32 335 282 1 178 75 17 17 289 -1 unnamed_device 25.5 MiB 5.26 641 12873 5440 6966 467 64.2 MiB 0.11 0.00 3.42769 -121.139 -3.42769 3.42769 2.55 0.000188917 0.000152402 0.0156907 0.0127536 52 2300 33 6.95648e+06 159232 926341. 3205.33 7.55 0.479333 0.432975 29218 227130 -1 1491 25 1380 1993 177717 40588 3.72767 3.72767 -126.291 -3.72767 0 0 1.14541e+06 3963.36 1.26 0.19 0.40 -1 -1 1.26 0.157712 0.156199 72 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 24.41 vpr 64.52 MiB -1 -1 0.49 21128 1 0.02 -1 -1 33876 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66072 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 25.8 MiB 1.35 710 11799 3749 5666 2384 64.5 MiB 0.17 0.00 4.65108 -122.985 -4.65108 4.65108 2.26 0.000148994 0.000117624 0.0183431 0.0159056 50 2190 26 6.95648e+06 347416 902133. 3121.57 7.82 0.290284 0.280978 28642 213929 -1 1660 23 1075 1816 170113 37652 3.71982 3.71982 -117.822 -3.71982 0 0 1.08113e+06 3740.92 1.43 0.09 0.62 -1 -1 1.43 0.0251685 0.0237504 74 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 30.31 vpr 64.77 MiB -1 -1 0.39 21584 1 0.19 -1 -1 33736 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66324 32 32 350 275 1 196 77 17 17 289 -1 unnamed_device 26.1 MiB 5.19 831 11813 4743 6275 795 64.8 MiB 0.32 0.00 4.58977 -148.914 -4.58977 4.58977 2.65 0.000183128 0.000149716 0.0793215 0.0765573 44 3092 30 6.95648e+06 188184 787024. 2723.27 7.39 0.134146 0.122967 27778 195446 -1 2201 21 1759 2558 216969 47786 4.22036 4.22036 -150.532 -4.22036 0 0 997811. 3452.63 1.15 0.12 0.44 -1 -1 1.15 0.0770714 0.0755766 82 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 31.74 vpr 64.84 MiB -1 -1 0.51 21432 1 0.04 -1 -1 33704 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66396 32 32 385 308 1 179 88 17 17 289 -1 unnamed_device 26.1 MiB 4.15 816 16468 5566 8437 2465 64.8 MiB 0.31 0.00 4.27883 -132.69 -4.27883 4.27883 2.90 8.7005e-05 6.5217e-05 0.0173427 0.0139091 46 2467 49 6.95648e+06 347416 828058. 2865.25 10.16 0.230607 0.217863 28066 200906 -1 1965 21 1537 2489 222148 46533 3.84266 3.84266 -137.714 -3.84266 0 0 1.01997e+06 3529.29 1.29 0.09 0.45 -1 -1 1.29 0.0143812 0.0128796 80 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 16.81 vpr 64.70 MiB -1 -1 0.48 21280 1 0.06 -1 -1 33744 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66252 32 32 387 309 1 182 87 17 17 289 -1 unnamed_device 26.0 MiB 2.33 810 13911 4952 7625 1334 64.7 MiB 0.09 0.00 4.06852 -133.682 -4.06852 4.06852 1.39 0.000176391 0.000138352 0.0163358 0.0133888 44 3041 46 6.95648e+06 332941 787024. 2723.27 6.07 0.106522 0.0927521 27778 195446 -1 1940 24 1801 2831 219999 48752 3.90932 3.90932 -137.053 -3.90932 0 0 997811. 3452.63 1.27 0.50 0.39 -1 -1 1.27 0.0138451 0.0122036 80 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 45.02 vpr 64.25 MiB -1 -1 0.33 21280 1 0.04 -1 -1 33720 -1 -1 12 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65788 30 32 272 232 1 142 74 17 17 289 -1 unnamed_device 25.5 MiB 2.73 540 8134 2607 3837 1690 64.2 MiB 0.11 0.00 3.76076 -106.203 -3.76076 3.76076 2.91 0.000155176 0.000126859 0.00879618 0.00714608 40 1646 22 6.95648e+06 173708 706193. 2443.58 20.03 0.374901 0.18532 26914 176310 -1 1364 23 1184 1792 151101 33119 3.19792 3.19792 -108.908 -3.19792 0 0 926341. 3205.33 1.14 0.15 0.43 -1 -1 1.14 0.00666145 0.00594199 57 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 58.41 vpr 64.78 MiB -1 -1 0.39 21584 1 0.17 -1 -1 34076 -1 -1 14 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66336 30 32 375 299 1 179 76 17 17 289 -1 unnamed_device 26.1 MiB 2.89 678 9356 3868 5007 481 64.8 MiB 0.08 0.00 4.36203 -133.965 -4.36203 4.36203 2.40 0.000172532 0.000137677 0.0537197 0.0514312 40 2565 42 6.95648e+06 202660 706193. 2443.58 32.47 0.502846 0.476372 26914 176310 -1 1865 26 2244 3051 373025 119260 4.41257 4.41257 -145.649 -4.41257 0 0 926341. 3205.33 0.92 0.24 0.36 -1 -1 0.92 0.0156112 0.0137812 76 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 18.48 vpr 64.46 MiB -1 -1 0.47 21432 1 0.14 -1 -1 33540 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66004 32 32 340 270 1 193 78 17 17 289 -1 unnamed_device 25.9 MiB 4.24 842 12030 5028 6556 446 64.5 MiB 0.10 0.00 4.9029 -146.03 -4.9029 4.9029 1.34 0.000164581 0.000129658 0.0147435 0.0118955 46 2513 48 6.95648e+06 202660 828058. 2865.25 5.50 0.14148 0.129577 28066 200906 -1 1890 22 1658 2613 198628 43387 4.08261 4.08261 -138.768 -4.08261 0 0 1.01997e+06 3529.29 1.15 0.15 0.69 -1 -1 1.15 0.0132751 0.0118923 80 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 40.23 vpr 64.73 MiB -1 -1 0.48 21280 1 0.06 -1 -1 33768 -1 -1 14 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66280 31 32 340 275 1 187 77 17 17 289 -1 unnamed_device 25.9 MiB 7.12 750 12302 5257 6526 519 64.7 MiB 0.33 0.00 5.69125 -154.683 -5.69125 5.69125 2.43 0.000152264 0.000120839 0.12704 0.124448 46 2398 31 6.95648e+06 202660 828058. 2865.25 8.62 0.463295 0.314704 28066 200906 -1 1821 21 1264 1891 135405 30894 4.59527 4.59527 -147.004 -4.59527 0 0 1.01997e+06 3529.29 1.14 0.25 0.28 -1 -1 1.14 0.146526 0.145214 79 47 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 18.90 vpr 64.61 MiB -1 -1 0.89 21432 1 0.11 -1 -1 33560 -1 -1 21 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66160 30 32 377 310 1 171 83 17 17 289 -1 unnamed_device 26.1 MiB 6.23 745 11063 3711 5149 2203 64.6 MiB 0.11 0.00 4.87546 -148.347 -4.87546 4.87546 1.36 0.000165432 0.000131345 0.0459154 0.0435563 46 2121 22 6.95648e+06 303989 828058. 2865.25 3.31 0.128836 0.11828 28066 200906 -1 1662 18 1005 1539 108523 24393 4.08891 4.08891 -138.465 -4.08891 0 0 1.01997e+06 3529.29 1.02 0.16 0.38 -1 -1 1.02 0.0115783 0.0103483 74 83 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 19.57 vpr 64.75 MiB -1 -1 0.40 21584 1 0.11 -1 -1 33708 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66300 32 32 365 294 1 177 77 17 17 289 -1 unnamed_device 26.2 MiB 3.61 704 9368 3487 4602 1279 64.7 MiB 0.10 0.00 4.40123 -135.279 -4.40123 4.40123 2.13 0.000180055 0.000145496 0.072084 0.069033 48 2447 37 6.95648e+06 188184 865456. 2994.66 6.42 0.186557 0.174359 28354 207349 -1 2015 24 1732 2848 349810 83354 3.78982 3.78982 -140.039 -3.78982 0 0 1.05005e+06 3633.38 1.03 0.11 0.44 -1 -1 1.03 0.0288707 0.0271588 72 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 41.71 vpr 64.61 MiB -1 -1 0.56 21280 1 0.07 -1 -1 33964 -1 -1 16 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66156 29 32 378 310 1 170 77 17 17 289 -1 unnamed_device 26.1 MiB 3.28 641 10346 4274 5371 701 64.6 MiB 0.19 0.00 4.09563 -125.168 -4.09563 4.09563 3.03 0.000160521 0.000127007 0.158707 0.156211 46 1995 28 6.95648e+06 231611 828058. 2865.25 7.11 0.315342 0.304956 28066 200906 -1 1316 24 1249 1860 123484 31068 3.78282 3.78282 -124.089 -3.78282 0 0 1.01997e+06 3529.29 1.40 0.02 0.44 -1 -1 1.40 0.108786 0.107808 73 85 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 23.96 vpr 63.90 MiB -1 -1 0.40 20976 1 0.13 -1 -1 33780 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65436 32 32 243 205 1 139 74 17 17 289 -1 unnamed_device 25.5 MiB 3.33 531 8754 3599 4846 309 63.9 MiB 0.08 0.00 3.56099 -105.132 -3.56099 3.56099 2.33 0.000130291 0.000101883 0.0579521 0.0561663 44 1721 26 6.95648e+06 144757 787024. 2723.27 4.17 0.24708 0.224349 27778 195446 -1 1421 22 1086 1514 124135 29933 3.28122 3.28122 -112.465 -3.28122 0 0 997811. 3452.63 1.37 0.18 0.68 -1 -1 1.37 0.0101636 0.00896201 53 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 48.53 vpr 64.79 MiB -1 -1 0.46 21280 1 0.13 -1 -1 33540 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66340 32 32 373 302 1 174 87 17 17 289 -1 unnamed_device 26.1 MiB 9.43 804 15255 5341 7615 2299 64.8 MiB 0.17 0.00 4.7291 -131.65 -4.7291 4.7291 2.53 0.000173921 0.000139114 0.0172554 0.0139709 46 2200 28 6.95648e+06 332941 828058. 2865.25 8.63 0.276105 0.264745 28066 200906 -1 1808 22 1202 1906 162527 35392 3.93476 3.93476 -131.175 -3.93476 0 0 1.01997e+06 3529.29 1.19 0.12 0.42 -1 -1 1.19 0.0936454 0.0921791 76 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 20.92 vpr 64.44 MiB -1 -1 0.36 21432 1 0.21 -1 -1 33964 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65988 32 32 397 314 1 188 77 17 17 289 -1 unnamed_device 25.9 MiB 3.13 837 8716 3541 4962 213 64.4 MiB 0.24 0.00 4.35698 -145.77 -4.35698 4.35698 2.54 0.000191506 0.000155766 0.012872 0.010629 40 2823 37 6.95648e+06 188184 706193. 2443.58 8.06 0.240595 0.18538 26914 176310 -1 2267 22 2237 3157 311635 67735 4.45636 4.45636 -160.856 -4.45636 0 0 926341. 3205.33 0.54 0.10 0.23 -1 -1 0.54 0.0160742 0.014414 78 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 20.79 vpr 64.39 MiB -1 -1 0.54 20976 1 0.17 -1 -1 33536 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65936 32 32 269 231 1 166 75 17 17 289 -1 unnamed_device 25.6 MiB 6.11 735 12083 5107 6723 253 64.4 MiB 0.10 0.00 4.05037 -123.737 -4.05037 4.05037 2.35 0.000133241 0.000103825 0.0128451 0.0103194 38 2159 49 6.95648e+06 159232 678818. 2348.85 4.87 0.0617348 0.0512837 26626 170182 -1 1699 20 1188 1501 127593 27591 3.35181 3.35181 -119.202 -3.35181 0 0 902133. 3121.57 0.63 0.08 0.21 -1 -1 0.63 0.0108017 0.00952802 68 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 28.16 vpr 63.97 MiB -1 -1 0.39 21280 1 0.07 -1 -1 33728 -1 -1 13 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65504 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 25.3 MiB 4.56 543 10956 3546 5569 1841 64.0 MiB 0.27 0.00 3.32523 -102.046 -3.32523 3.32523 2.80 0.000131079 0.00010196 0.0110333 0.00893353 36 1943 32 6.95648e+06 188184 648988. 2245.63 7.34 0.0541235 0.0450942 26050 158493 -1 1530 23 1299 1795 186350 39213 3.47072 3.47072 -119.629 -3.47072 0 0 828058. 2865.25 0.83 0.15 0.40 -1 -1 0.83 0.011307 0.0100024 57 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 24.56 vpr 64.63 MiB -1 -1 0.53 21432 1 0.13 -1 -1 34012 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66180 32 32 348 274 1 202 79 17 17 289 -1 unnamed_device 26.1 MiB 5.94 933 12754 4730 5000 3024 64.6 MiB 0.11 0.00 4.68742 -153.217 -4.68742 4.68742 2.57 0.000168221 0.000134002 0.0668061 0.0128789 44 2964 34 6.95648e+06 217135 787024. 2723.27 6.89 0.282 0.127463 27778 195446 -1 2100 23 1875 2452 195690 43411 4.67431 4.67431 -164.796 -4.67431 0 0 997811. 3452.63 1.08 0.17 0.30 -1 -1 1.08 0.0144032 0.0128871 85 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 27.06 vpr 64.76 MiB -1 -1 0.70 21280 1 0.07 -1 -1 33544 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66312 32 32 356 289 1 196 78 17 17 289 -1 unnamed_device 26.1 MiB 4.00 823 12030 5052 6595 383 64.8 MiB 0.06 0.00 4.95282 -149.828 -4.95282 4.95282 2.93 0.000180863 0.000144478 0.0146915 0.011901 46 2741 35 6.95648e+06 202660 828058. 2865.25 10.08 0.371629 0.359828 28066 200906 -1 1926 22 1554 2217 197899 43558 4.54096 4.54096 -151.361 -4.54096 0 0 1.01997e+06 3529.29 1.26 0.16 0.40 -1 -1 1.26 0.0144806 0.0129625 82 56 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 22.41 vpr 64.77 MiB -1 -1 0.61 21280 1 0.20 -1 -1 33808 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66320 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 26.1 MiB 2.15 936 12156 5048 6539 569 64.8 MiB 0.17 0.08 4.92382 -143.608 -4.92382 4.92382 3.01 0.00023057 0.00019411 0.015289 0.012455 44 2952 50 6.95648e+06 246087 787024. 2723.27 9.30 0.111399 0.0988087 27778 195446 -1 2043 24 1595 2634 201490 44459 4.48661 4.48661 -149.062 -4.48661 0 0 997811. 3452.63 1.17 0.08 0.27 -1 -1 1.17 0.0461655 0.0445279 83 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 28.24 vpr 64.39 MiB -1 -1 0.65 21280 1 0.03 -1 -1 33724 -1 -1 21 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65936 30 32 316 264 1 159 83 17 17 289 -1 unnamed_device 25.8 MiB 2.98 693 11963 4106 5300 2557 64.4 MiB 0.41 0.00 3.45278 -100.466 -3.45278 3.45278 3.30 0.000158133 0.000124679 0.0129076 0.010501 36 2260 41 6.95648e+06 303989 648988. 2245.63 12.92 0.239371 0.228105 26050 158493 -1 1656 22 1438 2269 175433 38273 3.13012 3.13012 -106.022 -3.13012 0 0 828058. 2865.25 0.91 0.13 0.23 -1 -1 0.91 0.0107558 0.00937978 69 52 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 21.48 vpr 64.18 MiB -1 -1 0.48 21128 1 0.21 -1 -1 34124 -1 -1 14 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65724 27 32 255 219 1 130 73 17 17 289 -1 unnamed_device 25.5 MiB 1.97 416 8585 3548 4477 560 64.2 MiB 0.03 0.00 2.9243 -87.2262 -2.9243 2.9243 2.79 0.000119818 9.3008e-05 0.00857123 0.00687555 42 1418 36 6.95648e+06 202660 744469. 2576.02 6.10 0.0597475 0.0507631 27202 183097 -1 1007 21 966 1166 86921 22340 3.04162 3.04162 -98.0518 -3.04162 0 0 949917. 3286.91 1.14 0.14 0.41 -1 -1 1.14 0.120485 0.119337 54 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 26.15 vpr 65.10 MiB -1 -1 0.58 21432 1 0.03 -1 -1 33820 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66660 32 32 421 327 1 224 80 17 17 289 -1 unnamed_device 26.4 MiB 4.43 1102 15044 5980 6904 2160 65.1 MiB 0.35 0.00 3.84665 -132.831 -3.84665 3.84665 3.00 0.000242355 0.000201884 0.0202946 0.0165011 48 3071 30 6.95648e+06 231611 865456. 2994.66 8.40 0.608555 0.595187 28354 207349 -1 2644 29 2441 3990 459090 125325 4.09482 4.09482 -142.398 -4.09482 0 0 1.05005e+06 3633.38 1.50 0.60 0.61 -1 -1 1.50 0.345469 0.343285 95 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 36.85 vpr 64.52 MiB -1 -1 0.72 21584 1 0.07 -1 -1 33652 -1 -1 15 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66068 31 32 365 296 1 190 78 17 17 289 -1 unnamed_device 25.9 MiB 16.88 1006 12362 4250 6888 1224 64.5 MiB 0.09 0.00 5.3781 -155.355 -5.3781 5.3781 3.26 0.000161896 0.000129347 0.0153462 0.0125177 46 2524 26 6.95648e+06 217135 828058. 2865.25 7.59 0.203029 0.191822 28066 200906 -1 2232 23 1876 2910 269627 51483 4.54986 4.54986 -156.111 -4.54986 0 0 1.01997e+06 3529.29 0.99 0.18 0.31 -1 -1 0.99 0.0454221 0.0438869 81 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 32.19 vpr 64.59 MiB -1 -1 0.59 21280 1 0.19 -1 -1 33916 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66140 32 32 331 280 1 171 75 17 17 289 -1 unnamed_device 25.9 MiB 12.37 712 8923 3676 5031 216 64.6 MiB 0.12 0.00 3.7346 -127.816 -3.7346 3.7346 2.98 0.000142142 0.000110349 0.0104368 0.0084834 40 2280 24 6.95648e+06 159232 706193. 2443.58 6.34 0.198277 0.183847 26914 176310 -1 2092 27 1709 2451 267567 58051 3.83106 3.83106 -138.489 -3.83106 0 0 926341. 3205.33 1.32 0.36 0.46 -1 -1 1.32 0.246706 0.244982 70 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 57.70 vpr 64.60 MiB -1 -1 0.40 21432 1 0.14 -1 -1 33780 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66152 32 32 326 263 1 169 86 17 17 289 -1 unnamed_device 25.9 MiB 1.72 754 14261 5947 7773 541 64.6 MiB 0.15 0.00 4.35988 -125.269 -4.35988 4.35988 3.13 0.000189442 0.000153352 0.0147976 0.0119355 42 2789 39 6.95648e+06 318465 744469. 2576.02 44.16 0.324363 0.30449 27202 183097 -1 2072 22 1410 2226 237615 51736 3.87001 3.87001 -128.568 -3.87001 0 0 949917. 3286.91 1.21 0.09 0.75 -1 -1 1.21 0.0111228 0.00979311 74 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 24.85 vpr 64.57 MiB -1 -1 0.40 21736 1 0.11 -1 -1 33472 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66124 31 32 373 294 1 188 88 17 17 289 -1 unnamed_device 26.1 MiB 3.41 836 14128 4159 6910 3059 64.6 MiB 0.19 0.00 4.50675 -130.886 -4.50675 4.50675 2.99 0.000213802 0.000164445 0.112593 0.0132168 38 2787 26 6.95648e+06 361892 678818. 2348.85 9.08 0.27132 0.163113 26626 170182 -1 2052 20 1552 2384 172074 38585 4.14602 4.14602 -134.294 -4.14602 0 0 902133. 3121.57 1.60 0.13 0.44 -1 -1 1.60 0.0137224 0.0122953 83 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 46.18 vpr 64.43 MiB -1 -1 0.79 21584 1 0.04 -1 -1 33752 -1 -1 16 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65972 30 32 325 268 1 166 78 17 17 289 -1 unnamed_device 25.9 MiB 4.38 715 8544 2877 3872 1795 64.4 MiB 0.30 0.00 3.35027 -102.379 -3.35027 3.35027 3.22 0.000160119 0.000127063 0.0105897 0.00878711 38 2483 34 6.95648e+06 231611 678818. 2348.85 29.60 0.283842 0.267239 26626 170182 -1 1897 23 1489 2426 201506 43472 3.14647 3.14647 -109.753 -3.14647 0 0 902133. 3121.57 0.62 0.15 0.21 -1 -1 0.62 0.0771084 0.0112157 68 51 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 29.03 vpr 64.79 MiB -1 -1 0.52 21128 1 0.16 -1 -1 33436 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66340 32 32 350 275 1 208 78 17 17 289 -1 unnamed_device 26.1 MiB 6.02 917 13856 5527 6642 1687 64.8 MiB 0.25 0.00 4.51937 -148.343 -4.51937 4.51937 3.02 0.000261731 0.000226345 0.0196976 0.0159168 48 3102 25 6.95648e+06 202660 865456. 2994.66 9.23 0.074163 0.0622658 28354 207349 -1 2644 24 2135 3097 380073 79399 4.97816 4.97816 -162.399 -4.97816 0 0 1.05005e+06 3633.38 1.62 0.39 0.38 -1 -1 1.62 0.0154123 0.0138425 88 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 25.82 vpr 64.61 MiB -1 -1 0.60 21584 1 0.05 -1 -1 33704 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66156 32 32 386 307 1 187 82 17 17 289 -1 unnamed_device 25.9 MiB 3.35 804 10584 4356 5793 435 64.6 MiB 0.16 0.00 4.51417 -147.562 -4.51417 4.51417 2.69 0.000193933 0.00015552 0.0133541 0.0109977 40 2746 27 6.95648e+06 260562 706193. 2443.58 9.01 0.108313 0.0594872 26914 176310 -1 2089 30 1836 2492 305244 82722 4.39732 4.39732 -159.663 -4.39732 0 0 926341. 3205.33 1.16 0.29 0.31 -1 -1 1.16 0.0176862 0.0154556 80 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 39.65 vpr 64.04 MiB -1 -1 0.54 21280 1 0.03 -1 -1 33828 -1 -1 12 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65576 29 32 269 229 1 132 73 17 17 289 -1 unnamed_device 25.5 MiB 20.57 414 10105 3962 3901 2242 64.0 MiB 0.05 0.00 3.92822 -101.93 -3.92822 3.92822 2.51 0.000127295 9.8698e-05 0.0196106 0.00896644 40 1436 24 6.95648e+06 173708 706193. 2443.58 5.82 0.207873 0.190596 26914 176310 -1 1295 23 1001 1294 116340 28714 3.28862 3.28862 -107.776 -3.28862 0 0 926341. 3205.33 1.12 0.13 0.50 -1 -1 1.12 0.0107838 0.00950601 53 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 26.50 vpr 64.22 MiB -1 -1 0.35 21432 1 0.18 -1 -1 33896 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65764 32 32 310 266 1 163 75 17 17 289 -1 unnamed_device 25.6 MiB 3.95 620 10345 3646 5288 1411 64.2 MiB 0.19 0.00 3.72515 -127.215 -3.72515 3.72515 2.64 0.000147122 0.000116288 0.0121609 0.0098463 40 2156 26 6.95648e+06 159232 706193. 2443.58 9.05 0.0573491 0.0473844 26914 176310 -1 1694 23 1274 1589 154676 34159 3.88512 3.88512 -139.19 -3.88512 0 0 926341. 3205.33 1.19 0.42 0.47 -1 -1 1.19 0.0122568 0.0108537 64 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 31.37 vpr 64.64 MiB -1 -1 0.46 21584 1 0.04 -1 -1 33728 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66192 31 32 326 261 1 172 86 17 17 289 -1 unnamed_device 25.9 MiB 3.01 748 11615 3856 5496 2263 64.6 MiB 0.15 0.00 4.10411 -120.963 -4.10411 4.10411 2.73 0.000154356 0.000121601 0.012153 0.00987682 40 2871 41 6.95648e+06 332941 706193. 2443.58 15.39 0.232055 0.123431 26914 176310 -1 1952 27 1808 2881 312628 83971 4.14272 4.14272 -133.589 -4.14272 0 0 926341. 3205.33 1.30 0.62 0.34 -1 -1 1.30 0.0153179 0.0135747 77 33 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 28.91 vpr 64.11 MiB -1 -1 0.47 21280 1 0.03 -1 -1 33596 -1 -1 13 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65648 29 32 262 224 1 161 74 17 17 289 -1 unnamed_device 25.6 MiB 6.45 591 9994 4171 5357 466 64.1 MiB 0.19 0.00 4.06527 -116.04 -4.06527 4.06527 2.49 0.000140676 0.000112258 0.0102313 0.00817044 40 2287 32 6.95648e+06 188184 706193. 2443.58 9.61 0.59374 0.335484 26914 176310 -1 1772 24 1410 1799 181608 43061 4.03342 4.03342 -120.917 -4.03342 0 0 926341. 3205.33 1.16 0.27 0.24 -1 -1 1.16 0.0891957 0.0878311 67 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 25.18 vpr 64.05 MiB -1 -1 0.35 21128 1 0.12 -1 -1 33696 -1 -1 9 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65592 32 32 278 238 1 144 73 17 17 289 -1 unnamed_device 25.6 MiB 4.64 609 9497 4084 5186 227 64.1 MiB 0.07 0.00 3.96096 -113.861 -3.96096 3.96096 3.54 0.000136187 0.000106003 0.0103129 0.00827866 44 1960 28 6.95648e+06 130281 787024. 2723.27 7.67 0.0877079 0.0788646 27778 195446 -1 1413 20 1317 1952 159640 34547 2.99337 2.99337 -109.258 -2.99337 0 0 997811. 3452.63 1.41 0.15 0.40 -1 -1 1.41 0.0751356 0.00931123 56 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 23.41 vpr 64.47 MiB -1 -1 0.51 21280 1 0.03 -1 -1 33844 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66016 31 32 373 300 1 174 87 17 17 289 -1 unnamed_device 25.9 MiB 3.93 767 14295 5145 7027 2123 64.5 MiB 0.22 0.00 3.44853 -115.891 -3.44853 3.44853 3.05 0.0001711 0.000135566 0.0827367 0.079707 40 2079 23 6.95648e+06 347416 706193. 2443.58 6.92 0.266756 0.255563 26914 176310 -1 1722 21 1678 2282 188630 41591 3.30477 3.30477 -118.576 -3.30477 0 0 926341. 3205.33 1.39 0.16 0.72 -1 -1 1.39 0.0135079 0.0120786 79 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 35.41 vpr 64.29 MiB -1 -1 0.51 21280 1 0.22 -1 -1 33616 -1 -1 12 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65836 31 32 265 230 1 159 75 17 17 289 -1 unnamed_device 25.5 MiB 8.81 631 11925 4064 5891 1970 64.3 MiB 0.08 0.00 3.97747 -119.507 -3.97747 3.97747 3.07 0.000141765 0.000111685 0.0132539 0.0106254 38 2048 45 6.95648e+06 173708 678818. 2348.85 12.46 0.258223 0.247494 26626 170182 -1 1607 23 1113 1586 163638 50863 3.49622 3.49622 -123.168 -3.49622 0 0 902133. 3121.57 1.17 0.33 0.38 -1 -1 1.17 0.0110938 0.00982883 64 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 29.61 vpr 64.50 MiB -1 -1 0.57 21280 1 0.08 -1 -1 33692 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66048 32 32 349 286 1 165 86 17 17 289 -1 unnamed_device 25.9 MiB 5.27 678 15017 5720 7175 2122 64.5 MiB 0.06 0.00 3.20268 -108.887 -3.20268 3.20268 3.66 0.000163278 0.000127814 0.0164423 0.0130201 52 2008 48 6.95648e+06 318465 926341. 3205.33 8.83 0.455511 0.33454 29218 227130 -1 1469 22 1253 1887 146863 37224 2.99297 2.99297 -108.726 -2.99297 0 0 1.14541e+06 3963.36 1.61 0.06 1.06 -1 -1 1.61 0.0124308 0.0110402 71 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 26.50 vpr 64.31 MiB -1 -1 0.62 21280 1 0.11 -1 -1 33664 -1 -1 15 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65852 31 32 396 325 1 176 78 17 17 289 -1 unnamed_device 25.8 MiB 6.16 662 8876 3614 4824 438 64.3 MiB 0.07 0.00 4.0342 -133.245 -4.0342 4.0342 2.56 0.00018899 0.000143524 0.012219 0.0099754 48 2022 21 6.95648e+06 217135 865456. 2994.66 8.02 0.170801 0.0559723 28354 207349 -1 1664 24 1657 2234 239711 74482 3.95211 3.95211 -140.908 -3.95211 0 0 1.05005e+06 3633.38 1.54 0.18 0.36 -1 -1 1.54 0.0603002 0.0585952 73 91 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 26.61 vpr 64.38 MiB -1 -1 0.53 21280 1 0.20 -1 -1 33408 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65924 32 32 303 262 1 145 74 17 17 289 -1 unnamed_device 25.8 MiB 5.21 509 10304 4083 5484 737 64.4 MiB 0.14 0.00 2.9023 -97.3173 -2.9023 2.9023 2.87 0.000169008 0.00013393 0.0125255 0.0101197 46 1859 26 6.95648e+06 144757 828058. 2865.25 8.54 0.253823 0.244244 28066 200906 -1 1379 28 1296 1972 169485 38610 3.12432 3.12432 -105.586 -3.12432 0 0 1.01997e+06 3529.29 1.49 0.11 0.82 -1 -1 1.49 0.0128282 0.0112422 57 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 31.27 vpr 64.46 MiB -1 -1 0.45 21432 1 0.15 -1 -1 33948 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66008 32 32 290 244 1 170 75 17 17 289 -1 unnamed_device 25.8 MiB 5.52 759 10819 2915 6394 1510 64.5 MiB 0.08 0.00 4.04348 -128.875 -4.04348 4.04348 2.56 0.000141006 0.000111615 0.0460564 0.00972984 38 2487 50 6.95648e+06 159232 678818. 2348.85 14.76 0.103033 0.0574875 26626 170182 -1 1962 22 1475 2156 194034 41144 3.98932 3.98932 -139.116 -3.98932 0 0 902133. 3121.57 0.98 0.15 0.47 -1 -1 0.98 0.0112 0.00996968 70 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 55.31 vpr 64.45 MiB -1 -1 0.57 21432 1 0.11 -1 -1 33816 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65996 32 32 318 257 1 188 78 17 17 289 -1 unnamed_device 25.9 MiB 8.57 781 10370 4130 5165 1075 64.4 MiB 0.18 0.00 4.16878 -129.099 -4.16878 4.16878 3.87 0.0001712 0.000139246 0.0119381 0.00972181 40 2510 32 6.95648e+06 202660 706193. 2443.58 32.99 0.223606 0.204719 26914 176310 -1 2116 23 1814 2401 210166 48272 4.93652 4.93652 -149.134 -4.93652 0 0 926341. 3205.33 1.29 0.15 0.44 -1 -1 1.29 0.0135028 0.0120694 79 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 18.71 vpr 64.34 MiB -1 -1 0.38 21432 1 0.26 -1 -1 33588 -1 -1 21 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65888 29 32 324 268 1 162 82 17 17 289 -1 unnamed_device 25.7 MiB 2.91 662 11118 4310 5269 1539 64.3 MiB 0.22 0.00 4.24388 -117.566 -4.24388 4.24388 2.30 0.000171217 0.000140159 0.184062 0.181837 42 2502 35 6.95648e+06 303989 744469. 2576.02 6.36 0.274108 0.263914 27202 183097 -1 1610 35 1272 1824 238633 81553 3.54316 3.54316 -114.241 -3.54316 0 0 949917. 3286.91 1.12 0.16 0.48 -1 -1 1.12 0.0162827 0.014246 71 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 71.74 vpr 64.55 MiB -1 -1 0.54 21584 1 0.13 -1 -1 33512 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66100 32 32 393 312 1 206 78 17 17 289 -1 unnamed_device 25.9 MiB 3.65 835 12030 5024 6545 461 64.6 MiB 0.20 0.00 4.9402 -157.131 -4.9402 4.9402 2.95 0.000180496 0.000144753 0.0156459 0.0128484 48 2888 42 6.95648e+06 202660 865456. 2994.66 54.06 0.274823 0.25229 28354 207349 -1 2151 24 2212 3089 336395 85250 4.85622 4.85622 -161.199 -4.85622 0 0 1.05005e+06 3633.38 1.29 0.30 0.51 -1 -1 1.29 0.176378 0.174672 89 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 19.30 vpr 63.80 MiB -1 -1 0.41 20976 1 0.03 -1 -1 33480 -1 -1 13 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65332 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 25.3 MiB 5.86 534 10476 4351 5783 342 63.8 MiB 0.06 0.00 3.74884 -96.385 -3.74884 3.74884 1.25 0.000127281 9.9977e-05 0.0324693 0.0303248 40 1532 22 6.95648e+06 188184 706193. 2443.58 4.14 0.165482 0.157246 26914 176310 -1 1442 22 861 1408 111894 25052 3.03022 3.03022 -100.616 -3.03022 0 0 926341. 3205.33 0.80 0.12 0.34 -1 -1 0.80 0.0213656 0.0199679 54 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 27.78 vpr 64.73 MiB -1 -1 0.61 21432 1 0.14 -1 -1 33652 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66280 32 32 412 334 1 182 89 17 17 289 -1 unnamed_device 26.2 MiB 3.49 808 15533 3949 11126 458 64.7 MiB 0.13 0.00 3.75239 -135.532 -3.75239 3.75239 2.41 0.0001953 0.000155738 0.0168223 0.0136551 38 2768 46 6.95648e+06 361892 678818. 2348.85 11.44 0.161265 0.0700024 26626 170182 -1 2002 22 1722 2306 186952 40190 4.06026 4.06026 -150.704 -4.06026 0 0 902133. 3121.57 1.18 0.13 0.59 -1 -1 1.18 0.0150561 0.0133962 81 90 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 27.62 vpr 64.55 MiB -1 -1 0.58 21584 1 0.12 -1 -1 33572 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66104 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 26.1 MiB 10.46 647 11079 4614 6219 246 64.6 MiB 0.08 0.00 2.96105 -113.708 -2.96105 2.96105 1.29 0.000166293 0.000130594 0.0152495 0.0123276 38 2082 24 6.95648e+06 144757 678818. 2348.85 7.32 0.424521 0.247385 26626 170182 -1 1578 22 1485 2093 172120 37079 3.04352 3.04352 -126.596 -3.04352 0 0 902133. 3121.57 1.15 0.17 0.42 -1 -1 1.15 0.03981 0.038282 61 96 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 59.29 vpr 64.52 MiB -1 -1 0.38 21584 1 0.12 -1 -1 33820 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66068 32 32 360 293 1 172 86 17 17 289 -1 unnamed_device 25.9 MiB 3.27 727 10670 3941 5494 1235 64.5 MiB 0.16 0.00 4.11943 -125.455 -4.11943 4.11943 2.77 0.000177992 0.000142582 0.073839 0.0716 40 3045 40 6.95648e+06 318465 706193. 2443.58 44.16 0.77287 0.752007 26914 176310 -1 2079 21 1362 1978 176336 41348 4.36701 4.36701 -135.308 -4.36701 0 0 926341. 3205.33 1.08 0.30 0.38 -1 -1 1.08 0.0123603 0.0108492 75 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 30.12 vpr 64.86 MiB -1 -1 0.66 21584 1 0.07 -1 -1 33832 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66412 32 32 396 299 1 224 79 17 17 289 -1 unnamed_device 26.2 MiB 6.17 1022 12247 5112 6717 418 64.9 MiB 0.20 0.00 6.05399 -174.256 -6.05399 6.05399 3.49 0.000185939 0.000149185 0.0999582 0.0966042 50 2835 27 6.95648e+06 217135 902133. 3121.57 7.77 0.15951 0.147251 28642 213929 -1 2360 23 2000 2863 225316 49509 5.39595 5.39595 -173.175 -5.39595 0 0 1.08113e+06 3740.92 1.52 0.16 0.37 -1 -1 1.52 0.0167506 0.0150332 95 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 30.26 vpr 63.93 MiB -1 -1 0.64 21128 1 0.11 -1 -1 33728 -1 -1 11 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65468 30 32 224 207 1 132 73 17 17 289 -1 unnamed_device 25.6 MiB 9.71 531 11017 3550 5709 1758 63.9 MiB 0.13 0.00 2.69765 -94.1883 -2.69765 2.69765 2.92 0.000131603 0.000101976 0.0104651 0.00834697 36 1670 24 6.95648e+06 159232 648988. 2245.63 6.99 0.198426 0.190212 26050 158493 -1 1376 22 897 1147 129321 26354 2.51043 2.51043 -96.7317 -2.51043 0 0 828058. 2865.25 0.93 0.19 0.34 -1 -1 0.93 0.00899241 0.00789819 52 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 30.69 vpr 64.30 MiB -1 -1 0.59 21280 1 0.20 -1 -1 33708 -1 -1 11 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65848 30 32 286 239 1 135 73 17 17 289 -1 unnamed_device 25.6 MiB 6.34 454 9193 3807 4991 395 64.3 MiB 0.11 0.00 3.70034 -111.63 -3.70034 3.70034 3.53 0.000150772 0.00011781 0.0115087 0.00929281 44 1701 43 6.95648e+06 159232 787024. 2723.27 7.77 0.326637 0.316321 27778 195446 -1 1200 42 1475 2367 304920 69406 3.39367 3.39367 -112.798 -3.39367 0 0 997811. 3452.63 1.28 0.32 0.66 -1 -1 1.28 0.0177282 0.0153164 54 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 30.17 vpr 64.37 MiB -1 -1 0.39 21128 1 0.03 -1 -1 33816 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65916 32 32 296 247 1 152 74 17 17 289 -1 unnamed_device 25.8 MiB 1.64 540 6894 2749 3889 256 64.4 MiB 0.11 0.00 3.0756 -105.849 -3.0756 3.0756 3.16 0.000217495 0.000182737 0.00865685 0.00695275 48 2093 40 6.95648e+06 144757 865456. 2994.66 14.50 0.346233 0.213565 28354 207349 -1 1461 20 1251 1952 212681 53380 2.86957 2.86957 -111.171 -2.86957 0 0 1.05005e+06 3633.38 0.69 0.08 0.42 -1 -1 0.69 0.0116749 0.0104345 59 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 23.15 vpr 64.03 MiB -1 -1 0.74 20824 1 0.20 -1 -1 33820 -1 -1 18 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65564 25 32 216 194 1 121 75 17 17 289 -1 unnamed_device 25.5 MiB 1.66 427 8607 3186 4041 1380 64.0 MiB 0.12 0.00 3.25923 -75.6499 -3.25923 3.25923 3.03 0.000136104 0.000109619 0.00846075 0.00676124 36 1724 49 6.95648e+06 260562 648988. 2245.63 8.89 0.16354 0.154577 26050 158493 -1 1184 19 856 1317 107054 24664 3.21822 3.21822 -88.2062 -3.21822 0 0 828058. 2865.25 1.01 0.33 0.24 -1 -1 1.01 0.306212 0.00679548 53 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 35.98 vpr 64.54 MiB -1 -1 0.85 21280 1 0.03 -1 -1 33704 -1 -1 12 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66084 32 32 376 307 1 178 76 17 17 289 -1 unnamed_device 25.9 MiB 7.40 691 12876 3790 6759 2327 64.5 MiB 0.36 0.00 3.85562 -123.567 -3.85562 3.85562 2.83 0.00018823 0.000151423 0.276605 0.273621 54 2268 48 6.95648e+06 173708 949917. 3286.91 11.06 0.525172 0.36659 29506 232905 -1 1461 19 1452 2424 160831 40373 4.26202 4.26202 -126.443 -4.26202 0 0 1.17392e+06 4061.99 2.07 0.20 0.62 -1 -1 2.07 0.167319 0.165871 73 72 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 33.02 vpr 64.73 MiB -1 -1 0.84 21584 1 0.08 -1 -1 33616 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66288 31 32 409 331 1 183 80 17 17 289 -1 unnamed_device 26.2 MiB 3.17 719 10056 4152 5465 439 64.7 MiB 0.36 0.00 4.20868 -140.697 -4.20868 4.20868 3.26 0.000191641 0.000153774 0.324432 0.321929 38 2570 39 6.95648e+06 246087 678818. 2348.85 12.58 0.388841 0.376411 26626 170182 -1 1936 20 1698 2238 181693 41509 3.74872 3.74872 -141.229 -3.74872 0 0 902133. 3121.57 1.52 0.07 0.42 -1 -1 1.52 0.0139526 0.0124567 80 90 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 59.91 vpr 64.56 MiB -1 -1 0.48 21280 1 0.04 -1 -1 33796 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66108 32 32 354 285 1 206 79 17 17 289 -1 unnamed_device 25.9 MiB 5.68 925 13599 5712 7221 666 64.6 MiB 0.05 0.00 5.03973 -148.547 -5.03973 5.03973 2.89 0.000175233 0.000141203 0.0222157 0.0205706 40 3040 27 6.99608e+06 220735 706193. 2443.58 41.52 0.238056 0.123775 26914 176310 -1 2373 23 1911 2628 219103 51878 4.66241 4.66241 -156.688 -4.66241 0 0 926341. 3205.33 1.29 0.13 0.41 -1 -1 1.29 0.0143679 0.0127893 88 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 34.32 vpr 64.70 MiB -1 -1 0.49 21584 1 0.13 -1 -1 33864 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66252 30 32 363 293 1 224 79 17 17 289 -1 unnamed_device 25.9 MiB 8.49 947 9036 3528 4833 675 64.7 MiB 0.18 0.00 5.09794 -153.24 -5.09794 5.09794 2.87 0.000174368 0.000140058 0.0112154 0.00925241 46 2962 35 6.99608e+06 250167 828058. 2865.25 9.33 0.0718243 0.0613846 28066 200906 -1 2108 21 2147 3210 215179 48132 4.72379 4.72379 -153.095 -4.72379 0 0 1.01997e+06 3529.29 1.71 0.12 0.44 -1 -1 1.71 0.020751 0.0194252 99 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 29.17 vpr 64.00 MiB -1 -1 0.53 21280 1 0.12 -1 -1 33744 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65532 32 32 299 247 1 183 78 17 17 289 -1 unnamed_device 25.6 MiB 3.38 838 11366 4465 5588 1313 64.0 MiB 0.36 0.00 3.53589 -111.786 -3.53589 3.53589 3.06 0.000180812 0.000148415 0.0973572 0.0948958 36 2669 46 6.99608e+06 206020 648988. 2245.63 12.18 0.254041 0.243029 26050 158493 -1 1926 22 1506 2019 191678 42730 3.52136 3.52136 -117.755 -3.52136 0 0 828058. 2865.25 1.10 0.55 0.27 -1 -1 1.10 0.517589 0.516135 76 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 27.15 vpr 64.09 MiB -1 -1 0.62 21128 1 0.03 -1 -1 33500 -1 -1 16 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65628 29 32 308 248 1 179 77 17 17 289 -1 unnamed_device 25.6 MiB 4.94 688 10998 4578 5788 632 64.1 MiB 0.08 0.00 4.05128 -115.844 -4.05128 4.05128 3.90 0.000169531 0.000137802 0.0125785 0.0102854 46 2181 45 6.99608e+06 235451 828058. 2865.25 8.52 0.138592 0.0553022 28066 200906 -1 1625 23 1535 2413 154308 37539 3.67782 3.67782 -117.38 -3.67782 0 0 1.01997e+06 3529.29 1.08 0.11 0.62 -1 -1 1.08 0.013445 0.012005 78 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 32.36 vpr 64.48 MiB -1 -1 0.52 21432 1 0.07 -1 -1 33404 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66028 32 32 336 268 1 194 78 17 17 289 -1 unnamed_device 25.8 MiB 10.14 845 10536 4153 4899 1484 64.5 MiB 0.12 0.00 4.59275 -141.742 -4.59275 4.59275 2.29 0.00019625 0.000126204 0.0653117 0.0629711 42 3328 41 6.99608e+06 206020 744469. 2576.02 11.48 0.123494 0.112328 27202 183097 -1 2510 24 1850 3188 327022 67236 4.67815 4.67815 -157.307 -4.67815 0 0 949917. 3286.91 1.17 0.32 0.44 -1 -1 1.17 0.0340471 0.0325023 81 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 37.32 vpr 64.61 MiB -1 -1 0.91 20976 1 0.18 -1 -1 33388 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66160 32 32 366 295 1 221 81 17 17 289 -1 unnamed_device 25.9 MiB 12.32 972 12681 4858 6385 1438 64.6 MiB 0.27 0.00 3.38924 -122.219 -3.38924 3.38924 2.81 0.000178532 0.000142209 0.181434 0.178529 46 3347 36 6.99608e+06 250167 828058. 2865.25 12.09 0.239919 0.227999 28066 200906 -1 2395 27 1888 3000 217208 50091 3.57241 3.57241 -132.058 -3.57241 0 0 1.01997e+06 3529.29 1.46 0.17 0.59 -1 -1 1.46 0.112366 0.0140757 97 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 27.24 vpr 63.85 MiB -1 -1 0.57 21280 1 0.09 -1 -1 34140 -1 -1 15 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65384 27 32 259 221 1 154 74 17 17 289 -1 unnamed_device 25.3 MiB 6.53 491 10924 4290 5184 1450 63.9 MiB 0.13 0.00 3.89582 -109.26 -3.89582 3.89582 3.41 0.000118979 9.2516e-05 0.010952 0.00875392 44 1845 41 6.99608e+06 220735 787024. 2723.27 7.12 0.275172 0.265885 27778 195446 -1 1273 29 1379 2084 153176 35803 3.18926 3.18926 -106.388 -3.18926 0 0 997811. 3452.63 1.38 0.31 0.49 -1 -1 1.38 0.0120217 0.0104788 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 20.00 vpr 64.16 MiB -1 -1 0.35 21280 1 0.08 -1 -1 33708 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 25.5 MiB 1.25 646 12568 4471 6001 2096 64.2 MiB 0.27 0.00 2.86205 -89.6785 -2.86205 2.86205 2.97 0.000140919 0.000109836 0.0107154 0.00856243 44 1974 28 6.99608e+06 367892 787024. 2723.27 6.62 0.202528 0.121199 27778 195446 -1 1534 29 1285 2222 191860 59564 2.75632 2.75632 -95.7095 -2.75632 0 0 997811. 3452.63 1.42 0.15 0.39 -1 -1 1.42 0.0131256 0.0114818 69 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 51.50 vpr 64.23 MiB -1 -1 0.31 21584 1 0.14 -1 -1 33892 -1 -1 14 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65776 31 32 317 271 1 204 77 17 17 289 -1 unnamed_device 25.6 MiB 2.58 996 6597 1763 3930 904 64.2 MiB 0.11 0.00 3.43418 -125.292 -3.43418 3.43418 2.70 0.000149239 0.000117355 0.00792216 0.00644205 38 2628 32 6.99608e+06 206020 678818. 2348.85 34.55 0.108808 0.093443 26626 170182 -1 2231 22 1692 2317 199941 39045 3.22627 3.22627 -127.955 -3.22627 0 0 902133. 3121.57 1.00 0.05 0.42 -1 -1 1.00 0.0118303 0.0104532 87 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 23.27 vpr 64.15 MiB -1 -1 0.49 21280 1 0.02 -1 -1 33948 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 32 32 298 248 1 181 77 17 17 289 -1 unnamed_device 25.6 MiB 3.08 768 12465 4799 6628 1038 64.1 MiB 0.23 0.00 4.05822 -139.086 -4.05822 4.05822 3.16 0.000148008 0.000118221 0.191777 0.189281 40 2080 23 6.99608e+06 191304 706193. 2443.58 8.03 0.292572 0.282742 26914 176310 -1 1902 21 1404 1799 161852 35357 3.62016 3.62016 -136.406 -3.62016 0 0 926341. 3205.33 1.33 0.21 0.60 -1 -1 1.33 0.0117305 0.0103816 75 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 22.60 vpr 64.24 MiB -1 -1 0.41 21280 1 0.17 -1 -1 33996 -1 -1 14 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65780 30 32 303 262 1 188 76 17 17 289 -1 unnamed_device 25.8 MiB 2.75 688 11596 4869 6191 536 64.2 MiB 0.19 0.00 3.88079 -123.458 -3.88079 3.88079 3.45 0.000141052 0.00010995 0.0129302 0.0105057 44 2498 27 6.99608e+06 206020 787024. 2723.27 8.40 0.268765 0.25897 27778 195446 -1 1698 22 1493 2012 148073 35718 3.6069 3.6069 -122.968 -3.6069 0 0 997811. 3452.63 1.33 0.07 0.47 -1 -1 1.33 0.0441342 0.0428446 83 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 23.82 vpr 63.88 MiB -1 -1 0.63 20976 1 0.11 -1 -1 33744 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65408 32 32 276 237 1 165 75 17 17 289 -1 unnamed_device 25.3 MiB 2.40 863 6237 1573 4339 325 63.9 MiB 0.03 0.00 3.25498 -118.92 -3.25498 3.25498 2.61 0.000140724 0.000112244 0.00727474 0.00595966 38 2329 21 6.99608e+06 161872 678818. 2348.85 10.65 0.578272 0.457533 26626 170182 -1 2049 16 1120 1472 120334 25200 3.17627 3.17627 -118.474 -3.17627 0 0 902133. 3121.57 0.93 0.28 0.33 -1 -1 0.93 0.149597 0.148873 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 24.65 vpr 64.40 MiB -1 -1 0.50 21280 1 0.27 -1 -1 33800 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65948 32 32 344 272 1 201 79 17 17 289 -1 unnamed_device 25.8 MiB 3.42 873 12585 5265 7003 317 64.4 MiB 0.09 0.00 3.95082 -135.525 -3.95082 3.95082 2.49 0.000173904 0.000140135 0.0348694 0.0320001 40 3058 28 6.99608e+06 220735 706193. 2443.58 10.13 0.563315 0.42799 26914 176310 -1 2401 23 2079 3012 267732 57155 3.60816 3.60816 -134.222 -3.60816 0 0 926341. 3205.33 1.05 0.16 0.45 -1 -1 1.05 0.0126873 0.0113228 87 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 24.90 vpr 64.64 MiB -1 -1 0.57 21280 1 0.02 -1 -1 33816 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66188 32 32 363 295 1 228 81 17 17 289 -1 unnamed_device 25.9 MiB 4.89 919 12856 3600 6557 2699 64.6 MiB 0.15 0.00 4.71129 -139.414 -4.71129 4.71129 2.77 0.000175127 0.000139665 0.0146413 0.0119911 54 2802 36 6.99608e+06 250167 949917. 3286.91 8.52 0.226854 0.21562 29506 232905 -1 1802 23 2043 2734 201520 47258 4.19521 4.19521 -138.846 -4.19521 0 0 1.17392e+06 4061.99 1.48 0.43 0.58 -1 -1 1.48 0.0141433 0.0126324 97 61 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 28.94 vpr 63.63 MiB -1 -1 0.46 21432 1 0.02 -1 -1 33872 -1 -1 13 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65160 29 32 248 215 1 155 74 17 17 289 -1 unnamed_device 25.2 MiB 10.30 532 10304 4052 4897 1355 63.6 MiB 0.17 0.00 3.0564 -87.6148 -3.0564 3.0564 2.34 0.000129189 0.000101356 0.00648444 0.00520814 44 1928 46 6.99608e+06 191304 787024. 2723.27 8.28 0.207963 0.199416 27778 195446 -1 1282 20 959 1352 101835 25459 3.08397 3.08397 -92.6682 -3.08397 0 0 997811. 3452.63 1.79 0.04 0.46 -1 -1 1.79 0.00996759 0.00880542 64 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 27.92 vpr 64.50 MiB -1 -1 0.53 21432 1 0.21 -1 -1 33696 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66052 32 32 370 297 1 222 80 17 17 289 -1 unnamed_device 25.9 MiB 4.07 1140 12464 4431 6558 1475 64.5 MiB 0.30 0.00 3.76129 -130.411 -3.76129 3.76129 2.66 0.000204737 0.00016924 0.0155986 0.0127445 40 3117 34 6.99608e+06 235451 706193. 2443.58 10.59 0.0723283 0.0610606 26914 176310 -1 2645 21 2052 3133 316208 64208 3.65912 3.65912 -140.567 -3.65912 0 0 926341. 3205.33 1.48 0.33 0.44 -1 -1 1.48 0.01391 0.0122895 96 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 62.38 vpr 64.52 MiB -1 -1 0.44 21432 1 0.13 -1 -1 33704 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66068 32 32 338 269 1 198 79 17 17 289 -1 unnamed_device 25.9 MiB 2.95 906 13768 5796 7604 368 64.5 MiB 0.36 0.00 4.30315 -137.123 -4.30315 4.30315 2.65 0.000192932 0.000158232 0.212087 0.209163 40 2625 23 6.99608e+06 220735 706193. 2443.58 43.83 1.23564 0.944669 26914 176310 -1 2177 23 1722 2343 280673 83000 3.49486 3.49486 -128.652 -3.49486 0 0 926341. 3205.33 1.43 0.25 0.39 -1 -1 1.43 0.0136439 0.0121505 84 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 20.45 vpr 64.51 MiB -1 -1 0.37 21280 1 0.03 -1 -1 33508 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66060 32 32 323 276 1 210 79 17 17 289 -1 unnamed_device 26.0 MiB 2.76 905 11064 3491 5867 1706 64.5 MiB 0.20 0.00 3.21889 -121.149 -3.21889 3.21889 2.90 0.000158223 0.0001266 0.0121631 0.00994897 42 3082 30 6.99608e+06 220735 744469. 2576.02 7.54 0.0545593 0.0455866 27202 183097 -1 2213 22 1822 2291 214482 48306 3.40796 3.40796 -136.466 -3.40796 0 0 949917. 3286.91 1.29 0.02 0.27 -1 -1 1.29 0.00707932 0.00637281 89 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 21.95 vpr 63.73 MiB -1 -1 0.44 21128 1 0.12 -1 -1 33856 -1 -1 10 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65264 30 32 222 206 1 131 72 17 17 289 -1 unnamed_device 25.2 MiB 6.41 630 8565 3545 4800 220 63.7 MiB 0.19 0.00 2.33546 -90.9219 -2.33546 2.33546 2.81 5.4371e-05 4.1543e-05 0.00705516 0.00554976 34 1779 31 6.99608e+06 147157 618332. 2139.56 5.68 0.0399199 0.0328344 25762 151098 -1 1455 24 825 913 111725 23696 2.10148 2.10148 -90.1959 -2.10148 0 0 787024. 2723.27 0.88 0.13 0.40 -1 -1 0.88 0.00795589 0.00678772 52 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 23.62 vpr 64.02 MiB -1 -1 0.42 21280 1 0.02 -1 -1 33888 -1 -1 13 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65552 31 32 291 243 1 171 76 17 17 289 -1 unnamed_device 25.5 MiB 7.63 783 8236 2031 5935 270 64.0 MiB 0.16 0.00 3.70832 -125.553 -3.70832 3.70832 2.42 0.000144118 0.000116061 0.0095307 0.00779307 40 2194 25 6.99608e+06 191304 706193. 2443.58 5.47 0.178147 0.169603 26914 176310 -1 2045 20 1440 2073 211575 44510 3.66441 3.66441 -138.837 -3.66441 0 0 926341. 3205.33 1.40 0.07 0.49 -1 -1 1.40 0.0110888 0.00992203 72 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 25.53 vpr 64.31 MiB -1 -1 0.57 21432 1 0.10 -1 -1 33940 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65856 32 32 342 271 1 201 84 17 17 289 -1 unnamed_device 25.8 MiB 4.01 786 12162 4998 6683 481 64.3 MiB 0.11 0.00 3.98084 -132.342 -3.98084 3.98084 2.27 0.000156451 0.000124443 0.0144777 0.011778 44 2843 30 6.99608e+06 294314 787024. 2723.27 10.76 0.330776 0.276672 27778 195446 -1 1830 21 1663 2556 220858 47746 3.94985 3.94985 -136.261 -3.94985 0 0 997811. 3452.63 0.82 0.52 0.39 -1 -1 0.82 0.0133949 0.0119868 88 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 38.10 vpr 64.47 MiB -1 -1 0.39 21432 1 0.19 -1 -1 33652 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66020 32 32 372 300 1 225 80 17 17 289 -1 unnamed_device 25.9 MiB 7.61 1267 15044 5761 7520 1763 64.5 MiB 0.25 0.00 4.6547 -145.44 -4.6547 4.6547 2.91 0.000169935 0.000136219 0.196496 0.0111821 38 3632 46 6.99608e+06 235451 678818. 2348.85 19.74 0.257636 0.0620024 26626 170182 -1 2938 22 2141 3120 303377 56654 4.18241 4.18241 -146.004 -4.18241 0 0 902133. 3121.57 1.53 0.17 0.32 -1 -1 1.53 0.0143429 0.0127962 100 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 22.13 vpr 63.76 MiB -1 -1 0.45 21280 1 0.08 -1 -1 34172 -1 -1 13 26 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65292 26 32 190 182 1 123 71 17 17 289 -1 unnamed_device 25.0 MiB 7.09 410 7809 3349 3986 474 63.8 MiB 0.12 0.00 2.7218 -77.6213 -2.7218 2.7218 2.32 0.000121548 9.6908e-05 0.0952664 0.0938056 38 1274 35 6.99608e+06 191304 678818. 2348.85 5.41 0.127822 0.120657 26626 170182 -1 950 19 761 840 63910 15458 2.36202 2.36202 -74.6155 -2.36202 0 0 902133. 3121.57 0.99 0.02 0.32 -1 -1 0.99 0.00743294 0.00645103 53 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 26.47 vpr 64.19 MiB -1 -1 0.57 21280 1 0.18 -1 -1 33720 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65728 32 32 285 227 1 162 79 17 17 289 -1 unnamed_device 25.5 MiB 3.63 705 12078 4998 6546 534 64.2 MiB 0.19 0.00 4.4821 -114.423 -4.4821 4.4821 2.26 0.000226891 0.000191392 0.116931 0.0106154 38 2743 36 6.99608e+06 220735 678818. 2348.85 13.93 0.33075 0.216376 26626 170182 -1 1871 23 1411 2380 182868 39939 3.85196 3.85196 -122.055 -3.85196 0 0 902133. 3121.57 0.90 0.12 0.21 -1 -1 0.90 0.011685 0.0103588 66 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 14.15 vpr 63.47 MiB -1 -1 0.32 20672 1 0.01 -1 -1 33464 -1 -1 8 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64992 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 24.9 MiB 0.76 437 9906 4138 5588 180 63.5 MiB 0.10 0.00 2.06911 -68.7948 -2.06911 2.06911 2.02 0.000100746 7.6232e-05 0.00824112 0.00639416 36 1252 23 6.99608e+06 117725 648988. 2245.63 4.25 0.102063 0.095255 26050 158493 -1 953 21 601 709 61167 13917 1.95112 1.95112 -70.894 -1.95112 0 0 828058. 2865.25 0.97 0.14 0.22 -1 -1 0.97 0.00719707 0.00625924 42 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 26.47 vpr 64.34 MiB -1 -1 0.82 21128 1 0.12 -1 -1 33372 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65884 32 32 300 245 1 178 78 17 17 289 -1 unnamed_device 25.7 MiB 3.67 788 11366 4166 5016 2184 64.3 MiB 0.13 0.00 4.53824 -123.102 -4.53824 4.53824 2.96 0.000166176 0.000133047 0.012266 0.00995307 38 2712 26 6.99608e+06 206020 678818. 2348.85 12.12 0.0889055 0.0795355 26626 170182 -1 1962 23 1397 2020 146825 32893 4.06311 4.06311 -129.454 -4.06311 0 0 902133. 3121.57 0.96 0.25 0.25 -1 -1 0.96 0.133971 0.132555 73 24 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 19.40 vpr 64.11 MiB -1 -1 0.33 21128 1 0.23 -1 -1 33888 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65644 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 25.6 MiB 1.44 753 10873 3616 5657 1600 64.1 MiB 0.14 0.00 2.84195 -96.8447 -2.84195 2.84195 2.28 8.2712e-05 6.0816e-05 0.00542077 0.00432634 38 2342 33 6.99608e+06 309029 678818. 2348.85 7.49 0.215687 0.207232 26626 170182 -1 1703 20 1321 2157 135646 31751 3.33972 3.33972 -107.715 -3.33972 0 0 902133. 3121.57 1.15 0.19 0.28 -1 -1 1.15 0.011631 0.0103369 74 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 29.84 vpr 64.41 MiB -1 -1 0.43 21280 1 0.03 -1 -1 33424 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65956 32 32 338 277 1 205 79 17 17 289 -1 unnamed_device 25.6 MiB 5.13 847 10726 4408 5888 430 64.4 MiB 0.36 0.00 4.20957 -126.724 -4.20957 4.20957 2.27 8.0897e-05 6.0474e-05 0.0121343 0.00985616 46 3164 43 6.99608e+06 220735 828058. 2865.25 14.48 0.0915375 0.0587401 28066 200906 -1 2141 23 1703 2499 189910 44242 4.09236 4.09236 -132.047 -4.09236 0 0 1.01997e+06 3529.29 1.20 0.14 0.46 -1 -1 1.20 0.00818029 0.00735675 87 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 28.16 vpr 64.20 MiB -1 -1 0.46 21584 1 0.20 -1 -1 33688 -1 -1 12 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 32 32 284 241 1 168 76 17 17 289 -1 unnamed_device 25.5 MiB 8.01 674 9356 2869 4552 1935 64.2 MiB 0.14 0.00 3.13575 -106.549 -3.13575 3.13575 2.55 0.000137406 0.000107637 0.115228 0.113219 38 2611 50 6.99608e+06 176588 678818. 2348.85 9.53 0.166583 0.155973 26626 170182 -1 1759 22 1375 1949 189887 40879 3.32052 3.32052 -126.851 -3.32052 0 0 902133. 3121.57 1.42 0.17 0.30 -1 -1 1.42 0.0111915 0.00966648 69 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 22.38 vpr 63.71 MiB -1 -1 0.25 21128 1 0.10 -1 -1 33600 -1 -1 14 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65244 30 32 262 227 1 160 76 17 17 289 -1 unnamed_device 25.1 MiB 4.60 589 9996 4091 5441 464 63.7 MiB 0.07 0.00 3.70857 -108.813 -3.70857 3.70857 2.30 0.000131811 0.000102745 0.0102136 0.00823174 46 1966 20 6.99608e+06 206020 828058. 2865.25 8.36 0.159815 0.152109 28066 200906 -1 1506 20 1116 1694 127421 30809 3.35721 3.35721 -115.344 -3.35721 0 0 1.01997e+06 3529.29 1.46 0.13 0.41 -1 -1 1.46 0.108567 0.10741 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 19.36 vpr 64.11 MiB -1 -1 0.37 21280 1 0.05 -1 -1 33708 -1 -1 18 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65652 28 32 260 223 1 152 78 17 17 289 -1 unnamed_device 25.4 MiB 2.25 621 9208 3749 4985 474 64.1 MiB 0.14 0.00 3.24014 -101.609 -3.24014 3.24014 2.48 0.000138065 0.00010978 0.00908661 0.00740399 38 1969 23 6.99608e+06 264882 678818. 2348.85 6.80 0.218797 0.210753 26626 170182 -1 1473 18 1091 1705 127233 27662 3.40101 3.40101 -110.982 -3.40101 0 0 902133. 3121.57 0.93 0.06 0.33 -1 -1 0.93 0.00925046 0.00821416 69 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 16.83 vpr 63.78 MiB -1 -1 0.37 21128 1 0.15 -1 -1 33676 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65308 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 25.2 MiB 0.99 516 11079 4202 5369 1508 63.8 MiB 0.37 0.00 3.37459 -107.294 -3.37459 3.37459 2.34 0.000153115 0.000119024 0.0116795 0.0093362 42 1871 39 6.99608e+06 147157 744469. 2576.02 5.27 0.0499122 0.041313 27202 183097 -1 1320 22 1151 1644 120070 29992 3.32957 3.32957 -114.574 -3.32957 0 0 949917. 3286.91 0.87 0.07 0.33 -1 -1 0.87 0.00990793 0.00872915 58 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 20.04 vpr 64.15 MiB -1 -1 0.37 21280 1 0.02 -1 -1 33444 -1 -1 13 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65692 31 32 271 231 1 165 76 17 17 289 -1 unnamed_device 25.6 MiB 2.81 676 8396 3459 4685 252 64.2 MiB 0.19 0.00 3.25548 -105.576 -3.25548 3.25548 3.15 0.000152776 0.000121177 0.00945105 0.00760112 44 2181 31 6.99608e+06 191304 787024. 2723.27 6.51 0.306791 0.298667 27778 195446 -1 1545 21 1175 1591 111985 25819 2.90272 2.90272 -103.292 -2.90272 0 0 997811. 3452.63 0.98 0.03 0.33 -1 -1 0.98 0.00903579 0.00794333 69 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 30.97 vpr 64.32 MiB -1 -1 0.47 21128 1 0.08 -1 -1 33764 -1 -1 15 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65868 29 32 291 250 1 180 76 17 17 289 -1 unnamed_device 25.6 MiB 9.12 889 11756 3248 7405 1103 64.3 MiB 0.02 0.00 2.90695 -105.014 -2.90695 2.90695 2.88 5.9528e-05 4.6969e-05 0.00548378 0.00443372 36 2464 32 6.99608e+06 220735 648988. 2245.63 11.43 0.0791028 0.0705231 26050 158493 -1 1973 23 1417 1899 163421 33391 2.79132 2.79132 -110.906 -2.79132 0 0 828058. 2865.25 1.24 0.35 0.32 -1 -1 1.24 0.321178 0.319908 77 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 28.70 vpr 64.42 MiB -1 -1 0.33 21280 1 0.22 -1 -1 33828 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65964 32 32 367 282 1 217 80 17 17 289 -1 unnamed_device 25.6 MiB 4.36 941 11432 4088 5131 2213 64.4 MiB 0.16 0.00 4.40712 -124.994 -4.40712 4.40712 2.45 0.000186834 0.000150435 0.119212 0.116758 46 3334 48 6.99608e+06 235451 828058. 2865.25 13.74 0.740443 0.728312 28066 200906 -1 2171 18 1438 2389 179966 44853 3.56847 3.56847 -122.078 -3.56847 0 0 1.01997e+06 3529.29 1.01 0.12 0.42 -1 -1 1.01 0.0130676 0.0118169 92 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 25.20 vpr 64.55 MiB -1 -1 0.59 21432 1 0.21 -1 -1 33872 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66104 32 32 391 311 1 244 83 17 17 289 -1 unnamed_device 26.0 MiB 4.93 1017 13403 4723 5972 2708 64.6 MiB 0.21 0.03 4.21676 -145.665 -4.21676 4.21676 2.57 0.000180176 0.000143859 0.0766221 0.0734857 44 3879 49 6.99608e+06 279598 787024. 2723.27 9.73 0.135994 0.123403 27778 195446 -1 2516 22 2329 3306 268780 57575 4.1148 4.1148 -151.24 -4.1148 0 0 997811. 3452.63 1.15 0.20 0.39 -1 -1 1.15 0.0156103 0.0139288 106 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 21.86 vpr 64.17 MiB -1 -1 0.42 21128 1 0.10 -1 -1 33716 -1 -1 11 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65712 31 32 279 237 1 157 74 17 17 289 -1 unnamed_device 25.5 MiB 4.38 893 5654 1315 4090 249 64.2 MiB 0.10 0.00 3.62727 -120.532 -3.62727 3.62727 2.35 0.000155426 0.000122743 0.0712058 0.0699558 38 2251 33 6.99608e+06 161872 678818. 2348.85 6.52 0.110811 0.102848 26626 170182 -1 1922 22 1329 1899 171751 33882 3.22627 3.22627 -118.928 -3.22627 0 0 902133. 3121.57 1.06 0.14 0.32 -1 -1 1.06 0.0105304 0.00916517 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 26.27 vpr 64.50 MiB -1 -1 0.54 21432 1 0.10 -1 -1 33920 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66052 31 32 370 297 1 226 80 17 17 289 -1 unnamed_device 25.9 MiB 5.26 982 11604 4819 6273 512 64.5 MiB 0.06 0.00 3.54169 -123.265 -3.54169 3.54169 2.64 0.000175819 0.000141397 0.0148431 0.0120939 44 3088 44 6.99608e+06 250167 787024. 2723.27 8.84 0.191617 0.179458 27778 195446 -1 2124 19 1679 2348 168768 39278 3.55936 3.55936 -131.747 -3.55936 0 0 997811. 3452.63 1.49 0.31 0.35 -1 -1 1.49 0.0130432 0.0116966 99 61 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 28.35 vpr 64.76 MiB -1 -1 0.51 21736 1 0.06 -1 -1 33536 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66312 31 32 377 302 1 235 80 17 17 289 -1 unnamed_device 26.1 MiB 5.15 1028 12636 4943 6140 1553 64.8 MiB 0.27 0.00 5.24621 -164.101 -5.24621 5.24621 2.60 0.000178978 0.000142942 0.0159988 0.0131292 48 3124 31 6.99608e+06 250167 865456. 2994.66 10.43 0.0659359 0.0552879 28354 207349 -1 2493 24 2360 3318 282867 62928 5.15959 5.15959 -170.295 -5.15959 0 0 1.05005e+06 3633.38 1.67 0.21 0.66 -1 -1 1.67 0.0153962 0.0137133 104 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 31.23 vpr 64.77 MiB -1 -1 0.35 21584 1 0.19 -1 -1 33916 -1 -1 18 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66328 31 32 383 305 1 233 81 17 17 289 -1 unnamed_device 26.1 MiB 10.88 968 11981 4240 5467 2274 64.8 MiB 0.36 0.00 5.19038 -164.138 -5.19038 5.19038 2.85 8.0018e-05 6.3132e-05 0.0160126 0.013105 40 3265 28 6.99608e+06 264882 706193. 2443.58 9.16 0.28158 0.270337 26914 176310 -1 2893 21 2251 3190 337590 71137 5.42135 5.42135 -181.76 -5.42135 0 0 926341. 3205.33 1.11 0.17 0.45 -1 -1 1.11 0.013823 0.0121943 103 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 27.33 vpr 64.45 MiB -1 -1 0.56 21584 1 0.21 -1 -1 33540 -1 -1 16 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65992 31 32 352 285 1 215 79 17 17 289 -1 unnamed_device 25.9 MiB 7.01 862 12585 5256 6762 567 64.4 MiB 0.22 0.00 3.89582 -125.985 -3.89582 3.89582 2.77 0.000182989 0.00014656 0.19713 0.19565 48 2799 44 6.99608e+06 235451 865456. 2994.66 8.82 0.508719 0.403863 28354 207349 -1 2169 22 1701 2264 194560 43366 3.42786 3.42786 -122.223 -3.42786 0 0 1.05005e+06 3633.38 1.18 0.16 0.40 -1 -1 1.18 0.0138875 0.0123358 93 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 57.34 vpr 64.19 MiB -1 -1 0.48 21280 1 0.13 -1 -1 33880 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65728 32 32 291 242 1 178 78 17 17 289 -1 unnamed_device 25.5 MiB 2.93 803 9872 4112 5444 316 64.2 MiB 0.11 0.00 3.99218 -113.879 -3.99218 3.99218 2.60 0.000142435 0.000110946 0.0106756 0.00862472 40 2658 35 6.99608e+06 206020 706193. 2443.58 44.08 0.405386 0.387981 26914 176310 -1 2071 26 1764 2473 302639 100766 3.76682 3.76682 -121.52 -3.76682 0 0 926341. 3205.33 1.14 0.17 0.45 -1 -1 1.14 0.110847 0.10724 72 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 27.37 vpr 64.77 MiB -1 -1 0.50 21888 1 0.15 -1 -1 33636 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66324 32 32 457 356 1 282 85 17 17 289 -1 unnamed_device 26.5 MiB 4.95 1405 9943 2847 6446 650 64.8 MiB 0.14 0.00 4.92896 -168.996 -4.92896 4.92896 2.38 0.000203518 0.000165072 0.0977434 0.0954113 40 3872 39 6.99608e+06 309029 706193. 2443.58 11.96 0.346513 0.334106 26914 176310 -1 3344 23 2997 4336 446634 100719 4.65734 4.65734 -173.663 -4.65734 0 0 926341. 3205.33 1.01 0.21 0.38 -1 -1 1.01 0.0156173 0.0138065 129 87 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 28.54 vpr 64.07 MiB -1 -1 0.62 21280 1 0.06 -1 -1 33696 -1 -1 11 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65604 31 32 261 225 1 158 74 17 17 289 -1 unnamed_device 25.5 MiB 9.96 544 11234 4006 5215 2013 64.1 MiB 0.04 0.00 2.9921 -96.7202 -2.9921 2.9921 2.19 0.000125897 9.823e-05 0.0119502 0.00966785 40 1883 30 6.99608e+06 161872 706193. 2443.58 9.57 0.162997 0.154644 26914 176310 -1 1440 20 1280 1611 137520 35615 3.03497 3.03497 -106.757 -3.03497 0 0 926341. 3205.33 1.01 0.15 0.30 -1 -1 1.01 0.0104517 0.00956822 65 28 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 18.98 vpr 64.38 MiB -1 -1 0.46 21432 1 0.14 -1 -1 33748 -1 -1 15 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65920 31 32 337 267 1 200 78 17 17 289 -1 unnamed_device 25.8 MiB 1.95 912 12694 5540 6748 406 64.4 MiB 0.18 0.00 4.60267 -146.673 -4.60267 4.60267 2.72 0.000168282 0.000135802 0.0103137 0.00841589 48 2470 23 6.99608e+06 220735 865456. 2994.66 6.45 0.13798 0.128773 28354 207349 -1 2082 23 1770 2646 253731 52127 4.13621 4.13621 -137.464 -4.13621 0 0 1.05005e+06 3633.38 1.34 0.19 0.47 -1 -1 1.34 0.145241 0.1438 85 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 27.04 vpr 64.47 MiB -1 -1 0.31 21280 1 0.19 -1 -1 33536 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66016 32 32 349 284 1 213 79 17 17 289 -1 unnamed_device 25.9 MiB 4.95 945 13430 5689 7174 567 64.5 MiB 0.30 0.00 3.75245 -124.97 -3.75245 3.75245 2.76 0.00017646 0.000131258 0.015739 0.0126729 46 2944 27 6.99608e+06 220735 828058. 2865.25 10.88 0.160993 0.149706 28066 200906 -1 2029 19 1444 2116 166624 39451 3.40412 3.40412 -125.845 -3.40412 0 0 1.01997e+06 3529.29 1.14 0.16 0.48 -1 -1 1.14 0.0115485 0.0101567 91 53 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 20.45 vpr 64.16 MiB -1 -1 0.45 20976 1 0.17 -1 -1 33740 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65696 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 25.5 MiB 2.91 690 11776 4321 5710 1745 64.2 MiB 0.15 0.00 4.31309 -119.63 -4.31309 4.31309 2.37 0.000147659 0.000116013 0.0129942 0.0105711 44 2227 26 6.99608e+06 235451 787024. 2723.27 6.75 0.0888485 0.0796297 27778 195446 -1 1617 19 1050 1861 132027 30100 3.77982 3.77982 -121.04 -3.77982 0 0 997811. 3452.63 1.05 0.10 0.57 -1 -1 1.05 0.0104164 0.00930439 68 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 21.26 vpr 64.61 MiB -1 -1 0.42 21432 1 0.14 -1 -1 33464 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66164 32 32 353 287 1 204 79 17 17 289 -1 unnamed_device 25.9 MiB 4.13 860 12585 4651 6361 1573 64.6 MiB 0.25 0.12 4.42805 -134.738 -4.42805 4.42805 2.63 0.000165529 0.000133429 0.0163858 0.0133661 42 2764 29 6.99608e+06 220735 744469. 2576.02 5.20 0.059445 0.0492923 27202 183097 -1 2059 19 1386 1823 151201 33345 3.83976 3.83976 -135.065 -3.83976 0 0 949917. 3286.91 1.48 0.34 0.48 -1 -1 1.48 0.0132619 0.0118109 90 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 63.86 vpr 64.25 MiB -1 -1 0.67 21128 1 0.29 -1 -1 33680 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65796 32 32 361 291 1 216 79 17 17 289 -1 unnamed_device 25.6 MiB 4.98 955 12923 4690 6560 1673 64.3 MiB 0.14 0.00 3.70839 -125.63 -3.70839 3.70839 2.73 0.000199053 0.000160812 0.0499555 0.0468568 40 3001 35 6.99608e+06 220735 706193. 2443.58 46.74 0.397475 0.314069 26914 176310 -1 2594 24 1980 3063 380968 104868 3.88806 3.88806 -139.973 -3.88806 0 0 926341. 3205.33 1.27 0.27 0.32 -1 -1 1.27 0.00919012 0.00804052 92 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 27.78 vpr 64.74 MiB -1 -1 0.62 21280 1 0.25 -1 -1 33400 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66296 32 32 382 305 1 237 80 17 17 289 -1 unnamed_device 26.1 MiB 8.27 978 13152 5506 7269 377 64.7 MiB 0.15 0.00 3.78378 -128.23 -3.78378 3.78378 2.43 0.000171935 0.000134874 0.0162603 0.0133459 46 2941 30 6.99608e+06 235451 828058. 2865.25 8.20 0.0690002 0.0578692 28066 200906 -1 2221 23 1883 2487 191121 41445 3.23321 3.23321 -122.651 -3.23321 0 0 1.01997e+06 3529.29 1.18 0.08 0.46 -1 -1 1.18 0.0149729 0.0132922 101 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 20.65 vpr 64.30 MiB -1 -1 0.48 21280 1 0.02 -1 -1 33840 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65840 32 32 306 248 1 178 78 17 17 289 -1 unnamed_device 25.6 MiB 3.12 740 10204 3637 4872 1695 64.3 MiB 0.13 0.00 4.49903 -121.926 -4.49903 4.49903 2.71 0.000153053 0.000121847 0.0124619 0.0103218 44 2663 29 6.99608e+06 206020 787024. 2723.27 6.03 0.0576417 0.0478312 27778 195446 -1 1849 24 1346 2153 157567 36047 4.02517 4.02517 -124.382 -4.02517 0 0 997811. 3452.63 1.43 0.12 0.40 -1 -1 1.43 0.0130684 0.0115002 74 24 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 24.50 vpr 64.42 MiB -1 -1 0.21 21280 1 0.03 -1 -1 33980 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65964 32 32 319 257 1 192 77 17 17 289 -1 unnamed_device 25.9 MiB 6.92 787 11161 3588 5346 2227 64.4 MiB 0.08 0.00 4.08638 -124.975 -4.08638 4.08638 2.76 0.000154583 0.00012416 0.0128349 0.0105005 40 2643 24 6.99608e+06 191304 706193. 2443.58 7.18 0.0574661 0.0480763 26914 176310 -1 2114 20 1643 2275 205823 44440 4.07536 4.07536 -135.578 -4.07536 0 0 926341. 3205.33 0.96 0.12 0.52 -1 -1 0.96 0.103263 0.10235 81 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 23.55 vpr 64.66 MiB -1 -1 0.29 21280 1 0.03 -1 -1 33824 -1 -1 16 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66208 31 32 373 299 1 224 79 17 17 289 -1 unnamed_device 25.9 MiB 2.77 1019 12923 4941 6153 1829 64.7 MiB 0.39 0.00 4.37385 -138.003 -4.37385 4.37385 2.37 0.000171719 0.000137704 0.147258 0.144001 44 3606 34 6.99608e+06 235451 787024. 2723.27 9.85 0.383742 0.192068 27778 195446 -1 2373 22 1854 2847 215637 46651 4.41426 4.41426 -137.655 -4.41426 0 0 997811. 3452.63 1.10 0.27 0.41 -1 -1 1.10 0.117501 0.115947 99 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 26.06 vpr 64.52 MiB -1 -1 0.42 21584 1 0.23 -1 -1 33496 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66072 32 32 387 315 1 241 80 17 17 289 -1 unnamed_device 25.9 MiB 3.22 1065 12292 5199 6801 292 64.5 MiB 0.10 0.00 3.97712 -134.378 -3.97712 3.97712 2.73 0.000179662 0.000143444 0.01694 0.0141503 44 3699 27 6.99608e+06 235451 787024. 2723.27 11.14 0.490684 0.479747 27778 195446 -1 2693 24 2108 3139 267821 61670 3.90526 3.90526 -143.019 -3.90526 0 0 997811. 3452.63 1.44 0.17 0.48 -1 -1 1.44 0.0124409 0.0106371 104 77 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 22.46 vpr 64.02 MiB -1 -1 0.34 21432 1 0.03 -1 -1 33544 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65556 32 32 251 219 1 152 74 17 17 289 -1 unnamed_device 25.3 MiB 1.92 609 9994 4141 5511 342 64.0 MiB 0.07 0.00 3.25208 -98.689 -3.25208 3.25208 2.93 0.000132569 0.000104703 0.0104799 0.00830862 38 2057 47 6.99608e+06 147157 678818. 2348.85 9.55 0.0513689 0.0421388 26626 170182 -1 1536 18 1041 1406 115965 28168 2.91072 2.91072 -99.3222 -2.91072 0 0 902133. 3121.57 1.14 0.03 0.40 -1 -1 1.14 0.0627542 0.061765 60 23 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 22.08 vpr 64.59 MiB -1 -1 0.56 21584 1 0.14 -1 -1 33596 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66136 32 32 341 285 1 214 79 17 17 289 -1 unnamed_device 26.1 MiB 2.86 837 8867 3217 4116 1534 64.6 MiB 0.14 0.00 4.06528 -147.024 -4.06528 4.06528 3.00 0.000153524 0.000121214 0.0108326 0.00888962 46 2585 24 6.99608e+06 220735 828058. 2865.25 8.58 0.261676 0.253136 28066 200906 -1 1998 20 1957 2588 199985 44033 3.83425 3.83425 -146.664 -3.83425 0 0 1.01997e+06 3529.29 0.93 0.21 0.64 -1 -1 0.93 0.187717 0.00802113 93 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 71.75 vpr 64.76 MiB -1 -1 0.46 21432 1 0.13 -1 -1 33684 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66312 32 32 387 293 1 226 80 17 17 289 -1 unnamed_device 26.2 MiB 3.37 923 11776 4896 6295 585 64.8 MiB 0.10 0.00 4.78758 -149.256 -4.78758 4.78758 2.55 0.000181438 0.000147473 0.0159067 0.0131205 48 3448 39 6.99608e+06 235451 865456. 2994.66 57.19 0.390088 0.368563 28354 207349 -1 2558 33 2727 4198 599463 223728 4.76546 4.76546 -161.743 -4.76546 0 0 1.05005e+06 3633.38 1.21 0.60 0.62 -1 -1 1.21 0.16685 0.164905 98 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 21.41 vpr 64.30 MiB -1 -1 0.53 21432 1 0.04 -1 -1 33788 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65844 32 32 340 270 1 203 79 17 17 289 -1 unnamed_device 25.6 MiB 2.08 852 12247 5127 6715 405 64.3 MiB 0.20 0.00 4.29215 -139.385 -4.29215 4.29215 2.85 7.6607e-05 5.9973e-05 0.16916 0.166928 44 2691 40 6.99608e+06 220735 787024. 2723.27 8.27 0.246297 0.235022 27778 195446 -1 1888 18 1452 1986 166756 35737 3.23326 3.23326 -128.308 -3.23326 0 0 997811. 3452.63 0.84 0.15 0.46 -1 -1 0.84 0.122192 0.0109331 85 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 24.60 vpr 64.06 MiB -1 -1 0.40 21432 1 0.03 -1 -1 33612 -1 -1 20 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65596 30 32 278 235 1 166 82 17 17 289 -1 unnamed_device 25.5 MiB 3.85 651 12008 4967 6460 581 64.1 MiB 0.08 0.00 3.65345 -113.329 -3.65345 3.65345 2.36 0.000179894 0.000149546 0.0430158 0.0407539 46 2085 31 6.99608e+06 294314 828058. 2865.25 8.98 0.0863394 0.0770483 28066 200906 -1 1479 20 1170 1804 118310 28898 3.34801 3.34801 -114.703 -3.34801 0 0 1.01997e+06 3529.29 1.39 0.13 0.42 -1 -1 1.39 0.0102901 0.00912519 72 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 33.22 vpr 64.75 MiB -1 -1 0.43 21888 1 0.22 -1 -1 34084 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66304 32 32 431 332 1 261 82 17 17 289 -1 unnamed_device 26.1 MiB 5.86 1423 15212 5887 7111 2214 64.8 MiB 0.18 0.00 6.01298 -186.863 -6.01298 6.01298 2.64 0.000198616 0.000160838 0.0152163 0.0124892 40 4064 33 6.99608e+06 264882 706193. 2443.58 15.96 0.396401 0.384284 26914 176310 -1 3466 23 3071 4667 575895 137801 5.72209 5.72209 -195.82 -5.72209 0 0 926341. 3205.33 1.24 0.59 0.40 -1 -1 1.24 0.227472 0.225619 116 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 21.71 vpr 64.48 MiB -1 -1 0.56 21584 1 0.13 -1 -1 33772 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66028 32 32 336 268 1 199 78 17 17 289 -1 unnamed_device 25.8 MiB 2.63 905 9374 3182 4148 2044 64.5 MiB 0.35 0.00 4.80204 -144.828 -4.80204 4.80204 2.46 0.000189494 0.000141864 0.0125408 0.0103455 40 2848 29 6.99608e+06 206020 706193. 2443.58 7.83 0.259256 0.250044 26914 176310 -1 2310 24 1886 2581 254946 50387 4.43325 4.43325 -151.45 -4.43325 0 0 926341. 3205.33 1.34 0.12 0.35 -1 -1 1.34 0.0567713 0.0552506 83 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 18.76 vpr 63.87 MiB -1 -1 0.59 21128 1 0.05 -1 -1 33752 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65404 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 25.2 MiB 1.20 535 10509 4368 5789 352 63.9 MiB 0.19 0.00 2.922 -91.5293 -2.922 2.922 2.27 0.000145018 0.000115067 0.00978173 0.00782424 44 1776 31 6.99608e+06 191304 787024. 2723.27 6.29 0.24808 0.239784 27778 195446 -1 1254 23 998 1562 123725 29408 3.16227 3.16227 -97.6512 -3.16227 0 0 997811. 3452.63 1.43 0.02 0.62 -1 -1 1.43 0.0066414 0.00581891 51 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 23.17 vpr 64.45 MiB -1 -1 0.45 21432 1 0.40 -1 -1 33800 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65992 32 32 349 273 1 207 80 17 17 289 -1 unnamed_device 25.8 MiB 4.02 947 15044 6497 7967 580 64.4 MiB 0.50 0.00 4.78912 -134.232 -4.78912 4.78912 2.33 0.000181126 0.000146901 0.0962427 0.093064 46 2762 25 6.99608e+06 235451 828058. 2865.25 8.50 0.707065 0.655959 28066 200906 -1 2115 21 1570 2715 198354 43220 4.4258 4.4258 -134.383 -4.4258 0 0 1.01997e+06 3529.29 1.24 0.21 0.32 -1 -1 1.24 0.374509 0.373134 85 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 18.82 vpr 64.01 MiB -1 -1 0.36 21128 1 0.27 -1 -1 33880 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65548 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 25.3 MiB 2.71 510 10204 2772 5522 1910 64.0 MiB 0.16 0.00 2.966 -97.4119 -2.966 2.966 2.46 0.000130392 0.000101996 0.00938946 0.00758579 38 1706 46 6.99608e+06 206020 678818. 2348.85 5.64 0.201013 0.0775166 26626 170182 -1 1321 20 1013 1499 97313 22780 3.20727 3.20727 -108.328 -3.20727 0 0 902133. 3121.57 1.30 0.03 0.32 -1 -1 1.30 0.00981572 0.00853123 57 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 23.65 vpr 64.05 MiB -1 -1 0.62 21128 1 0.08 -1 -1 33896 -1 -1 13 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65588 30 32 278 235 1 170 75 17 17 289 -1 unnamed_device 25.5 MiB 2.26 687 11293 4742 6109 442 64.1 MiB 0.19 0.00 3.75078 -115.874 -3.75078 3.75078 2.68 6.1499e-05 4.7279e-05 0.157643 0.155498 38 1989 24 6.99608e+06 191304 678818. 2348.85 10.53 0.235995 0.227258 26626 170182 -1 1558 24 1279 1709 139697 30155 3.35642 3.35642 -115.674 -3.35642 0 0 902133. 3121.57 1.24 0.04 0.34 -1 -1 1.24 0.0118463 0.0104752 69 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 31.30 vpr 63.97 MiB -1 -1 0.32 21584 1 0.02 -1 -1 33832 -1 -1 18 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65508 29 32 355 287 1 213 79 17 17 289 -1 unnamed_device 25.2 MiB 5.34 994 7008 2797 3909 302 64.0 MiB 0.25 0.00 4.18292 -131.078 -4.18292 4.18292 2.52 0.000162497 0.00012991 0.150902 0.149406 40 3441 43 6.99608e+06 264882 706193. 2443.58 16.01 0.669417 0.659298 26914 176310 -1 2874 22 2123 3092 384118 87360 3.94156 3.94156 -139.592 -3.94156 0 0 926341. 3205.33 1.09 0.26 0.19 -1 -1 1.09 0.0144362 0.0128676 97 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 42.84 vpr 64.05 MiB -1 -1 0.25 21432 1 0.12 -1 -1 33840 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65592 32 32 358 289 1 217 79 17 17 289 -1 unnamed_device 25.3 MiB 4.56 931 7008 2217 3531 1260 64.1 MiB 0.10 0.00 4.25698 -140.399 -4.25698 4.25698 2.31 0.000177969 0.000142754 0.00764803 0.00628501 40 2908 35 6.99608e+06 220735 706193. 2443.58 28.75 0.368772 0.344694 26914 176310 -1 2417 69 3723 5380 1133922 475606 5.07131 5.07131 -162.382 -5.07131 0 0 926341. 3205.33 1.06 0.77 0.27 -1 -1 1.06 0.131801 0.12812 93 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 27.95 vpr 64.62 MiB -1 -1 0.43 21280 1 0.03 -1 -1 33848 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66176 32 32 353 285 1 213 79 17 17 289 -1 unnamed_device 25.9 MiB 8.14 1126 12585 4376 6061 2148 64.6 MiB 0.30 0.00 4.54997 -147.039 -4.54997 4.54997 2.65 0.000170124 0.000138057 0.0986792 0.0958479 40 2898 34 6.99608e+06 220735 706193. 2443.58 8.79 0.151868 0.141548 26914 176310 -1 2697 23 1971 2885 312909 60301 4.66721 4.66721 -157.112 -4.66721 0 0 926341. 3205.33 1.04 0.19 0.49 -1 -1 1.04 0.0143271 0.0126198 90 51 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 27.25 vpr 64.16 MiB -1 -1 0.21 21280 1 0.06 -1 -1 33844 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 32 32 276 237 1 163 75 17 17 289 -1 unnamed_device 25.5 MiB 7.15 661 11767 4888 6509 370 64.2 MiB 0.12 0.00 3.96872 -124.487 -3.96872 3.96872 2.55 0.000167643 0.000132871 0.068274 0.0658955 40 2367 25 6.99608e+06 161872 706193. 2443.58 9.78 0.107201 0.098682 26914 176310 -1 1809 24 1313 1689 188497 53743 3.87076 3.87076 -132.815 -3.87076 0 0 926341. 3205.33 1.26 0.10 0.31 -1 -1 1.26 0.0115145 0.0101467 67 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 18.84 vpr 64.47 MiB -1 -1 0.32 21584 1 0.06 -1 -1 33900 -1 -1 14 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66020 31 32 319 272 1 200 77 17 17 289 -1 unnamed_device 25.8 MiB 3.18 794 12791 5380 7022 389 64.5 MiB 0.14 0.00 3.72927 -124.193 -3.72927 3.72927 2.30 0.000161194 0.000127061 0.013976 0.0112777 46 2333 30 6.99608e+06 206020 828058. 2865.25 5.41 0.52602 0.515982 28066 200906 -1 1790 22 1454 2030 156940 33870 3.36281 3.36281 -121.934 -3.36281 0 0 1.01997e+06 3529.29 1.10 0.11 0.38 -1 -1 1.10 0.0836658 0.0822534 86 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 22.27 vpr 64.54 MiB -1 -1 0.44 21280 1 0.02 -1 -1 33576 -1 -1 19 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66088 30 32 329 273 1 202 81 17 17 289 -1 unnamed_device 25.8 MiB 4.35 861 13731 5139 6518 2074 64.5 MiB 0.19 0.00 3.45074 -112.678 -3.45074 3.45074 2.30 0.000156749 0.000123991 0.0908065 0.0880744 40 2887 25 6.99608e+06 279598 706193. 2443.58 8.27 0.132724 0.123464 26914 176310 -1 2144 22 1847 2619 248813 55028 3.18851 3.18851 -115.459 -3.18851 0 0 926341. 3205.33 0.99 0.39 0.34 -1 -1 0.99 0.0126617 0.0112127 91 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 37.34 vpr 64.00 MiB -1 -1 0.44 21128 1 0.16 -1 -1 33720 -1 -1 17 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65536 28 32 277 229 1 170 77 17 17 289 -1 unnamed_device 25.4 MiB 1.39 723 11976 5024 6337 615 64.0 MiB 0.17 0.00 3.68935 -104.223 -3.68935 3.68935 3.02 0.000138445 0.000109218 0.134629 0.13222 38 2170 32 6.99608e+06 250167 678818. 2348.85 25.35 0.328546 0.312845 26626 170182 -1 1687 23 1445 2242 178128 37301 3.83422 3.83422 -111.835 -3.83422 0 0 902133. 3121.57 0.97 0.16 0.24 -1 -1 0.97 0.010884 0.00961885 71 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 26.96 vpr 64.47 MiB -1 -1 0.55 21128 1 0.12 -1 -1 33528 -1 -1 15 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66016 30 32 317 269 1 200 77 17 17 289 -1 unnamed_device 25.9 MiB 5.42 818 11324 3148 6454 1722 64.5 MiB 0.17 0.00 4.41761 -136.631 -4.41761 4.41761 2.18 0.000157971 0.000126032 0.0130531 0.010633 46 2411 48 6.99608e+06 220735 828058. 2865.25 10.90 0.0628872 0.0525514 28066 200906 -1 1681 20 1634 2153 148658 36551 3.73525 3.73525 -130.072 -3.73525 0 0 1.01997e+06 3529.29 1.14 0.14 0.29 -1 -1 1.14 0.0107802 0.00956925 87 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 20.78 vpr 64.57 MiB -1 -1 0.37 21280 1 0.02 -1 -1 33568 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66120 32 32 335 282 1 216 78 17 17 289 -1 unnamed_device 25.9 MiB 2.69 1010 13192 5594 7383 215 64.6 MiB 0.19 0.00 3.51674 -126.355 -3.51674 3.51674 2.31 0.000171431 0.000136538 0.0480006 0.0450497 40 2849 29 6.99608e+06 206020 706193. 2443.58 8.39 0.733582 0.690415 26914 176310 -1 2595 20 1836 2525 265148 53412 3.14421 3.14421 -130.08 -3.14421 0 0 926341. 3205.33 1.03 0.14 0.23 -1 -1 1.03 0.235713 0.234658 93 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 20.27 vpr 64.06 MiB -1 -1 0.36 21280 1 0.09 -1 -1 33788 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65596 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 25.6 MiB 1.12 737 13911 5155 6642 2114 64.1 MiB 0.18 0.00 4.50448 -121.077 -4.50448 4.50448 2.67 0.00015456 0.000123481 0.00944061 0.00762836 46 2250 32 6.99608e+06 353176 828058. 2865.25 8.29 0.199999 0.190714 28066 200906 -1 1674 22 1240 2123 163406 36714 3.80592 3.80592 -119.755 -3.80592 0 0 1.01997e+06 3529.29 1.32 0.35 0.35 -1 -1 1.32 0.10073 0.0993712 74 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 25.36 vpr 64.45 MiB -1 -1 0.50 21584 1 0.03 -1 -1 33952 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65992 32 32 350 275 1 202 78 17 17 289 -1 unnamed_device 25.8 MiB 6.90 870 10204 4231 5688 285 64.4 MiB 0.18 0.00 4.41391 -146.987 -4.41391 4.41391 2.98 0.000156037 0.000123696 0.0131657 0.0107111 44 3323 36 6.99608e+06 206020 787024. 2723.27 7.42 0.113824 0.102974 27778 195446 -1 2310 23 1929 2857 210235 46439 4.19065 4.19065 -150.738 -4.19065 0 0 997811. 3452.63 1.13 0.18 0.21 -1 -1 1.13 0.0213556 0.0198425 86 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 25.05 vpr 64.78 MiB -1 -1 0.57 21280 1 0.18 -1 -1 33736 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66332 32 32 385 308 1 237 81 17 17 289 -1 unnamed_device 26.1 MiB 2.58 1114 14606 5637 6534 2435 64.8 MiB 0.26 0.00 5.07184 -165.984 -5.07184 5.07184 2.61 0.000198871 0.000161516 0.0175467 0.0143501 44 3532 33 6.99608e+06 250167 787024. 2723.27 11.33 0.129499 0.0630345 27778 195446 -1 2490 23 2284 3287 279990 57438 4.86974 4.86974 -167.378 -4.86974 0 0 997811. 3452.63 1.18 0.03 0.42 -1 -1 1.18 0.0097321 0.00865276 102 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 22.47 vpr 64.83 MiB -1 -1 0.35 21280 1 0.02 -1 -1 33772 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66388 32 32 387 309 1 244 81 17 17 289 -1 unnamed_device 26.2 MiB 2.63 1042 9181 3711 5204 266 64.8 MiB 0.05 0.00 4.37608 -146.243 -4.37608 4.37608 2.38 0.000180605 0.00014511 0.0125134 0.0102249 46 3529 25 6.99608e+06 250167 828058. 2865.25 10.07 0.0688836 0.0581383 28066 200906 -1 2566 22 1996 2878 264750 54411 4.1678 4.1678 -154.244 -4.1678 0 0 1.01997e+06 3529.29 1.06 0.41 0.44 -1 -1 1.06 0.05239 0.0508108 104 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 19.12 vpr 64.02 MiB -1 -1 0.31 21280 1 0.17 -1 -1 33892 -1 -1 13 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65560 30 32 272 232 1 171 75 17 17 289 -1 unnamed_device 25.6 MiB 2.74 629 9713 2668 5130 1915 64.0 MiB 0.08 0.06 4.31695 -123.26 -4.31695 4.31695 2.91 5.9551e-05 4.6167e-05 0.00485077 0.00390429 46 1921 21 6.99608e+06 191304 828058. 2865.25 5.77 0.0389078 0.0323672 28066 200906 -1 1475 21 1049 1505 106998 24231 3.47286 3.47286 -117.41 -3.47286 0 0 1.01997e+06 3529.29 1.15 0.12 0.45 -1 -1 1.15 0.0105365 0.00932647 71 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 25.72 vpr 64.76 MiB -1 -1 0.39 21432 1 0.11 -1 -1 33648 -1 -1 18 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66316 30 32 375 299 1 233 80 17 17 289 -1 unnamed_device 26.1 MiB 3.78 883 12120 4402 5485 2233 64.8 MiB 0.19 0.00 5.2091 -158.73 -5.2091 5.2091 2.99 0.000207889 0.000155966 0.0806197 0.0133318 46 3049 27 6.99608e+06 264882 828058. 2865.25 11.63 0.265989 0.190151 28066 200906 -1 2139 35 2805 4012 293032 69352 5.0758 5.0758 -166.038 -5.0758 0 0 1.01997e+06 3529.29 1.46 0.10 0.31 -1 -1 1.46 0.020199 0.0176592 104 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 25.40 vpr 64.16 MiB -1 -1 0.43 21280 1 0.21 -1 -1 33696 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 32 32 340 270 1 197 78 17 17 289 -1 unnamed_device 25.8 MiB 4.32 774 11698 4362 5117 2219 64.2 MiB 0.03 0.00 4.8046 -141.064 -4.8046 4.8046 2.69 7.1295e-05 5.4613e-05 0.00618305 0.00495622 48 2796 44 6.99608e+06 206020 865456. 2994.66 10.07 0.385289 0.375274 28354 207349 -1 2171 22 1819 2863 265130 59913 4.06535 4.06535 -139.843 -4.06535 0 0 1.05005e+06 3633.38 1.17 0.18 0.43 -1 -1 1.17 0.0131011 0.0116469 82 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 27.98 vpr 64.14 MiB -1 -1 0.45 21584 1 0.06 -1 -1 33776 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65676 31 32 340 275 1 199 80 17 17 289 -1 unnamed_device 25.6 MiB 3.22 823 14528 6271 7657 600 64.1 MiB 0.05 0.00 5.20705 -145.134 -5.20705 5.20705 2.79 7.4495e-05 5.75e-05 0.00931898 0.00753086 40 2954 37 6.99608e+06 250167 706193. 2443.58 12.92 0.0680158 0.0575733 26914 176310 -1 2320 23 1641 2320 260789 71889 4.25341 4.25341 -143.505 -4.25341 0 0 926341. 3205.33 1.26 0.20 0.33 -1 -1 1.26 0.0935723 0.0920482 87 47 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 26.05 vpr 64.55 MiB -1 -1 0.76 21432 1 0.14 -1 -1 34024 -1 -1 19 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66104 30 32 377 310 1 234 81 17 17 289 -1 unnamed_device 25.9 MiB 5.59 998 14606 5036 6964 2606 64.6 MiB 0.09 0.00 4.3242 -135.128 -4.3242 4.3242 2.70 0.000163392 0.000131069 0.0167373 0.0136154 44 3548 25 6.99608e+06 279598 787024. 2723.27 8.64 0.394468 0.383259 27778 195446 -1 2461 23 2270 3116 251673 57476 4.5468 4.5468 -153.096 -4.5468 0 0 997811. 3452.63 1.27 0.11 0.39 -1 -1 1.27 0.0141649 0.0117678 107 83 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 29.86 vpr 64.70 MiB -1 -1 0.40 21280 1 0.04 -1 -1 33832 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66252 32 32 365 294 1 223 81 17 17 289 -1 unnamed_device 25.9 MiB 5.59 1170 15831 5552 8021 2258 64.7 MiB 0.33 0.00 4.80442 -153.646 -4.80442 4.80442 2.65 0.000178972 0.000134991 0.018578 0.0149174 38 3254 29 6.99608e+06 250167 678818. 2348.85 13.53 0.0696827 0.05815 26626 170182 -1 2746 26 2184 3139 323817 82005 5.28061 5.28061 -177.869 -5.28061 0 0 902133. 3121.57 1.20 0.15 0.55 -1 -1 1.20 0.0548885 0.0534143 95 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 30.01 vpr 64.66 MiB -1 -1 0.37 21280 1 0.09 -1 -1 33872 -1 -1 20 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66212 29 32 378 310 1 237 81 17 17 289 -1 unnamed_device 25.9 MiB 8.98 1070 13906 5389 6734 1783 64.7 MiB 0.26 0.00 3.78245 -124.642 -3.78245 3.78245 2.80 8.4602e-05 6.5399e-05 0.00815995 0.00657445 38 3327 42 6.99608e+06 294314 678818. 2348.85 10.48 0.137742 0.126969 26626 170182 -1 2574 21 1946 2530 210023 43499 3.69272 3.69272 -132.251 -3.69272 0 0 902133. 3121.57 1.30 0.22 0.38 -1 -1 1.30 0.174559 0.173038 109 85 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 42.82 vpr 63.96 MiB -1 -1 0.34 21128 1 0.10 -1 -1 33768 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65492 32 32 243 205 1 140 74 17 17 289 -1 unnamed_device 25.3 MiB 5.11 491 9374 2820 4647 1907 64.0 MiB 0.23 0.00 3.56099 -102.364 -3.56099 3.56099 3.10 0.000145911 0.000116842 0.00973358 0.00785464 50 1345 33 6.99608e+06 147157 902133. 3121.57 25.65 0.451724 0.437003 28642 213929 -1 1054 20 885 1359 83206 22588 2.77822 2.77822 -98.0204 -2.77822 0 0 1.08113e+06 3740.92 1.26 0.10 0.34 -1 -1 1.26 0.0424821 0.0413921 54 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 22.05 vpr 64.72 MiB -1 -1 0.53 21584 1 0.19 -1 -1 33832 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66272 32 32 373 302 1 234 81 17 17 289 -1 unnamed_device 26.1 MiB 2.18 1172 9531 3063 4611 1857 64.7 MiB 0.24 0.00 5.23038 -167.099 -5.23038 5.23038 2.48 7.6887e-05 6.0848e-05 0.209571 0.208077 46 3034 27 6.99608e+06 250167 828058. 2865.25 9.04 0.384827 0.375343 28066 200906 -1 2545 20 1810 2569 228338 44266 4.63514 4.63514 -160.327 -4.63514 0 0 1.01997e+06 3529.29 1.23 0.10 0.50 -1 -1 1.23 0.0137036 0.0123399 100 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 22.28 vpr 64.65 MiB -1 -1 0.47 21280 1 0.16 -1 -1 33840 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66204 32 32 397 314 1 249 81 17 17 289 -1 unnamed_device 26.1 MiB 2.57 1060 12506 5192 6537 777 64.7 MiB 0.24 0.00 4.95096 -169.07 -4.95096 4.95096 2.03 0.000172515 0.000136975 0.112528 0.109561 46 3312 25 6.99608e+06 250167 828058. 2865.25 8.99 0.318291 0.307215 28066 200906 -1 2524 22 2640 3696 290225 59376 4.58324 4.58324 -165.627 -4.58324 0 0 1.01997e+06 3529.29 1.32 0.17 0.58 -1 -1 1.32 0.013983 0.0124359 109 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 23.96 vpr 64.14 MiB -1 -1 0.37 21128 1 0.05 -1 -1 33692 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65684 32 32 269 231 1 168 75 17 17 289 -1 unnamed_device 25.5 MiB 4.01 663 12241 5259 6676 306 64.1 MiB 0.06 0.00 3.88707 -116.611 -3.88707 3.88707 3.08 0.000146057 0.000105949 0.0129342 0.0103792 38 2462 42 6.99608e+06 161872 678818. 2348.85 8.54 0.057466 0.0475796 26626 170182 -1 1638 20 1165 1453 107317 24853 3.38201 3.38201 -115.688 -3.38201 0 0 902133. 3121.57 1.00 0.17 0.68 -1 -1 1.00 0.143692 0.14253 69 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 28.32 vpr 63.98 MiB -1 -1 0.35 21280 1 0.12 -1 -1 33776 -1 -1 13 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65520 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 25.5 MiB 1.32 576 8556 2635 4197 1724 64.0 MiB 0.26 0.00 3.30733 -101.102 -3.30733 3.30733 2.67 6.1179e-05 4.6676e-05 0.00729084 0.00583146 38 1814 27 6.99608e+06 191304 678818. 2348.85 16.69 0.103741 0.0912761 26626 170182 -1 1313 22 1039 1555 113093 25818 3.01782 3.01782 -103.961 -3.01782 0 0 902133. 3121.57 1.06 0.05 0.45 -1 -1 1.06 0.0102529 0.00912286 56 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 28.59 vpr 64.41 MiB -1 -1 0.36 21432 1 0.14 -1 -1 33816 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65960 32 32 348 274 1 208 79 17 17 289 -1 unnamed_device 25.9 MiB 2.92 869 12754 4459 5989 2306 64.4 MiB 0.16 0.00 4.59981 -149.693 -4.59981 4.59981 2.53 7.6451e-05 5.9181e-05 0.129655 0.127424 38 3590 42 6.99608e+06 220735 678818. 2348.85 15.40 0.217238 0.174312 26626 170182 -1 2440 23 2002 2676 239947 49921 4.50775 4.50775 -157.404 -4.50775 0 0 902133. 3121.57 0.86 0.25 0.40 -1 -1 0.86 0.226714 0.00924684 88 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 25.68 vpr 64.64 MiB -1 -1 0.62 21280 1 0.13 -1 -1 33732 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66188 32 32 356 289 1 218 79 17 17 289 -1 unnamed_device 25.9 MiB 6.20 940 12416 5188 6985 243 64.6 MiB 0.11 0.00 4.54977 -140.907 -4.54977 4.54977 2.35 0.000169631 0.000134919 0.0693031 0.0664362 40 2963 48 6.99608e+06 220735 706193. 2443.58 8.79 0.265381 0.254194 26914 176310 -1 2484 23 2055 2828 282419 58469 4.38751 4.38751 -152.055 -4.38751 0 0 926341. 3205.33 1.01 0.20 0.37 -1 -1 1.01 0.142984 0.0957221 95 56 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 24.43 vpr 64.52 MiB -1 -1 0.48 21432 1 0.03 -1 -1 33528 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66072 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 25.8 MiB 1.71 872 12156 5062 6580 514 64.5 MiB 0.15 0.00 4.64591 -137.817 -4.64591 4.64591 2.24 8.3278e-05 6.5343e-05 0.0110396 0.00903414 40 3074 37 6.99608e+06 250167 706193. 2443.58 12.43 0.0704377 0.0600563 26914 176310 -1 2385 21 1926 3184 289065 65855 4.81341 4.81341 -158.276 -4.81341 0 0 926341. 3205.33 0.87 0.12 0.43 -1 -1 0.87 0.0137225 0.0122841 83 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 22.46 vpr 64.19 MiB -1 -1 0.70 21584 1 0.17 -1 -1 33808 -1 -1 16 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65732 30 32 316 264 1 197 78 17 17 289 -1 unnamed_device 25.6 MiB 3.96 830 11698 4911 6285 502 64.2 MiB 0.15 0.00 3.74623 -107.503 -3.74623 3.74623 2.66 7.1168e-05 5.4589e-05 0.00928814 0.00754558 44 2671 42 6.99608e+06 235451 787024. 2723.27 6.71 0.0500671 0.0413002 27778 195446 -1 1997 22 1577 2353 179360 39103 3.33842 3.33842 -113.24 -3.33842 0 0 997811. 3452.63 1.13 0.17 0.25 -1 -1 1.13 0.0127874 0.0113079 86 52 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 19.76 vpr 63.70 MiB -1 -1 0.36 21432 1 0.13 -1 -1 34024 -1 -1 15 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65224 27 32 255 219 1 145 74 17 17 289 -1 unnamed_device 25.2 MiB 4.31 509 7669 2724 3648 1297 63.7 MiB 0.14 0.00 3.48259 -102.05 -3.48259 3.48259 3.34 0.000122514 9.551e-05 0.00801491 0.00648311 42 1667 21 6.99608e+06 220735 744469. 2576.02 4.64 0.0385039 0.0317852 27202 183097 -1 1234 20 862 1319 84682 21044 3.45442 3.45442 -104.789 -3.45442 0 0 949917. 3286.91 1.07 0.03 0.33 -1 -1 1.07 0.00916121 0.00808584 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 24.24 vpr 64.75 MiB -1 -1 0.34 21584 1 0.04 -1 -1 33676 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66300 32 32 421 327 1 257 82 17 17 289 -1 unnamed_device 26.1 MiB 3.19 1230 15746 6854 8529 363 64.7 MiB 0.37 0.00 4.19054 -144.989 -4.19054 4.19054 2.75 0.000195151 0.000157367 0.0584025 0.0542852 46 3679 33 6.99608e+06 264882 828058. 2865.25 9.64 0.213592 0.200704 28066 200906 -1 2871 23 2406 3607 276534 57095 4.29751 4.29751 -149.943 -4.29751 0 0 1.01997e+06 3529.29 1.78 0.31 0.35 -1 -1 1.78 0.0141414 0.0126209 111 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 22.19 vpr 64.70 MiB -1 -1 0.42 21432 1 0.09 -1 -1 33808 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66248 31 32 365 296 1 229 80 17 17 289 -1 unnamed_device 26.1 MiB 3.46 970 7648 1766 5271 611 64.7 MiB 0.17 0.00 5.55089 -158.936 -5.55089 5.55089 2.36 0.000163996 0.000130622 0.13478 0.133045 44 3150 26 6.99608e+06 250167 787024. 2723.27 7.97 0.239227 0.229047 27778 195446 -1 2264 21 1964 2790 202537 46807 4.71884 4.71884 -157.007 -4.71884 0 0 997811. 3452.63 1.36 0.06 0.37 -1 -1 1.36 0.0124501 0.01105 100 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 22.21 vpr 64.54 MiB -1 -1 0.56 21432 1 0.06 -1 -1 33936 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66092 32 32 331 280 1 215 78 17 17 289 -1 unnamed_device 25.8 MiB 3.14 984 12362 5200 6901 261 64.5 MiB 0.30 0.00 4.34704 -155.732 -4.34704 4.34704 2.88 0.000156906 0.000124549 0.185411 0.182749 46 2942 45 6.99608e+06 206020 828058. 2865.25 7.81 0.239602 0.228281 28066 200906 -1 2135 20 1370 1712 135955 29714 3.88141 3.88141 -148.486 -3.88141 0 0 1.01997e+06 3529.29 1.26 0.04 0.48 -1 -1 1.26 0.0112848 0.0101196 91 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 21.24 vpr 64.31 MiB -1 -1 0.37 21432 1 0.03 -1 -1 33740 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65852 32 32 326 263 1 197 79 17 17 289 -1 unnamed_device 25.8 MiB 2.25 810 13768 5955 7355 458 64.3 MiB 0.05 0.00 4.11318 -126.224 -4.11318 4.11318 3.03 0.000170112 0.00013506 0.0074196 0.00588256 46 2606 47 6.99608e+06 220735 828058. 2865.25 7.84 0.29288 0.282978 28066 200906 -1 1913 20 1336 1823 126148 28964 3.88781 3.88781 -126.282 -3.88781 0 0 1.01997e+06 3529.29 1.26 0.11 0.25 -1 -1 1.26 0.0120217 0.0107499 81 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 21.60 vpr 64.43 MiB -1 -1 0.27 21280 1 0.07 -1 -1 33612 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65976 31 32 373 294 1 221 80 17 17 289 -1 unnamed_device 25.8 MiB 4.18 911 12120 5043 6557 520 64.4 MiB 0.33 0.00 4.16973 -124.445 -4.16973 4.16973 2.44 0.000106355 8.1504e-05 0.110868 0.0130646 46 2581 47 6.99608e+06 250167 828058. 2865.25 7.00 0.282863 0.175516 28066 200906 -1 2091 23 1782 2496 172921 38960 4.08162 4.08162 -129.28 -4.08162 0 0 1.01997e+06 3529.29 1.47 0.25 0.41 -1 -1 1.47 0.0158417 0.0142778 97 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 55.62 vpr 64.50 MiB -1 -1 0.39 21432 1 0.09 -1 -1 33900 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66052 30 32 325 268 1 198 79 17 17 289 -1 unnamed_device 25.8 MiB 5.16 853 8191 3286 4551 354 64.5 MiB 0.14 0.00 3.59563 -113.561 -3.59563 3.59563 2.24 0.00015353 0.000121934 0.00930531 0.00764348 44 2628 47 6.99608e+06 250167 787024. 2723.27 39.65 0.727286 0.589306 27778 195446 -1 1911 20 1464 2206 169394 36495 3.45631 3.45631 -119.101 -3.45631 0 0 997811. 3452.63 1.17 0.02 0.63 -1 -1 1.17 0.0072413 0.00657779 88 51 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 28.07 vpr 64.33 MiB -1 -1 0.43 21280 1 0.03 -1 -1 33560 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65876 32 32 350 275 1 209 78 17 17 289 -1 unnamed_device 25.8 MiB 2.63 934 9042 3688 5047 307 64.3 MiB 0.17 0.00 4.39601 -145.17 -4.39601 4.39601 2.21 0.000183568 0.000147796 0.0114251 0.00943339 46 3357 30 6.99608e+06 206020 828058. 2865.25 13.20 0.0636262 0.0537504 28066 200906 -1 2451 23 2098 3129 259161 55709 4.38161 4.38161 -154.433 -4.38161 0 0 1.01997e+06 3529.29 1.60 0.15 0.35 -1 -1 1.60 0.0105296 0.00960721 88 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 27.92 vpr 64.68 MiB -1 -1 0.39 21280 1 0.17 -1 -1 33672 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66232 32 32 386 307 1 240 80 17 17 289 -1 unnamed_device 26.1 MiB 8.70 965 11260 4654 6213 393 64.7 MiB 0.21 0.00 3.73597 -128.871 -3.73597 3.73597 2.50 0.000173481 0.000138965 0.0144193 0.0117566 44 3539 46 6.99608e+06 235451 787024. 2723.27 8.82 0.3673 0.153114 27778 195446 -1 2256 22 1940 2610 199384 44429 3.47481 3.47481 -129.962 -3.47481 0 0 997811. 3452.63 1.03 0.25 0.23 -1 -1 1.03 0.182367 0.180816 103 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 20.81 vpr 64.14 MiB -1 -1 0.20 21432 1 0.08 -1 -1 33804 -1 -1 14 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65684 29 32 269 229 1 168 75 17 17 289 -1 unnamed_device 25.5 MiB 4.53 553 10345 3346 4809 2190 64.1 MiB 0.02 0.00 4.28805 -120.257 -4.28805 4.28805 2.95 5.6187e-05 4.3429e-05 0.00465428 0.00373116 44 1988 29 6.99608e+06 206020 787024. 2723.27 6.18 0.130293 0.122866 27778 195446 -1 1330 22 1317 1750 124111 30032 3.34456 3.34456 -119.019 -3.34456 0 0 997811. 3452.63 1.24 0.12 0.36 -1 -1 1.24 0.0105669 0.00932764 70 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 48.97 vpr 64.13 MiB -1 -1 0.49 21280 1 0.13 -1 -1 33928 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65668 32 32 310 266 1 182 78 17 17 289 -1 unnamed_device 25.6 MiB 7.49 793 12362 5268 6864 230 64.1 MiB 0.25 0.00 4.02018 -135.883 -4.02018 4.02018 2.31 0.00023656 0.000174734 0.0140549 0.0114148 38 2575 30 6.99608e+06 206020 678818. 2348.85 32.25 0.161798 0.14525 26626 170182 -1 2012 20 1609 2187 211896 46250 3.90455 3.90455 -140.013 -3.90455 0 0 902133. 3121.57 0.96 0.14 0.32 -1 -1 0.96 0.0113684 0.0101394 79 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 21.52 vpr 64.30 MiB -1 -1 0.40 21280 1 0.14 -1 -1 34100 -1 -1 15 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65840 31 32 326 261 1 193 78 17 17 289 -1 unnamed_device 25.7 MiB 2.50 826 12196 4442 6061 1693 64.3 MiB 0.17 0.00 4.09738 -124.458 -4.09738 4.09738 2.17 0.000185234 0.000151997 0.0142251 0.0116491 40 2795 44 6.99608e+06 220735 706193. 2443.58 9.17 0.0681879 0.0573542 26914 176310 -1 2030 28 1940 2883 358545 135793 3.89202 3.89202 -131.812 -3.89202 0 0 926341. 3205.33 1.14 0.35 0.51 -1 -1 1.14 0.00944034 0.00810684 80 33 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 19.47 vpr 63.97 MiB -1 -1 0.39 21432 1 0.01 -1 -1 33872 -1 -1 13 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65504 29 32 262 224 1 162 74 17 17 289 -1 unnamed_device 25.5 MiB 3.28 623 8909 3777 4738 394 64.0 MiB 0.09 0.00 3.79267 -110.261 -3.79267 3.79267 2.34 0.000128352 0.000100824 0.0630843 0.0611368 42 2006 30 6.99608e+06 191304 744469. 2576.02 5.80 0.450794 0.44265 27202 183097 -1 1504 18 1083 1382 104481 25915 3.19941 3.19941 -107.059 -3.19941 0 0 949917. 3286.91 1.52 0.05 0.33 -1 -1 1.52 0.0245591 0.0235331 68 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 18.33 vpr 64.20 MiB -1 -1 0.44 21128 1 0.02 -1 -1 33836 -1 -1 12 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 32 32 278 238 1 178 76 17 17 289 -1 unnamed_device 25.6 MiB 2.68 747 11436 4976 6147 313 64.2 MiB 0.02 0.00 4.32795 -132.311 -4.32795 4.32795 2.24 6.3357e-05 4.8258e-05 0.00555277 0.00439008 46 1985 20 6.99608e+06 176588 828058. 2865.25 6.48 0.0484308 0.0414298 28066 200906 -1 1624 22 1252 1683 122330 27578 3.50386 3.50386 -129.467 -3.50386 0 0 1.01997e+06 3529.29 1.07 0.06 0.38 -1 -1 1.07 0.038826 0.0376409 73 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 20.37 vpr 64.34 MiB -1 -1 0.69 21280 1 0.16 -1 -1 33840 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65880 31 32 373 300 1 231 80 17 17 289 -1 unnamed_device 25.6 MiB 3.05 925 14356 5451 6870 2035 64.3 MiB 0.36 0.00 4.44525 -144.678 -4.44525 4.44525 2.58 8.9399e-05 7.1659e-05 0.167974 0.16532 44 2984 38 6.99608e+06 250167 787024. 2723.27 6.51 0.287971 0.277588 27778 195446 -1 2191 22 1989 2681 204537 45301 4.39755 4.39755 -148.654 -4.39755 0 0 997811. 3452.63 1.14 0.34 0.42 -1 -1 1.14 0.14785 0.146321 102 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 19.04 vpr 64.29 MiB -1 -1 0.35 21280 1 0.02 -1 -1 33736 -1 -1 13 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65832 31 32 265 230 1 171 76 17 17 289 -1 unnamed_device 25.6 MiB 2.90 677 12236 4942 6162 1132 64.3 MiB 0.21 0.00 3.74867 -113.589 -3.74867 3.74867 2.65 0.000126127 9.809e-05 0.172657 0.00951226 40 1944 42 6.99608e+06 191304 706193. 2443.58 5.18 0.339072 0.143402 26914 176310 -1 1672 21 1245 1768 160342 33681 3.16146 3.16146 -110.118 -3.16146 0 0 926341. 3205.33 1.10 0.17 0.28 -1 -1 1.10 0.0104887 0.0093224 71 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 36.37 vpr 64.15 MiB -1 -1 0.55 21280 1 0.12 -1 -1 33720 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 32 32 349 286 1 207 79 17 17 289 -1 unnamed_device 25.5 MiB 3.97 1000 14275 5369 6741 2165 64.1 MiB 0.07 0.00 3.51669 -120.5 -3.51669 3.51669 2.78 0.000172729 0.000140596 0.0172174 0.0138593 36 3385 48 6.99608e+06 220735 648988. 2245.63 22.36 0.0872736 0.0746695 26050 158493 -1 2516 20 1568 2139 228982 44386 3.39006 3.39006 -127.987 -3.39006 0 0 828058. 2865.25 0.96 0.17 0.38 -1 -1 0.96 0.133893 0.132315 91 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 30.35 vpr 64.74 MiB -1 -1 0.61 21584 1 0.33 -1 -1 33972 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66296 31 32 396 325 1 255 83 17 17 289 -1 unnamed_device 26.2 MiB 8.91 1155 14663 6188 7958 517 64.7 MiB 0.26 0.00 4.64393 -158.098 -4.64393 4.64393 2.78 0.000186448 0.000150575 0.0406488 0.0375185 48 3206 36 6.99608e+06 294314 865456. 2994.66 9.86 0.224892 0.133785 28354 207349 -1 2807 28 2923 4123 575768 188632 4.67759 4.67759 -170.147 -4.67759 0 0 1.05005e+06 3633.38 1.38 0.37 0.62 -1 -1 1.38 0.0764526 0.0157775 113 91 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 50.06 vpr 64.08 MiB -1 -1 0.36 21432 1 0.12 -1 -1 33732 -1 -1 12 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65616 32 32 303 262 1 192 76 17 17 289 -1 unnamed_device 25.5 MiB 6.16 775 10156 4187 5714 255 64.1 MiB 0.13 0.00 3.42554 -116.648 -3.42554 3.42554 2.55 6.3395e-05 4.9045e-05 0.00827363 0.00671773 40 2408 28 6.99608e+06 176588 706193. 2443.58 33.07 0.215568 0.150057 26914 176310 -1 2061 20 1626 2128 206695 44348 3.37781 3.37781 -121.709 -3.37781 0 0 926341. 3205.33 0.75 0.21 0.38 -1 -1 0.75 0.105409 0.0097192 80 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 18.93 vpr 64.22 MiB -1 -1 0.51 21280 1 0.04 -1 -1 33804 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65764 32 32 290 244 1 172 75 17 17 289 -1 unnamed_device 25.6 MiB 2.22 715 9871 2522 5750 1599 64.2 MiB 0.28 0.00 3.90682 -124.154 -3.90682 3.90682 2.73 0.000132002 0.000104569 0.0106422 0.00864724 48 1761 24 6.99608e+06 161872 865456. 2994.66 5.50 0.0727083 0.0638315 28354 207349 -1 1520 20 1181 1705 120049 30478 3.18826 3.18826 -114.649 -3.18826 0 0 1.05005e+06 3633.38 1.73 0.04 0.69 -1 -1 1.73 0.011206 0.00999042 72 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 24.14 vpr 64.40 MiB -1 -1 0.34 21280 1 0.11 -1 -1 33816 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65944 32 32 318 257 1 191 78 17 17 289 -1 unnamed_device 25.9 MiB 5.12 806 10370 4256 5769 345 64.4 MiB 0.14 0.00 4.12063 -125.806 -4.12063 4.12063 2.31 7.5489e-05 5.8267e-05 0.00803951 0.00644611 40 2802 44 6.99608e+06 206020 706193. 2443.58 8.92 0.155293 0.0485573 26914 176310 -1 2341 21 1844 2572 222411 52159 4.04836 4.04836 -139.738 -4.04836 0 0 926341. 3205.33 1.05 0.08 0.57 -1 -1 1.05 0.040421 0.0391463 79 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 29.38 vpr 64.50 MiB -1 -1 0.47 21432 1 0.02 -1 -1 33740 -1 -1 18 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66048 29 32 324 268 1 195 79 17 17 289 -1 unnamed_device 25.8 MiB 5.23 860 11233 4667 5950 616 64.5 MiB 0.16 0.00 3.78147 -112.526 -3.78147 3.78147 2.54 0.000162341 0.000129164 0.0141805 0.0113294 38 2683 32 6.99608e+06 264882 678818. 2348.85 14.67 0.0848577 0.0742908 26626 170182 -1 1990 20 1446 2086 188585 42244 3.21921 3.21921 -110.88 -3.21921 0 0 902133. 3121.57 1.02 0.02 0.39 -1 -1 1.02 0.00705835 0.00639889 88 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 75.33 vpr 64.80 MiB -1 -1 0.41 21584 1 0.05 -1 -1 33932 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66360 32 32 393 312 1 235 81 17 17 289 -1 unnamed_device 26.1 MiB 4.64 1139 12681 5262 6918 501 64.8 MiB 0.17 0.00 5.49769 -178.53 -5.49769 5.49769 2.50 0.0001959 0.00015823 0.01632 0.0134555 44 3771 32 6.99608e+06 250167 787024. 2723.27 60.28 0.287541 0.26721 27778 195446 -1 2606 21 2413 3608 274729 56780 4.7747 4.7747 -174.007 -4.7747 0 0 997811. 3452.63 1.10 0.17 0.47 -1 -1 1.10 0.0148152 0.0132712 105 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 19.70 vpr 63.92 MiB -1 -1 0.39 20520 1 0.25 -1 -1 33748 -1 -1 13 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65456 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 25.3 MiB 2.80 587 10476 4438 5741 297 63.9 MiB 0.15 0.00 3.45403 -92.0406 -3.45403 3.45403 2.76 0.000157384 0.000126855 0.0100948 0.00818672 38 2041 40 6.99608e+06 191304 678818. 2348.85 7.26 0.244683 0.235787 26626 170182 -1 1431 22 1146 1808 146741 32202 2.82547 2.82547 -98.1947 -2.82547 0 0 902133. 3121.57 1.15 0.02 0.37 -1 -1 1.15 0.0045327 0.00398858 54 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 73.15 vpr 64.94 MiB -1 -1 0.32 20976 1 0.02 -1 -1 33848 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66500 32 32 412 334 1 258 84 17 17 289 -1 unnamed_device 26.2 MiB 8.94 1043 15090 5384 7460 2246 64.9 MiB 0.25 0.00 4.74833 -158.465 -4.74833 4.74833 2.47 0.000174847 0.000138967 0.01819 0.0148622 50 3075 46 6.99608e+06 294314 902133. 3121.57 53.87 0.246558 0.224239 28642 213929 -1 2292 22 2270 2774 267368 59687 5.0614 5.0614 -169.611 -5.0614 0 0 1.08113e+06 3740.92 1.49 0.12 0.42 -1 -1 1.49 0.0153767 0.0137454 116 90 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 26.32 vpr 64.62 MiB -1 -1 0.34 21280 1 0.11 -1 -1 33748 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66172 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 26.1 MiB 2.87 1243 11948 3932 6174 1842 64.6 MiB 0.15 0.00 4.39022 -163.291 -4.39022 4.39022 2.87 0.000193376 0.000158692 0.0774409 0.0748942 38 3401 24 6.99608e+06 235451 678818. 2348.85 12.56 0.144965 0.134071 26626 170182 -1 2877 22 2782 3539 348319 66606 4.48149 4.48149 -170.274 -4.48149 0 0 902133. 3121.57 0.99 0.18 0.30 -1 -1 0.99 0.0308491 0.029541 110 96 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 23.81 vpr 64.66 MiB -1 -1 0.36 21584 1 0.16 -1 -1 33676 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66216 32 32 360 293 1 219 79 17 17 289 -1 unnamed_device 25.9 MiB 4.69 943 11571 4822 6284 465 64.7 MiB 0.12 0.00 3.68917 -120.78 -3.68917 3.68917 2.29 0.000184103 0.000148264 0.0162178 0.0116573 44 3145 46 6.99608e+06 220735 787024. 2723.27 8.01 0.266417 0.252734 27778 195446 -1 2092 21 1590 2096 144585 34265 3.68832 3.68832 -128.704 -3.68832 0 0 997811. 3452.63 1.40 0.05 0.54 -1 -1 1.40 0.247799 0.246435 94 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 23.53 vpr 64.54 MiB -1 -1 0.42 21736 1 0.02 -1 -1 33852 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66088 32 32 396 299 1 228 79 17 17 289 -1 unnamed_device 25.9 MiB 3.33 984 11571 4450 5727 1394 64.5 MiB 0.27 0.00 5.93064 -168.994 -5.93064 5.93064 3.14 0.000191142 0.000154286 0.0132327 0.0108005 46 3271 27 6.99608e+06 220735 828058. 2865.25 8.81 0.0680896 0.057384 28066 200906 -1 2256 23 2165 3247 206923 47402 4.7732 4.7732 -160.204 -4.7732 0 0 1.01997e+06 3529.29 1.04 0.28 0.54 -1 -1 1.04 0.146667 0.144891 98 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 17.29 vpr 63.91 MiB -1 -1 0.56 21280 1 0.07 -1 -1 33572 -1 -1 12 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65448 30 32 224 207 1 132 74 17 17 289 -1 unnamed_device 25.2 MiB 2.27 449 10769 3021 6028 1720 63.9 MiB 0.14 0.00 2.78575 -94.7661 -2.78575 2.78575 2.54 0.000111254 8.5933e-05 0.00935979 0.00732815 44 1210 45 6.99608e+06 176588 787024. 2723.27 4.92 0.204339 0.195767 27778 195446 -1 907 17 633 808 61006 14855 2.31212 2.31212 -85.0792 -2.31212 0 0 997811. 3452.63 1.13 0.02 0.37 -1 -1 1.13 0.00710424 0.00626875 53 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 30.56 vpr 64.03 MiB -1 -1 0.56 21432 1 0.02 -1 -1 33852 -1 -1 14 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65564 30 32 286 239 1 157 76 17 17 289 -1 unnamed_device 25.5 MiB 11.71 635 8556 3694 4561 301 64.0 MiB 0.02 0.00 3.79502 -117.432 -3.79502 3.79502 2.58 6.5609e-05 5.0115e-05 0.00458027 0.00365901 38 2087 25 6.99608e+06 206020 678818. 2348.85 7.95 0.118946 0.111375 26626 170182 -1 1532 21 1244 1862 213351 69419 3.30746 3.30746 -124.469 -3.30746 0 0 902133. 3121.57 1.18 0.06 0.44 -1 -1 1.18 0.0108647 0.00962303 68 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 23.40 vpr 64.33 MiB -1 -1 0.34 21280 1 0.14 -1 -1 33580 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65872 32 32 296 247 1 182 81 17 17 289 -1 unnamed_device 25.6 MiB 1.67 745 10756 3701 5259 1796 64.3 MiB 0.08 0.00 3.68644 -120.453 -3.68644 3.68644 2.67 0.000169394 0.000138435 0.0114146 0.0092875 46 2563 46 6.99608e+06 250167 828058. 2865.25 11.27 0.187972 0.177836 28066 200906 -1 1818 21 1379 2147 194317 44810 3.54672 3.54672 -123.118 -3.54672 0 0 1.01997e+06 3529.29 1.29 0.16 0.42 -1 -1 1.29 0.0114725 0.0101091 78 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 20.15 vpr 63.90 MiB -1 -1 0.28 21280 1 0.03 -1 -1 33832 -1 -1 16 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65432 25 32 216 194 1 136 73 17 17 289 -1 unnamed_device 25.2 MiB 3.50 529 9649 3987 4965 697 63.9 MiB 0.10 0.00 3.34779 -78.1264 -3.34779 3.34779 2.14 0.0001172 8.9673e-05 0.0087407 0.00694252 36 1785 31 6.99608e+06 235451 648988. 2245.63 7.49 0.287535 0.27977 26050 158493 -1 1223 22 949 1259 94166 22013 3.08217 3.08217 -83.8681 -3.08217 0 0 828058. 2865.25 0.81 0.09 0.37 -1 -1 0.81 0.0739506 0.0728424 59 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 36.23 vpr 64.74 MiB -1 -1 0.73 21280 1 0.23 -1 -1 33824 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66296 32 32 376 307 1 234 81 17 17 289 -1 unnamed_device 26.2 MiB 9.68 1054 8656 3245 4768 643 64.7 MiB 0.14 0.00 4.05906 -133.149 -4.05906 4.05906 2.24 0.000183218 0.000146769 0.0107266 0.00878672 40 3768 46 6.99608e+06 250167 706193. 2443.58 15.89 0.214846 0.203654 26914 176310 -1 2997 25 2299 3328 332536 68969 4.03662 4.03662 -145.587 -4.03662 0 0 926341. 3205.33 1.20 0.27 0.26 -1 -1 1.20 0.0156515 0.0138368 103 72 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 32.38 vpr 64.67 MiB -1 -1 0.61 21432 1 0.03 -1 -1 33892 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66220 31 32 409 331 1 258 82 17 17 289 -1 unnamed_device 26.1 MiB 8.46 1127 9872 4010 5529 333 64.7 MiB 0.15 0.00 4.48803 -146.589 -4.48803 4.48803 3.02 0.000217775 0.000181679 0.0130191 0.0108329 40 3765 50 6.99608e+06 279598 706193. 2443.58 12.40 0.362758 0.350697 26914 176310 -1 2914 23 2334 3183 337323 76769 4.4325 4.4325 -165.554 -4.4325 0 0 926341. 3205.33 1.18 0.30 0.44 -1 -1 1.18 0.0796756 0.0106643 117 90 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_001.v common 27.09 vpr 64.29 MiB -1 -1 0.66 21888 14 1.29 -1 -1 37020 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65832 32 32 277 309 1 203 83 17 17 289 -1 unnamed_device 25.6 MiB 5.60 1200 14123 4211 7443 2469 64.3 MiB 0.34 0.00 8.48111 -174.272 -8.48111 8.48111 2.29 0.0002577 0.000200005 0.0231112 0.0189047 38 3430 43 6.79088e+06 255968 678818. 2348.85 9.85 0.549998 0.53525 25966 169698 -1 2700 17 1287 3600 189705 42637 7.35086 7.35086 -163.994 -7.35086 0 0 902133. 3121.57 1.25 0.18 0.25 -1 -1 1.25 0.0278834 0.0263172 130 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_002.v common 29.90 vpr 64.09 MiB -1 -1 0.78 21888 14 0.86 -1 -1 36548 -1 -1 19 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65624 30 32 272 304 1 194 81 17 17 289 -1 unnamed_device 25.4 MiB 8.24 1041 12506 3388 6981 2137 64.1 MiB 0.40 0.00 7.55088 -152.933 -7.55088 7.55088 2.77 0.000252827 0.000207156 0.163085 0.159623 36 3205 23 6.79088e+06 255968 648988. 2245.63 11.00 0.38998 0.377262 25390 158009 -1 2467 19 1290 3357 197410 46359 6.74539 6.74539 -147.967 -6.74539 0 0 828058. 2865.25 1.16 0.20 0.27 -1 -1 1.16 0.0176808 0.0161191 125 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_003.v common 28.80 vpr 64.14 MiB -1 -1 0.37 21432 11 0.84 -1 -1 37192 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65676 32 32 280 312 1 193 83 17 17 289 -1 unnamed_device 25.6 MiB 11.23 1174 9623 2464 5833 1326 64.1 MiB 0.30 0.00 6.66938 -147.636 -6.66938 6.66938 2.59 0.000245064 0.000200758 0.121011 0.118329 40 2907 18 6.79088e+06 255968 706193. 2443.58 6.95 0.464845 0.45379 26254 175826 -1 2700 18 1168 3505 212013 47079 6.10754 6.10754 -145.397 -6.10754 0 0 926341. 3205.33 0.84 0.14 0.59 -1 -1 0.84 0.101021 0.0994821 130 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_004.v common 52.71 vpr 64.16 MiB -1 -1 0.60 21280 12 1.07 -1 -1 37052 -1 -1 24 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 29 32 275 307 1 202 85 17 17 289 -1 unnamed_device 25.6 MiB 4.27 1140 13849 4119 7829 1901 64.2 MiB 0.38 0.00 7.24573 -145.062 -7.24573 7.24573 2.56 0.00010996 8.7726e-05 0.287474 0.284278 40 2712 25 6.79088e+06 323328 706193. 2443.58 36.90 0.43777 0.417334 26254 175826 -1 2622 18 1304 3757 216194 48068 6.49468 6.49468 -141.371 -6.49468 0 0 926341. 3205.33 1.53 0.12 0.28 -1 -1 1.53 0.0180021 0.0163358 136 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_005.v common 28.73 vpr 64.48 MiB -1 -1 0.67 21736 13 1.24 -1 -1 36736 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66032 32 32 302 334 1 234 86 17 17 289 -1 unnamed_device 25.9 MiB 6.21 1308 9536 2519 6199 818 64.5 MiB 0.14 0.00 8.29941 -174.684 -8.29941 8.29941 2.58 0.000248343 0.000203207 0.0144201 0.0119745 38 3855 22 6.79088e+06 296384 678818. 2348.85 9.98 0.291704 0.279499 25966 169698 -1 2990 20 1412 3638 188193 43079 7.04627 7.04627 -163.166 -7.04627 0 0 902133. 3121.57 1.25 0.26 0.51 -1 -1 1.25 0.0179012 0.016226 152 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_006.v common 48.69 vpr 64.36 MiB -1 -1 0.69 21888 13 1.03 -1 -1 36544 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65900 32 32 292 324 1 210 83 17 17 289 -1 unnamed_device 25.6 MiB 5.37 1207 10163 2849 5374 1940 64.4 MiB 0.12 0.00 7.60457 -158.151 -7.60457 7.60457 2.35 0.000463158 0.00031649 0.0122512 0.0100914 34 4275 44 6.79088e+06 255968 618332. 2139.56 32.10 0.450958 0.312508 25102 150614 -1 3371 22 1761 5443 391172 82915 6.58427 6.58427 -157.091 -6.58427 0 0 787024. 2723.27 1.10 0.16 0.35 -1 -1 1.10 0.0176595 0.0158979 137 198 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_007.v common 18.45 vpr 63.61 MiB -1 -1 0.69 21128 12 0.90 -1 -1 36088 -1 -1 21 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65132 27 32 229 261 1 168 80 17 17 289 -1 unnamed_device 25.1 MiB 5.26 859 8680 2413 5503 764 63.6 MiB 0.04 0.00 6.99932 -125.75 -6.99932 6.99932 2.63 0.000176461 0.000141885 0.0116218 0.00963192 30 2390 31 6.79088e+06 282912 556674. 1926.21 2.90 0.0470823 0.0400823 24526 138013 -1 1954 15 1002 2230 109541 26910 5.65673 5.65673 -117.344 -5.65673 0 0 706193. 2443.58 1.00 0.07 0.25 -1 -1 1.00 0.0124538 0.0114124 106 150 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_008.v common 33.44 vpr 63.84 MiB -1 -1 0.54 21280 12 0.71 -1 -1 36660 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65368 31 32 229 261 1 188 80 17 17 289 -1 unnamed_device 25.3 MiB 11.21 1041 12120 4682 6151 1287 63.8 MiB 0.28 0.00 6.42294 -136.515 -6.42294 6.42294 2.62 0.000176016 0.000141464 0.016542 0.0136174 38 2936 50 6.79088e+06 229024 678818. 2348.85 9.55 0.186959 0.174324 25966 169698 -1 2387 89 1297 3558 1346629 987091 5.90384 5.90384 -131.624 -5.90384 0 0 902133. 3121.57 1.03 1.60 0.46 -1 -1 1.03 0.0755414 0.069839 106 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_009.v common 28.36 vpr 63.72 MiB -1 -1 0.79 21432 12 0.53 -1 -1 36284 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65252 31 32 235 267 1 194 83 17 17 289 -1 unnamed_device 25.3 MiB 11.19 1112 8543 2303 4599 1641 63.7 MiB 0.25 0.00 6.92467 -146.156 -6.92467 6.92467 2.61 0.000180693 0.000145517 0.186034 0.184172 38 2832 40 6.79088e+06 269440 678818. 2348.85 6.13 0.241066 0.231407 25966 169698 -1 2434 18 1148 2890 158628 36102 6.12648 6.12648 -142.526 -6.12648 0 0 902133. 3121.57 0.74 0.14 0.61 -1 -1 0.74 0.125593 0.124962 113 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_010.v common 25.68 vpr 63.95 MiB -1 -1 0.58 21280 13 0.57 -1 -1 36432 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65488 32 32 250 282 1 182 79 17 17 289 -1 unnamed_device 25.3 MiB 8.63 1044 5825 1272 4307 246 64.0 MiB 0.16 0.00 7.71708 -165.102 -7.71708 7.71708 2.98 0.000199702 0.000160614 0.111186 0.109443 38 2762 24 6.79088e+06 202080 678818. 2348.85 5.29 0.272509 0.262761 25966 169698 -1 2322 17 1121 2684 145404 33670 6.70957 6.70957 -157.411 -6.70957 0 0 902133. 3121.57 0.99 0.14 0.48 -1 -1 0.99 0.114655 0.114049 106 156 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_011.v common 30.43 vpr 63.74 MiB -1 -1 0.66 21128 12 0.57 -1 -1 36400 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65268 30 32 216 248 1 161 79 17 17 289 -1 unnamed_device 25.1 MiB 5.85 926 7008 1689 4680 639 63.7 MiB 0.34 0.00 7.21324 -147.642 -7.21324 7.21324 2.59 0.000175075 0.000140532 0.149015 0.147389 30 2578 44 6.79088e+06 229024 556674. 1926.21 13.13 0.290088 0.279388 24526 138013 -1 2027 17 881 2080 117822 27063 6.27979 6.27979 -141.995 -6.27979 0 0 706193. 2443.58 1.08 0.09 0.24 -1 -1 1.08 0.0124707 0.0113495 96 128 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_012.v common 40.96 vpr 63.83 MiB -1 -1 0.75 21584 12 0.61 -1 -1 36512 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65364 32 32 236 268 1 171 81 17 17 289 -1 unnamed_device 25.1 MiB 7.99 1082 9181 2345 5797 1039 63.8 MiB 0.16 0.00 6.01027 -147.531 -6.01027 6.01027 2.46 0.000216153 0.000179143 0.0765223 0.0743914 36 3449 49 6.79088e+06 229024 648988. 2245.63 21.77 0.321001 0.309567 25390 158009 -1 2497 26 1120 2952 302335 118937 5.35651 5.35651 -141.317 -5.35651 0 0 828058. 2865.25 1.04 0.20 0.29 -1 -1 1.04 0.0180115 0.0161886 101 142 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_013.v common 33.88 vpr 64.03 MiB -1 -1 0.75 21736 13 0.92 -1 -1 36496 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65568 32 32 283 315 1 215 84 17 17 289 -1 unnamed_device 25.4 MiB 7.55 1306 7038 1688 4711 639 64.0 MiB 0.30 0.00 8.03011 -168.791 -8.03011 8.03011 2.04 0.000283555 0.000240447 0.0919729 0.0896139 36 3754 30 6.79088e+06 269440 648988. 2245.63 15.66 0.27022 0.257534 25390 158009 -1 2990 17 1300 3383 208053 46550 6.81035 6.81035 -158.161 -6.81035 0 0 828058. 2865.25 0.94 0.23 0.25 -1 -1 0.94 0.111689 0.110134 134 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_014.v common 25.50 vpr 64.44 MiB -1 -1 0.85 21736 14 0.89 -1 -1 36376 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65988 32 32 303 335 1 230 86 17 17 289 -1 unnamed_device 25.7 MiB 7.26 1416 7079 1642 5037 400 64.4 MiB 0.09 0.00 8.75222 -185.44 -8.75222 8.75222 2.10 0.000249265 0.000205395 0.0136223 0.0115001 30 3987 30 6.79088e+06 296384 556674. 1926.21 7.80 0.067932 0.0589295 24526 138013 -1 3086 21 1537 3895 209296 47411 7.92696 7.92696 -180.675 -7.92696 0 0 706193. 2443.58 0.73 0.18 0.29 -1 -1 0.73 0.235672 0.233772 151 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_015.v common 29.66 vpr 63.58 MiB -1 -1 0.62 21128 11 0.72 -1 -1 36200 -1 -1 21 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65108 29 32 225 257 1 176 82 17 17 289 -1 unnamed_device 25.1 MiB 9.49 1026 7024 1624 4287 1113 63.6 MiB 0.04 0.00 6.6829 -137.714 -6.6829 6.6829 2.87 0.000208881 0.000172227 0.0103001 0.00857439 36 2816 22 6.79088e+06 282912 648988. 2245.63 9.59 0.392383 0.383297 25390 158009 -1 2455 18 1157 2781 188507 41454 5.77854 5.77854 -135.281 -5.77854 0 0 828058. 2865.25 0.86 0.11 0.33 -1 -1 0.86 0.0141885 0.0129072 106 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_016.v common 29.93 vpr 64.47 MiB -1 -1 0.55 21736 12 1.12 -1 -1 36380 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66020 32 32 301 333 1 221 88 17 17 289 -1 unnamed_device 25.7 MiB 6.71 1310 12763 3534 7319 1910 64.5 MiB 0.19 0.00 7.16817 -158.635 -7.16817 7.16817 2.48 0.000248253 0.000203162 0.0202128 0.0168169 38 3452 26 6.79088e+06 323328 678818. 2348.85 9.39 0.0876208 0.0743489 25966 169698 -1 2821 18 1476 4588 235361 53321 6.16568 6.16568 -149.194 -6.16568 0 0 902133. 3121.57 1.15 0.18 0.31 -1 -1 1.15 0.108212 0.106601 145 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_017.v common 36.85 vpr 64.06 MiB -1 -1 0.96 21888 14 1.00 -1 -1 36628 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65596 32 32 277 309 1 210 83 17 17 289 -1 unnamed_device 25.4 MiB 9.13 1313 8723 2298 6119 306 64.1 MiB 0.34 0.00 8.13104 -170.503 -8.13104 8.13104 2.54 0.000239879 0.000191343 0.303268 0.172469 38 3929 22 6.79088e+06 255968 678818. 2348.85 15.37 0.408614 0.26862 25966 169698 -1 2875 25 1389 4010 323964 110156 6.84955 6.84955 -159.968 -6.84955 0 0 902133. 3121.57 0.99 0.19 0.28 -1 -1 0.99 0.0183482 0.0166276 126 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_018.v common 42.53 vpr 63.56 MiB -1 -1 0.73 21432 12 0.84 -1 -1 36316 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65088 32 32 227 259 1 172 79 17 17 289 -1 unnamed_device 25.1 MiB 7.43 1050 9374 2716 5861 797 63.6 MiB 0.17 0.00 7.14943 -160.299 -7.14943 7.14943 2.68 8.7601e-05 7.0653e-05 0.141649 0.14046 30 2886 39 6.79088e+06 202080 556674. 1926.21 22.01 0.342821 0.331319 24526 138013 -1 2328 16 951 2435 136571 30880 5.84017 5.84017 -150.015 -5.84017 0 0 706193. 2443.58 1.22 0.23 0.29 -1 -1 1.22 0.206577 0.20532 105 133 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_019.v common 28.73 vpr 63.07 MiB -1 -1 0.68 21128 10 0.33 -1 -1 36204 -1 -1 13 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64588 30 32 175 207 1 133 75 17 17 289 -1 unnamed_device 24.5 MiB 8.94 831 7975 2137 5194 644 63.1 MiB 0.04 0.00 4.79706 -119.036 -4.79706 4.79706 2.90 0.000158365 0.000130408 0.00938029 0.00773156 36 2002 31 6.79088e+06 175136 648988. 2245.63 6.55 0.144434 0.0440491 25390 158009 -1 1694 15 636 1455 98495 21485 4.29242 4.29242 -114.111 -4.29242 0 0 828058. 2865.25 1.23 0.05 0.46 -1 -1 1.23 0.00903085 0.00822679 66 87 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_020.v common 31.36 vpr 63.67 MiB -1 -1 0.85 21280 13 0.88 -1 -1 36648 -1 -1 18 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65200 31 32 231 263 1 186 81 17 17 289 -1 unnamed_device 25.1 MiB 9.33 1018 10756 3186 5324 2246 63.7 MiB 0.07 0.00 7.66004 -158.967 -7.66004 7.66004 2.95 0.000185359 0.000149053 0.0143458 0.0118192 36 2846 41 6.79088e+06 242496 648988. 2245.63 9.13 0.619111 0.565154 25390 158009 -1 2328 17 1212 2855 173472 39272 6.54512 6.54512 -149.488 -6.54512 0 0 828058. 2865.25 0.99 0.55 0.33 -1 -1 0.99 0.371943 0.370733 107 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_021.v common 68.13 vpr 64.41 MiB -1 -1 1.10 21888 13 1.28 -1 -1 36724 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65952 32 32 304 336 1 224 85 17 17 289 -1 unnamed_device 25.7 MiB 8.33 1313 10315 2856 6290 1169 64.4 MiB 0.34 0.00 7.47852 -163.761 -7.47852 7.47852 2.98 0.000233856 0.000191484 0.12339 0.120356 40 3451 36 6.79088e+06 282912 706193. 2443.58 46.86 0.893786 0.869584 26254 175826 -1 3138 22 1929 5656 340480 73070 6.70957 6.70957 -159.709 -6.70957 0 0 926341. 3205.33 0.92 0.39 0.28 -1 -1 0.92 0.0293518 0.0275192 143 210 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_022.v common 42.24 vpr 64.37 MiB -1 -1 0.69 21888 13 1.12 -1 -1 36616 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65916 32 32 288 320 1 216 85 17 17 289 -1 unnamed_device 25.7 MiB 8.83 1396 13105 3760 7294 2051 64.4 MiB 0.17 0.00 7.56118 -168.622 -7.56118 7.56118 2.95 0.000254581 0.000211133 0.118047 0.114624 38 3903 33 6.79088e+06 282912 678818. 2348.85 20.34 0.528201 0.513872 25966 169698 -1 3027 20 1425 4303 247771 52952 6.71732 6.71732 -160.482 -6.71732 0 0 902133. 3121.57 0.89 0.11 0.36 -1 -1 0.89 0.0134657 0.0120026 141 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_023.v common 36.35 vpr 63.27 MiB -1 -1 0.44 20976 9 0.41 -1 -1 36056 -1 -1 18 26 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64792 26 32 152 184 1 122 76 17 17 289 -1 unnamed_device 24.7 MiB 4.98 658 7116 2577 3138 1401 63.3 MiB 0.05 0.00 4.92929 -93.1038 -4.92929 4.92929 3.51 0.000131979 0.000103171 0.00747998 0.00613542 28 2023 39 6.79088e+06 242496 531479. 1839.03 19.47 0.0897151 0.048002 23950 126010 -1 1554 17 655 1548 102837 22988 4.44343 4.44343 -97.5098 -4.44343 0 0 648988. 2245.63 1.09 0.03 0.43 -1 -1 1.09 0.00853712 0.00772056 67 76 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_024.v common 75.81 vpr 64.02 MiB -1 -1 0.76 21432 13 1.18 -1 -1 36656 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65560 32 32 287 319 1 214 87 17 17 289 -1 unnamed_device 25.4 MiB 7.05 1303 13911 3831 7698 2382 64.0 MiB 0.31 0.00 8.27554 -169.54 -8.27554 8.27554 3.62 0.000226723 0.000184755 0.237715 0.233848 40 3252 44 6.79088e+06 309856 706193. 2443.58 55.07 1.01425 0.833884 26254 175826 -1 3159 16 1502 3999 258807 56798 7.33623 7.33623 -163.847 -7.33623 0 0 926341. 3205.33 1.69 0.27 0.37 -1 -1 1.69 0.0182123 0.0167801 136 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_025.v common 28.26 vpr 63.21 MiB -1 -1 0.58 21128 8 0.36 -1 -1 36432 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64732 32 32 154 186 1 126 75 17 17 289 -1 unnamed_device 24.5 MiB 7.92 650 7185 1746 4717 722 63.2 MiB 0.03 0.00 4.16702 -95.4775 -4.16702 4.16702 3.21 0.000122738 9.6565e-05 0.00762859 0.00629865 34 1993 50 6.79088e+06 148192 618332. 2139.56 7.23 0.347514 0.33918 25102 150614 -1 1708 16 700 1590 100800 23471 3.62662 3.62662 -97.0161 -3.62662 0 0 787024. 2723.27 0.80 0.03 0.26 -1 -1 0.80 0.00757395 0.00671979 60 60 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_026.v common 41.21 vpr 64.09 MiB -1 -1 0.58 21584 15 0.94 -1 -1 36512 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65624 32 32 254 286 1 202 82 17 17 289 -1 unnamed_device 25.6 MiB 7.60 1241 4710 909 3488 313 64.1 MiB 0.14 0.00 8.6614 -176.248 -8.6614 8.6614 3.00 0.00021865 0.000178363 0.00865266 0.00734166 36 3521 45 6.79088e+06 242496 648988. 2245.63 19.74 0.54981 0.268011 25390 158009 -1 3111 18 1295 3612 246551 55755 7.27251 7.27251 -166.143 -7.27251 0 0 828058. 2865.25 0.98 0.41 0.41 -1 -1 0.98 0.0752199 0.0738206 121 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_027.v common 82.55 vpr 64.07 MiB -1 -1 0.84 21432 13 0.86 -1 -1 36368 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65612 32 32 260 292 1 195 82 17 17 289 -1 unnamed_device 25.4 MiB 6.74 1132 11118 3595 5694 1829 64.1 MiB 0.24 0.06 7.01886 -151.319 -7.01886 7.01886 2.94 0.000222905 0.000180979 0.128893 0.125998 40 3321 21 6.79088e+06 242496 706193. 2443.58 63.41 0.789848 0.684937 26254 175826 -1 2799 19 1247 3661 256124 53296 6.11534 6.11534 -145.707 -6.11534 0 0 926341. 3205.33 0.94 0.16 0.32 -1 -1 0.94 0.0167862 0.0153443 117 166 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_028.v common 70.95 vpr 64.09 MiB -1 -1 0.59 21736 13 1.11 -1 -1 36532 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65628 32 32 279 311 1 202 82 17 17 289 -1 unnamed_device 25.3 MiB 6.46 1327 8092 1764 5104 1224 64.1 MiB 0.21 0.00 7.94214 -171.305 -7.94214 7.94214 3.07 0.000262544 0.00022054 0.140115 0.137851 40 3062 25 6.79088e+06 242496 706193. 2443.58 52.03 0.387347 0.353846 26254 175826 -1 2960 17 1322 3747 225281 49685 6.78802 6.78802 -162.58 -6.78802 0 0 926341. 3205.33 0.94 0.18 0.50 -1 -1 0.94 0.0927011 0.0912764 136 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_029.v common 60.12 vpr 63.70 MiB -1 -1 0.43 21280 12 0.54 -1 -1 36344 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65232 32 32 238 270 1 186 80 17 17 289 -1 unnamed_device 25.1 MiB 6.93 977 11088 4157 5492 1439 63.7 MiB 0.31 0.00 6.83134 -154.124 -6.83134 6.83134 2.38 0.000187854 0.00015157 0.0137009 0.0112081 40 2480 48 6.79088e+06 215552 706193. 2443.58 42.06 1.19052 1.17025 26254 175826 -1 2158 31 1081 2507 313542 137842 6.24064 6.24064 -148.909 -6.24064 0 0 926341. 3205.33 1.08 0.67 0.38 -1 -1 1.08 0.164527 0.16249 103 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_030.v common 28.27 vpr 62.98 MiB -1 -1 0.44 21280 11 0.43 -1 -1 36364 -1 -1 18 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64496 30 32 213 245 1 164 80 17 17 289 -1 unnamed_device 24.5 MiB 6.30 831 9368 3815 5302 251 63.0 MiB 0.07 0.00 6.26518 -134.378 -6.26518 6.26518 2.86 0.000166535 0.000132186 0.0343133 0.0321888 38 2553 28 6.79088e+06 242496 678818. 2348.85 10.05 0.415735 0.405169 25966 169698 -1 2005 17 996 2455 152330 35005 5.69238 5.69238 -131.796 -5.69238 0 0 902133. 3121.57 1.22 0.26 0.65 -1 -1 1.22 0.0130094 0.0117056 95 125 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_031.v common 23.60 vpr 63.36 MiB -1 -1 0.56 21432 11 0.60 -1 -1 36204 -1 -1 21 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64880 28 32 227 259 1 171 81 17 17 289 -1 unnamed_device 24.8 MiB 5.49 887 4981 1150 3615 216 63.4 MiB 0.06 0.00 6.73536 -131.115 -6.73536 6.73536 2.97 0.000204231 0.00016617 0.0079608 0.00663645 36 2540 29 6.79088e+06 282912 648988. 2245.63 5.92 0.265104 0.255745 25390 158009 -1 2211 16 1015 2701 161874 36196 5.99343 5.99343 -127.69 -5.99343 0 0 828058. 2865.25 1.15 0.04 0.41 -1 -1 1.15 0.0140277 0.0128433 109 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_032.v common 56.76 vpr 63.99 MiB -1 -1 0.59 21128 12 0.56 -1 -1 36908 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65524 32 32 274 306 1 209 81 17 17 289 -1 unnamed_device 25.3 MiB 10.29 1030 11106 3225 5695 2186 64.0 MiB 0.16 0.00 6.88848 -158.105 -6.88848 6.88848 2.66 0.000240285 0.000197817 0.0186478 0.0154757 38 3159 22 6.79088e+06 229024 678818. 2348.85 36.01 0.421308 0.353645 25966 169698 -1 2420 18 1294 3132 153647 36240 6.11524 6.11524 -153.75 -6.11524 0 0 902133. 3121.57 0.91 0.14 0.20 -1 -1 0.91 0.0167585 0.0153428 119 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_033.v common 37.11 vpr 63.82 MiB -1 -1 0.53 21584 12 0.48 -1 -1 36372 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65352 31 32 237 269 1 176 80 17 17 289 -1 unnamed_device 25.1 MiB 8.16 844 13496 3879 7699 1918 63.8 MiB 0.14 0.00 6.87864 -138.662 -6.87864 6.87864 2.71 9.172e-05 7.2213e-05 0.0111637 0.00912972 36 3059 35 6.79088e+06 229024 648988. 2245.63 17.10 0.139922 0.128601 25390 158009 -1 2249 19 1428 3693 212494 50213 5.99343 5.99343 -139 -5.99343 0 0 828058. 2865.25 1.51 0.09 0.30 -1 -1 1.51 0.0144222 0.0130471 101 146 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_034.v common 23.40 vpr 63.75 MiB -1 -1 0.51 21280 10 0.73 -1 -1 36276 -1 -1 17 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65284 29 32 220 252 1 166 78 17 17 289 -1 unnamed_device 25.1 MiB 5.80 995 8046 2054 5506 486 63.8 MiB 0.15 0.00 6.16888 -134.071 -6.16888 6.16888 2.40 0.000187908 0.000151745 0.0119561 0.00983711 34 2664 29 6.79088e+06 229024 618332. 2139.56 6.31 0.104958 0.0951864 25102 150614 -1 2271 17 963 2723 170534 37426 5.40253 5.40253 -130.879 -5.40253 0 0 787024. 2723.27 1.31 0.36 0.31 -1 -1 1.31 0.156213 0.15505 103 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_035.v common 38.56 vpr 64.27 MiB -1 -1 0.47 22344 13 0.87 -1 -1 36556 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65808 32 32 315 347 1 232 85 17 17 289 -1 unnamed_device 25.6 MiB 6.79 1366 6409 1425 4059 925 64.3 MiB 0.15 0.00 8.09066 -166.557 -8.09066 8.09066 2.51 0.000128236 0.000103469 0.125818 0.124023 36 3958 42 6.79088e+06 282912 648988. 2245.63 19.71 0.483512 0.469282 25390 158009 -1 3019 17 1393 4015 252624 55094 6.8888 6.8888 -156.705 -6.8888 0 0 828058. 2865.25 1.39 0.16 0.30 -1 -1 1.39 0.0210835 0.0193359 149 221 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_036.v common 115.42 vpr 64.34 MiB -1 -1 0.49 22192 14 1.04 -1 -1 37068 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65888 32 32 282 314 1 225 82 17 17 289 -1 unnamed_device 25.6 MiB 8.07 1410 14500 4472 7875 2153 64.3 MiB 0.19 0.00 7.75965 -172.67 -7.75965 7.75965 2.80 0.000329961 0.000281474 0.126568 0.121285 38 3969 32 6.79088e+06 242496 678818. 2348.85 95.88 0.85192 0.829006 25966 169698 -1 3264 20 1829 5112 311860 66380 7.02749 7.02749 -168.524 -7.02749 0 0 902133. 3121.57 0.97 0.20 0.39 -1 -1 0.97 0.0194149 0.017585 136 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_037.v common 29.13 vpr 63.77 MiB -1 -1 0.89 21432 12 0.49 -1 -1 36260 -1 -1 16 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65304 31 32 241 273 1 173 79 17 17 289 -1 unnamed_device 25.3 MiB 7.47 998 11402 3354 6097 1951 63.8 MiB 0.18 0.00 7.09988 -153.854 -7.09988 7.09988 2.47 0.00021504 0.000178155 0.0171087 0.0141498 36 2732 36 6.79088e+06 215552 648988. 2245.63 10.45 0.353144 0.229182 25390 158009 -1 2300 17 985 2624 155977 34793 6.16568 6.16568 -149.033 -6.16568 0 0 828058. 2865.25 1.20 0.07 0.22 -1 -1 1.20 0.0128253 0.0115886 101 150 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_038.v common 30.55 vpr 64.64 MiB -1 -1 0.73 21888 12 1.29 -1 -1 36236 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66188 31 32 307 339 1 226 87 17 17 289 -1 unnamed_device 25.7 MiB 8.68 1359 6231 1346 4416 469 64.6 MiB 0.10 0.00 7.65151 -160.422 -7.65151 7.65151 2.67 0.000283533 0.000237054 0.0122681 0.0105254 40 3408 25 6.79088e+06 323328 706193. 2443.58 9.03 0.361571 0.350717 26254 175826 -1 3342 38 2194 7334 1085083 456031 6.67032 6.67032 -152.362 -6.67032 0 0 926341. 3205.33 1.21 0.78 0.48 -1 -1 1.21 0.031921 0.0284717 146 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_039.v common 22.94 vpr 64.38 MiB -1 -1 0.64 22192 14 1.49 -1 -1 36540 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65928 31 32 293 325 1 209 85 17 17 289 -1 unnamed_device 25.9 MiB 4.26 1193 5665 1093 3974 598 64.4 MiB 0.20 0.00 8.28837 -165.331 -8.28837 8.28837 2.30 0.000261939 0.000218331 0.0111879 0.00947461 36 3316 27 6.79088e+06 296384 648988. 2245.63 6.88 0.349284 0.337661 25390 158009 -1 2822 17 1459 4149 227427 51737 7.42577 7.42577 -162.119 -7.42577 0 0 828058. 2865.25 0.88 0.21 0.45 -1 -1 0.88 0.0393434 0.0379051 142 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_040.v common 26.79 vpr 64.15 MiB -1 -1 0.76 22344 13 1.25 -1 -1 36680 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 31 32 276 308 1 215 86 17 17 289 -1 unnamed_device 25.6 MiB 6.74 1189 5189 1012 3920 257 64.1 MiB 0.02 0.00 8.65671 -167.943 -8.65671 8.65671 2.38 0.000112498 9.0493e-05 0.00472279 0.00399846 38 3541 40 6.79088e+06 309856 678818. 2348.85 8.67 0.396939 0.319421 25966 169698 -1 2672 16 1397 3633 186100 42706 7.43696 7.43696 -156.943 -7.43696 0 0 902133. 3121.57 1.06 0.12 0.30 -1 -1 1.06 0.016003 0.0147382 136 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_041.v common 28.50 vpr 64.26 MiB -1 -1 0.79 21432 13 0.87 -1 -1 36364 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65804 31 32 269 301 1 204 84 17 17 289 -1 unnamed_device 25.6 MiB 6.40 1217 13077 3680 7087 2310 64.3 MiB 0.22 0.00 7.80928 -160.261 -7.80928 7.80928 2.76 0.000219108 0.000177378 0.134618 0.130877 44 3524 43 6.79088e+06 282912 787024. 2723.27 9.28 0.331196 0.316766 27118 194962 -1 2681 14 1246 3644 211004 45670 6.96798 6.96798 -148.651 -6.96798 0 0 997811. 3452.63 1.28 0.31 0.52 -1 -1 1.28 0.0153053 0.013976 125 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_042.v common 30.25 vpr 63.64 MiB -1 -1 0.53 21584 12 0.55 -1 -1 36508 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65168 32 32 264 296 1 184 80 17 17 289 -1 unnamed_device 25.0 MiB 6.54 916 13324 4298 7153 1873 63.6 MiB 0.10 0.00 6.70425 -141.753 -6.70425 6.70425 2.49 0.000208867 0.000169735 0.0185925 0.0153617 36 3132 45 6.79088e+06 215552 648988. 2245.63 12.19 0.470829 0.283541 25390 158009 -1 2212 18 1117 3049 170416 41332 5.86813 5.86813 -136.621 -5.86813 0 0 828058. 2865.25 1.23 0.23 0.19 -1 -1 1.23 0.0166886 0.015356 111 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_043.v common 29.06 vpr 64.38 MiB -1 -1 1.10 22496 14 1.35 -1 -1 37388 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65924 32 32 324 356 1 241 85 17 17 289 -1 unnamed_device 25.7 MiB 4.17 1571 12919 3579 7237 2103 64.4 MiB 0.33 0.00 8.5825 -180.126 -8.5825 8.5825 2.74 0.000258543 0.000210852 0.106574 0.0202929 40 4074 33 6.79088e+06 282912 706193. 2443.58 11.27 0.299676 0.202284 26254 175826 -1 3702 17 1678 4931 347900 79711 7.061 7.061 -169.202 -7.061 0 0 926341. 3205.33 1.15 0.35 0.29 -1 -1 1.15 0.253444 0.251654 159 230 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_044.v common 67.64 vpr 63.97 MiB -1 -1 0.40 21128 11 0.78 -1 -1 36444 -1 -1 16 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65504 31 32 249 281 1 186 79 17 17 289 -1 unnamed_device 25.3 MiB 7.37 1073 6501 1499 4640 362 64.0 MiB 0.06 0.00 6.42637 -139.096 -6.42637 6.42637 2.44 9.5438e-05 7.5766e-05 0.00770841 0.00651454 40 2801 27 6.79088e+06 215552 706193. 2443.58 49.48 0.139593 0.120026 26254 175826 -1 2664 18 1264 3555 227038 50309 5.60634 5.60634 -134.693 -5.60634 0 0 926341. 3205.33 1.13 0.12 0.33 -1 -1 1.13 0.0825741 0.0811963 112 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_045.v common 25.65 vpr 64.32 MiB -1 -1 0.54 21736 13 0.70 -1 -1 36968 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65868 31 32 284 316 1 193 83 17 17 289 -1 unnamed_device 25.6 MiB 5.99 1076 5303 1019 4187 97 64.3 MiB 0.14 0.00 8.03811 -165.365 -8.03811 8.03811 2.38 0.000241382 0.000191922 0.0105488 0.00881116 40 2681 18 6.79088e+06 269440 706193. 2443.58 7.08 0.346059 0.273809 26254 175826 -1 2576 16 1174 3750 219191 50384 7.09671 7.09671 -157.684 -7.09671 0 0 926341. 3205.33 0.89 0.17 0.44 -1 -1 0.89 0.161788 0.160401 137 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_046.v common 27.14 vpr 64.45 MiB -1 -1 0.44 21736 12 1.07 -1 -1 36684 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65996 32 32 303 335 1 212 85 17 17 289 -1 unnamed_device 25.7 MiB 6.76 1229 8269 1949 5817 503 64.4 MiB 0.22 0.00 7.09992 -154.886 -7.09992 7.09992 2.54 0.000234094 0.000190357 0.0116545 0.00950389 40 3274 49 6.79088e+06 282912 706193. 2443.58 8.20 0.332727 0.32009 26254 175826 -1 3120 19 1469 4941 319382 68823 6.54158 6.54158 -154.955 -6.54158 0 0 926341. 3205.33 1.25 0.32 0.42 -1 -1 1.25 0.0172385 0.0153837 146 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_047.v common 27.39 vpr 64.10 MiB -1 -1 0.37 21584 13 1.14 -1 -1 36504 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65636 32 32 272 304 1 200 86 17 17 289 -1 unnamed_device 25.4 MiB 4.76 1166 5945 1195 4546 204 64.1 MiB 0.18 0.00 8.15537 -168.597 -8.15537 8.15537 2.74 0.00022861 0.000180786 0.150262 0.148657 36 3271 24 6.79088e+06 296384 648988. 2245.63 10.11 0.397978 0.386681 25390 158009 -1 2693 17 1250 3318 199331 44831 6.7734 6.7734 -156.55 -6.7734 0 0 828058. 2865.25 1.01 0.41 0.28 -1 -1 1.01 0.0154978 0.0140153 131 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_048.v common 43.67 vpr 64.01 MiB -1 -1 0.70 22040 13 0.60 -1 -1 36528 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65548 32 32 271 303 1 212 82 17 17 289 -1 unnamed_device 25.4 MiB 9.76 1291 6668 1628 4315 725 64.0 MiB 0.21 0.00 7.6093 -161.643 -7.6093 7.6093 2.48 0.00011067 8.5515e-05 0.0102627 0.00869206 36 3491 44 6.79088e+06 242496 648988. 2245.63 22.96 0.317646 0.275622 25390 158009 -1 2937 17 1309 3463 214530 46829 6.50936 6.50936 -155.108 -6.50936 0 0 828058. 2865.25 1.24 0.03 0.21 -1 -1 1.24 0.0102207 0.00954788 124 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_049.v common 47.11 vpr 64.17 MiB -1 -1 0.73 21888 12 1.03 -1 -1 36840 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65708 32 32 288 320 1 218 84 17 17 289 -1 unnamed_device 25.6 MiB 7.23 1264 13077 4245 6963 1869 64.2 MiB 0.13 0.00 7.48863 -164.662 -7.48863 7.48863 2.36 0.000259409 0.000216488 0.0390412 0.0354763 36 4312 32 6.79088e+06 269440 648988. 2245.63 28.31 0.285615 0.269325 25390 158009 -1 3063 27 1475 4687 437807 142940 6.33367 6.33367 -153.642 -6.33367 0 0 828058. 2865.25 0.94 0.28 0.28 -1 -1 0.94 0.0227667 0.0206025 140 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_050.v common 28.73 vpr 64.31 MiB -1 -1 0.59 21888 13 0.92 -1 -1 37080 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65852 32 32 306 338 1 225 84 17 17 289 -1 unnamed_device 25.7 MiB 4.87 1308 7404 1742 4872 790 64.3 MiB 0.26 0.00 7.79737 -172.677 -7.79737 7.79737 2.20 0.000254334 0.000207742 0.157532 0.155345 38 3611 33 6.79088e+06 269440 678818. 2348.85 12.42 0.39145 0.378126 25966 169698 -1 2932 15 1402 4063 208507 47168 6.72081 6.72081 -161.844 -6.72081 0 0 902133. 3121.57 1.05 0.14 0.34 -1 -1 1.05 0.00927677 0.00849161 145 212 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_051.v common 30.64 vpr 64.04 MiB -1 -1 0.66 21584 14 0.93 -1 -1 36668 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65576 32 32 262 294 1 194 84 17 17 289 -1 unnamed_device 25.4 MiB 5.25 1134 12528 3689 7280 1559 64.0 MiB 0.13 0.00 8.14516 -169.239 -8.14516 8.14516 2.43 0.000221408 0.000179969 0.0177354 0.0146792 36 3215 23 6.79088e+06 269440 648988. 2245.63 13.87 0.200928 0.189127 25390 158009 -1 2583 21 1334 3813 212707 47879 7.17517 7.17517 -157.885 -7.17517 0 0 828058. 2865.25 1.10 0.32 0.37 -1 -1 1.10 0.216246 0.0172196 125 168 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_052.v common 39.38 vpr 64.37 MiB -1 -1 0.46 21736 13 1.04 -1 -1 36948 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65916 32 32 291 323 1 214 85 17 17 289 -1 unnamed_device 25.6 MiB 7.58 1230 12547 3334 7250 1963 64.4 MiB 0.43 0.00 8.09269 -160.616 -8.09269 8.09269 2.92 0.000267871 0.00020868 0.0210651 0.0172658 36 3920 34 6.79088e+06 282912 648988. 2245.63 19.44 0.269556 0.255153 25390 158009 -1 3169 26 2031 6074 492410 149015 6.93565 6.93565 -154.112 -6.93565 0 0 828058. 2865.25 0.98 0.23 0.56 -1 -1 0.98 0.0705995 0.0687446 136 197 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_053.v common 25.55 vpr 64.19 MiB -1 -1 0.90 22192 13 0.77 -1 -1 36480 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65728 31 32 302 334 1 224 84 17 17 289 -1 unnamed_device 25.6 MiB 7.43 1194 6855 1560 4961 334 64.2 MiB 0.13 0.00 7.84076 -167.565 -7.84076 7.84076 2.28 0.000241605 0.000188472 0.0916661 0.0896377 48 2954 22 6.79088e+06 282912 865456. 2994.66 6.64 0.163436 0.151934 27694 206865 -1 2632 18 1331 3856 240858 53932 6.65923 6.65923 -154.098 -6.65923 0 0 1.05005e+06 3633.38 1.15 0.14 0.54 -1 -1 1.15 0.0198617 0.0181981 144 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_054.v common 25.10 vpr 64.47 MiB -1 -1 0.61 21736 12 1.03 -1 -1 36688 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66020 32 32 308 340 1 225 85 17 17 289 -1 unnamed_device 25.7 MiB 5.36 1311 5851 1203 3709 939 64.5 MiB 0.02 0.00 7.71669 -163.184 -7.71669 7.71669 2.74 0.000112474 9.1615e-05 0.0079034 0.00708409 40 3316 22 6.79088e+06 282912 706193. 2443.58 8.09 0.257026 0.246894 26254 175826 -1 3313 20 1647 4462 285411 62849 6.63117 6.63117 -158.189 -6.63117 0 0 926341. 3205.33 0.87 0.31 0.44 -1 -1 0.87 0.0201752 0.0183414 147 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_055.v common 22.00 vpr 63.66 MiB -1 -1 0.35 21432 11 0.70 -1 -1 36356 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65188 32 32 216 248 1 160 78 17 17 289 -1 unnamed_device 25.0 MiB 4.58 1005 10702 3112 6246 1344 63.7 MiB 0.46 0.00 6.21064 -136.494 -6.21064 6.21064 2.48 0.000192871 0.000159306 0.013544 0.0111321 40 2250 19 6.79088e+06 188608 706193. 2443.58 6.11 0.122257 0.112621 26254 175826 -1 2127 18 845 2152 139952 31180 5.40258 5.40258 -131.108 -5.40258 0 0 926341. 3205.33 1.15 0.08 0.21 -1 -1 1.15 0.013256 0.0120132 91 122 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_056.v common 30.09 vpr 63.81 MiB -1 -1 0.44 21432 13 0.77 -1 -1 36304 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65340 32 32 254 286 1 197 84 17 17 289 -1 unnamed_device 25.3 MiB 6.51 1176 10515 2869 6205 1441 63.8 MiB 0.19 0.00 7.53642 -162.326 -7.53642 7.53642 2.57 0.000107736 8.6084e-05 0.013269 0.0108508 36 3408 30 6.79088e+06 269440 648988. 2245.63 12.89 0.253267 0.241571 25390 158009 -1 2709 14 1186 3024 183009 41359 6.45902 6.45902 -157.581 -6.45902 0 0 828058. 2865.25 1.10 0.15 0.33 -1 -1 1.10 0.10883 0.107951 118 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_057.v common 33.06 vpr 64.73 MiB -1 -1 0.64 22344 14 1.53 -1 -1 36652 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66288 32 32 338 370 1 251 88 17 17 289 -1 unnamed_device 26.2 MiB 4.33 1606 14908 4178 8064 2666 64.7 MiB 0.27 0.00 9.30628 -185.251 -9.30628 9.30628 2.23 0.000134787 0.000110081 0.124343 0.121712 40 4467 40 6.79088e+06 323328 706193. 2443.58 15.91 0.417336 0.322385 26254 175826 -1 4044 41 3170 10484 1659413 686250 8.71802 8.71802 -185.563 -8.71802 0 0 926341. 3205.33 0.97 1.22 0.30 -1 -1 0.97 0.0306023 0.0274072 171 244 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_058.v common 25.30 vpr 64.04 MiB -1 -1 0.76 21888 13 1.14 -1 -1 36516 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65580 32 32 271 303 1 215 85 17 17 289 -1 unnamed_device 25.3 MiB 5.51 1373 5107 1065 3575 467 64.0 MiB 0.04 0.00 7.99662 -176.141 -7.99662 7.99662 2.49 0.000218079 0.000176617 0.00941603 0.00790282 40 3267 21 6.79088e+06 282912 706193. 2443.58 7.75 0.131858 0.122108 26254 175826 -1 2988 16 1279 3446 222044 48292 7.28922 7.28922 -171.863 -7.28922 0 0 926341. 3205.33 0.98 0.14 0.39 -1 -1 0.98 0.124756 0.123954 134 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_059.v common 28.03 vpr 63.77 MiB -1 -1 0.46 21280 11 0.50 -1 -1 36860 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65304 30 32 224 256 1 163 79 17 17 289 -1 unnamed_device 25.1 MiB 2.54 913 8698 3216 4702 780 63.8 MiB 0.18 0.00 6.69153 -142.001 -6.69153 6.69153 2.51 0.000209485 0.000173569 0.0126132 0.0103406 34 2978 37 6.79088e+06 229024 618332. 2139.56 15.11 0.169104 0.146718 25102 150614 -1 2191 25 1068 2905 278697 110360 5.86813 5.86813 -137.036 -5.86813 0 0 787024. 2723.27 1.18 0.27 0.34 -1 -1 1.18 0.0210295 0.0158263 101 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_060.v common 31.55 vpr 64.84 MiB -1 -1 0.58 22344 15 1.74 -1 -1 36496 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66392 32 32 351 383 1 259 89 17 17 289 -1 unnamed_device 26.0 MiB 3.96 1499 13751 3607 8212 1932 64.8 MiB 0.33 0.00 9.45131 -196.491 -9.45131 9.45131 2.71 0.000318105 0.000263405 0.0230354 0.0194144 38 4290 28 6.79088e+06 336800 678818. 2348.85 15.30 0.672402 0.553503 25966 169698 -1 3256 18 1773 4898 239338 54871 8.26721 8.26721 -182.774 -8.26721 0 0 902133. 3121.57 1.05 0.16 0.25 -1 -1 1.05 0.0245497 0.0219405 179 257 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_061.v common 30.67 vpr 64.41 MiB -1 -1 0.59 21736 13 0.96 -1 -1 36504 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65960 32 32 297 329 1 217 84 17 17 289 -1 unnamed_device 25.7 MiB 3.51 1327 7221 1806 4907 508 64.4 MiB 0.22 0.00 8.09861 -175.276 -8.09861 8.09861 2.48 0.000331575 0.000277067 0.0137795 0.0117318 36 3663 28 6.79088e+06 269440 648988. 2245.63 15.90 0.233698 0.220814 25390 158009 -1 3024 29 1390 3984 459582 194762 7.09671 7.09671 -171.261 -7.09671 0 0 828058. 2865.25 0.87 0.26 0.24 -1 -1 0.87 0.046677 0.0442748 139 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_062.v common 22.41 vpr 63.77 MiB -1 -1 0.68 21128 11 0.70 -1 -1 36428 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65300 32 32 231 263 1 165 77 17 17 289 -1 unnamed_device 25.1 MiB 4.90 1048 9368 2840 4823 1705 63.8 MiB 0.22 0.00 6.8184 -143.52 -6.8184 6.8184 2.64 8.2634e-05 6.5816e-05 0.00629914 0.00517708 30 2846 50 6.79088e+06 175136 556674. 1926.21 6.30 0.263977 0.257217 24526 138013 -1 2348 20 938 2439 208524 64465 6.07177 6.07177 -142.376 -6.07177 0 0 706193. 2443.58 0.77 0.25 0.38 -1 -1 0.77 0.0146992 0.0133064 94 137 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_063.v common 23.96 vpr 64.50 MiB -1 -1 0.62 21888 12 1.35 -1 -1 36672 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66052 32 32 305 337 1 217 84 17 17 289 -1 unnamed_device 25.9 MiB 4.42 1273 3744 682 2956 106 64.5 MiB 0.11 0.00 7.80662 -164.116 -7.80662 7.80662 2.57 0.000244239 0.000199565 0.00687012 0.00580622 40 3138 27 6.79088e+06 269440 706193. 2443.58 7.56 0.105382 0.0946088 26254 175826 -1 2977 17 1398 4272 273067 60353 6.75996 6.75996 -158.558 -6.75996 0 0 926341. 3205.33 0.95 0.21 0.36 -1 -1 0.95 0.0734521 0.0724445 146 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_064.v common 24.70 vpr 63.98 MiB -1 -1 0.72 21432 12 0.65 -1 -1 36228 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65512 32 32 243 275 1 187 82 17 17 289 -1 unnamed_device 25.3 MiB 5.26 1093 11296 2879 6424 1993 64.0 MiB 0.37 0.00 7.38808 -154.548 -7.38808 7.38808 2.24 0.000239935 0.000200695 0.155373 0.013257 38 2925 25 6.79088e+06 242496 678818. 2348.85 6.55 0.21314 0.0629693 25966 169698 -1 2388 18 1120 2927 157781 35630 6.38057 6.38057 -146.795 -6.38057 0 0 902133. 3121.57 1.31 0.20 0.59 -1 -1 1.31 0.0681036 0.0667688 113 149 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_065.v common 24.48 vpr 63.66 MiB -1 -1 0.91 21432 12 0.69 -1 -1 36368 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65192 30 32 228 260 1 166 79 17 17 289 -1 unnamed_device 25.1 MiB 3.45 829 8191 1875 6055 261 63.7 MiB 0.19 0.00 7.82373 -148.45 -7.82373 7.82373 2.83 0.000203113 0.000164562 0.013368 0.0110101 36 2341 28 6.79088e+06 229024 648988. 2245.63 9.38 0.295668 0.284638 25390 158009 -1 2017 24 946 2503 136921 35400 6.75996 6.75996 -143.141 -6.75996 0 0 828058. 2865.25 1.00 0.05 0.49 -1 -1 1.00 0.0168202 0.0151748 106 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_066.v common 34.01 vpr 64.32 MiB -1 -1 0.74 21736 12 0.92 -1 -1 36356 -1 -1 26 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65868 29 32 275 307 1 201 87 17 17 289 -1 unnamed_device 25.6 MiB 7.87 1310 7383 1809 4748 826 64.3 MiB 0.05 0.00 7.48697 -145.09 -7.48697 7.48697 2.82 0.000292137 0.000185049 0.0217345 0.020355 38 3295 41 6.79088e+06 350272 678818. 2348.85 14.20 0.260329 0.247771 25966 169698 -1 2675 24 1252 3878 344961 136790 6.54158 6.54158 -137.332 -6.54158 0 0 902133. 3121.57 0.90 0.36 0.42 -1 -1 0.90 0.0196077 0.0181298 140 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_067.v common 27.97 vpr 64.62 MiB -1 -1 0.84 21888 13 1.37 -1 -1 36532 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66176 32 32 330 362 1 257 87 17 17 289 -1 unnamed_device 25.9 MiB 3.60 1469 6615 1348 4384 883 64.6 MiB 0.31 0.00 7.94883 -165.303 -7.94883 7.94883 3.06 0.000267001 0.000206715 0.186171 0.184091 36 4119 27 6.79088e+06 309856 648988. 2245.63 11.27 0.512899 0.500123 25390 158009 -1 3376 21 2082 5079 318029 69650 7.04976 7.04976 -167.899 -7.04976 0 0 828058. 2865.25 0.78 0.16 0.27 -1 -1 0.78 0.0184049 0.0170139 160 236 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_068.v common 35.75 vpr 64.09 MiB -1 -1 0.81 21432 12 0.61 -1 -1 36512 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65628 32 32 290 322 1 218 84 17 17 289 -1 unnamed_device 25.6 MiB 4.48 1369 7770 1945 5143 682 64.1 MiB 0.14 0.00 7.82957 -168.971 -7.82957 7.82957 2.42 0.000233252 0.000191506 0.101844 0.0997273 36 4168 40 6.79088e+06 269440 648988. 2245.63 19.11 0.7468 0.731399 25390 158009 -1 3205 21 1508 4153 311924 77482 6.91327 6.91327 -165.194 -6.91327 0 0 828058. 2865.25 0.75 0.18 0.54 -1 -1 0.75 0.106456 0.104503 140 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_069.v common 29.15 vpr 63.68 MiB -1 -1 0.92 21432 12 0.90 -1 -1 36216 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65204 32 32 214 246 1 160 79 17 17 289 -1 unnamed_device 25.0 MiB 7.06 827 5825 1179 4572 74 63.7 MiB 0.06 0.00 7.39828 -145.899 -7.39828 7.39828 2.64 0.000198677 0.000162889 0.033063 0.0316761 36 2583 41 6.79088e+06 202080 648988. 2245.63 9.66 0.110919 0.101458 25390 158009 -1 1941 15 809 2234 143044 32097 6.37287 6.37287 -138.856 -6.37287 0 0 828058. 2865.25 1.03 0.11 0.19 -1 -1 1.03 0.0118702 0.010874 93 120 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_070.v common 27.73 vpr 63.86 MiB -1 -1 0.66 21736 12 0.84 -1 -1 36036 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65396 31 32 244 276 1 178 82 17 17 289 -1 unnamed_device 25.3 MiB 4.99 989 11830 4101 6106 1623 63.9 MiB 0.29 0.00 7.24523 -149.288 -7.24523 7.24523 2.39 0.000193892 0.000157104 0.241623 0.238772 36 3110 24 6.79088e+06 255968 648988. 2245.63 10.55 0.502515 0.49089 25390 158009 -1 2468 16 1076 3020 188463 42983 6.09963 6.09963 -144.436 -6.09963 0 0 828058. 2865.25 1.15 0.13 0.33 -1 -1 1.15 0.0148927 0.0135748 111 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_071.v common 52.42 vpr 64.20 MiB -1 -1 0.86 21736 11 1.01 -1 -1 36516 -1 -1 20 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 30 32 276 308 1 190 82 17 17 289 -1 unnamed_device 25.4 MiB 5.06 1062 11296 3634 5901 1761 64.2 MiB 0.21 0.00 6.89956 -139.068 -6.89956 6.89956 2.16 0.000106642 8.3768e-05 0.0112168 0.00934218 38 2948 43 6.79088e+06 269440 678818. 2348.85 35.25 0.509993 0.487258 25966 169698 -1 2389 17 1070 3307 169957 38680 5.78197 5.78197 -130.146 -5.78197 0 0 902133. 3121.57 0.95 0.08 0.34 -1 -1 0.95 0.0211488 0.0195772 125 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_072.v common 31.38 vpr 64.03 MiB -1 -1 0.44 21584 11 0.82 -1 -1 36348 -1 -1 19 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65564 28 32 253 285 1 176 79 17 17 289 -1 unnamed_device 25.6 MiB 4.92 1034 10388 3390 5543 1455 64.0 MiB 0.27 0.00 6.39394 -127.87 -6.39394 6.39394 2.61 9.595e-05 7.5721e-05 0.0156995 0.0129696 36 2873 38 6.79088e+06 255968 648988. 2245.63 14.75 0.330659 0.318051 25390 158009 -1 2414 20 1286 4124 267250 57798 5.56708 5.56708 -124.707 -5.56708 0 0 828058. 2865.25 1.08 0.25 0.35 -1 -1 1.08 0.193951 0.192324 116 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_073.v common 68.38 vpr 63.90 MiB -1 -1 0.70 21432 13 0.69 -1 -1 36332 -1 -1 18 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65432 30 32 235 267 1 172 80 17 17 289 -1 unnamed_device 25.3 MiB 6.69 1069 10744 3320 5344 2080 63.9 MiB 0.06 0.00 7.007 -145.297 -7.007 7.007 2.51 0.000198778 0.000160338 0.0147657 0.0121089 30 3512 38 6.79088e+06 242496 556674. 1926.21 50.60 0.364066 0.329897 24526 138013 -1 2473 16 1122 3044 172020 39077 6.3268 6.3268 -142.889 -6.3268 0 0 706193. 2443.58 1.02 0.08 0.33 -1 -1 1.02 0.0131872 0.0120748 108 147 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_074.v common 34.41 vpr 64.18 MiB -1 -1 0.72 21736 12 1.11 -1 -1 36404 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65720 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 25.6 MiB 7.01 1181 11474 3011 6873 1590 64.2 MiB 0.35 0.00 7.19453 -164.62 -7.19453 7.19453 2.59 0.000250409 0.000206342 0.0184873 0.0155476 36 3249 47 6.79088e+06 242496 648988. 2245.63 16.22 0.518665 0.504726 25390 158009 -1 2767 31 1313 3455 450128 202660 6.29442 6.29442 -153.441 -6.29442 0 0 828058. 2865.25 0.96 0.23 0.28 -1 -1 0.96 0.0229519 0.0204786 120 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_075.v common 23.65 vpr 64.21 MiB -1 -1 0.51 21432 13 1.08 -1 -1 36564 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65756 31 32 278 310 1 200 84 17 17 289 -1 unnamed_device 25.6 MiB 6.00 1196 12528 3337 7297 1894 64.2 MiB 0.18 0.00 8.59275 -169.25 -8.59275 8.59275 2.79 0.000237044 0.000193352 0.132535 0.129176 30 3445 28 6.79088e+06 282912 556674. 1926.21 5.13 0.59282 0.550171 24526 138013 -1 2737 15 1314 3497 185103 42238 7.51535 7.51535 -164.152 -7.51535 0 0 706193. 2443.58 0.84 0.15 0.30 -1 -1 0.84 0.0156508 0.0143744 137 187 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_076.v common 22.34 vpr 64.34 MiB -1 -1 0.55 21888 14 1.09 -1 -1 36932 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65880 32 32 290 322 1 212 84 17 17 289 -1 unnamed_device 25.6 MiB 4.37 1146 5574 1039 4449 86 64.3 MiB 0.02 0.00 8.72598 -178.523 -8.72598 8.72598 2.64 0.00011691 9.3905e-05 0.00539058 0.004559 46 2907 36 6.79088e+06 269440 828058. 2865.25 6.69 0.113 0.102811 27406 200422 -1 2346 18 1166 3599 177913 40777 7.64066 7.64066 -167.177 -7.64066 0 0 1.01997e+06 3529.29 1.05 0.22 0.45 -1 -1 1.05 0.0176089 0.0161782 132 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_077.v common 34.27 vpr 64.09 MiB -1 -1 0.64 22040 14 0.77 -1 -1 36380 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65632 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 25.4 MiB 8.09 1230 8656 2011 5349 1296 64.1 MiB 0.12 0.00 8.05712 -162.43 -8.05712 8.05712 2.43 0.000317229 0.000272174 0.0148106 0.012429 36 3323 48 6.79088e+06 229024 648988. 2245.63 14.49 0.136221 0.122487 25390 158009 -1 2736 21 1388 4227 246785 54143 6.92451 6.92451 -155.298 -6.92451 0 0 828058. 2865.25 0.85 0.17 0.34 -1 -1 0.85 0.0944107 0.092571 122 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_078.v common 31.33 vpr 64.20 MiB -1 -1 0.74 22192 13 1.29 -1 -1 36544 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 32 32 296 328 1 223 86 17 17 289 -1 unnamed_device 25.6 MiB 6.66 1412 5945 1208 4509 228 64.2 MiB 0.14 0.00 8.26127 -169.83 -8.26127 8.26127 2.73 0.000127078 0.000102927 0.0100232 0.00857266 46 3364 24 6.79088e+06 296384 828058. 2865.25 12.10 0.114665 0.10355 27406 200422 -1 2817 19 1407 3920 199584 45033 7.25008 7.25008 -161.265 -7.25008 0 0 1.01997e+06 3529.29 1.48 0.15 0.42 -1 -1 1.48 0.0198741 0.0181337 144 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_079.v common 25.00 vpr 63.68 MiB -1 -1 0.41 21432 13 0.48 -1 -1 36260 -1 -1 18 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65204 30 32 234 266 1 175 80 17 17 289 -1 unnamed_device 25.0 MiB 6.76 994 9024 2062 6050 912 63.7 MiB 0.08 0.00 7.09997 -149.654 -7.09997 7.09997 2.35 0.000181299 0.000146487 0.0127175 0.0105188 38 2558 18 6.79088e+06 242496 678818. 2348.85 6.04 0.150968 0.141226 25966 169698 -1 2142 16 993 2590 129762 29565 6.16917 6.16917 -140.618 -6.16917 0 0 902133. 3121.57 1.19 0.14 0.51 -1 -1 1.19 0.130816 0.130237 104 146 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_080.v common 32.85 vpr 64.27 MiB -1 -1 0.94 22192 13 1.75 -1 -1 36540 -1 -1 22 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65808 30 32 291 323 1 225 84 17 17 289 -1 unnamed_device 25.7 MiB 5.76 1348 12894 3597 7190 2107 64.3 MiB 0.15 0.00 8.17676 -167.864 -8.17676 8.17676 2.45 0.000120605 9.6308e-05 0.0112707 0.00933704 38 3888 38 6.79088e+06 296384 678818. 2348.85 14.71 0.392014 0.279797 25966 169698 -1 2997 18 1534 4216 220306 49419 7.08126 7.08126 -162.178 -7.08126 0 0 902133. 3121.57 1.19 0.17 0.51 -1 -1 1.19 0.13666 0.135017 145 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_081.v common 26.30 vpr 64.20 MiB -1 -1 0.62 21736 14 1.21 -1 -1 36684 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65744 32 32 274 306 1 205 82 17 17 289 -1 unnamed_device 25.4 MiB 6.17 1204 12542 3557 7512 1473 64.2 MiB 0.28 0.00 8.33107 -176.562 -8.33107 8.33107 1.99 0.000231903 0.000179628 0.225717 0.222269 44 3220 27 6.79088e+06 242496 787024. 2723.27 8.45 0.363751 0.349328 27118 194962 -1 2662 17 1149 3386 201433 43261 7.43352 7.43352 -168.165 -7.43352 0 0 997811. 3452.63 1.18 0.17 0.58 -1 -1 1.18 0.103352 0.101981 128 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_082.v common 35.90 vpr 64.16 MiB -1 -1 0.59 21736 13 0.69 -1 -1 36520 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 31 32 266 298 1 196 82 17 17 289 -1 unnamed_device 25.6 MiB 6.14 1125 9516 2594 5042 1880 64.2 MiB 0.17 0.05 7.45922 -159.332 -7.45922 7.45922 2.59 0.0483542 0.0483104 0.131607 0.129133 36 3566 40 6.79088e+06 255968 648988. 2245.63 18.22 0.356329 0.343212 25390 158009 -1 2839 19 1358 3733 236269 51682 6.95324 6.95324 -158.854 -6.95324 0 0 828058. 2865.25 1.03 0.32 0.28 -1 -1 1.03 0.0143134 0.0128503 124 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_083.v common 33.80 vpr 63.89 MiB -1 -1 0.65 21888 13 0.68 -1 -1 36520 -1 -1 19 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65424 30 32 266 298 1 199 81 17 17 289 -1 unnamed_device 25.3 MiB 5.35 1137 12856 4036 7043 1777 63.9 MiB 0.28 0.00 7.52397 -147.14 -7.52397 7.52397 2.53 0.000199929 0.000161569 0.0523737 0.0486881 36 3258 50 6.79088e+06 255968 648988. 2245.63 18.13 0.237289 0.223628 25390 158009 -1 2698 19 1306 3548 219060 48160 6.90978 6.90978 -145.069 -6.90978 0 0 828058. 2865.25 0.76 0.23 0.38 -1 -1 0.76 0.0170688 0.015416 121 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_084.v common 30.99 vpr 64.41 MiB -1 -1 0.69 21888 14 1.87 -1 -1 36380 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65952 32 32 310 342 1 231 85 17 17 289 -1 unnamed_device 25.9 MiB 6.24 1451 10687 2741 6315 1631 64.4 MiB 0.13 0.00 8.72215 -179.517 -8.72215 8.72215 2.68 0.00026871 0.000222142 0.0190015 0.0157864 40 4139 45 6.79088e+06 282912 706193. 2443.58 12.16 0.283295 0.267711 26254 175826 -1 3710 19 1704 5017 366822 79085 8.01306 8.01306 -176.138 -8.01306 0 0 926341. 3205.33 1.13 0.20 0.36 -1 -1 1.13 0.0218377 0.019966 154 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_085.v common 31.78 vpr 64.07 MiB -1 -1 0.79 22040 11 1.09 -1 -1 36316 -1 -1 23 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65608 29 32 262 294 1 201 84 17 17 289 -1 unnamed_device 25.6 MiB 7.47 1069 9783 2744 5515 1524 64.1 MiB 0.10 0.00 7.52622 -141.496 -7.52622 7.52622 2.53 0.000267645 0.000221515 0.0163732 0.0133055 34 3669 49 6.79088e+06 309856 618332. 2139.56 11.22 0.350322 0.336507 25102 150614 -1 2740 28 1337 3793 356365 131059 6.38057 6.38057 -134.372 -6.38057 0 0 787024. 2723.27 1.23 0.41 0.48 -1 -1 1.23 0.0113785 0.0102966 136 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_086.v common 62.96 vpr 63.74 MiB -1 -1 0.76 21584 13 0.39 -1 -1 36372 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65268 32 32 222 254 1 182 78 17 17 289 -1 unnamed_device 25.3 MiB 12.25 943 8212 2080 5932 200 63.7 MiB 0.18 0.00 7.06068 -160.405 -7.06068 7.06068 2.84 8.3754e-05 6.6995e-05 0.00552488 0.00458763 40 2594 33 6.79088e+06 188608 706193. 2443.58 38.55 0.369759 0.353198 26254 175826 -1 2242 27 1135 2554 257116 93514 5.99004 5.99004 -151.715 -5.99004 0 0 926341. 3205.33 1.00 0.28 0.22 -1 -1 1.00 0.0176698 0.0159026 98 128 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_087.v common 30.00 vpr 63.86 MiB -1 -1 0.90 21888 14 1.08 -1 -1 36560 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65396 32 32 267 299 1 200 81 17 17 289 -1 unnamed_device 25.3 MiB 6.44 1207 6731 1642 4519 570 63.9 MiB 0.16 0.00 8.29812 -170.987 -8.29812 8.29812 2.37 0.000228579 0.000187435 0.0463598 0.0443926 36 3162 22 6.79088e+06 229024 648988. 2245.63 11.74 0.161469 0.150586 25390 158009 -1 2729 17 1154 3067 182715 40642 7.42577 7.42577 -164.968 -7.42577 0 0 828058. 2865.25 1.00 0.13 0.44 -1 -1 1.00 0.0173116 0.0158816 122 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_088.v common 26.95 vpr 64.71 MiB -1 -1 0.62 22344 15 1.01 -1 -1 36248 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66260 32 32 334 366 1 254 87 17 17 289 -1 unnamed_device 26.0 MiB 5.51 1316 11223 3211 6360 1652 64.7 MiB 0.15 0.00 9.24101 -186.679 -9.24101 9.24101 2.38 0.000136464 0.000109802 0.010004 0.00827923 46 3545 32 6.79088e+06 309856 828058. 2865.25 8.31 0.102984 0.0852926 27406 200422 -1 2867 18 1576 4182 206928 48477 8.10615 8.10615 -174.61 -8.10615 0 0 1.01997e+06 3529.29 1.22 0.11 0.40 -1 -1 1.22 0.0142682 0.0128737 163 240 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_089.v common 46.75 vpr 63.72 MiB -1 -1 0.30 21736 11 0.47 -1 -1 36352 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65248 32 32 220 252 1 168 79 17 17 289 -1 unnamed_device 25.1 MiB 6.28 817 7008 1491 5366 151 63.7 MiB 0.26 0.00 6.91752 -143.632 -6.91752 6.91752 2.45 0.000198506 0.000149481 0.233414 0.00922393 38 2333 21 6.79088e+06 202080 678818. 2348.85 29.04 0.475864 0.23947 25966 169698 -1 1855 17 922 2444 131934 30357 5.99343 5.99343 -137.822 -5.99343 0 0 902133. 3121.57 1.06 0.09 0.26 -1 -1 1.06 0.0132275 0.012109 97 126 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_090.v common 33.05 vpr 63.63 MiB -1 -1 0.91 21280 12 0.70 -1 -1 36552 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65160 31 32 244 276 1 193 80 17 17 289 -1 unnamed_device 25.1 MiB 5.66 1059 6100 1333 4406 361 63.6 MiB 0.17 0.00 6.68467 -150.19 -6.68467 6.68467 3.03 0.000203636 0.000162379 0.042617 0.0408947 36 3480 34 6.79088e+06 229024 648988. 2245.63 15.41 0.36556 0.35435 25390 158009 -1 2742 21 1417 3797 229983 51414 5.82887 5.82887 -146.097 -5.82887 0 0 828058. 2865.25 1.03 0.31 0.26 -1 -1 1.03 0.0174261 0.0158652 112 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_091.v common 24.24 vpr 64.44 MiB -1 -1 0.51 21888 12 1.09 -1 -1 36528 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65988 32 32 300 332 1 219 83 17 17 289 -1 unnamed_device 25.7 MiB 4.33 1274 6023 1243 4416 364 64.4 MiB 0.16 0.00 7.44946 -160.947 -7.44946 7.44946 2.83 0.000262393 0.000216047 0.0651238 0.0632751 36 3519 22 6.79088e+06 255968 648988. 2245.63 7.78 0.275483 0.263528 25390 158009 -1 2937 19 1489 4320 235582 54894 6.67381 6.67381 -157.967 -6.67381 0 0 828058. 2865.25 1.12 0.20 0.18 -1 -1 1.12 0.17701 0.175841 143 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_092.v common 72.75 vpr 64.23 MiB -1 -1 0.57 21736 12 1.29 -1 -1 36360 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65772 32 32 271 303 1 209 82 17 17 289 -1 unnamed_device 25.6 MiB 7.02 1256 11652 3336 6758 1558 64.2 MiB 0.23 0.00 7.26447 -155.226 -7.26447 7.26447 2.83 0.000252864 0.000180633 0.158774 0.155743 40 3216 19 6.79088e+06 242496 706193. 2443.58 52.33 0.601826 0.508429 26254 175826 -1 3120 16 1362 3927 262860 55541 6.33367 6.33367 -153.277 -6.33367 0 0 926341. 3205.33 1.43 0.09 0.55 -1 -1 1.43 0.0161406 0.0148196 130 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_093.v common 37.89 vpr 64.59 MiB -1 -1 0.71 22192 14 1.75 -1 -1 36588 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66144 32 32 327 359 1 233 86 17 17 289 -1 unnamed_device 25.9 MiB 7.53 1311 5567 1101 4179 287 64.6 MiB 0.04 0.02 9.37625 -182.592 -9.37625 9.37625 2.47 0.000134163 0.000107512 0.00613148 0.00519029 36 4039 26 6.79088e+06 296384 648988. 2245.63 17.04 0.513928 0.43663 25390 158009 -1 3438 21 1758 5180 314485 70041 7.81291 7.81291 -173.382 -7.81291 0 0 828058. 2865.25 1.15 0.18 0.25 -1 -1 1.15 0.0242137 0.0220307 167 233 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_094.v common 36.68 vpr 63.84 MiB -1 -1 0.60 21432 12 0.92 -1 -1 36468 -1 -1 19 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65368 30 32 246 278 1 185 81 17 17 289 -1 unnamed_device 25.3 MiB 5.74 1038 11631 4130 5622 1879 63.8 MiB 0.14 0.00 7.09222 -139.67 -7.09222 7.09222 2.91 0.000218801 0.000178227 0.00985613 0.00803052 36 3325 46 6.79088e+06 255968 648988. 2245.63 18.89 0.406694 0.395249 25390 158009 -1 2718 18 1284 3770 248485 55214 6.36168 6.36168 -136.43 -6.36168 0 0 828058. 2865.25 0.95 0.18 0.20 -1 -1 0.95 0.016007 0.0145486 121 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_095.v common 21.36 vpr 63.59 MiB -1 -1 0.37 21128 11 0.71 -1 -1 36524 -1 -1 19 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65116 27 32 219 251 1 163 78 17 17 289 -1 unnamed_device 25.1 MiB 8.70 836 12362 3373 7574 1415 63.6 MiB 0.25 0.00 7.24312 -129.617 -7.24312 7.24312 2.50 0.000183914 0.000148634 0.166608 0.0137765 30 2248 26 6.79088e+06 255968 556674. 1926.21 2.90 0.20089 0.0430698 24526 138013 -1 1895 15 862 2117 104629 25215 6.67032 6.67032 -127.143 -6.67032 0 0 706193. 2443.58 0.59 0.12 0.35 -1 -1 0.59 0.0123789 0.0112994 104 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_096.v common 33.71 vpr 64.76 MiB -1 -1 0.63 22648 13 1.67 -1 -1 36704 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66312 32 32 380 412 1 276 90 17 17 289 -1 unnamed_device 26.2 MiB 5.72 1548 9135 2246 6246 643 64.8 MiB 0.12 0.00 8.07817 -163.002 -8.07817 8.07817 2.72 0.000324898 0.000270015 0.0670237 0.0639352 40 4395 40 6.79088e+06 350272 706193. 2443.58 15.10 0.279144 0.153606 26254 175826 -1 4023 19 2209 6634 428390 91098 6.96017 6.96017 -159.086 -6.96017 0 0 926341. 3205.33 1.07 0.36 0.28 -1 -1 1.07 0.0249782 0.0228678 188 286 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_097.v common 25.03 vpr 64.05 MiB -1 -1 0.59 21888 14 1.03 -1 -1 36304 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65588 31 32 277 309 1 197 85 17 17 289 -1 unnamed_device 25.4 MiB 7.07 1216 5665 1120 3933 612 64.1 MiB 0.14 0.00 8.1916 -166.036 -8.1916 8.1916 2.67 0.000226605 0.000185802 0.00584723 0.00496125 38 2974 17 6.79088e+06 296384 678818. 2348.85 6.98 0.147742 0.13804 25966 169698 -1 2613 21 1157 3235 164176 37413 7.1786 7.1786 -156.686 -7.1786 0 0 902133. 3121.57 0.89 0.15 0.32 -1 -1 0.89 0.0184198 0.0168247 130 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_098.v common 24.59 vpr 63.77 MiB -1 -1 0.43 21432 12 0.57 -1 -1 36308 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65304 32 32 229 261 1 174 82 17 17 289 -1 unnamed_device 25.1 MiB 6.12 1069 7736 1622 5709 405 63.8 MiB 0.13 0.00 7.30616 -155.25 -7.30616 7.30616 2.38 0.000223248 0.000172778 0.0109389 0.0091079 36 2757 24 6.79088e+06 242496 648988. 2245.63 7.65 0.0694634 0.0595311 25390 158009 -1 2268 14 931 2345 132703 30214 6.27527 6.27527 -149.173 -6.27527 0 0 828058. 2865.25 1.03 0.04 0.20 -1 -1 1.03 0.0132514 0.0121832 109 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_099.v common 51.60 vpr 63.95 MiB -1 -1 0.57 21584 13 0.90 -1 -1 36364 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65488 32 32 263 295 1 199 82 17 17 289 -1 unnamed_device 25.4 MiB 5.81 1256 6846 1513 4068 1265 64.0 MiB 0.09 0.00 8.39101 -170.885 -8.39101 8.39101 2.34 0.000283038 0.000242275 0.0531481 0.0513807 34 3785 45 6.79088e+06 242496 618332. 2139.56 35.07 0.54238 0.52401 25102 150614 -1 3057 17 1293 3503 237559 52009 7.08906 7.08906 -166.878 -7.08906 0 0 787024. 2723.27 1.30 0.14 0.47 -1 -1 1.30 0.0128271 0.011729 128 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_100.v common 31.87 vpr 64.61 MiB -1 -1 0.70 22192 13 0.97 -1 -1 36568 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66156 31 32 321 353 1 241 87 17 17 289 -1 unnamed_device 25.9 MiB 5.56 1444 6039 1232 4262 545 64.6 MiB 0.27 0.00 7.26103 -154.941 -7.26103 7.26103 3.14 0.000128786 0.000105109 0.111643 0.109916 40 3873 25 6.79088e+06 323328 706193. 2443.58 13.07 0.522711 0.50947 26254 175826 -1 3690 26 2164 6542 540823 149368 6.45548 6.45548 -154.67 -6.45548 0 0 926341. 3205.33 1.15 0.58 0.34 -1 -1 1.15 0.0864627 0.0839129 157 230 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_101.v common 39.85 vpr 64.26 MiB -1 -1 0.84 21736 11 0.98 -1 -1 36344 -1 -1 22 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65800 30 32 287 319 1 201 84 17 17 289 -1 unnamed_device 25.6 MiB 6.78 1252 8136 2096 4731 1309 64.3 MiB 0.05 0.00 7.13827 -144.758 -7.13827 7.13827 2.83 0.000245886 0.000204375 0.0100692 0.00833935 36 3579 27 6.79088e+06 296384 648988. 2245.63 20.86 0.333703 0.145771 25390 158009 -1 2774 18 1258 3822 237022 52155 6.12992 6.12992 -138.211 -6.12992 0 0 828058. 2865.25 0.99 0.10 0.23 -1 -1 0.99 0.0174968 0.0159903 141 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_102.v common 84.90 vpr 64.32 MiB -1 -1 0.96 21888 15 1.57 -1 -1 36384 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65860 32 32 296 328 1 220 86 17 17 289 -1 unnamed_device 25.7 MiB 5.34 1398 5000 1022 3623 355 64.3 MiB 0.25 0.00 8.64473 -188.25 -8.64473 8.64473 2.52 0.000255711 0.000206434 0.0104988 0.00889174 40 3355 32 6.79088e+06 296384 706193. 2443.58 66.18 0.406963 0.383136 26254 175826 -1 3182 18 1306 4145 285809 60984 7.67991 7.67991 -176.515 -7.67991 0 0 926341. 3205.33 1.28 0.13 0.31 -1 -1 1.28 0.0899599 0.0883922 147 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_103.v common 29.36 vpr 64.37 MiB -1 -1 0.50 22040 13 1.59 -1 -1 36852 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65912 32 32 285 317 1 217 85 17 17 289 -1 unnamed_device 25.7 MiB 7.97 1264 9385 2386 5811 1188 64.4 MiB 0.16 0.00 8.01335 -174.221 -8.01335 8.01335 2.10 0.000251256 0.000208167 0.113164 0.110591 38 3415 21 6.79088e+06 282912 678818. 2348.85 7.71 0.337982 0.325943 25966 169698 -1 2763 21 1340 3969 196219 45514 7.08901 7.08901 -167.166 -7.08901 0 0 902133. 3121.57 1.13 0.16 0.49 -1 -1 1.13 0.312205 0.310521 143 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_104.v common 25.44 vpr 63.90 MiB -1 -1 0.53 21584 12 0.78 -1 -1 36568 -1 -1 18 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65436 29 32 239 271 1 185 79 17 17 289 -1 unnamed_device 25.4 MiB 6.39 1082 7177 1879 4686 612 63.9 MiB 0.12 0.00 7.46481 -154.166 -7.46481 7.46481 2.48 0.000265814 0.00022923 0.011956 0.010091 38 2803 27 6.79088e+06 242496 678818. 2348.85 7.97 0.276848 0.267483 25966 169698 -1 2280 16 1197 2964 157668 36113 6.25871 6.25871 -141.46 -6.25871 0 0 902133. 3121.57 1.26 0.02 0.39 -1 -1 1.26 0.00697017 0.00630815 111 154 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_105.v common 40.48 vpr 63.79 MiB -1 -1 0.69 21432 11 0.70 -1 -1 36752 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65324 32 32 235 267 1 172 78 17 17 289 -1 unnamed_device 25.1 MiB 4.85 795 3896 739 3108 49 63.8 MiB 0.11 0.00 6.53043 -137.046 -6.53043 6.53043 2.89 0.00018483 0.000148471 0.088664 0.0875687 38 2455 21 6.79088e+06 188608 678818. 2348.85 24.85 0.488295 0.472963 25966 169698 -1 1914 16 1035 2541 117928 30509 5.86813 5.86813 -135.756 -5.86813 0 0 902133. 3121.57 1.50 0.07 0.36 -1 -1 1.50 0.0457419 0.0445629 98 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_106.v common 28.15 vpr 64.36 MiB -1 -1 0.80 21736 13 1.27 -1 -1 36680 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65904 31 32 294 326 1 212 84 17 17 289 -1 unnamed_device 25.7 MiB 3.98 1198 13077 3554 7195 2328 64.4 MiB 0.27 0.00 8.26103 -160.93 -8.26103 8.26103 2.16 0.000270348 0.000226147 0.216508 0.212863 34 3863 44 6.79088e+06 282912 618332. 2139.56 11.91 0.46639 0.418887 25102 150614 -1 2972 18 1580 4441 276457 61802 7.17157 7.17157 -154.867 -7.17157 0 0 787024. 2723.27 1.04 0.15 0.57 -1 -1 1.04 0.0123437 0.0113039 143 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_107.v common 22.20 vpr 63.58 MiB -1 -1 0.76 21432 10 0.46 -1 -1 36424 -1 -1 17 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65108 29 32 219 251 1 163 78 17 17 289 -1 unnamed_device 25.1 MiB 7.21 954 8046 2043 4866 1137 63.6 MiB 0.10 0.00 6.11522 -126.764 -6.11522 6.11522 2.97 0.000210845 0.000158605 0.0119812 0.00979056 30 2468 23 6.79088e+06 229024 556674. 1926.21 4.31 0.191789 0.185121 24526 138013 -1 2106 17 967 2467 126790 28864 5.15193 5.15193 -122.814 -5.15193 0 0 706193. 2443.58 0.68 0.03 0.18 -1 -1 0.68 0.0132977 0.0121969 101 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_108.v common 34.04 vpr 63.78 MiB -1 -1 0.81 21280 14 0.69 -1 -1 36404 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65308 32 32 239 271 1 184 82 17 17 289 -1 unnamed_device 25.1 MiB 10.50 1162 8092 2174 5283 635 63.8 MiB 0.13 0.00 7.73405 -163.867 -7.73405 7.73405 2.31 0.000215391 0.000175772 0.0132003 0.0109805 36 2830 21 6.79088e+06 242496 648988. 2245.63 10.65 0.0705317 0.0597081 25390 158009 -1 2507 18 1054 2739 161347 36131 6.99942 6.99942 -158.459 -6.99942 0 0 828058. 2865.25 1.19 0.17 0.55 -1 -1 1.19 0.137354 0.0138083 110 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_109.v common 27.37 vpr 64.03 MiB -1 -1 0.58 21888 13 1.03 -1 -1 36536 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65568 31 32 266 298 1 209 83 17 17 289 -1 unnamed_device 25.4 MiB 9.35 1137 9083 2001 6216 866 64.0 MiB 0.11 0.00 8.08721 -167.06 -8.08721 8.08721 2.75 0.000272858 0.000227797 0.0792009 0.0127277 46 2776 17 6.79088e+06 269440 828058. 2865.25 6.76 0.137092 0.0627626 27406 200422 -1 2419 14 1059 2826 147207 32803 6.97485 6.97485 -157.217 -6.97485 0 0 1.01997e+06 3529.29 1.32 0.19 0.33 -1 -1 1.32 0.162164 0.0134858 125 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_110.v common 51.31 vpr 63.60 MiB -1 -1 0.88 21432 12 0.77 -1 -1 36244 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65124 31 32 225 257 1 172 80 17 17 289 -1 unnamed_device 25.1 MiB 12.49 1082 7476 1931 4630 915 63.6 MiB 0.38 0.11 6.65573 -144.442 -6.65573 6.65573 2.90 0.000188455 0.00015255 0.200067 0.00936333 36 2682 32 6.79088e+06 229024 648988. 2245.63 25.83 0.406768 0.201892 25390 158009 -1 2393 30 1144 2885 386195 181882 5.65673 5.65673 -137.02 -5.65673 0 0 828058. 2865.25 0.83 0.28 0.29 -1 -1 0.83 0.12046 0.118518 99 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_111.v common 25.34 vpr 64.32 MiB -1 -1 0.61 21584 12 0.58 -1 -1 37044 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65864 32 32 288 320 1 203 82 17 17 289 -1 unnamed_device 25.6 MiB 7.32 1119 6134 1379 4379 376 64.3 MiB 0.21 0.00 7.01038 -154.061 -7.01038 7.01038 2.75 0.000112302 8.9372e-05 0.0111242 0.00931707 38 2950 24 6.79088e+06 242496 678818. 2348.85 5.96 0.16096 0.0705324 25966 169698 -1 2464 16 1172 3380 179416 40524 6.07958 6.07958 -148.005 -6.07958 0 0 902133. 3121.57 1.07 0.14 0.34 -1 -1 1.07 0.0176994 0.016164 130 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_112.v common 27.67 vpr 64.27 MiB -1 -1 0.75 21888 13 0.85 -1 -1 36472 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65808 31 32 282 314 1 212 83 17 17 289 -1 unnamed_device 25.6 MiB 4.30 1249 12503 3919 6242 2342 64.3 MiB 0.32 0.00 7.84749 -165.919 -7.84749 7.84749 2.33 0.000261365 0.000210017 0.162284 0.0163846 38 3454 36 6.79088e+06 269440 678818. 2348.85 10.41 0.400356 0.244355 25966 169698 -1 2838 16 1332 3829 207412 46302 6.78001 6.78001 -155.304 -6.78001 0 0 902133. 3121.57 1.27 0.27 0.32 -1 -1 1.27 0.110172 0.0149654 143 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_113.v common 28.79 vpr 63.38 MiB -1 -1 0.51 21280 11 0.77 -1 -1 36240 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64896 32 32 233 265 1 183 80 17 17 289 -1 unnamed_device 24.8 MiB 8.13 975 11260 3989 5096 2175 63.4 MiB 0.26 0.00 6.23648 -144.813 -6.23648 6.23648 2.69 0.000179694 0.000144289 0.0150163 0.0124489 38 2971 28 6.79088e+06 215552 678818. 2348.85 8.23 0.613452 0.59947 25966 169698 -1 2312 17 1336 3500 191962 44203 5.4461 5.4461 -139.775 -5.4461 0 0 902133. 3121.57 1.32 0.20 0.31 -1 -1 1.32 0.159588 0.158092 106 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_114.v common 69.78 vpr 64.03 MiB -1 -1 0.82 21432 13 0.85 -1 -1 36252 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65568 32 32 254 286 1 188 79 17 17 289 -1 unnamed_device 25.4 MiB 9.17 1138 8360 2130 5255 975 64.0 MiB 0.04 0.00 7.72657 -166.89 -7.72657 7.72657 2.07 0.000222629 0.000183485 0.00710553 0.00589471 38 3105 26 6.79088e+06 202080 678818. 2348.85 48.20 0.559157 0.539576 25966 169698 -1 2590 15 1182 3141 185601 42452 6.83149 6.83149 -159.702 -6.83149 0 0 902133. 3121.57 0.98 0.08 0.25 -1 -1 0.98 0.0127724 0.0115959 113 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_115.v common 82.43 vpr 64.21 MiB -1 -1 0.51 21736 13 0.78 -1 -1 36796 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65748 32 32 285 317 1 214 83 17 17 289 -1 unnamed_device 25.6 MiB 4.00 1313 11963 3400 6650 1913 64.2 MiB 0.30 0.00 7.85887 -174.519 -7.85887 7.85887 2.35 0.00031479 0.000205969 0.0200107 0.0165406 30 4568 41 6.79088e+06 255968 556674. 1926.21 66.34 0.871574 0.572404 24526 138013 -1 3314 37 2252 6875 999408 364248 7.16049 7.16049 -172.992 -7.16049 0 0 706193. 2443.58 1.19 0.71 0.19 -1 -1 1.19 0.232466 0.230096 136 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_116.v common 36.68 vpr 63.86 MiB -1 -1 0.58 21584 11 0.65 -1 -1 36244 -1 -1 19 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65396 29 32 243 275 1 184 80 17 17 289 -1 unnamed_device 25.3 MiB 6.41 1115 11432 3871 5660 1901 63.9 MiB 0.19 0.00 6.26054 -131.434 -6.26054 6.26054 2.71 0.000213964 0.000174081 0.0171196 0.0142019 34 3221 43 6.79088e+06 255968 618332. 2139.56 18.36 0.339668 0.318575 25102 150614 -1 2706 20 1337 3963 285622 59780 5.35984 5.35984 -129.56 -5.35984 0 0 787024. 2723.27 1.06 0.35 0.30 -1 -1 1.06 0.0174185 0.0156703 116 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_117.v common 25.67 vpr 64.23 MiB -1 -1 0.70 22192 14 1.04 -1 -1 36904 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65768 32 32 318 350 1 238 87 17 17 289 -1 unnamed_device 25.6 MiB 6.96 1385 10647 2557 6767 1323 64.2 MiB 0.25 0.00 8.80331 -192.733 -8.80331 8.80331 2.81 0.000276201 0.000229648 0.0891363 0.0857842 30 3986 28 6.79088e+06 309856 556674. 1926.21 6.57 0.245103 0.23526 24526 138013 -1 3287 25 1652 4416 358935 112256 7.64841 7.64841 -182.338 -7.64841 0 0 706193. 2443.58 0.79 0.19 0.41 -1 -1 0.79 0.104946 0.102389 159 224 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_118.v common 37.72 vpr 63.71 MiB -1 -1 0.54 21128 12 0.61 -1 -1 36272 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65236 31 32 222 254 1 188 82 17 17 289 -1 unnamed_device 25.1 MiB 9.80 1086 12186 3312 7382 1492 63.7 MiB 0.33 0.00 6.63439 -153.849 -6.63439 6.63439 3.18 0.000183914 0.000147091 0.0156249 0.0128517 36 2948 49 6.79088e+06 255968 648988. 2245.63 16.62 0.153242 0.0646456 25390 158009 -1 2400 28 1086 2531 308355 129895 5.82549 5.82549 -143.643 -5.82549 0 0 828058. 2865.25 0.91 0.30 0.42 -1 -1 0.91 0.0542581 0.052464 106 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_119.v common 68.05 vpr 64.02 MiB -1 -1 0.65 22192 13 1.09 -1 -1 36324 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65556 32 32 282 314 1 211 84 17 17 289 -1 unnamed_device 25.4 MiB 5.73 1327 11796 3119 6792 1885 64.0 MiB 0.28 0.00 8.16138 -171.4 -8.16138 8.16138 2.39 0.000130482 9.8505e-05 0.0195796 0.0155773 36 4119 25 6.79088e+06 269440 648988. 2245.63 49.95 0.617249 0.533045 25390 158009 -1 3227 18 1447 4088 298721 67832 7.16403 7.16403 -164.556 -7.16403 0 0 828058. 2865.25 1.06 0.36 0.45 -1 -1 1.06 0.0159327 0.0141426 136 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_120.v common 43.78 vpr 63.73 MiB -1 -1 0.59 21432 13 0.65 -1 -1 36324 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65264 32 32 238 270 1 180 84 17 17 289 -1 unnamed_device 25.1 MiB 4.97 1047 11613 3365 5842 2406 63.7 MiB 0.16 0.00 7.82359 -169.628 -7.82359 7.82359 2.41 0.000227712 0.000190496 0.0538307 0.0511428 34 3044 39 6.79088e+06 269440 618332. 2139.56 27.45 0.668463 0.411437 25102 150614 -1 2691 21 1199 3043 213784 46250 7.08896 7.08896 -169.68 -7.08896 0 0 787024. 2723.27 0.99 0.24 0.25 -1 -1 0.99 0.0156106 0.0141582 107 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_121.v common 51.44 vpr 63.93 MiB -1 -1 0.65 21888 12 0.73 -1 -1 36804 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65464 32 32 269 301 1 190 83 17 17 289 -1 unnamed_device 25.4 MiB 6.07 1272 8543 2219 5545 779 63.9 MiB 0.13 0.00 7.47927 -162.601 -7.47927 7.47927 2.32 0.000242842 0.000198714 0.015874 0.0134652 30 3408 29 6.79088e+06 255968 556674. 1926.21 33.94 0.61366 0.599782 24526 138013 -1 2718 21 1487 4408 233239 51727 6.49119 6.49119 -152.452 -6.49119 0 0 706193. 2443.58 0.91 0.15 0.22 -1 -1 0.91 0.0120418 0.0107914 128 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_122.v common 28.74 vpr 64.81 MiB -1 -1 0.80 22496 15 1.59 -1 -1 36820 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66364 32 32 350 382 1 256 89 17 17 289 -1 unnamed_device 26.2 MiB 5.00 1539 10979 3042 6587 1350 64.8 MiB 0.23 0.00 9.52142 -198.607 -9.52142 9.52142 2.32 0.000300575 0.00024672 0.0234605 0.0197836 38 4388 50 6.79088e+06 336800 678818. 2348.85 11.62 0.253926 0.137742 25966 169698 -1 3570 19 1907 5785 301624 67256 8.06351 8.06351 -186.424 -8.06351 0 0 902133. 3121.57 1.08 0.27 0.41 -1 -1 1.08 0.0828552 0.0808869 183 256 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_123.v common 23.41 vpr 63.17 MiB -1 -1 0.39 21280 10 0.31 -1 -1 36224 -1 -1 11 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64688 30 32 174 206 1 133 73 17 17 289 -1 unnamed_device 24.7 MiB 6.67 627 9953 2899 5238 1816 63.2 MiB 0.10 0.00 4.79366 -113.325 -4.79366 4.79366 2.34 0.000135958 0.000107489 0.0696102 0.06753 34 1992 42 6.79088e+06 148192 618332. 2139.56 6.04 0.106627 0.098773 25102 150614 -1 1541 15 725 1603 89087 22561 4.51496 4.51496 -114.565 -4.51496 0 0 787024. 2723.27 1.19 0.19 0.30 -1 -1 1.19 0.00914581 0.0083407 65 86 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_124.v common 23.14 vpr 63.53 MiB -1 -1 0.64 21584 13 0.63 -1 -1 36340 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65056 30 32 228 260 1 176 79 17 17 289 -1 unnamed_device 25.0 MiB 5.06 1062 12416 3908 6746 1762 63.5 MiB 0.15 0.00 7.81527 -160.852 -7.81527 7.81527 2.45 0.000206254 0.000159013 0.0185229 0.014972 36 2664 19 6.79088e+06 229024 648988. 2245.63 7.43 0.192552 0.180408 25390 158009 -1 2364 17 1084 2673 155516 35420 6.83498 6.83498 -156.84 -6.83498 0 0 828058. 2865.25 1.03 0.10 0.26 -1 -1 1.03 0.0146921 0.0134424 103 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_125.v common 34.53 vpr 63.93 MiB -1 -1 0.66 21584 12 0.63 -1 -1 36380 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65464 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 25.4 MiB 7.54 1159 7736 1879 5232 625 63.9 MiB 0.49 0.00 7.13237 -158.608 -7.13237 7.13237 2.95 0.000210627 0.000169769 0.00960852 0.00787974 34 3355 47 6.79088e+06 242496 618332. 2139.56 14.32 0.116058 0.102759 25102 150614 -1 2853 20 1620 4022 273560 59015 6.28323 6.28323 -157.495 -6.28323 0 0 787024. 2723.27 1.12 0.29 0.25 -1 -1 1.12 0.0213319 0.0196772 117 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_126.v common 18.54 vpr 63.36 MiB -1 -1 0.47 21280 9 0.55 -1 -1 36084 -1 -1 18 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64880 25 32 183 215 1 134 75 17 17 289 -1 unnamed_device 24.8 MiB 3.64 683 6711 1744 4492 475 63.4 MiB 0.60 0.00 5.04099 -94.9896 -5.04099 5.04099 2.25 7.3999e-05 5.8196e-05 0.155318 0.00645552 28 2279 50 6.79088e+06 242496 531479. 1839.03 3.90 0.326083 0.0386991 23950 126010 -1 1882 35 1206 3337 388976 144017 4.77249 4.77249 -103.451 -4.77249 0 0 648988. 2245.63 0.82 0.16 0.30 -1 -1 0.82 0.00993864 0.00876295 86 110 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_127.v common 29.40 vpr 64.38 MiB -1 -1 0.55 21888 12 1.10 -1 -1 36540 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65924 32 32 300 332 1 226 85 17 17 289 -1 unnamed_device 25.6 MiB 5.88 1287 10501 2542 6098 1861 64.4 MiB 0.15 0.00 7.44518 -164.845 -7.44518 7.44518 3.10 0.000112587 8.9592e-05 0.0096715 0.0080076 46 3522 28 6.79088e+06 282912 828058. 2865.25 9.91 0.399568 0.383678 27406 200422 -1 2824 20 1482 4119 210242 47127 6.41977 6.41977 -155.05 -6.41977 0 0 1.01997e+06 3529.29 1.30 0.09 0.53 -1 -1 1.30 0.0267084 0.0249463 143 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_128.v common 29.42 vpr 64.29 MiB -1 -1 0.57 22344 13 0.97 -1 -1 36388 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65832 31 32 290 322 1 215 85 17 17 289 -1 unnamed_device 25.6 MiB 7.07 1313 6409 1340 4499 570 64.3 MiB 0.15 0.00 8.4064 -173.711 -8.4064 8.4064 2.11 0.000266612 0.000223623 0.0579655 0.0098834 36 3598 20 6.79088e+06 296384 648988. 2245.63 11.51 0.354726 0.29688 25390 158009 -1 3137 19 1415 4009 239624 53054 7.719 7.719 -169.02 -7.719 0 0 828058. 2865.25 0.89 0.21 0.23 -1 -1 0.89 0.0205568 0.0188058 147 199 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 36.82 vpr 64.11 MiB -1 -1 0.39 21280 1 0.15 -1 -1 33932 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65652 32 32 354 285 1 207 90 17 17 289 -1 unnamed_device 25.3 MiB 10.99 991 16773 4981 8552 3240 64.1 MiB 0.17 0.00 5.46262 -158.993 -5.46262 5.46262 2.39 0.000166257 0.00013232 0.0170672 0.0139707 30 2828 34 6.87369e+06 363320 556674. 1926.21 16.16 0.628108 0.614131 25186 138497 -1 1951 21 1455 2342 135152 34327 4.306 4.306 -144.582 -4.306 0 0 706193. 2443.58 0.90 0.05 0.21 -1 -1 0.90 0.0091799 0.00828407 142 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 23.92 vpr 64.31 MiB -1 -1 0.32 21280 1 0.03 -1 -1 33704 -1 -1 24 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65856 30 32 363 293 1 200 86 17 17 289 -1 unnamed_device 25.8 MiB 9.80 1105 15395 5029 8642 1724 64.3 MiB 0.19 0.00 4.6569 -139.628 -4.6569 4.6569 2.33 0.000183779 0.000149981 0.0159037 0.0129477 34 2743 24 6.87369e+06 335372 618332. 2139.56 4.02 0.236274 0.165765 25762 151098 -1 2373 20 1798 2701 226002 50787 4.34166 4.34166 -150.553 -4.34166 0 0 787024. 2723.27 0.88 0.11 0.32 -1 -1 0.88 0.0278436 0.0102401 141 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 23.13 vpr 64.22 MiB -1 -1 0.64 21280 1 0.07 -1 -1 33484 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65764 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 25.5 MiB 8.21 973 9571 2499 6619 453 64.2 MiB 0.13 0.00 4.36457 -122.38 -4.36457 4.36457 2.58 0.000149868 0.000118135 0.010994 0.00912159 34 2446 23 6.87369e+06 293451 618332. 2139.56 4.31 0.0465469 0.0389704 25762 151098 -1 1989 21 1377 1840 125121 30167 3.85196 3.85196 -122.838 -3.85196 0 0 787024. 2723.27 1.13 0.06 0.29 -1 -1 1.13 0.0100137 0.00865675 124 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 18.42 vpr 64.22 MiB -1 -1 0.26 21280 1 0.14 -1 -1 33676 -1 -1 29 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65764 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 25.5 MiB 3.14 962 13557 3889 7576 2092 64.2 MiB 0.30 0.00 4.63038 -127.857 -4.63038 4.63038 2.75 0.00015505 0.000122539 0.0115351 0.00925165 34 2292 25 6.87369e+06 405241 618332. 2139.56 3.84 0.350809 0.342104 25762 151098 -1 1968 20 1368 2519 188672 42105 3.8044 3.8044 -122.158 -3.8044 0 0 787024. 2723.27 0.95 0.05 0.37 -1 -1 0.95 0.0107964 0.00957934 124 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 20.87 vpr 64.36 MiB -1 -1 0.44 21280 1 0.19 -1 -1 33704 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65908 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 25.6 MiB 4.87 1039 17023 5711 8892 2420 64.4 MiB 0.22 0.00 4.54412 -133.694 -4.54412 4.54412 3.05 0.000166785 0.000133977 0.114843 0.0582197 34 2709 22 6.87369e+06 377294 618332. 2139.56 4.64 0.265154 0.201143 25762 151098 -1 2243 23 1783 3463 258575 57562 3.5348 3.5348 -127.602 -3.5348 0 0 787024. 2723.27 1.07 0.21 0.47 -1 -1 1.07 0.086927 0.0854641 131 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 17.64 vpr 64.25 MiB -1 -1 0.53 21432 1 0.06 -1 -1 33692 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65788 32 32 366 295 1 189 94 17 17 289 -1 unnamed_device 25.6 MiB 4.93 1055 17134 4716 10280 2138 64.2 MiB 0.33 0.00 3.30607 -118.576 -3.30607 3.30607 2.42 0.000174675 0.000142387 0.0411234 0.0379096 30 2419 18 6.87369e+06 419215 556674. 1926.21 2.66 0.2291 0.221514 25186 138497 -1 1992 20 1192 2027 120521 27314 2.73471 2.73471 -114.003 -2.73471 0 0 706193. 2443.58 1.12 0.03 0.35 -1 -1 1.12 0.0111662 0.00984468 136 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 21.59 vpr 63.89 MiB -1 -1 0.63 21280 1 0.20 -1 -1 34148 -1 -1 19 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65424 27 32 259 221 1 141 78 17 17 289 -1 unnamed_device 25.2 MiB 7.61 598 11532 3252 7421 859 63.9 MiB 0.16 0.00 3.87934 -104.974 -3.87934 3.87934 2.58 0.000132466 0.000103121 0.0101505 0.00808648 34 1593 23 6.87369e+06 265503 618332. 2139.56 3.70 0.325426 0.318722 25762 151098 -1 1264 18 995 1650 93834 24428 2.92396 2.92396 -98.013 -2.92396 0 0 787024. 2723.27 0.74 0.08 0.34 -1 -1 0.74 0.00893896 0.00791239 97 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 17.49 vpr 64.05 MiB -1 -1 0.57 21280 1 0.10 -1 -1 33720 -1 -1 32 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65592 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 25.5 MiB 2.68 978 15431 4433 8823 2175 64.1 MiB 0.12 0.00 3.50695 -106.713 -3.50695 3.50695 2.58 0.000143358 0.000114212 0.0207569 0.0181229 34 2114 20 6.87369e+06 447163 618332. 2139.56 4.43 0.177116 0.167919 25762 151098 -1 1814 17 965 1627 111277 25198 2.59636 2.59636 -97.5085 -2.59636 0 0 787024. 2723.27 0.84 0.06 0.40 -1 -1 0.84 0.00819473 0.00710164 119 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 22.87 vpr 64.05 MiB -1 -1 0.51 21280 1 0.09 -1 -1 33892 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65588 31 32 317 271 1 175 80 17 17 289 -1 unnamed_device 25.6 MiB 7.76 916 12980 4301 6644 2035 64.1 MiB 0.19 0.00 3.30197 -112.934 -3.30197 3.30197 2.91 6.6029e-05 5.1628e-05 0.121977 0.119214 34 2285 22 6.87369e+06 237555 618332. 2139.56 4.64 0.160641 0.151527 25762 151098 -1 1949 21 1338 1995 161157 36615 3.20191 3.20191 -121.06 -3.20191 0 0 787024. 2723.27 1.09 0.11 0.28 -1 -1 1.09 0.0102387 0.00892518 113 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 27.58 vpr 63.84 MiB -1 -1 0.66 21280 1 0.02 -1 -1 33680 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65372 32 32 298 248 1 162 80 17 17 289 -1 unnamed_device 25.3 MiB 14.09 944 11432 3128 6967 1337 63.8 MiB 0.03 0.00 4.11183 -135.597 -4.11183 4.11183 2.46 6.5683e-05 5.0992e-05 0.00516988 0.00410632 34 2163 22 6.87369e+06 223581 618332. 2139.56 4.09 0.166875 0.159829 25762 151098 -1 1889 22 1377 2269 183926 40856 2.87696 2.87696 -119.913 -2.87696 0 0 787024. 2723.27 0.83 0.11 0.22 -1 -1 0.83 0.0109243 0.00962712 107 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 24.39 vpr 63.82 MiB -1 -1 0.39 21128 1 0.08 -1 -1 33864 -1 -1 16 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65348 30 32 303 262 1 148 78 17 17 289 -1 unnamed_device 25.3 MiB 10.48 698 4228 848 3032 348 63.8 MiB 0.01 0.00 4.05863 -116.721 -4.05863 4.05863 2.58 6.9263e-05 5.3973e-05 0.00246885 0.00201753 34 1839 40 6.87369e+06 223581 618332. 2139.56 3.70 0.308414 0.300163 25762 151098 -1 1593 21 1044 1703 118400 27927 2.97416 2.97416 -108.479 -2.97416 0 0 787024. 2723.27 1.08 0.05 0.29 -1 -1 1.08 0.0264197 0.00935091 98 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 23.14 vpr 63.97 MiB -1 -1 0.60 21432 1 0.07 -1 -1 33692 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65508 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 25.3 MiB 7.30 793 8131 1974 5384 773 64.0 MiB 0.11 0.00 3.6704 -113.179 -3.6704 3.6704 2.43 0.000148922 0.000109591 0.00809364 0.00658796 34 2134 22 6.87369e+06 237555 618332. 2139.56 4.88 0.405053 0.397143 25762 151098 -1 1742 20 1056 1506 111588 26371 3.35341 3.35341 -115.585 -3.35341 0 0 787024. 2723.27 1.40 0.02 0.28 -1 -1 1.40 0.00544739 0.00485243 107 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 30.26 vpr 64.30 MiB -1 -1 0.40 21128 1 0.27 -1 -1 33652 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65840 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 25.6 MiB 12.21 837 15063 3948 9014 2101 64.3 MiB 0.31 0.00 4.17399 -130.445 -4.17399 4.17399 2.86 9.0849e-05 7.2602e-05 0.0152808 0.0123649 36 2644 26 6.87369e+06 321398 648988. 2245.63 6.80 0.23074 0.124605 26050 158493 -1 2067 24 1964 3050 211379 51988 3.51651 3.51651 -124.444 -3.51651 0 0 828058. 2865.25 0.73 0.27 0.29 -1 -1 0.73 0.0133495 0.0117129 142 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 29.21 vpr 64.17 MiB -1 -1 0.50 21432 1 0.19 -1 -1 33724 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65708 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 25.5 MiB 8.83 872 16727 4869 9293 2565 64.2 MiB 0.25 0.00 4.77648 -139.073 -4.77648 4.77648 3.02 0.000163405 0.000130951 0.0152816 0.0124366 30 2490 24 6.87369e+06 433189 556674. 1926.21 10.27 0.0733525 0.061115 25186 138497 -1 1883 19 1342 2199 140123 33008 4.01576 4.01576 -135.5 -4.01576 0 0 706193. 2443.58 0.78 0.09 0.33 -1 -1 0.78 0.0109592 0.00960836 133 61 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 17.20 vpr 63.62 MiB -1 -1 0.49 21280 1 0.11 -1 -1 33732 -1 -1 19 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65152 29 32 248 215 1 142 80 17 17 289 -1 unnamed_device 25.0 MiB 5.52 782 10916 2876 6758 1282 63.6 MiB 0.20 0.00 3.26207 -99.6514 -3.26207 3.26207 2.38 0.000190873 0.000158989 0.0300257 0.0281333 32 1990 21 6.87369e+06 265503 586450. 2029.24 2.55 0.0521373 0.0467142 25474 144626 -1 1683 21 1109 1760 137076 31622 2.84596 2.84596 -100.232 -2.84596 0 0 744469. 2576.02 0.66 0.18 0.32 -1 -1 0.66 0.00850023 0.00740987 94 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 20.16 vpr 64.47 MiB -1 -1 0.42 21280 1 0.12 -1 -1 33736 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66020 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 25.8 MiB 6.25 1043 16273 5726 7876 2671 64.5 MiB 0.21 0.00 3.8137 -126.628 -3.8137 3.8137 2.28 0.000170614 0.000137127 0.0764758 0.073383 32 2878 41 6.87369e+06 335372 586450. 2029.24 2.74 0.112452 0.103721 25474 144626 -1 2322 22 1768 3019 252321 57893 3.36621 3.36621 -127.403 -3.36621 0 0 744469. 2576.02 1.18 0.37 0.18 -1 -1 1.18 0.0109143 0.00938248 135 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 29.38 vpr 64.13 MiB -1 -1 0.54 21432 1 0.16 -1 -1 33608 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65672 32 32 338 269 1 204 85 17 17 289 -1 unnamed_device 25.5 MiB 13.99 1087 9571 2614 6264 693 64.1 MiB 0.23 0.00 4.17947 -136.952 -4.17947 4.17947 2.29 0.000162453 0.000130153 0.00622417 0.00504765 34 2708 23 6.87369e+06 293451 618332. 2139.56 4.96 0.05586 0.0468219 25762 151098 -1 2252 20 1534 2283 175831 39652 3.24661 3.24661 -128.103 -3.24661 0 0 787024. 2723.27 0.82 0.23 0.45 -1 -1 0.82 0.0120199 0.010537 140 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 23.86 vpr 63.93 MiB -1 -1 0.29 21584 1 0.31 -1 -1 33716 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65468 32 32 323 276 1 156 92 17 17 289 -1 unnamed_device 25.3 MiB 8.52 699 8993 2148 6078 767 63.9 MiB 0.24 0.00 3.09156 -107.654 -3.09156 3.09156 2.68 0.000158125 0.00012581 0.00826315 0.006625 34 2013 25 6.87369e+06 391268 618332. 2139.56 4.82 0.210333 0.202125 25762 151098 -1 1669 19 1066 1662 108956 26905 2.19587 2.19587 -100.714 -2.19587 0 0 787024. 2723.27 1.16 0.16 0.28 -1 -1 1.16 0.0101906 0.00893816 109 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 14.33 vpr 63.51 MiB -1 -1 0.45 21128 1 0.20 -1 -1 33724 -1 -1 14 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65032 30 32 222 206 1 117 76 17 17 289 -1 unnamed_device 25.0 MiB 1.87 552 9196 3320 4707 1169 63.5 MiB 0.24 0.00 2.58823 -85.0004 -2.58823 2.58823 2.62 0.00012371 9.5239e-05 0.00779298 0.00618129 30 1296 20 6.87369e+06 195634 556674. 1926.21 2.13 0.0269794 0.0219935 25186 138497 -1 1079 19 533 777 51739 12120 1.94352 1.94352 -83.1698 -1.94352 0 0 706193. 2443.58 1.04 0.07 0.44 -1 -1 1.04 0.00518792 0.00460682 71 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 24.87 vpr 63.97 MiB -1 -1 0.52 21128 1 0.13 -1 -1 33880 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65504 31 32 291 243 1 178 82 17 17 289 -1 unnamed_device 25.3 MiB 9.81 952 10940 3346 6666 928 64.0 MiB 0.13 0.00 5.00887 -150.561 -5.00887 5.00887 2.38 0.000146586 0.000117062 0.0105465 0.00851292 34 2258 24 6.87369e+06 265503 618332. 2139.56 4.47 0.0440352 0.0362521 25762 151098 -1 1964 21 1126 1675 111074 27347 3.69321 3.69321 -139.902 -3.69321 0 0 787024. 2723.27 0.92 0.07 0.32 -1 -1 0.92 0.0102893 0.00900734 116 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 14.42 vpr 64.21 MiB -1 -1 0.36 21280 1 0.15 -1 -1 33812 -1 -1 35 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65752 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 25.5 MiB 2.84 1087 17427 4758 10581 2088 64.2 MiB 0.18 0.00 4.24609 -138.045 -4.24609 4.24609 2.22 0.000169902 0.000134969 0.0146762 0.0117861 32 2549 24 6.87369e+06 489084 586450. 2029.24 2.70 0.307655 0.300729 25474 144626 -1 2181 23 1617 2442 198435 44964 3.9297 3.9297 -134.381 -3.9297 0 0 744469. 2576.02 0.86 0.26 0.19 -1 -1 0.86 0.00896796 0.00785315 137 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 23.30 vpr 64.34 MiB -1 -1 0.36 21280 1 0.15 -1 -1 33788 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65880 32 32 372 300 1 206 86 17 17 289 -1 unnamed_device 25.6 MiB 7.53 1158 12938 3721 7732 1485 64.3 MiB 0.21 0.00 4.29925 -134.625 -4.29925 4.29925 2.73 0.000196529 0.000158681 0.153724 0.151043 34 2953 28 6.87369e+06 307425 618332. 2139.56 5.01 0.303634 0.292188 25762 151098 -1 2435 18 1582 2467 217411 47399 3.76066 3.76066 -132.683 -3.76066 0 0 787024. 2723.27 0.93 0.15 0.13 -1 -1 0.93 0.0106301 0.00938089 142 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 17.81 vpr 63.55 MiB -1 -1 0.41 21280 1 0.03 -1 -1 34136 -1 -1 17 26 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65080 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 24.9 MiB 5.33 354 9555 3920 4765 870 63.6 MiB 0.13 0.00 2.60613 -72.0813 -2.60613 2.60613 2.49 0.000101463 7.7379e-05 0.109573 0.107996 30 1232 32 6.87369e+06 237555 556674. 1926.21 2.51 0.130498 0.125272 25186 138497 -1 874 22 615 899 53669 14593 2.25347 2.25347 -72.1647 -2.25347 0 0 706193. 2443.58 0.84 0.04 0.25 -1 -1 0.84 0.00714922 0.0061756 67 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 19.64 vpr 64.14 MiB -1 -1 0.34 21280 1 0.07 -1 -1 33708 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65680 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 25.5 MiB 3.45 1058 9111 2260 6245 606 64.1 MiB 0.18 0.00 4.50666 -128.623 -4.50666 4.50666 2.81 7.3797e-05 5.7532e-05 0.0292749 0.0276202 34 2389 21 6.87369e+06 321398 618332. 2139.56 4.62 0.193589 0.185412 25762 151098 -1 2137 22 1445 2595 201568 45085 3.7324 3.7324 -123.569 -3.7324 0 0 787024. 2723.27 1.17 0.02 0.32 -1 -1 1.17 0.00605222 0.0053764 119 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 15.46 vpr 63.29 MiB -1 -1 0.38 20976 1 0.12 -1 -1 33784 -1 -1 12 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64808 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 24.8 MiB 1.55 446 9836 2914 4955 1967 63.3 MiB 0.05 0.00 2.58823 -76.6987 -2.58823 2.58823 2.93 9.893e-05 7.5625e-05 0.0230507 0.0215441 28 1286 19 6.87369e+06 167686 531479. 1839.03 2.51 0.0376124 0.0336914 24610 126494 -1 1088 15 585 680 59406 15832 2.02487 2.02487 -80.4549 -2.02487 0 0 648988. 2245.63 0.95 0.07 0.38 -1 -1 0.95 0.00637249 0.00552249 65 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 14.99 vpr 64.21 MiB -1 -1 0.52 21128 1 0.03 -1 -1 33528 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65752 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 25.5 MiB 2.60 1001 15430 4006 9830 1594 64.2 MiB 0.12 0.00 4.66212 -132.229 -4.66212 4.66212 2.37 0.000171177 0.000125981 0.013494 0.0108168 32 2320 23 6.87369e+06 419215 586450. 2029.24 2.87 0.168715 0.162025 25474 144626 -1 1958 19 984 1559 118404 26575 3.6508 3.6508 -122.317 -3.6508 0 0 744469. 2576.02 0.80 0.17 0.33 -1 -1 0.80 0.00997043 0.00873605 120 24 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 18.10 vpr 64.23 MiB -1 -1 0.40 21432 1 0.08 -1 -1 33776 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65768 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 25.6 MiB 2.89 1076 17591 5379 9750 2462 64.2 MiB 0.52 0.00 3.49633 -112.341 -3.49633 3.49633 2.77 7.6094e-05 5.8663e-05 0.00877982 0.00683959 34 2436 22 6.87369e+06 433189 618332. 2139.56 4.19 0.471368 0.463508 25762 151098 -1 2017 20 1232 2248 141825 33683 3.08856 3.08856 -109.053 -3.08856 0 0 787024. 2723.27 0.85 0.18 0.32 -1 -1 0.85 0.00999505 0.00875882 130 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 22.31 vpr 64.38 MiB -1 -1 0.29 21432 1 0.23 -1 -1 33700 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65920 32 32 338 277 1 186 92 17 17 289 -1 unnamed_device 25.8 MiB 5.34 1002 15824 5356 7353 3115 64.4 MiB 0.27 0.00 4.71758 -131.299 -4.71758 4.71758 2.71 0.000173243 0.000140509 0.141782 0.138865 34 2511 23 6.87369e+06 391268 618332. 2139.56 6.77 0.223662 0.213441 25762 151098 -1 2005 21 1353 2404 182427 42184 3.94976 3.94976 -127.416 -3.94976 0 0 787024. 2723.27 0.91 0.12 0.46 -1 -1 0.91 0.0549185 0.0535834 131 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 16.61 vpr 63.74 MiB -1 -1 0.50 21432 1 0.14 -1 -1 33824 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65272 32 32 284 241 1 148 80 17 17 289 -1 unnamed_device 25.0 MiB 3.16 723 7304 1770 4913 621 63.7 MiB 0.12 0.00 3.24007 -108.229 -3.24007 3.24007 2.29 0.000144569 0.000114815 0.00768406 0.0062006 34 1830 21 6.87369e+06 223581 618332. 2139.56 3.58 0.0480745 0.0398852 25762 151098 -1 1578 14 814 1319 84892 20527 2.77396 2.77396 -105.415 -2.77396 0 0 787024. 2723.27 0.91 0.02 0.44 -1 -1 0.91 0.00732863 0.00651873 99 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 16.14 vpr 63.80 MiB -1 -1 0.45 21280 1 0.10 -1 -1 33528 -1 -1 26 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65336 30 32 262 227 1 138 88 17 17 289 -1 unnamed_device 25.3 MiB 4.10 669 13738 3602 8368 1768 63.8 MiB 0.16 0.00 3.22907 -99.5149 -3.22907 3.22907 2.28 6.4238e-05 4.8759e-05 0.00889745 0.0070061 30 1623 18 6.87369e+06 363320 556674. 1926.21 2.28 0.0798346 0.0744247 25186 138497 -1 1326 21 858 1419 92180 21062 2.71316 2.71316 -92.9909 -2.71316 0 0 706193. 2443.58 0.99 0.21 0.35 -1 -1 0.99 0.00829668 0.00697333 97 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 17.14 vpr 63.75 MiB -1 -1 0.37 21432 1 0.07 -1 -1 33744 -1 -1 18 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65276 28 32 260 223 1 140 78 17 17 289 -1 unnamed_device 25.2 MiB 3.03 758 11698 3516 6781 1401 63.7 MiB 0.35 0.00 3.63766 -102.515 -3.63766 3.63766 2.72 0.000141617 0.000112184 0.0110367 0.00886746 32 2139 25 6.87369e+06 251529 586450. 2029.24 2.95 0.0334332 0.027644 25474 144626 -1 1714 22 1198 2121 189213 42791 3.08656 3.08656 -106.439 -3.08656 0 0 744469. 2576.02 0.84 0.04 0.22 -1 -1 0.84 0.00971103 0.00842229 95 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 15.67 vpr 63.91 MiB -1 -1 0.36 21128 1 0.05 -1 -1 33692 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65440 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 25.2 MiB 2.65 760 11106 3371 5478 2257 63.9 MiB 0.28 0.00 4.03537 -119.574 -4.03537 4.03537 2.46 0.000135572 0.000106047 0.0107382 0.00864175 32 2134 23 6.87369e+06 237555 586450. 2029.24 2.86 0.13161 0.125728 25474 144626 -1 1727 20 1173 1954 154118 36053 2.84396 2.84396 -110.588 -2.84396 0 0 744469. 2576.02 1.06 0.31 0.50 -1 -1 1.06 0.00903045 0.00788851 101 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 15.11 vpr 64.00 MiB -1 -1 0.41 21280 1 0.12 -1 -1 33764 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65536 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 25.3 MiB 2.64 713 5831 1066 4417 348 64.0 MiB 0.03 0.00 3.5993 -106.942 -3.5993 3.5993 2.40 0.000171539 0.000140931 0.00556667 0.00456771 28 1996 18 6.87369e+06 363320 531479. 1839.03 3.27 0.103794 0.100207 24610 126494 -1 1700 22 1183 2030 135922 33143 3.06161 3.06161 -106.539 -3.06161 0 0 648988. 2245.63 0.80 0.07 0.27 -1 -1 0.80 0.00948447 0.00823742 102 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 22.03 vpr 63.85 MiB -1 -1 0.37 21128 1 0.28 -1 -1 33500 -1 -1 25 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65384 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 25.3 MiB 9.41 706 8402 1995 5635 772 63.9 MiB 0.12 0.00 3.04756 -96.0841 -3.04756 3.04756 2.70 0.000155535 0.000124263 0.00834491 0.00658225 30 1803 22 6.87369e+06 349346 556674. 1926.21 2.70 0.0339241 0.0280783 25186 138497 -1 1489 21 913 1418 77368 19017 2.25817 2.25817 -91.9004 -2.25817 0 0 706193. 2443.58 0.72 0.03 0.19 -1 -1 0.72 0.00919613 0.00801712 106 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 24.14 vpr 64.41 MiB -1 -1 0.37 21432 1 0.20 -1 -1 33972 -1 -1 40 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65952 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 25.6 MiB 11.77 1199 12548 3440 7715 1393 64.4 MiB 0.25 0.00 4.16289 -124.152 -4.16289 4.16289 2.19 9.1343e-05 7.2267e-05 0.00570294 0.0045507 32 3305 23 6.87369e+06 558954 586450. 2029.24 2.88 0.0342904 0.0287899 25474 144626 -1 2475 24 1659 3141 250353 54866 3.5931 3.5931 -123.591 -3.5931 0 0 744469. 2576.02 0.80 0.06 0.25 -1 -1 0.80 0.0126887 0.0110685 156 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 24.99 vpr 64.59 MiB -1 -1 0.33 21432 1 0.09 -1 -1 33724 -1 -1 38 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66136 32 32 391 311 1 194 102 17 17 289 -1 unnamed_device 25.9 MiB 10.97 1019 17476 4989 10107 2380 64.6 MiB 0.27 0.00 3.96554 -133.621 -3.96554 3.96554 2.71 0.000183749 0.000148034 0.0160662 0.0130401 34 2318 19 6.87369e+06 531006 618332. 2139.56 3.70 0.103257 0.0923802 25762 151098 -1 1994 20 1598 2530 167629 38388 3.16056 3.16056 -122.735 -3.16056 0 0 787024. 2723.27 0.74 0.14 0.38 -1 -1 0.74 0.111646 0.110121 148 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 21.76 vpr 64.04 MiB -1 -1 0.35 21280 1 0.03 -1 -1 33716 -1 -1 18 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65576 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 25.3 MiB 6.56 811 8306 2170 5113 1023 64.0 MiB 0.09 0.00 4.07373 -119.929 -4.07373 4.07373 2.23 0.000173477 0.000138782 0.00866396 0.00704272 34 2155 20 6.87369e+06 251529 618332. 2139.56 5.09 0.45008 0.441926 25762 151098 -1 1863 19 1282 1823 137204 32816 3.38021 3.38021 -121.441 -3.38021 0 0 787024. 2723.27 0.89 0.06 0.31 -1 -1 0.89 0.0090967 0.00803358 109 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 23.93 vpr 64.20 MiB -1 -1 0.55 21432 1 0.24 -1 -1 33736 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65740 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 25.6 MiB 8.06 977 12959 4558 6216 2185 64.2 MiB 0.29 0.00 3.77586 -121.537 -3.77586 3.77586 2.82 0.000204933 0.000167121 0.013641 0.0111008 34 2883 22 6.87369e+06 363320 618332. 2139.56 4.79 0.129067 0.11922 25762 151098 -1 2230 20 1564 2672 180642 43077 3.17786 3.17786 -118.463 -3.17786 0 0 787024. 2723.27 0.90 0.13 0.24 -1 -1 0.90 0.0111489 0.00981712 136 61 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 27.75 vpr 64.61 MiB -1 -1 0.58 21584 1 0.09 -1 -1 33832 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66164 31 32 377 302 1 237 88 17 17 289 -1 unnamed_device 25.8 MiB 12.30 1217 9058 2366 5991 701 64.6 MiB 0.11 0.00 5.67608 -170.045 -5.67608 5.67608 2.73 0.000179957 0.00014612 0.00584614 0.00468298 34 3293 23 6.87369e+06 349346 618332. 2139.56 4.81 0.269149 0.259578 25762 151098 -1 2796 22 2219 3285 287360 63069 5.1298 5.1298 -175.351 -5.1298 0 0 787024. 2723.27 1.10 0.17 0.26 -1 -1 1.10 0.120757 0.119223 159 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 28.13 vpr 64.49 MiB -1 -1 0.47 21736 1 0.12 -1 -1 33792 -1 -1 27 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66040 31 32 383 305 1 212 90 17 17 289 -1 unnamed_device 25.8 MiB 12.46 930 10341 2765 6600 976 64.5 MiB 0.18 0.00 5.24874 -156.327 -5.24874 5.24874 2.19 0.000201036 0.000162313 0.0085521 0.00689602 36 2493 27 6.87369e+06 377294 648988. 2245.63 5.33 0.0595267 0.0497657 26050 158493 -1 1987 21 1573 2425 167657 40241 4.67715 4.67715 -153.728 -4.67715 0 0 828058. 2865.25 0.99 0.36 0.21 -1 -1 0.99 0.121806 0.120326 152 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 22.64 vpr 64.09 MiB -1 -1 0.61 21432 1 0.10 -1 -1 33536 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65624 31 32 352 285 1 186 88 17 17 289 -1 unnamed_device 25.5 MiB 9.52 890 9838 2427 6571 840 64.1 MiB 0.21 0.00 4.12463 -126.459 -4.12463 4.12463 2.45 0.000172275 0.000139746 0.0110367 0.00908615 32 2860 24 6.87369e+06 349346 586450. 2029.24 3.08 0.0423773 0.0355873 25474 144626 -1 2227 21 1692 2813 220362 53108 3.62251 3.62251 -132.075 -3.62251 0 0 744469. 2576.02 0.90 0.13 0.50 -1 -1 0.90 0.00909422 0.00788212 131 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 22.68 vpr 64.16 MiB -1 -1 0.61 21128 1 0.11 -1 -1 33812 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 32 32 291 242 1 183 84 17 17 289 -1 unnamed_device 25.5 MiB 8.11 1030 14907 5658 7296 1953 64.2 MiB 0.17 0.00 4.31305 -116.7 -4.31305 4.31305 2.32 0.000149171 0.000118967 0.0139152 0.0112162 34 2414 26 6.87369e+06 279477 618332. 2139.56 4.51 0.178041 0.0453794 25762 151098 -1 2028 24 1457 2155 154286 36972 3.85476 3.85476 -121.754 -3.85476 0 0 787024. 2723.27 0.71 0.12 0.18 -1 -1 0.71 0.0775601 0.0762208 119 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 26.69 vpr 64.92 MiB -1 -1 0.41 21432 1 0.26 -1 -1 33948 -1 -1 38 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66476 32 32 457 356 1 225 102 17 17 289 -1 unnamed_device 26.2 MiB 10.57 1252 19142 5218 11863 2061 64.9 MiB 0.25 0.00 4.94161 -161.682 -4.94161 4.94161 2.70 0.000236376 0.000197878 0.0159381 0.012697 26 3662 47 6.87369e+06 531006 503264. 1741.40 5.64 0.0656135 0.0547177 24322 120374 -1 3019 24 2201 3522 390352 93116 4.62016 4.62016 -166.293 -4.62016 0 0 618332. 2139.56 0.61 0.43 0.16 -1 -1 0.61 0.016284 0.0143587 173 87 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 22.21 vpr 63.92 MiB -1 -1 0.36 21280 1 0.15 -1 -1 33852 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65452 31 32 261 225 1 148 85 17 17 289 -1 unnamed_device 25.2 MiB 5.65 665 8827 1886 5968 973 63.9 MiB 0.18 0.00 3.55895 -103.54 -3.55895 3.55895 2.40 0.0001289 0.000102535 0.00744448 0.00593677 32 2162 45 6.87369e+06 307425 586450. 2029.24 2.23 0.0452005 0.0389452 25474 144626 -1 1638 24 1277 2195 166532 39561 2.88796 2.88796 -103.251 -2.88796 0 0 744469. 2576.02 0.94 0.28 0.25 -1 -1 0.94 0.159153 0.157628 96 28 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 27.15 vpr 64.17 MiB -1 -1 0.31 21584 1 0.06 -1 -1 33500 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65712 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 25.6 MiB 7.46 1143 8780 2224 5686 870 64.2 MiB 0.13 0.00 4.84783 -148.334 -4.84783 4.84783 2.41 8.0976e-05 6.3748e-05 0.00542575 0.00443272 30 2974 22 6.87369e+06 321398 556674. 1926.21 3.06 0.0345488 0.0292347 25186 138497 -1 2276 20 1319 1963 128114 29110 3.90446 3.90446 -137.638 -3.90446 0 0 706193. 2443.58 1.15 0.08 0.32 -1 -1 1.15 0.0585967 0.0572947 140 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 19.35 vpr 64.43 MiB -1 -1 0.48 21280 1 0.26 -1 -1 33996 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65972 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 25.6 MiB 5.83 1092 15207 4580 7502 3125 64.4 MiB 0.15 0.00 3.6664 -115.914 -3.6664 3.6664 2.54 0.00017133 0.000137374 0.0135402 0.0109293 30 2573 46 6.87369e+06 447163 556674. 1926.21 3.62 0.180732 0.17235 25186 138497 -1 2104 22 1306 2375 155359 38292 2.88001 2.88001 -108.543 -2.88001 0 0 706193. 2443.58 0.93 0.04 0.20 -1 -1 0.93 0.0114539 0.0100252 132 53 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 14.87 vpr 64.06 MiB -1 -1 0.51 21128 1 0.14 -1 -1 33724 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65600 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 25.3 MiB 2.40 951 7326 1464 5460 402 64.1 MiB 0.09 0.00 4.18575 -127.803 -4.18575 4.18575 1.82 0.000175655 0.000143574 0.0555812 0.0541994 34 2528 23 6.87369e+06 363320 618332. 2139.56 3.31 0.191298 0.183088 25762 151098 -1 2047 23 1405 2633 189987 44011 3.5621 3.5621 -123.698 -3.5621 0 0 787024. 2723.27 0.72 0.12 0.38 -1 -1 0.72 0.0114617 0.0100687 123 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 36.94 vpr 64.12 MiB -1 -1 0.51 21584 1 0.18 -1 -1 33692 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65664 32 32 353 287 1 203 86 17 17 289 -1 unnamed_device 25.5 MiB 10.66 1138 14072 4363 7314 2395 64.1 MiB 0.29 0.00 5.07875 -152.281 -5.07875 5.07875 2.27 0.000170691 0.000137737 0.0148082 0.0120735 34 2622 19 6.87369e+06 307425 618332. 2139.56 4.22 0.16563 0.0454305 25762 151098 -1 2306 20 1280 1714 142445 32122 3.4645 3.4645 -130.908 -3.4645 0 0 787024. 2723.27 1.00 0.07 0.25 -1 -1 1.00 0.0121515 0.0107941 136 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 23.89 vpr 64.47 MiB -1 -1 0.25 21280 1 0.24 -1 -1 33852 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66016 32 32 361 291 1 189 96 17 17 289 -1 unnamed_device 25.8 MiB 8.95 892 17835 6311 8192 3332 64.5 MiB 0.23 0.00 3.76804 -119.452 -3.76804 3.76804 2.29 0.000167884 0.000134379 0.0160244 0.0129913 34 2804 46 6.87369e+06 447163 618332. 2139.56 5.31 0.199513 0.188489 25762 151098 -1 1968 21 1467 2565 178739 43690 3.35021 3.35021 -119.572 -3.35021 0 0 787024. 2723.27 0.96 0.10 0.20 -1 -1 0.96 0.0112241 0.00966769 136 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 21.50 vpr 64.41 MiB -1 -1 0.60 21584 1 0.03 -1 -1 33712 -1 -1 35 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65956 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 25.6 MiB 9.25 941 16971 5230 8707 3034 64.4 MiB 0.18 0.00 4.11773 -131.819 -4.11773 4.11773 1.81 0.000182521 0.000146926 0.0156153 0.0126952 34 2879 28 6.87369e+06 489084 618332. 2139.56 4.32 0.117275 0.105604 25762 151098 -1 2186 23 1729 2772 226088 51849 3.24691 3.24691 -123.814 -3.24691 0 0 787024. 2723.27 0.73 0.12 0.37 -1 -1 0.73 0.0764884 0.0747819 144 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 18.66 vpr 64.24 MiB -1 -1 0.37 21128 1 0.22 -1 -1 33856 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65784 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 25.5 MiB 3.14 948 15415 4265 8583 2567 64.2 MiB 0.23 0.00 4.39109 -128.888 -4.39109 4.39109 2.31 0.000152422 0.000121698 0.0131672 0.0107519 28 2279 18 6.87369e+06 461137 531479. 1839.03 2.50 0.164879 0.159291 24610 126494 -1 2106 19 1297 2273 152125 35569 3.8374 3.8374 -129.391 -3.8374 0 0 648988. 2245.63 0.94 0.23 0.39 -1 -1 0.94 0.199371 0.198145 124 24 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 20.30 vpr 64.19 MiB -1 -1 0.45 21432 1 0.14 -1 -1 33636 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65728 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 25.6 MiB 6.89 981 12560 3220 7625 1715 64.2 MiB 0.16 0.00 4.75658 -136.53 -4.75658 4.75658 1.94 0.000185334 0.00013945 0.0134098 0.0109114 34 2576 31 6.87369e+06 307425 618332. 2139.56 3.94 0.19211 0.181743 25762 151098 -1 2232 18 1502 2206 155865 36516 3.94506 3.94506 -130.167 -3.94506 0 0 787024. 2723.27 0.86 0.12 0.22 -1 -1 0.86 0.0607714 0.0595868 135 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 23.47 vpr 64.35 MiB -1 -1 0.69 21736 1 0.03 -1 -1 33836 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65896 31 32 373 299 1 204 85 17 17 289 -1 unnamed_device 25.8 MiB 7.13 1089 11617 3558 6983 1076 64.4 MiB 0.17 0.00 4.74348 -142.628 -4.74348 4.74348 2.12 0.000169749 0.000137229 0.0135104 0.0110986 34 3012 33 6.87369e+06 307425 618332. 2139.56 6.51 0.245812 0.234455 25762 151098 -1 2421 24 1896 3142 255518 58176 4.20536 4.20536 -145.105 -4.20536 0 0 787024. 2723.27 0.88 0.18 0.54 -1 -1 0.88 0.0886337 0.0869785 141 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 21.17 vpr 64.27 MiB -1 -1 0.31 21584 1 0.12 -1 -1 33668 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65812 32 32 387 315 1 194 85 17 17 289 -1 unnamed_device 25.6 MiB 8.03 1081 14779 5269 7600 1910 64.3 MiB 0.18 0.00 4.3693 -135.724 -4.3693 4.3693 2.21 0.00018211 0.000144551 0.0165506 0.0135388 34 3071 25 6.87369e+06 293451 618332. 2139.56 4.03 0.308197 0.246337 25762 151098 -1 2452 20 1602 2893 227755 52056 3.90206 3.90206 -134.338 -3.90206 0 0 787024. 2723.27 1.06 0.02 0.31 -1 -1 1.06 0.00672024 0.00600909 135 77 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 14.31 vpr 63.62 MiB -1 -1 0.46 21280 1 0.03 -1 -1 33404 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65148 32 32 251 219 1 141 86 17 17 289 -1 unnamed_device 25.0 MiB 2.85 779 13883 3395 9668 820 63.6 MiB 0.39 0.00 3.5583 -108.13 -3.5583 3.5583 2.11 0.000129762 0.000102444 0.0112484 0.00892394 32 1947 23 6.87369e+06 307425 586450. 2029.24 2.62 0.0872094 0.0814203 25474 144626 -1 1653 18 1025 1710 137116 31761 2.96926 2.96926 -106.227 -2.96926 0 0 744469. 2576.02 0.86 0.18 0.33 -1 -1 0.86 0.00887165 0.00785178 93 23 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 24.94 vpr 64.17 MiB -1 -1 0.35 21280 1 0.02 -1 -1 33920 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65708 32 32 341 285 1 188 82 17 17 289 -1 unnamed_device 25.6 MiB 6.05 963 13432 4412 7074 1946 64.2 MiB 0.38 0.00 3.7434 -132.085 -3.7434 3.7434 2.71 0.000152367 0.000121191 0.0136534 0.0110173 34 2552 22 6.87369e+06 251529 618332. 2139.56 4.28 0.106562 0.0961737 25762 151098 -1 2119 20 1604 2308 201181 43912 3.3618 3.3618 -131.165 -3.3618 0 0 787024. 2723.27 0.97 0.18 0.34 -1 -1 0.97 0.0126879 0.0108771 124 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 27.50 vpr 64.68 MiB -1 -1 0.58 21584 1 0.13 -1 -1 33676 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66236 32 32 387 293 1 236 88 17 17 289 -1 unnamed_device 25.9 MiB 10.07 1271 11983 3961 5911 2111 64.7 MiB 0.26 0.00 5.44288 -158.174 -5.44288 5.44288 2.43 8.7752e-05 6.9194e-05 0.122852 0.120327 36 3481 23 6.87369e+06 335372 648988. 2245.63 6.36 0.284489 0.273162 26050 158493 -1 2730 24 2175 3406 265530 61473 4.81335 4.81335 -159.454 -4.81335 0 0 828058. 2865.25 1.00 0.10 0.38 -1 -1 1.00 0.0148493 0.0131138 166 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 26.25 vpr 64.18 MiB -1 -1 0.38 21432 1 0.03 -1 -1 34124 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65720 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 25.5 MiB 9.39 1044 14048 3802 8919 1327 64.2 MiB 0.16 0.00 4.31147 -138.564 -4.31147 4.31147 2.23 8.601e-05 6.7813e-05 0.0096058 0.0076664 28 2413 22 6.87369e+06 475111 531479. 1839.03 2.67 0.208974 0.202307 24610 126494 -1 2220 20 1412 2227 166392 37304 3.00716 3.00716 -126.181 -3.00716 0 0 648988. 2245.63 0.66 0.13 0.27 -1 -1 0.66 0.0107818 0.00946197 137 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 15.88 vpr 64.02 MiB -1 -1 0.54 21128 1 0.03 -1 -1 33768 -1 -1 25 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65560 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 25.3 MiB 2.44 643 13911 3216 9368 1327 64.0 MiB 0.02 0.00 3.6213 -108.932 -3.6213 3.6213 2.13 5.8612e-05 4.5284e-05 0.00512171 0.00404163 28 2013 27 6.87369e+06 349346 531479. 1839.03 3.22 0.0320664 0.0264633 24610 126494 -1 1716 23 1345 2134 175226 47870 2.99626 2.99626 -111.937 -2.99626 0 0 648988. 2245.63 1.04 0.24 0.29 -1 -1 1.04 0.00901013 0.00774294 104 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 32.72 vpr 64.79 MiB -1 -1 0.66 21584 1 0.14 -1 -1 33960 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66348 32 32 431 332 1 239 89 17 17 289 -1 unnamed_device 26.1 MiB 16.94 1320 13157 3582 8208 1367 64.8 MiB 0.24 0.00 5.88501 -173.819 -5.88501 5.88501 2.08 0.000234908 0.000194653 0.0167643 0.0139545 36 3191 21 6.87369e+06 349346 648988. 2245.63 6.14 0.220988 0.208642 26050 158493 -1 2779 24 2351 3650 311794 67863 4.8519 4.8519 -164.233 -4.8519 0 0 828058. 2865.25 0.68 0.25 0.28 -1 -1 0.68 0.0150635 0.013257 171 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 22.57 vpr 64.25 MiB -1 -1 0.52 21584 1 0.03 -1 -1 33796 -1 -1 35 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65792 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 25.5 MiB 10.07 982 19023 5630 11222 2171 64.2 MiB 0.25 0.00 4.64628 -141.602 -4.64628 4.64628 2.49 0.000164867 0.000130981 0.134591 0.131451 28 2297 23 6.87369e+06 489084 531479. 1839.03 2.50 0.158162 0.151353 24610 126494 -1 2086 21 1562 2642 173496 40703 3.9034 3.9034 -136.594 -3.9034 0 0 648988. 2245.63 0.61 0.07 0.18 -1 -1 0.61 0.0350567 0.0335832 135 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 15.57 vpr 63.76 MiB -1 -1 0.69 21128 1 0.02 -1 -1 33632 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65288 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 25.0 MiB 3.06 766 11398 3000 7253 1145 63.8 MiB 0.04 0.00 3.5954 -102.128 -3.5954 3.5954 2.91 0.000123186 9.6567e-05 0.00521953 0.00410918 26 2180 25 6.87369e+06 335372 503264. 1741.40 3.23 0.0240276 0.0198909 24322 120374 -1 1815 20 1140 1925 162853 38227 3.43151 3.43151 -112.946 -3.43151 0 0 618332. 2139.56 0.72 0.09 0.23 -1 -1 0.72 0.00792622 0.00683717 94 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 20.97 vpr 64.29 MiB -1 -1 0.46 21432 1 0.05 -1 -1 33756 -1 -1 37 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65836 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 25.8 MiB 6.95 1098 18666 5476 10496 2694 64.3 MiB 0.32 0.00 5.27722 -139.12 -5.27722 5.27722 2.62 0.000168908 0.000136444 0.0162693 0.0131555 32 3049 25 6.87369e+06 517032 586450. 2029.24 3.25 0.0761952 0.0682264 25474 144626 -1 2273 23 1537 2878 240761 53474 4.42825 4.42825 -139.024 -4.42825 0 0 744469. 2576.02 1.12 0.17 0.36 -1 -1 1.12 0.0096377 0.00820186 145 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 17.36 vpr 63.61 MiB -1 -1 0.34 20976 1 0.21 -1 -1 33880 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65140 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 25.0 MiB 2.45 805 14303 4969 7161 2173 63.6 MiB 0.25 0.00 3.6144 -113.068 -3.6144 3.6144 2.47 0.000133477 0.00010393 0.108573 0.106008 34 2002 21 6.87369e+06 265503 618332. 2139.56 4.47 0.317148 0.309478 25762 151098 -1 1738 20 1190 2122 159718 35273 2.89096 2.89096 -110.154 -2.89096 0 0 787024. 2723.27 0.83 0.02 0.48 -1 -1 0.83 0.00441281 0.00379108 98 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 21.45 vpr 64.06 MiB -1 -1 0.54 21280 1 0.02 -1 -1 33644 -1 -1 34 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65600 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 25.3 MiB 8.50 838 14988 4128 9396 1464 64.1 MiB 0.22 0.00 3.91538 -116.007 -3.91538 3.91538 2.86 0.000177341 0.000130236 0.0111925 0.00880656 28 1968 20 6.87369e+06 475111 531479. 1839.03 2.54 0.105873 0.0996559 24610 126494 -1 1887 19 1129 2039 157359 35630 3.04726 3.04726 -113.863 -3.04726 0 0 648988. 2245.63 0.68 0.05 0.31 -1 -1 0.68 0.00905519 0.0079596 109 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 38.84 vpr 64.43 MiB -1 -1 0.39 21280 1 0.10 -1 -1 33832 -1 -1 24 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65976 29 32 355 287 1 200 85 17 17 289 -1 unnamed_device 25.6 MiB 14.50 1022 14221 4941 6601 2679 64.4 MiB 0.15 0.00 4.14789 -124.13 -4.14789 4.14789 2.22 0.000165242 0.000132585 0.0143373 0.0116609 34 2597 22 6.87369e+06 335372 618332. 2139.56 4.66 0.260767 0.251221 25762 151098 -1 2202 23 1894 2884 228158 51796 3.21181 3.21181 -117.514 -3.21181 0 0 787024. 2723.27 0.97 0.21 0.33 -1 -1 0.97 0.00826217 0.00730772 138 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 22.26 vpr 64.43 MiB -1 -1 0.69 21280 1 0.07 -1 -1 33840 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65976 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 25.6 MiB 8.13 981 14964 4061 9219 1684 64.4 MiB 0.16 0.00 4.38015 -143.22 -4.38015 4.38015 2.51 7.439e-05 5.8317e-05 0.00980464 0.0078887 34 2270 24 6.87369e+06 363320 618332. 2139.56 4.00 0.063303 0.054202 25762 151098 -1 1860 21 1373 2075 135251 32141 3.70116 3.70116 -134.582 -3.70116 0 0 787024. 2723.27 0.83 0.13 0.34 -1 -1 0.83 0.0103844 0.00902867 132 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 18.92 vpr 64.37 MiB -1 -1 0.48 21584 1 0.23 -1 -1 33540 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65916 32 32 353 285 1 188 91 17 17 289 -1 unnamed_device 25.6 MiB 7.52 1048 11719 3049 7703 967 64.4 MiB 0.32 0.00 4.78763 -143.617 -4.78763 4.78763 2.11 0.000174953 0.000139402 0.0491357 0.0469582 32 2790 38 6.87369e+06 377294 586450. 2029.24 2.78 0.100601 0.0930089 25474 144626 -1 2289 21 1558 2779 235785 52014 3.94076 3.94076 -140.873 -3.94076 0 0 744469. 2576.02 0.78 0.12 0.35 -1 -1 0.78 0.0135515 0.0112368 133 51 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 24.25 vpr 63.83 MiB -1 -1 0.38 21432 1 0.25 -1 -1 33980 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65364 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 25.3 MiB 11.11 879 8529 2069 5850 610 63.8 MiB 0.23 0.00 4.78272 -134.878 -4.78272 4.78272 2.20 0.000150234 0.000119581 0.0532462 0.0515203 34 2183 21 6.87369e+06 209608 618332. 2139.56 3.86 0.103417 0.0884825 25762 151098 -1 1835 19 952 1292 98617 22365 3.2292 3.2292 -117.412 -3.2292 0 0 787024. 2723.27 0.77 0.05 0.23 -1 -1 0.77 0.0322942 0.0311015 103 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 22.79 vpr 64.23 MiB -1 -1 0.38 21584 1 0.14 -1 -1 33752 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65768 31 32 319 272 1 176 80 17 17 289 -1 unnamed_device 25.5 MiB 9.37 834 6960 1607 4728 625 64.2 MiB 0.06 0.00 3.80246 -121.175 -3.80246 3.80246 1.93 0.000157813 0.000126288 0.00778018 0.00633874 34 2495 25 6.87369e+06 237555 618332. 2139.56 4.16 0.147391 0.138876 25762 151098 -1 2013 23 1489 2217 176461 41044 3.1862 3.1862 -121.365 -3.1862 0 0 787024. 2723.27 0.83 0.18 0.29 -1 -1 0.83 0.0998266 0.098435 114 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 22.54 vpr 64.34 MiB -1 -1 0.43 21584 1 0.11 -1 -1 33876 -1 -1 34 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65884 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 25.6 MiB 8.11 921 12141 3304 7964 873 64.3 MiB 0.24 0.00 3.48905 -102.447 -3.48905 3.48905 2.72 0.000179988 0.000141898 0.0105803 0.00845878 26 2465 24 6.87369e+06 475111 503264. 1741.40 3.82 0.071131 0.0645333 24322 120374 -1 2134 19 1258 2349 180203 40845 3.06356 3.06356 -107.013 -3.06356 0 0 618332. 2139.56 1.09 0.02 0.19 -1 -1 1.09 0.1333 0.13263 124 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 20.17 vpr 63.75 MiB -1 -1 0.45 21432 1 0.02 -1 -1 33560 -1 -1 35 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65284 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 25.0 MiB 6.99 887 17159 5443 8925 2791 63.8 MiB 0.18 0.00 4.16979 -108.155 -4.16979 4.16979 2.58 6.3706e-05 4.9913e-05 0.137375 0.135498 28 2132 25 6.87369e+06 489084 531479. 1839.03 2.77 0.201414 0.196002 24610 126494 -1 1890 23 1185 2097 149261 34011 3.5961 3.5961 -107.81 -3.5961 0 0 648988. 2245.63 1.13 0.09 0.27 -1 -1 1.13 0.00967635 0.00838358 117 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 23.82 vpr 63.89 MiB -1 -1 0.30 21432 1 0.11 -1 -1 33856 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65420 30 32 317 269 1 155 79 17 17 289 -1 unnamed_device 25.3 MiB 10.29 720 7853 2018 5047 788 63.9 MiB 0.22 0.00 4.09699 -121.029 -4.09699 4.09699 2.89 0.00014649 0.000117609 0.0557506 0.0542115 28 2181 20 6.87369e+06 237555 531479. 1839.03 3.52 0.0811081 0.0755246 24610 126494 -1 1811 24 1496 2619 190050 43819 3.00226 3.00226 -118.43 -3.00226 0 0 648988. 2245.63 0.85 0.13 0.25 -1 -1 0.85 0.0115239 0.0100459 105 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 24.07 vpr 64.30 MiB -1 -1 0.46 21280 1 0.06 -1 -1 33704 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65848 32 32 335 282 1 189 81 17 17 289 -1 unnamed_device 25.6 MiB 9.88 1031 14256 4617 7292 2347 64.3 MiB 0.11 0.00 3.6774 -127.4 -3.6774 3.6774 2.71 0.000176986 0.000141073 0.00876203 0.00699472 34 2685 25 6.87369e+06 237555 618332. 2139.56 4.61 0.0513892 0.0424255 25762 151098 -1 2119 21 1403 2128 175919 39592 3.0892 3.0892 -123.982 -3.0892 0 0 787024. 2723.27 0.81 0.15 0.22 -1 -1 0.81 0.00764843 0.00655914 122 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 17.84 vpr 64.21 MiB -1 -1 0.50 21128 1 0.05 -1 -1 33940 -1 -1 31 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65748 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 25.5 MiB 2.66 1006 10105 2485 6935 685 64.2 MiB 0.18 0.00 4.52456 -130.912 -4.52456 4.52456 3.08 0.000193372 0.000158801 0.0778823 0.0759039 26 2792 34 6.87369e+06 433189 503264. 1741.40 5.02 0.209922 0.203266 24322 120374 -1 2448 21 1440 2466 335391 89771 4.1193 4.1193 -135.113 -4.1193 0 0 618332. 2139.56 0.78 0.12 0.30 -1 -1 0.78 0.039717 0.0385584 129 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 29.64 vpr 64.51 MiB -1 -1 0.56 21584 1 0.16 -1 -1 33956 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66060 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 25.8 MiB 11.58 1030 16023 4465 9060 2498 64.5 MiB 0.36 0.00 4.80948 -150.045 -4.80948 4.80948 2.46 0.000176942 0.000144389 0.0169233 0.0137793 34 3428 33 6.87369e+06 321398 618332. 2139.56 6.67 0.161447 0.150138 25762 151098 -1 2449 24 2150 3216 257431 61542 4.23836 4.23836 -150.772 -4.23836 0 0 787024. 2723.27 1.05 0.32 0.32 -1 -1 1.05 0.011305 0.00989923 147 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 28.13 vpr 64.56 MiB -1 -1 0.36 21280 1 0.05 -1 -1 33380 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66108 32 32 385 308 1 196 100 17 17 289 -1 unnamed_device 25.8 MiB 13.99 992 11004 2505 7094 1405 64.6 MiB 0.20 0.00 5.358 -156.897 -5.358 5.358 2.33 0.000242429 0.000193313 0.011381 0.00927607 30 2877 24 6.87369e+06 503058 556674. 1926.21 4.22 0.18809 0.0356575 25186 138497 -1 2002 23 1283 2303 125778 31088 4.10065 4.10065 -142.7 -4.10065 0 0 706193. 2443.58 0.65 0.19 0.38 -1 -1 0.65 0.0132399 0.0115817 147 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 27.82 vpr 64.61 MiB -1 -1 0.44 21280 1 0.26 -1 -1 33784 -1 -1 41 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66156 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 25.8 MiB 11.28 1067 14184 3960 9254 970 64.6 MiB 0.39 0.00 4.55456 -143.325 -4.55456 4.55456 2.33 0.000215782 0.000172066 0.012717 0.0103013 28 3027 43 6.87369e+06 572927 531479. 1839.03 4.93 0.207036 0.198649 24610 126494 -1 2564 21 1734 3064 262501 59491 3.8094 3.8094 -142.318 -3.8094 0 0 648988. 2245.63 0.73 0.10 0.61 -1 -1 0.73 0.0124746 0.0109496 148 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 22.48 vpr 63.75 MiB -1 -1 0.51 21280 1 0.15 -1 -1 33912 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65284 30 32 272 232 1 151 79 17 17 289 -1 unnamed_device 25.2 MiB 8.25 842 13261 4606 6728 1927 63.8 MiB 0.19 0.00 4.07653 -124.408 -4.07653 4.07653 2.42 7.0062e-05 5.5974e-05 0.146543 0.110637 34 2031 21 6.87369e+06 237555 618332. 2139.56 4.71 0.205748 0.163126 25762 151098 -1 1703 19 962 1667 121009 28305 3.04731 3.04731 -111.246 -3.04731 0 0 787024. 2723.27 0.69 0.03 0.37 -1 -1 0.69 0.00899034 0.00787086 99 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 26.21 vpr 64.23 MiB -1 -1 0.54 21432 1 0.20 -1 -1 34056 -1 -1 22 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65776 30 32 375 299 1 188 84 17 17 289 -1 unnamed_device 25.6 MiB 11.39 1040 10332 2707 6497 1128 64.2 MiB 0.16 0.00 4.61482 -143.916 -4.61482 4.61482 2.36 0.000170814 0.00013764 0.0113869 0.00931017 34 2561 21 6.87369e+06 307425 618332. 2139.56 4.62 0.0545508 0.0457899 25762 151098 -1 2200 24 1763 2818 238272 51426 3.9216 3.9216 -141.718 -3.9216 0 0 787024. 2723.27 1.03 0.10 0.30 -1 -1 1.03 0.0103456 0.00909204 136 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 24.47 vpr 64.24 MiB -1 -1 0.64 21280 1 0.02 -1 -1 33848 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65784 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 25.5 MiB 9.06 994 8535 2039 6107 389 64.2 MiB 0.08 0.00 5.21006 -151.071 -5.21006 5.21006 3.12 0.000159427 0.00012768 0.0114246 0.00944575 34 2957 23 6.87369e+06 321398 618332. 2139.56 5.03 0.0584212 0.0487153 25762 151098 -1 2368 21 1687 2792 256911 57806 3.94176 3.94176 -140.022 -3.94176 0 0 787024. 2723.27 0.78 0.18 0.28 -1 -1 0.78 0.00927597 0.00825864 140 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 22.36 vpr 64.05 MiB -1 -1 0.19 21280 1 0.11 -1 -1 33744 -1 -1 28 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65592 31 32 340 275 1 201 91 17 17 289 -1 unnamed_device 25.5 MiB 7.60 1089 16207 4865 8603 2739 64.1 MiB 0.39 0.13 5.3663 -151.531 -5.3663 5.3663 2.57 0.00016299 0.000132014 0.200524 0.197734 34 2572 26 6.87369e+06 391268 618332. 2139.56 4.68 0.309481 0.299374 25762 151098 -1 2215 23 1619 2600 183520 43034 4.4486 4.4486 -143.379 -4.4486 0 0 787024. 2723.27 0.90 0.16 0.46 -1 -1 0.90 0.0118623 0.010397 141 47 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 25.81 vpr 64.35 MiB -1 -1 0.62 21280 1 0.05 -1 -1 33828 -1 -1 31 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65892 30 32 377 310 1 181 93 17 17 289 -1 unnamed_device 25.8 MiB 11.50 902 15003 4201 8477 2325 64.3 MiB 0.20 0.10 4.69758 -137.432 -4.69758 4.69758 3.03 0.00017586 0.000138935 0.0145663 0.0117314 28 2839 48 6.87369e+06 433189 531479. 1839.03 4.43 0.204168 0.195417 24610 126494 -1 2184 20 1415 2315 189694 44392 3.7954 3.7954 -136.767 -3.7954 0 0 648988. 2245.63 0.58 0.27 0.18 -1 -1 0.58 0.11292 0.11145 136 83 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 24.15 vpr 64.06 MiB -1 -1 0.49 21584 1 0.15 -1 -1 33820 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65600 32 32 365 294 1 187 85 17 17 289 -1 unnamed_device 25.5 MiB 8.25 1057 15709 4238 9990 1481 64.1 MiB 0.15 0.00 4.73658 -142.328 -4.73658 4.73658 2.48 0.000192429 0.000158325 0.0160489 0.0130146 34 2693 29 6.87369e+06 293451 618332. 2139.56 4.46 0.365607 0.354475 25762 151098 -1 2414 24 1860 3277 244353 56063 3.99376 3.99376 -142.813 -3.99376 0 0 787024. 2723.27 0.73 0.41 0.32 -1 -1 0.73 0.14787 0.0116698 132 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 24.14 vpr 64.48 MiB -1 -1 0.49 21736 1 0.13 -1 -1 33836 -1 -1 29 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66032 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 25.8 MiB 8.36 980 14361 3795 8758 1808 64.5 MiB 0.23 0.00 4.08063 -123.956 -4.08063 4.08063 2.45 0.000173293 0.000138665 0.0116365 0.00942744 34 2277 22 6.87369e+06 405241 618332. 2139.56 4.29 0.0590924 0.0491969 25762 151098 -1 1855 21 1465 2435 157122 37309 2.92401 2.92401 -112.423 -2.92401 0 0 787024. 2723.27 1.19 0.24 0.72 -1 -1 1.19 0.165371 0.164343 132 85 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 17.87 vpr 63.86 MiB -1 -1 0.52 20824 1 0.07 -1 -1 33924 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65392 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 25.3 MiB 2.41 762 13381 3888 7655 1838 63.9 MiB 0.48 0.00 4.08063 -121.878 -4.08063 4.08063 2.17 0.000127364 0.000101096 0.0115594 0.00927363 30 1753 24 6.87369e+06 237555 556674. 1926.21 5.95 0.328848 0.272579 25186 138497 -1 1475 16 699 1012 58829 14121 2.80671 2.80671 -106.483 -2.80671 0 0 706193. 2443.58 0.72 0.11 0.13 -1 -1 0.72 0.00761888 0.00657686 96 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 27.83 vpr 64.21 MiB -1 -1 0.37 21432 1 0.07 -1 -1 33736 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65752 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 25.6 MiB 15.27 1078 12698 2986 8362 1350 64.2 MiB 0.16 0.00 4.62608 -141.267 -4.62608 4.62608 2.24 0.000195534 0.00016125 0.0119889 0.0096477 30 2506 24 6.87369e+06 475111 556674. 1926.21 2.89 0.287809 0.280734 25186 138497 -1 2052 20 1183 2080 122141 28584 3.6918 3.6918 -130.183 -3.6918 0 0 706193. 2443.58 0.85 0.14 0.25 -1 -1 0.85 0.0110472 0.00974873 137 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 30.14 vpr 63.94 MiB -1 -1 0.27 21432 1 0.25 -1 -1 33476 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65472 32 32 397 314 1 197 85 17 17 289 -1 unnamed_device 25.3 MiB 14.03 998 8827 2077 6176 574 63.9 MiB 0.19 0.00 4.56982 -152.779 -4.56982 4.56982 2.58 0.000311625 0.000272813 0.0111269 0.00904738 34 2791 32 6.87369e+06 293451 618332. 2139.56 4.84 0.14087 0.130225 25762 151098 -1 2300 24 2093 3481 261894 59837 3.6874 3.6874 -146.807 -3.6874 0 0 787024. 2723.27 1.10 0.13 0.37 -1 -1 1.10 0.0146963 0.012916 142 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 24.87 vpr 63.95 MiB -1 -1 0.44 21128 1 0.13 -1 -1 33740 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65484 32 32 269 231 1 170 80 17 17 289 -1 unnamed_device 25.3 MiB 10.55 877 12464 4060 6378 2026 63.9 MiB 0.23 0.00 4.35092 -123.721 -4.35092 4.35092 2.40 0.000138315 0.000109707 0.0291551 0.0267301 34 2390 25 6.87369e+06 223581 618332. 2139.56 4.00 0.180129 0.171184 25762 151098 -1 1912 19 1045 1383 113106 26026 3.3655 3.3655 -119.599 -3.3655 0 0 787024. 2723.27 1.16 0.25 0.24 -1 -1 1.16 0.00864042 0.00764285 106 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 13.91 vpr 63.88 MiB -1 -1 0.49 21280 1 0.05 -1 -1 33796 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65412 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 25.2 MiB 2.36 831 12143 3710 6458 1975 63.9 MiB 0.04 0.00 4.08753 -121.46 -4.08753 4.08753 2.51 0.000130321 0.000103266 0.00813313 0.00648839 28 2091 26 6.87369e+06 279477 531479. 1839.03 2.43 0.032326 0.0268989 24610 126494 -1 1926 22 1255 2098 151129 33631 3.06656 3.06656 -115.299 -3.06656 0 0 648988. 2245.63 0.97 0.10 0.32 -1 -1 0.97 0.0191137 0.018127 99 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 24.89 vpr 64.17 MiB -1 -1 0.43 21432 1 0.20 -1 -1 34116 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65708 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 25.6 MiB 10.15 1048 14871 5310 7645 1916 64.2 MiB 0.25 0.00 4.74578 -148.239 -4.74578 4.74578 2.16 0.000217443 0.000179441 0.154511 0.151479 36 2778 21 6.87369e+06 321398 648988. 2245.63 5.31 0.203356 0.19278 26050 158493 -1 2299 23 2032 2768 214916 47750 4.09326 4.09326 -145.711 -4.09326 0 0 828058. 2865.25 0.92 0.09 0.31 -1 -1 0.92 0.0144787 0.0129622 145 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 23.43 vpr 64.27 MiB -1 -1 0.56 21432 1 0.47 -1 -1 33828 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65816 32 32 356 289 1 202 91 17 17 289 -1 unnamed_device 25.6 MiB 8.04 1156 10291 2704 7024 563 64.3 MiB 0.20 0.00 5.18474 -149.951 -5.18474 5.18474 2.28 0.000173435 0.000138918 0.0106602 0.00869726 34 2836 43 6.87369e+06 377294 618332. 2139.56 4.75 0.177397 0.166598 25762 151098 -1 2209 21 1477 2262 145226 37923 4.8875 4.8875 -153.376 -4.8875 0 0 787024. 2723.27 1.03 0.16 0.41 -1 -1 1.03 0.0517608 0.0501269 142 56 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 17.97 vpr 64.36 MiB -1 -1 0.49 21432 1 0.09 -1 -1 33684 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65900 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 25.8 MiB 2.66 1079 20284 6521 10124 3639 64.4 MiB 0.23 0.00 5.37378 -147.82 -5.37378 5.37378 2.37 0.000175743 0.0001416 0.0177904 0.0144316 30 3023 31 6.87369e+06 503058 556674. 1926.21 4.03 0.139801 0.131127 25186 138497 -1 2085 21 1291 2437 138623 33500 4.25585 4.25585 -141.062 -4.25585 0 0 706193. 2443.58 1.08 0.08 0.31 -1 -1 1.08 0.0127445 0.0112248 157 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 22.13 vpr 64.25 MiB -1 -1 0.31 21432 1 0.03 -1 -1 33684 -1 -1 34 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65796 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 25.5 MiB 7.93 927 17397 5065 9948 2384 64.3 MiB 0.46 0.00 3.60295 -108.088 -3.60295 3.60295 2.72 0.000149172 0.000117939 0.083006 0.0801073 28 2143 16 6.87369e+06 475111 531479. 1839.03 3.59 0.104044 0.0978537 24610 126494 -1 1954 21 1477 2589 180577 42563 3.17156 3.17156 -109.399 -3.17156 0 0 648988. 2245.63 0.63 0.19 0.37 -1 -1 0.63 0.158986 0.0207749 119 52 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 17.86 vpr 63.88 MiB -1 -1 0.56 21128 1 0.02 -1 -1 34300 -1 -1 21 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65412 27 32 255 219 1 139 80 17 17 289 -1 unnamed_device 25.2 MiB 3.53 651 12980 3995 7984 1001 63.9 MiB 0.16 0.00 3.6605 -100.499 -3.6605 3.6605 2.63 0.000133245 0.000102794 0.0129438 0.0105119 34 1631 22 6.87369e+06 293451 618332. 2139.56 4.12 0.2536 0.244908 25762 151098 -1 1471 17 1000 1481 108358 24700 2.98326 2.98326 -98.5613 -2.98326 0 0 787024. 2723.27 0.89 0.16 0.37 -1 -1 0.89 0.00550685 0.0047051 96 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 28.21 vpr 64.48 MiB -1 -1 0.69 21432 1 0.03 -1 -1 33684 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66032 32 32 421 327 1 233 88 17 17 289 -1 unnamed_device 25.9 MiB 12.12 1305 7498 1697 5254 547 64.5 MiB 0.21 0.00 4.4144 -140.878 -4.4144 4.4144 3.05 0.000193586 0.000155586 0.0102645 0.00841528 34 3816 26 6.87369e+06 335372 618332. 2139.56 5.70 0.209201 0.19799 25762 151098 -1 3072 23 2124 3517 294906 66508 4.13856 4.13856 -146.202 -4.13856 0 0 787024. 2723.27 0.81 0.30 0.39 -1 -1 0.81 0.155998 0.154166 165 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 30.74 vpr 64.23 MiB -1 -1 0.39 21584 1 0.20 -1 -1 33564 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65776 31 32 365 296 1 202 85 17 17 289 -1 unnamed_device 25.6 MiB 15.64 1074 15151 5128 7714 2309 64.2 MiB 0.39 0.00 5.62787 -168.35 -5.62787 5.62787 3.08 0.000195413 0.000162177 0.0111841 0.00903981 34 2751 44 6.87369e+06 307425 618332. 2139.56 4.57 0.125654 0.115732 25762 151098 -1 2244 21 1792 2718 184181 44605 4.71195 4.71195 -159.067 -4.71195 0 0 787024. 2723.27 0.93 0.08 0.36 -1 -1 0.93 0.0648545 0.0634683 139 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 31.71 vpr 64.29 MiB -1 -1 0.48 21432 1 0.06 -1 -1 34084 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65832 32 32 331 280 1 185 82 17 17 289 -1 unnamed_device 25.6 MiB 16.51 919 12720 5050 5541 2129 64.3 MiB 0.41 0.00 4.44674 -144.261 -4.44674 4.44674 2.50 0.00016062 0.000126966 0.0264314 0.02378 34 2497 25 6.87369e+06 251529 618332. 2139.56 4.26 0.073152 0.0625917 25762 151098 -1 2129 21 1638 2383 187322 42493 3.67646 3.67646 -142.535 -3.67646 0 0 787024. 2723.27 0.88 0.11 0.30 -1 -1 0.88 0.0108914 0.00959515 118 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 17.61 vpr 64.34 MiB -1 -1 0.36 21432 1 0.03 -1 -1 33780 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65888 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 25.8 MiB 4.09 976 10753 2429 7569 755 64.3 MiB 0.54 0.00 5.00965 -138.522 -5.00965 5.00965 2.41 0.000155334 0.000124383 0.00679763 0.00545239 32 2763 27 6.87369e+06 461137 586450. 2029.24 2.44 0.131443 0.125685 25474 144626 -1 2212 23 1337 2115 197538 43683 3.6091 3.6091 -126.097 -3.6091 0 0 744469. 2576.02 1.15 0.21 0.49 -1 -1 1.15 0.00988829 0.00863721 129 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 19.99 vpr 64.30 MiB -1 -1 0.48 21432 1 0.11 -1 -1 33488 -1 -1 34 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65848 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 25.7 MiB 6.71 1013 10087 2314 7206 567 64.3 MiB 0.12 0.00 4.42234 -128.528 -4.42234 4.42234 2.48 0.000210025 0.000173901 0.0109573 0.00897473 26 2786 25 6.87369e+06 475111 503264. 1741.40 3.48 0.302713 0.119406 24322 120374 -1 2350 23 1643 2720 217701 49985 4.30596 4.30596 -136.052 -4.30596 0 0 618332. 2139.56 0.94 0.28 0.21 -1 -1 0.94 0.0130602 0.0113431 149 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 20.47 vpr 64.15 MiB -1 -1 0.47 21584 1 0.16 -1 -1 33892 -1 -1 31 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 25.6 MiB 6.88 789 16473 4509 9304 2660 64.1 MiB 0.16 0.00 3.6543 -102.402 -3.6543 3.6543 2.47 0.000157977 0.000125103 0.0114113 0.00918502 30 2403 31 6.87369e+06 433189 556674. 1926.21 3.36 0.0384202 0.0318093 25186 138497 -1 1692 21 1163 2079 118397 30989 2.84601 2.84601 -99.6498 -2.84601 0 0 706193. 2443.58 1.13 0.07 0.34 -1 -1 1.13 0.0105219 0.00923325 124 51 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 26.24 vpr 64.34 MiB -1 -1 0.33 21280 1 0.14 -1 -1 33420 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65880 32 32 350 275 1 216 86 17 17 289 -1 unnamed_device 25.8 MiB 11.25 1043 7835 1690 4990 1155 64.3 MiB 0.14 0.00 4.80948 -147.863 -4.80948 4.80948 2.35 8.083e-05 6.2918e-05 0.120904 0.119769 38 2793 25 6.87369e+06 307425 678818. 2348.85 4.77 0.356462 0.331458 26626 170182 -1 2286 21 1725 2702 176685 43882 3.97676 3.97676 -143.812 -3.97676 0 0 902133. 3121.57 1.04 0.14 0.53 -1 -1 1.04 0.0118122 0.0104249 148 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 27.06 vpr 64.31 MiB -1 -1 0.30 21280 1 0.02 -1 -1 33584 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65856 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 25.8 MiB 11.54 1116 17964 5292 9872 2800 64.3 MiB 0.17 0.00 4.13563 -137.404 -4.13563 4.13563 2.45 8.7406e-05 6.708e-05 0.00957555 0.00757502 34 2483 28 6.87369e+06 503058 618332. 2139.56 5.17 0.233915 0.223526 25762 151098 -1 2092 21 1459 2325 157406 36334 3.12431 3.12431 -122.815 -3.12431 0 0 787024. 2723.27 1.11 0.06 0.37 -1 -1 1.11 0.0132458 0.0118161 147 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 20.09 vpr 63.97 MiB -1 -1 0.43 21128 1 0.06 -1 -1 33816 -1 -1 19 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65504 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 25.3 MiB 6.95 703 14184 4182 7144 2858 64.0 MiB 0.28 0.00 3.92008 -117.095 -3.92008 3.92008 2.06 0.000130365 0.000101356 0.0130918 0.0104772 32 1786 22 6.87369e+06 265503 586450. 2029.24 2.57 0.0443424 0.03859 25474 144626 -1 1465 18 1159 1649 106327 25517 2.95216 2.95216 -109.502 -2.95216 0 0 744469. 2576.02 0.96 0.05 0.37 -1 -1 0.96 0.00803945 0.00704296 101 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 20.83 vpr 64.20 MiB -1 -1 0.44 21280 1 0.02 -1 -1 33756 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65740 32 32 310 266 1 176 81 17 17 289 -1 unnamed_device 25.5 MiB 5.94 745 10056 2219 6943 894 64.2 MiB 0.08 0.00 4.29715 -118.471 -4.29715 4.29715 2.67 0.000175463 0.000142299 0.0117008 0.0095659 34 2412 25 6.87369e+06 237555 618332. 2139.56 4.97 0.121361 0.11164 25762 151098 -1 1921 22 1172 1607 147553 34263 3.38331 3.38331 -128.591 -3.38331 0 0 787024. 2723.27 0.84 0.02 0.34 -1 -1 0.84 0.00952054 0.00885081 112 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 21.30 vpr 64.37 MiB -1 -1 0.47 21432 1 0.02 -1 -1 34036 -1 -1 39 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65912 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 25.8 MiB 6.44 902 19380 5589 10619 3172 64.4 MiB 0.18 0.00 4.58512 -127.193 -4.58512 4.58512 2.91 0.000155813 0.000124815 0.0154607 0.0123699 30 2365 22 6.87369e+06 544980 556674. 1926.21 3.93 0.0444408 0.0369961 25186 138497 -1 1716 22 1241 2354 128386 30446 3.5538 3.5538 -120.664 -3.5538 0 0 706193. 2443.58 0.82 0.07 0.19 -1 -1 0.82 0.0114633 0.0100832 135 33 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 24.06 vpr 63.75 MiB -1 -1 0.55 21280 1 0.20 -1 -1 33708 -1 -1 19 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65276 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 25.2 MiB 11.31 749 6788 1524 4749 515 63.7 MiB 0.08 0.00 4.6958 -121.206 -4.6958 4.6958 2.31 0.000169203 0.00013788 0.00655129 0.00534007 30 1952 20 6.87369e+06 265503 556674. 1926.21 2.30 0.0735153 0.0687536 25186 138497 -1 1612 16 830 1112 65319 16469 3.46886 3.46886 -112.916 -3.46886 0 0 706193. 2443.58 1.12 0.01 0.38 -1 -1 1.12 0.00378377 0.00333699 107 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 26.02 vpr 64.00 MiB -1 -1 0.58 21280 1 0.21 -1 -1 33960 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65540 32 32 278 238 1 158 79 17 17 289 -1 unnamed_device 25.3 MiB 11.72 866 13092 4214 7388 1490 64.0 MiB 0.10 0.00 4.09853 -129.916 -4.09853 4.09853 2.25 0.00017348 0.000144012 0.0517077 0.0492828 34 2136 19 6.87369e+06 209608 618332. 2139.56 4.28 0.160242 0.15194 25762 151098 -1 1876 19 1305 2186 179380 40088 3.06026 3.06026 -118.527 -3.06026 0 0 787024. 2723.27 1.00 0.13 0.34 -1 -1 1.00 0.0974043 0.0963665 101 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 25.95 vpr 64.29 MiB -1 -1 0.41 21432 1 0.18 -1 -1 33660 -1 -1 37 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65836 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 25.8 MiB 9.88 1039 12628 3304 8275 1049 64.3 MiB 0.32 0.00 4.00054 -129.166 -4.00054 4.00054 2.13 0.000210017 0.000174169 0.0122035 0.00990819 30 2209 47 6.87369e+06 517032 556674. 1926.21 6.04 0.554985 0.542485 25186 138497 -1 1847 24 1361 2336 125733 29890 2.85166 2.85166 -116.929 -2.85166 0 0 706193. 2443.58 0.64 0.07 0.17 -1 -1 0.64 0.045678 0.0436281 141 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 26.14 vpr 63.98 MiB -1 -1 0.40 21128 1 0.13 -1 -1 33904 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65520 31 32 265 230 1 169 80 17 17 289 -1 unnamed_device 25.4 MiB 11.40 739 6272 1406 4366 500 64.0 MiB 0.04 0.00 3.6584 -112.307 -3.6584 3.6584 2.53 0.000146881 0.000116644 0.00726985 0.00588212 34 2230 21 6.87369e+06 237555 618332. 2139.56 4.11 0.12054 0.113228 25762 151098 -1 1774 21 1275 1857 140665 34493 3.10761 3.10761 -112.25 -3.10761 0 0 787024. 2723.27 1.02 0.23 0.53 -1 -1 1.02 0.00745575 0.00654715 105 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 23.18 vpr 64.41 MiB -1 -1 0.42 21280 1 0.05 -1 -1 33692 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65960 32 32 349 286 1 177 95 17 17 289 -1 unnamed_device 25.6 MiB 9.96 994 15431 4930 8161 2340 64.4 MiB 0.38 0.00 3.71714 -116.274 -3.71714 3.71714 2.43 0.00016668 0.000132315 0.154015 0.151407 28 2577 30 6.87369e+06 433189 531479. 1839.03 3.18 0.260622 0.253714 24610 126494 -1 2282 22 1256 2064 170461 37936 2.99431 2.99431 -116.308 -2.99431 0 0 648988. 2245.63 0.97 0.08 0.39 -1 -1 0.97 0.0116898 0.010177 129 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 24.73 vpr 64.34 MiB -1 -1 0.42 21584 1 0.06 -1 -1 33836 -1 -1 32 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65880 31 32 396 325 1 185 95 17 17 289 -1 unnamed_device 25.7 MiB 11.44 961 16511 5552 8275 2684 64.3 MiB 0.17 0.00 3.7214 -123.871 -3.7214 3.7214 3.01 0.000210592 0.00017045 0.0799071 0.0769423 30 2253 32 6.87369e+06 447163 556674. 1926.21 3.39 0.11623 0.107678 25186 138497 -1 1722 20 1533 2326 127313 31294 2.93501 2.93501 -117.678 -2.93501 0 0 706193. 2443.58 1.19 0.09 0.27 -1 -1 1.19 0.0117807 0.0103106 137 91 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 21.28 vpr 63.85 MiB -1 -1 0.42 21432 1 0.21 -1 -1 33736 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65380 32 32 303 262 1 154 80 17 17 289 -1 unnamed_device 25.3 MiB 8.28 737 5584 1099 4145 340 63.8 MiB 0.04 0.00 3.6034 -109.653 -3.6034 3.6034 2.54 0.000172967 0.000138711 0.00655164 0.00533344 34 2010 22 6.87369e+06 223581 618332. 2139.56 3.44 0.197616 0.173372 25762 151098 -1 1778 20 1088 1717 149494 35149 2.93831 2.93831 -111.61 -2.93831 0 0 787024. 2723.27 0.96 0.04 0.25 -1 -1 0.96 0.00950595 0.00830105 99 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 20.96 vpr 64.08 MiB -1 -1 0.35 21128 1 0.03 -1 -1 33692 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65616 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 25.3 MiB 5.02 952 10940 2740 7203 997 64.1 MiB 0.14 0.00 4.25609 -132.381 -4.25609 4.25609 2.59 0.000151853 0.000121995 0.0911806 0.0892098 34 2539 31 6.87369e+06 251529 618332. 2139.56 4.62 0.254826 0.209777 25762 151098 -1 2274 20 1537 2285 205051 45570 3.43621 3.43621 -129.843 -3.43621 0 0 787024. 2723.27 1.20 0.20 0.44 -1 -1 1.20 0.00827715 0.00723661 114 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 23.20 vpr 64.33 MiB -1 -1 0.42 21280 1 0.16 -1 -1 33688 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65876 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 25.6 MiB 8.99 1054 12749 3289 7313 2147 64.3 MiB 0.36 0.00 4.80313 -136.884 -4.80313 4.80313 2.18 7.4449e-05 5.8209e-05 0.0104704 0.00848545 34 2729 44 6.87369e+06 307425 618332. 2139.56 4.30 0.0586755 0.0488335 25762 151098 -1 2281 19 1506 2130 160084 36271 4.02506 4.02506 -135.193 -4.02506 0 0 787024. 2723.27 1.01 0.21 0.21 -1 -1 1.01 0.0102614 0.00911307 132 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 24.01 vpr 63.86 MiB -1 -1 0.40 21584 1 0.02 -1 -1 33852 -1 -1 29 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65388 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 25.4 MiB 9.05 910 8331 2069 5702 560 63.9 MiB 0.06 0.00 4.10263 -113.755 -4.10263 4.10263 2.81 0.000161988 0.000130599 0.0169096 0.0153965 26 2355 25 6.87369e+06 405241 503264. 1741.40 3.92 0.205653 0.0381333 24322 120374 -1 2033 23 1259 2182 174835 40984 3.55251 3.55251 -115.502 -3.55251 0 0 618332. 2139.56 0.78 0.10 0.21 -1 -1 0.78 0.011704 0.0102749 123 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 25.23 vpr 64.60 MiB -1 -1 0.62 21584 1 0.14 -1 -1 33436 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66148 32 32 393 312 1 215 86 17 17 289 -1 unnamed_device 26.1 MiB 10.23 1103 15395 4881 8425 2089 64.6 MiB 0.25 0.00 5.21806 -166.108 -5.21806 5.21806 2.43 0.000182827 0.000148202 0.0237798 0.0138708 34 2947 24 6.87369e+06 307425 618332. 2139.56 4.30 0.152651 0.134698 25762 151098 -1 2371 20 1678 2569 223080 48160 4.13096 4.13096 -154.719 -4.13096 0 0 787024. 2723.27 1.05 0.12 0.42 -1 -1 1.05 0.01251 0.0110478 151 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 17.53 vpr 63.66 MiB -1 -1 0.52 21128 1 0.10 -1 -1 33776 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65192 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 25.2 MiB 2.28 761 8164 2247 5336 581 63.7 MiB 0.19 0.00 3.6213 -109.656 -3.6213 3.6213 2.52 0.000132315 0.000104858 0.00764862 0.00618307 34 1877 21 6.87369e+06 237555 618332. 2139.56 4.02 0.153606 0.146459 25762 151098 -1 1560 22 878 1383 100065 23147 2.69971 2.69971 -100.34 -2.69971 0 0 787024. 2723.27 0.87 0.18 0.14 -1 -1 0.87 0.00978808 0.0085085 92 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 22.05 vpr 64.48 MiB -1 -1 0.43 21432 1 0.22 -1 -1 33844 -1 -1 35 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66028 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 25.9 MiB 6.44 1098 17883 5450 10197 2236 64.5 MiB 0.21 0.00 4.40215 -147.898 -4.40215 4.40215 2.31 0.0001791 0.000141826 0.016478 0.0133201 34 2698 23 6.87369e+06 489084 618332. 2139.56 4.46 0.204551 0.192941 25762 151098 -1 2289 19 1528 2195 163597 37531 4.09906 4.09906 -150.382 -4.09906 0 0 787024. 2723.27 1.25 0.14 0.42 -1 -1 1.25 0.0123489 0.010729 145 90 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 28.71 vpr 64.36 MiB -1 -1 0.34 21280 1 0.15 -1 -1 33432 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65908 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 25.8 MiB 14.98 884 12808 4071 7270 1467 64.4 MiB 0.10 0.00 3.7416 -133.639 -3.7416 3.7416 2.39 0.000185557 0.000133548 0.0145308 0.0116667 34 2203 22 6.87369e+06 223581 618332. 2139.56 3.97 0.167213 0.138523 25762 151098 -1 1898 22 1647 2358 207288 44212 3.09651 3.09651 -131.753 -3.09651 0 0 787024. 2723.27 1.01 0.21 0.15 -1 -1 1.01 0.177656 0.176112 114 96 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 23.18 vpr 64.25 MiB -1 -1 0.35 21432 1 0.03 -1 -1 33524 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65796 32 32 360 293 1 182 96 17 17 289 -1 unnamed_device 25.6 MiB 9.73 1035 16083 4540 9099 2444 64.3 MiB 0.33 0.00 4.13563 -128.556 -4.13563 4.13563 2.53 0.000178336 0.000141814 0.155804 0.0300563 34 2321 22 6.87369e+06 447163 618332. 2139.56 3.70 0.241406 0.108683 25762 151098 -1 1975 20 1113 1723 125202 28251 2.88171 2.88171 -110.937 -2.88171 0 0 787024. 2723.27 0.78 0.14 0.36 -1 -1 0.78 0.12239 0.121288 134 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 27.47 vpr 64.60 MiB -1 -1 0.61 21432 1 0.13 -1 -1 33808 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66148 32 32 396 299 1 240 89 17 17 289 -1 unnamed_device 25.9 MiB 12.84 1287 13355 3699 8482 1174 64.6 MiB 0.26 0.00 5.89739 -178.153 -5.89739 5.89739 2.62 0.000182643 0.000146677 0.0152379 0.0125769 30 3132 24 6.87369e+06 349346 556674. 1926.21 3.01 0.0535792 0.0453289 25186 138497 -1 2431 22 1816 2892 196741 44670 4.7438 4.7438 -161.916 -4.7438 0 0 706193. 2443.58 0.97 0.06 0.23 -1 -1 0.97 0.0124387 0.0109805 171 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 19.27 vpr 63.44 MiB -1 -1 0.59 21128 1 0.43 -1 -1 33428 -1 -1 15 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64964 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 24.9 MiB 4.17 701 8879 2399 5497 983 63.4 MiB 0.02 0.00 3.00866 -95.1783 -3.00866 3.00866 2.29 5.4423e-05 4.1445e-05 0.00344419 0.0026929 34 1714 22 6.87369e+06 209608 618332. 2139.56 3.49 0.0229619 0.018796 25762 151098 -1 1446 22 914 1239 95931 21985 2.41177 2.41177 -93.2366 -2.41177 0 0 787024. 2723.27 0.86 0.08 0.56 -1 -1 0.86 0.155442 0.154411 81 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 21.09 vpr 64.02 MiB -1 -1 0.25 21128 1 0.03 -1 -1 34020 -1 -1 19 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65560 30 32 286 239 1 151 81 17 17 289 -1 unnamed_device 25.3 MiB 4.35 780 10931 2920 7179 832 64.0 MiB 0.14 0.00 4.09289 -125.17 -4.09289 4.09289 2.63 0.000138732 0.000110097 0.0106528 0.00854101 30 1832 21 6.87369e+06 265503 556674. 1926.21 6.08 0.052991 0.0439109 25186 138497 -1 1484 19 812 1262 82398 18839 2.96331 2.96331 -113.015 -2.96331 0 0 706193. 2443.58 0.91 0.04 0.35 -1 -1 0.91 0.0184988 0.0174497 105 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 15.59 vpr 63.84 MiB -1 -1 0.38 21280 1 0.08 -1 -1 33992 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65368 32 32 296 247 1 158 87 17 17 289 -1 unnamed_device 25.3 MiB 2.97 823 13335 3842 8129 1364 63.8 MiB 0.22 0.00 3.6323 -119.992 -3.6323 3.6323 2.25 0.000169515 0.000139323 0.00897186 0.00703524 32 2531 30 6.87369e+06 321398 586450. 2029.24 2.94 0.0389559 0.0323161 25474 144626 -1 2024 23 1432 2515 224836 51322 3.19191 3.19191 -122.428 -3.19191 0 0 744469. 2576.02 0.71 0.15 0.21 -1 -1 0.71 0.0323575 0.0308986 109 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 14.86 vpr 63.75 MiB -1 -1 0.18 21280 1 0.03 -1 -1 33660 -1 -1 29 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65284 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 24.9 MiB 2.77 478 11804 3373 6324 2107 63.8 MiB 0.29 0.00 3.5473 -82.0121 -3.5473 3.5473 2.29 0.00011186 8.6921e-05 0.00848826 0.00661571 32 1406 23 6.87369e+06 405241 586450. 2029.24 2.43 0.224238 0.219024 25474 144626 -1 1113 21 759 1365 103068 25092 3.24821 3.24821 -82.8494 -3.24821 0 0 744469. 2576.02 0.96 0.14 0.29 -1 -1 0.96 0.00721949 0.00620565 87 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 25.09 vpr 64.49 MiB -1 -1 0.68 21280 1 0.03 -1 -1 33836 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66036 32 32 376 307 1 193 84 17 17 289 -1 unnamed_device 25.8 MiB 9.26 1101 11796 3845 6942 1009 64.5 MiB 0.11 0.00 4.3434 -133.109 -4.3434 4.3434 2.62 8.5428e-05 6.6476e-05 0.0118216 0.00980211 34 2898 48 6.87369e+06 279477 618332. 2139.56 4.35 0.0697086 0.057851 25762 151098 -1 2423 20 1440 2558 195916 43947 3.72146 3.72146 -131.72 -3.72146 0 0 787024. 2723.27 0.94 0.26 0.28 -1 -1 0.94 0.0118249 0.010334 133 72 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 24.82 vpr 64.62 MiB -1 -1 0.61 21584 1 0.04 -1 -1 33868 -1 -1 31 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66168 31 32 409 331 1 193 94 17 17 289 -1 unnamed_device 26.1 MiB 9.55 1005 17347 4974 10720 1653 64.6 MiB 0.48 0.08 4.12463 -135.699 -4.12463 4.12463 2.30 0.000174695 0.000139207 0.0174827 0.0142548 34 2407 22 6.87369e+06 433189 618332. 2139.56 3.99 0.0820274 0.0713159 25762 151098 -1 2069 22 1746 2660 180911 42069 3.30881 3.30881 -130.418 -3.30881 0 0 787024. 2723.27 0.88 0.15 0.36 -1 -1 0.88 0.0142291 0.0125481 143 90 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 24.91 vpr 64.22 MiB -1 -1 0.45 21128 1 0.25 -1 -1 33628 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65760 32 32 354 285 1 223 88 17 17 289 -1 unnamed_device 25.4 MiB 8.52 1161 17053 5989 8608 2456 64.2 MiB 0.25 0.00 5.4505 -158.266 -5.4505 5.4505 2.07 0.000176998 0.000143319 0.0795813 0.0763266 36 2675 22 6.89349e+06 338252 648988. 2245.63 5.71 0.128371 0.117427 26050 158493 -1 2304 20 1673 2418 173005 38338 4.47565 4.47565 -149.167 -4.47565 0 0 828058. 2865.25 0.85 0.18 0.63 -1 -1 0.85 0.00957657 0.0082788 149 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 20.74 vpr 64.20 MiB -1 -1 0.40 21280 1 0.08 -1 -1 33564 -1 -1 26 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65740 30 32 363 293 1 229 88 17 17 289 -1 unnamed_device 25.6 MiB 5.58 1183 17053 6028 7314 3711 64.2 MiB 0.32 0.00 4.96382 -147.599 -4.96382 4.96382 2.48 0.000185221 0.000152978 0.0174222 0.0142415 40 2569 24 6.89349e+06 366440 706193. 2443.58 4.65 0.0633972 0.0531138 26914 176310 -1 2410 21 2086 3030 245852 53097 4.44693 4.44693 -146.332 -4.44693 0 0 926341. 3205.33 1.30 0.09 0.24 -1 -1 1.30 0.0121252 0.0105801 157 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 21.58 vpr 63.75 MiB -1 -1 0.30 21280 1 0.23 -1 -1 33560 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65280 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 25.2 MiB 6.30 1005 8641 2306 5994 341 63.8 MiB 0.18 0.00 4.21693 -118.79 -4.21693 4.21693 2.64 0.000165577 0.000136217 0.00595313 0.00481065 34 2497 30 6.89349e+06 295971 618332. 2139.56 5.69 0.0524443 0.0442435 25762 151098 -1 2075 21 1394 1953 140315 31761 3.481 3.481 -115.563 -3.481 0 0 787024. 2723.27 0.96 0.10 0.28 -1 -1 0.96 0.0681163 0.0668224 125 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 21.95 vpr 63.76 MiB -1 -1 0.57 21432 1 0.02 -1 -1 33496 -1 -1 24 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65288 29 32 308 248 1 195 85 17 17 289 -1 unnamed_device 25.2 MiB 5.76 1042 11245 2935 7152 1158 63.8 MiB 0.36 0.00 4.87453 -132.17 -4.87453 4.87453 2.76 0.000131131 0.000103231 0.00891168 0.00719115 40 2177 26 6.89349e+06 338252 706193. 2443.58 3.98 0.118991 0.110701 26914 176310 -1 2110 21 1379 2258 178424 40311 3.77346 3.77346 -124.825 -3.77346 0 0 926341. 3205.33 1.49 0.07 0.38 -1 -1 1.49 0.0106657 0.00938011 134 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 23.32 vpr 64.04 MiB -1 -1 0.57 21584 1 0.22 -1 -1 33576 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65580 32 32 336 268 1 212 87 17 17 289 -1 unnamed_device 25.5 MiB 5.13 1138 14679 5112 7369 2198 64.0 MiB 0.19 0.00 5.26431 -151.77 -5.26431 5.26431 2.81 8.4178e-05 6.6136e-05 0.0106353 0.00857157 34 3290 30 6.89349e+06 324158 618332. 2139.56 6.37 0.115847 0.105756 25762 151098 -1 2611 22 1920 3410 320266 76372 4.37429 4.37429 -147.257 -4.37429 0 0 787024. 2723.27 0.91 0.24 0.35 -1 -1 0.91 0.0117727 0.0103205 142 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 24.12 vpr 64.25 MiB -1 -1 0.45 21432 1 0.04 -1 -1 33972 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65788 32 32 366 295 1 231 97 17 17 289 -1 unnamed_device 25.5 MiB 7.12 1321 18079 5361 9939 2779 64.2 MiB 0.45 0.00 4.04936 -131.962 -4.04936 4.04936 2.50 0.000178121 0.000132771 0.0628183 0.0122638 34 3361 47 6.89349e+06 465097 618332. 2139.56 6.19 0.31131 0.251722 25762 151098 -1 2778 21 1732 2914 219808 48366 3.70335 3.70335 -137.69 -3.70335 0 0 787024. 2723.27 1.06 0.28 0.25 -1 -1 1.06 0.0107926 0.00956445 162 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 18.37 vpr 63.77 MiB -1 -1 0.61 21128 1 0.04 -1 -1 34176 -1 -1 21 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65304 27 32 259 221 1 160 80 17 17 289 -1 unnamed_device 25.1 MiB 4.35 839 11260 3450 5917 1893 63.8 MiB 0.09 0.00 4.19007 -114.449 -4.19007 4.19007 2.64 0.000137292 0.000108949 0.044233 0.00826467 34 1915 21 6.89349e+06 295971 618332. 2139.56 4.34 0.119948 0.0784687 25762 151098 -1 1655 18 1154 1659 146368 31515 3.17986 3.17986 -105.452 -3.17986 0 0 787024. 2723.27 0.78 0.07 0.21 -1 -1 0.78 0.00843702 0.00722768 107 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 16.07 vpr 63.86 MiB -1 -1 0.38 21280 1 0.08 -1 -1 33720 -1 -1 32 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65392 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 25.2 MiB 2.73 949 9383 2442 6271 670 63.9 MiB 0.16 0.00 3.43417 -103.803 -3.43417 3.43417 2.64 0.000147994 0.000117041 0.00818077 0.00660448 26 2457 27 6.89349e+06 451003 503264. 1741.40 3.83 0.130788 0.125164 24322 120374 -1 2161 21 1217 2108 198951 44635 2.60681 2.60681 -101.55 -2.60681 0 0 618332. 2139.56 0.94 0.02 0.17 -1 -1 0.94 0.00539005 0.00467584 119 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 21.79 vpr 63.85 MiB -1 -1 0.29 21280 1 0.02 -1 -1 33580 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65384 31 32 317 271 1 207 82 17 17 289 -1 unnamed_device 25.2 MiB 6.39 1057 11652 3291 6897 1464 63.9 MiB 0.15 0.00 3.72781 -126.045 -3.72781 3.72781 2.44 6.9584e-05 5.2628e-05 0.00794743 0.00642072 36 2479 32 6.89349e+06 267783 648988. 2245.63 5.19 0.25551 0.246837 26050 158493 -1 2104 21 1429 1952 165378 35709 2.76806 2.76806 -114.99 -2.76806 0 0 828058. 2865.25 1.13 0.19 0.32 -1 -1 1.13 0.0860574 0.0846668 131 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 21.88 vpr 63.96 MiB -1 -1 0.27 21432 1 0.06 -1 -1 33500 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65496 32 32 298 248 1 185 82 17 17 289 -1 unnamed_device 25.2 MiB 7.59 828 7914 1799 5700 415 64.0 MiB 0.08 0.00 4.03358 -129.578 -4.03358 4.03358 2.79 0.000155201 0.000122814 0.00860274 0.00698644 34 2423 23 6.89349e+06 253689 618332. 2139.56 4.90 0.157708 0.149603 25762 151098 -1 1889 18 1292 1700 120374 28926 3.2385 3.2385 -123.374 -3.2385 0 0 787024. 2723.27 1.03 0.04 0.17 -1 -1 1.03 0.0185968 0.0173179 120 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 20.73 vpr 63.75 MiB -1 -1 0.37 21128 1 0.13 -1 -1 33884 -1 -1 21 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65276 30 32 303 262 1 191 83 17 17 289 -1 unnamed_device 25.1 MiB 6.51 926 14123 4183 7803 2137 63.7 MiB 0.14 0.00 4.47797 -129.601 -4.47797 4.47797 2.37 6.263e-05 4.9121e-05 0.00666466 0.00535488 36 2199 23 6.89349e+06 295971 648988. 2245.63 4.51 0.0440458 0.0363173 26050 158493 -1 1863 20 1236 1654 121267 27418 3.4952 3.4952 -120.568 -3.4952 0 0 828058. 2865.25 1.07 0.12 0.27 -1 -1 1.07 0.00947721 0.00827429 124 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 19.03 vpr 63.84 MiB -1 -1 0.39 21128 1 0.03 -1 -1 33688 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65376 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 25.4 MiB 4.68 952 13206 3630 8318 1258 63.8 MiB 0.10 0.00 3.6807 -113.75 -3.6807 3.6807 2.33 0.000156193 0.000127332 0.0299875 0.00961667 34 2268 22 6.89349e+06 239595 618332. 2139.56 4.23 0.290009 0.263579 25762 151098 -1 1953 19 1085 1467 115324 26320 3.22811 3.22811 -116.042 -3.22811 0 0 787024. 2723.27 1.11 0.13 0.46 -1 -1 1.11 0.106119 0.104901 108 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 21.93 vpr 63.82 MiB -1 -1 0.47 21584 1 0.04 -1 -1 33980 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65348 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 25.2 MiB 7.61 1096 16791 5267 9304 2220 63.8 MiB 0.20 0.00 4.09068 -133.499 -4.09068 4.09068 2.50 0.000198508 0.000163314 0.0170644 0.0137481 34 2716 23 6.89349e+06 324158 618332. 2139.56 4.67 0.0958319 0.0848305 25762 151098 -1 2330 21 1747 2714 224269 47993 3.20486 3.20486 -124.183 -3.20486 0 0 787024. 2723.27 0.76 0.04 0.25 -1 -1 0.76 0.0141967 0.0131484 143 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 23.57 vpr 64.22 MiB -1 -1 0.36 21280 1 0.16 -1 -1 33840 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65760 32 32 363 295 1 232 88 17 17 289 -1 unnamed_device 25.6 MiB 6.26 1098 13348 3832 7332 2184 64.2 MiB 0.17 0.00 5.44961 -153.357 -5.44961 5.44961 2.31 0.000166728 0.000133456 0.0133028 0.010714 36 3003 29 6.89349e+06 338252 648988. 2245.63 7.54 0.158609 0.147505 26050 158493 -1 2305 21 2012 2798 189613 45478 4.37909 4.37909 -148.168 -4.37909 0 0 828058. 2865.25 0.87 0.25 0.38 -1 -1 0.87 0.0117438 0.0103645 153 61 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 21.27 vpr 63.53 MiB -1 -1 0.38 21280 1 0.08 -1 -1 33736 -1 -1 18 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65052 29 32 248 215 1 160 79 17 17 289 -1 unnamed_device 24.9 MiB 6.93 831 9374 2437 5969 968 63.5 MiB 0.18 0.00 3.17792 -97.7522 -3.17792 3.17792 2.69 0.000125564 9.9846e-05 0.00871104 0.00701499 34 1972 27 6.89349e+06 253689 618332. 2139.56 3.59 0.0596259 0.0364528 25762 151098 -1 1638 18 940 1326 89510 20951 2.71661 2.71661 -94.194 -2.71661 0 0 787024. 2723.27 1.03 0.16 0.31 -1 -1 1.03 0.00531485 0.00468482 102 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 23.39 vpr 64.37 MiB -1 -1 0.46 21432 1 0.03 -1 -1 33548 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65912 32 32 370 297 1 234 88 17 17 289 -1 unnamed_device 25.7 MiB 7.86 1293 12568 3874 7582 1112 64.4 MiB 0.28 0.00 4.1299 -137.165 -4.1299 4.1299 2.34 0.000193488 0.000155335 0.129421 0.126839 34 3535 29 6.89349e+06 338252 618332. 2139.56 5.03 0.177301 0.167009 25762 151098 -1 2788 23 2219 3501 275962 61516 3.65345 3.65345 -137.227 -3.65345 0 0 787024. 2723.27 0.96 0.30 0.26 -1 -1 0.96 0.0125185 0.0109158 159 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 24.27 vpr 63.88 MiB -1 -1 0.56 21584 1 0.03 -1 -1 33708 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65412 32 32 338 269 1 205 86 17 17 289 -1 unnamed_device 25.4 MiB 6.83 1050 11237 3157 6324 1756 63.9 MiB 0.19 0.00 4.12104 -133.15 -4.12104 4.12104 2.51 0.000201959 0.000135361 0.0114769 0.00929293 34 2644 33 6.89349e+06 310065 618332. 2139.56 5.08 0.302628 0.292097 25762 151098 -1 2226 20 1454 2138 168154 37059 2.99151 2.99151 -119.597 -2.99151 0 0 787024. 2723.27 1.10 0.03 0.30 -1 -1 1.10 0.00779777 0.00688851 142 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 21.98 vpr 64.17 MiB -1 -1 0.73 21128 1 0.08 -1 -1 33408 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65708 32 32 323 276 1 215 85 17 17 289 -1 unnamed_device 25.4 MiB 6.58 1106 9943 2735 6276 932 64.2 MiB 0.34 0.00 3.55425 -126.676 -3.55425 3.55425 2.33 0.000191948 0.00015908 0.0102347 0.0083218 34 2862 34 6.89349e+06 295971 618332. 2139.56 4.80 0.081078 0.0710734 25762 151098 -1 2261 21 1595 2084 154635 34776 2.92521 2.92521 -121.736 -2.92521 0 0 787024. 2723.27 1.00 0.29 0.27 -1 -1 1.00 0.00865996 0.00745008 131 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 17.39 vpr 63.63 MiB -1 -1 0.53 20976 1 0.03 -1 -1 33700 -1 -1 15 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65156 30 32 222 206 1 140 77 17 17 289 -1 unnamed_device 25.1 MiB 3.33 750 8227 2512 4388 1327 63.6 MiB 0.22 0.00 2.66469 -91.1536 -2.66469 2.66469 2.59 5.4469e-05 4.1216e-05 0.200041 0.198555 34 1569 21 6.89349e+06 211408 618332. 2139.56 3.74 0.409015 0.320328 25762 151098 -1 1355 14 606 676 48927 10985 2.17217 2.17217 -89.9899 -2.17217 0 0 787024. 2723.27 1.21 0.05 0.38 -1 -1 1.21 0.00583853 0.00512938 82 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 22.09 vpr 63.93 MiB -1 -1 0.24 21128 1 0.09 -1 -1 33852 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65460 31 32 291 243 1 179 82 17 17 289 -1 unnamed_device 25.2 MiB 7.05 945 9338 2566 6202 570 63.9 MiB 0.23 0.00 4.75752 -142.801 -4.75752 4.75752 2.42 0.000146087 0.000116232 0.00942941 0.00743356 36 2155 20 6.89349e+06 267783 648988. 2245.63 4.43 0.0493733 0.0406779 26050 158493 -1 1957 22 1225 1925 163923 35742 3.32256 3.32256 -127.555 -3.32256 0 0 828058. 2865.25 0.89 0.20 0.36 -1 -1 0.89 0.010323 0.00904507 117 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 19.62 vpr 64.27 MiB -1 -1 0.36 21432 1 0.14 -1 -1 34096 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65808 32 32 342 271 1 207 98 17 17 289 -1 unnamed_device 25.5 MiB 3.79 1106 14498 3974 9407 1117 64.3 MiB 0.31 0.00 4.73843 -148.84 -4.73843 4.73843 2.10 0.000159838 0.000128976 0.0480151 0.0455712 34 2741 36 6.89349e+06 479191 618332. 2139.56 4.53 0.0924301 0.0826887 25762 151098 -1 2294 20 1441 2135 164381 36417 4.00824 4.00824 -141.721 -4.00824 0 0 787024. 2723.27 1.00 0.20 0.18 -1 -1 1.00 0.0500119 0.0486807 151 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 20.70 vpr 64.38 MiB -1 -1 0.53 21432 1 0.10 -1 -1 33484 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65920 32 32 372 300 1 229 87 17 17 289 -1 unnamed_device 25.7 MiB 4.49 1263 9303 2806 5911 586 64.4 MiB 0.13 0.00 4.4892 -137.729 -4.4892 4.4892 2.30 0.000179038 0.000145934 0.0107695 0.00879205 34 3261 30 6.89349e+06 324158 618332. 2139.56 5.69 0.0984196 0.0884654 25762 151098 -1 2599 19 1835 2784 217381 46351 3.69166 3.69166 -135.469 -3.69166 0 0 787024. 2723.27 1.04 0.33 0.41 -1 -1 1.04 0.0120759 0.0106086 155 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 18.67 vpr 63.48 MiB -1 -1 0.39 20976 1 0.07 -1 -1 34132 -1 -1 18 26 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65000 26 32 190 182 1 126 76 17 17 289 -1 unnamed_device 24.8 MiB 3.35 418 9996 4123 4950 923 63.5 MiB 0.22 0.00 2.70371 -73.2251 -2.70371 2.70371 2.81 0.000105946 8.1485e-05 0.00853983 0.00661842 36 1235 30 6.89349e+06 253689 648988. 2245.63 4.26 0.0795398 0.0720086 26050 158493 -1 969 17 715 861 71372 17438 2.14365 2.14365 -67.9526 -2.14365 0 0 828058. 2865.25 0.82 0.17 0.22 -1 -1 0.82 0.00591336 0.00494052 75 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 17.79 vpr 63.89 MiB -1 -1 0.38 21128 1 0.06 -1 -1 33600 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65420 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 25.2 MiB 3.25 1037 13527 3557 8136 1834 63.9 MiB 0.22 0.00 4.54937 -129.45 -4.54937 4.54937 2.28 0.000152252 0.000120273 0.0120581 0.00969019 34 2454 22 6.89349e+06 324158 618332. 2139.56 3.94 0.0937873 0.0853824 25762 151098 -1 2055 23 1346 2426 175903 39239 3.5448 3.5448 -121.004 -3.5448 0 0 787024. 2723.27 1.19 0.08 0.32 -1 -1 1.19 0.0445351 0.0432386 119 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 14.96 vpr 63.37 MiB -1 -1 0.22 20976 1 0.07 -1 -1 33288 -1 -1 12 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64888 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 24.8 MiB 1.20 387 9836 3174 4591 2071 63.4 MiB 0.19 0.00 2.35942 -72.6422 -2.35942 2.35942 2.94 9.4139e-05 7.0639e-05 0.00748048 0.00591742 34 1203 34 6.89349e+06 169126 618332. 2139.56 4.50 0.0385843 0.0313698 25762 151098 -1 923 18 587 743 56885 15810 2.15406 2.15406 -75.681 -2.15406 0 0 787024. 2723.27 0.74 0.02 0.17 -1 -1 0.74 0.0058296 0.00487531 65 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 20.68 vpr 63.97 MiB -1 -1 0.26 21432 1 0.23 -1 -1 33540 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65504 32 32 300 245 1 187 84 17 17 289 -1 unnamed_device 25.4 MiB 5.16 1049 14175 4566 7521 2088 64.0 MiB 0.38 0.00 4.89708 -136.784 -4.89708 4.89708 2.42 0.000153844 0.000121804 0.0486893 0.0459391 34 2358 23 6.89349e+06 281877 618332. 2139.56 5.03 0.162207 0.152474 25762 151098 -1 2096 20 1206 1786 142525 31564 3.97096 3.97096 -128.615 -3.97096 0 0 787024. 2723.27 0.91 0.09 0.39 -1 -1 0.91 0.010172 0.00897861 125 24 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 15.77 vpr 63.89 MiB -1 -1 0.59 21128 1 0.04 -1 -1 33924 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65428 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 25.4 MiB 2.37 982 15863 4499 9572 1792 63.9 MiB 0.29 0.00 3.4448 -108.59 -3.4448 3.4448 2.47 0.000160124 0.000127726 0.00992976 0.00796932 30 2387 22 6.89349e+06 436909 556674. 1926.21 2.85 0.333538 0.327146 25186 138497 -1 1959 20 1197 2106 124320 29935 2.79101 2.79101 -104.316 -2.79101 0 0 706193. 2443.58 0.87 0.02 0.32 -1 -1 0.87 0.00564937 0.00503124 130 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 28.86 vpr 64.22 MiB -1 -1 2.74 21280 1 0.08 -1 -1 33544 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65760 32 32 338 277 1 215 87 17 17 289 -1 unnamed_device 25.5 MiB 7.70 1071 15639 5177 7703 2759 64.2 MiB 0.40 0.00 4.83798 -133.537 -4.83798 4.83798 2.27 7.6476e-05 6.0777e-05 0.0142363 0.0114557 36 2758 21 6.89349e+06 324158 648988. 2245.63 6.89 0.0615648 0.0513071 26050 158493 -1 2302 18 1377 2115 163695 35160 3.78876 3.78876 -128.419 -3.78876 0 0 828058. 2865.25 0.86 0.12 0.35 -1 -1 0.86 0.0105428 0.00937975 142 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 20.96 vpr 63.79 MiB -1 -1 0.29 21128 1 0.10 -1 -1 33676 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65316 32 32 284 241 1 177 81 17 17 289 -1 unnamed_device 25.2 MiB 6.22 990 13381 4387 7225 1769 63.8 MiB 0.23 0.00 3.7357 -124.935 -3.7357 3.7357 2.94 0.000158141 0.000125865 0.0131214 0.0104593 34 2226 21 6.89349e+06 239595 618332. 2139.56 4.00 0.577318 0.351787 25762 151098 -1 1912 21 1234 1820 133303 30491 3.11201 3.11201 -123.369 -3.11201 0 0 787024. 2723.27 0.91 0.11 0.30 -1 -1 0.91 0.0103176 0.00900796 112 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 21.87 vpr 63.79 MiB -1 -1 0.34 21128 1 0.08 -1 -1 33752 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65316 30 32 262 227 1 161 79 17 17 289 -1 unnamed_device 25.1 MiB 6.05 909 12754 4897 5949 1908 63.8 MiB 0.07 0.00 4.01762 -115.9 -4.01762 4.01762 2.53 0.000132799 0.00010365 0.0126227 0.00986177 34 2278 33 6.89349e+06 239595 618332. 2139.56 5.98 0.0506795 0.0414166 25762 151098 -1 1998 21 1029 1668 193909 63148 3.61455 3.61455 -117.663 -3.61455 0 0 787024. 2723.27 0.97 0.26 0.25 -1 -1 0.97 0.00960677 0.00840918 104 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 20.37 vpr 63.77 MiB -1 -1 0.57 21280 1 0.25 -1 -1 33740 -1 -1 20 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65304 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 25.1 MiB 5.26 770 10744 2793 6819 1132 63.8 MiB 0.27 0.00 4.27226 -116.484 -4.27226 4.27226 2.46 0.000147524 0.000117958 0.149002 0.00824494 34 2208 21 6.89349e+06 281877 618332. 2139.56 4.76 0.249153 0.102272 25762 151098 -1 1705 19 1133 1910 128252 31463 3.82765 3.82765 -122.486 -3.82765 0 0 787024. 2723.27 1.06 0.17 0.48 -1 -1 1.06 0.146382 0.145231 107 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 15.41 vpr 63.73 MiB -1 -1 0.56 21280 1 0.16 -1 -1 33720 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65256 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 24.9 MiB 2.13 762 11106 3345 5408 2353 63.7 MiB 0.08 0.00 3.95122 -118.483 -3.95122 3.95122 2.73 0.000146478 0.000116101 0.0119581 0.00988952 32 2205 41 6.89349e+06 239595 586450. 2029.24 3.25 0.0422495 0.0356058 25474 144626 -1 1767 20 1241 2040 155089 37004 2.94736 2.94736 -113.578 -2.94736 0 0 744469. 2576.02 0.71 0.14 0.26 -1 -1 0.71 0.00961496 0.00840644 101 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 18.64 vpr 63.83 MiB -1 -1 0.41 21432 1 0.03 -1 -1 33792 -1 -1 18 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65360 31 32 271 231 1 172 81 17 17 289 -1 unnamed_device 25.1 MiB 4.98 947 14081 4218 7922 1941 63.8 MiB 0.13 0.00 3.58045 -111.985 -3.58045 3.58045 2.71 0.000150592 0.000119266 0.0100022 0.00805501 34 2183 24 6.89349e+06 253689 618332. 2139.56 4.24 0.0864726 0.0782567 25762 151098 -1 1888 17 1055 1549 124959 27488 2.96526 2.96526 -111.334 -2.96526 0 0 787024. 2723.27 0.71 0.07 0.24 -1 -1 0.71 0.00751459 0.00642917 108 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 20.80 vpr 63.95 MiB -1 -1 0.33 21280 1 0.11 -1 -1 33804 -1 -1 22 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65484 29 32 291 250 1 185 83 17 17 289 -1 unnamed_device 25.4 MiB 5.88 967 13763 3852 8263 1648 63.9 MiB 0.15 0.00 3.56757 -107.571 -3.56757 3.56757 2.31 0.000149774 0.000117813 0.0925902 0.0901656 34 2211 20 6.89349e+06 310065 618332. 2139.56 3.99 0.219681 0.210222 25762 151098 -1 1919 21 1319 1792 133626 30538 2.68166 2.68166 -105.653 -2.68166 0 0 787024. 2723.27 0.89 0.27 0.28 -1 -1 0.89 0.184225 0.182958 120 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 24.19 vpr 64.19 MiB -1 -1 0.56 21280 1 0.07 -1 -1 33984 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65728 32 32 367 282 1 224 89 17 17 289 -1 unnamed_device 25.5 MiB 6.21 1340 9395 2079 6207 1109 64.2 MiB 0.14 0.00 4.57545 -132.533 -4.57545 4.57545 2.52 8.4226e-05 6.7783e-05 0.00503451 0.00413113 36 2944 20 6.89349e+06 352346 648988. 2245.63 6.30 0.473721 0.358325 26050 158493 -1 2516 22 1406 2458 184861 40610 3.93936 3.93936 -129.14 -3.93936 0 0 828058. 2865.25 0.90 0.21 0.26 -1 -1 0.90 0.0103301 0.00902842 159 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 25.06 vpr 64.46 MiB -1 -1 0.47 21432 1 0.02 -1 -1 33840 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66004 32 32 391 311 1 250 88 17 17 289 -1 unnamed_device 25.7 MiB 7.15 1272 11983 3218 7752 1013 64.5 MiB 0.30 0.05 4.72237 -154.591 -4.72237 4.72237 2.46 0.000182637 0.000146584 0.158053 0.155323 36 3300 35 6.89349e+06 338252 648988. 2245.63 7.15 0.301791 0.289655 26050 158493 -1 2824 20 2224 3106 243367 52681 3.69635 3.69635 -143.014 -3.69635 0 0 828058. 2865.25 0.98 0.33 0.29 -1 -1 0.98 0.123518 0.122076 168 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 18.79 vpr 63.70 MiB -1 -1 0.47 21432 1 0.17 -1 -1 33696 -1 -1 18 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65224 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 25.2 MiB 4.48 841 12681 4546 5579 2556 63.7 MiB 0.09 0.00 4.0919 -121.826 -4.0919 4.0919 2.46 6.4517e-05 4.9961e-05 0.0111589 0.00889523 34 2184 25 6.89349e+06 253689 618332. 2139.56 4.61 0.052851 0.0435675 25762 151098 -1 1749 31 1232 2059 335521 138536 3.03485 3.03485 -111.97 -3.03485 0 0 787024. 2723.27 1.07 0.37 0.25 -1 -1 1.07 0.0107278 0.00910154 109 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 23.18 vpr 64.05 MiB -1 -1 0.33 21280 1 0.02 -1 -1 33904 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65584 31 32 370 297 1 235 88 17 17 289 -1 unnamed_device 25.4 MiB 7.83 1305 10618 3120 6525 973 64.0 MiB 0.22 0.00 4.27101 -135.48 -4.27101 4.27101 2.47 0.000182376 0.000148056 0.0114622 0.00929948 34 3173 45 6.89349e+06 352346 618332. 2139.56 5.47 0.182183 0.17048 25762 151098 -1 2697 22 1768 2621 206634 45615 3.61005 3.61005 -135.072 -3.61005 0 0 787024. 2723.27 0.90 0.16 0.25 -1 -1 0.90 0.0261556 0.0244935 160 61 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 27.70 vpr 64.15 MiB -1 -1 0.35 21432 1 0.06 -1 -1 33864 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 31 32 377 302 1 241 88 17 17 289 -1 unnamed_device 25.5 MiB 8.63 1252 16858 5939 8225 2694 64.1 MiB 0.39 0.00 5.45066 -163.759 -5.45066 5.45066 2.65 0.000229146 0.000188047 0.0179937 0.014615 36 3174 28 6.89349e+06 352346 648988. 2245.63 8.51 0.276731 0.165252 26050 158493 -1 2710 20 2061 2993 257997 53984 4.53995 4.53995 -156.682 -4.53995 0 0 828058. 2865.25 1.04 0.13 0.25 -1 -1 1.04 0.0115974 0.0101953 163 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 23.94 vpr 64.57 MiB -1 -1 0.50 21736 1 0.16 -1 -1 33784 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66116 31 32 383 305 1 240 88 17 17 289 -1 unnamed_device 25.8 MiB 7.73 1213 15688 5612 7679 2397 64.6 MiB 0.34 0.00 5.84064 -169.918 -5.84064 5.84064 2.54 0.000207408 0.000159411 0.0171914 0.0138646 34 3647 42 6.89349e+06 352346 618332. 2139.56 6.28 0.144176 0.132151 25762 151098 -1 2864 25 2196 3313 285768 66829 5.40808 5.40808 -173.675 -5.40808 0 0 787024. 2723.27 0.88 0.35 0.45 -1 -1 0.88 0.193491 0.191939 166 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 21.49 vpr 64.15 MiB -1 -1 0.44 21432 1 0.12 -1 -1 33824 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65692 31 32 352 285 1 223 87 17 17 289 -1 unnamed_device 25.5 MiB 6.29 1263 9879 2667 6477 735 64.2 MiB 0.18 0.00 4.11004 -128.233 -4.11004 4.11004 2.30 8.4418e-05 6.5533e-05 0.0085894 0.00702498 36 2766 20 6.89349e+06 338252 648988. 2245.63 5.15 0.199224 0.110009 26050 158493 -1 2415 22 1610 2307 167831 36881 3.20466 3.20466 -120.439 -3.20466 0 0 828058. 2865.25 1.00 0.07 0.21 -1 -1 1.00 0.0124044 0.0106203 148 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 22.97 vpr 63.79 MiB -1 -1 0.40 21128 1 0.02 -1 -1 33604 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65324 32 32 291 242 1 188 84 17 17 289 -1 unnamed_device 25.1 MiB 5.90 1023 13992 4497 7044 2451 63.8 MiB 0.36 0.00 4.45885 -119.521 -4.45885 4.45885 2.43 6.2569e-05 4.934e-05 0.0111908 0.00876703 34 2549 18 6.89349e+06 281877 618332. 2139.56 5.60 0.278267 0.0799272 25762 151098 -1 2088 21 1165 1640 132247 28991 3.7047 3.7047 -118.264 -3.7047 0 0 787024. 2723.27 0.73 0.07 0.20 -1 -1 0.73 0.0104538 0.00903745 120 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 28.93 vpr 64.66 MiB -1 -1 0.75 21888 1 0.16 -1 -1 33936 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66216 32 32 457 356 1 296 95 17 17 289 -1 unnamed_device 26.0 MiB 7.24 1484 18239 5692 9124 3423 64.7 MiB 0.31 0.00 5.31607 -168.894 -5.31607 5.31607 2.48 0.000202766 0.000164484 0.163627 0.160066 36 4388 31 6.89349e+06 436909 648988. 2245.63 11.40 0.371241 0.358157 26050 158493 -1 3294 23 2757 4157 326606 70776 4.48819 4.48819 -160.677 -4.48819 0 0 828058. 2865.25 0.85 0.27 0.39 -1 -1 0.85 0.0108999 0.00935499 203 87 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 20.37 vpr 63.79 MiB -1 -1 0.41 21128 1 0.22 -1 -1 33616 -1 -1 18 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65316 31 32 261 225 1 171 81 17 17 289 -1 unnamed_device 25.1 MiB 5.34 846 14606 5266 7102 2238 63.8 MiB 0.24 0.00 3.7437 -110.334 -3.7437 3.7437 2.80 0.000133293 0.000105081 0.012947 0.0103795 34 2165 23 6.89349e+06 253689 618332. 2139.56 4.19 0.204173 0.195921 25762 151098 -1 1930 20 1178 1601 118497 27392 3.02146 3.02146 -107.83 -3.02146 0 0 787024. 2723.27 1.01 0.14 0.37 -1 -1 1.01 0.117757 0.116637 106 28 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 18.75 vpr 64.16 MiB -1 -1 0.47 21432 1 0.19 -1 -1 33900 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65700 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 25.4 MiB 5.09 1166 14639 3979 9152 1508 64.2 MiB 0.31 0.00 4.78472 -144.026 -4.78472 4.78472 2.32 0.000162417 0.000131542 0.0144069 0.0117087 30 2873 22 6.89349e+06 324158 556674. 1926.21 3.01 0.0414557 0.0347172 25186 138497 -1 2298 18 1267 2011 140907 30722 3.7785 3.7785 -134.678 -3.7785 0 0 706193. 2443.58 0.98 0.07 0.23 -1 -1 0.98 0.00949522 0.00836261 140 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 23.51 vpr 64.31 MiB -1 -1 0.49 21584 1 0.07 -1 -1 33708 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65852 32 32 349 284 1 222 87 17 17 289 -1 unnamed_device 25.5 MiB 7.31 1247 9495 2379 6397 719 64.3 MiB 0.22 0.00 4.43179 -132.548 -4.43179 4.43179 2.33 0.000181305 0.00014822 0.0100271 0.00815757 34 3354 35 6.89349e+06 324158 618332. 2139.56 5.32 0.0605553 0.0502183 25762 151098 -1 2766 20 1589 2479 199855 43969 3.7586 3.7586 -136.828 -3.7586 0 0 787024. 2723.27 1.17 0.21 0.35 -1 -1 1.17 0.0114649 0.010084 149 53 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 15.31 vpr 63.92 MiB -1 -1 0.33 21280 1 0.06 -1 -1 33716 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65456 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 25.2 MiB 2.03 983 11748 2712 8028 1008 63.9 MiB 0.31 0.00 4.26729 -129.037 -4.26729 4.26729 2.47 0.000158889 0.000127092 0.0103642 0.00837274 30 2359 20 6.89349e+06 366440 556674. 1926.21 2.71 0.135345 0.129445 25186 138497 -1 2080 23 1168 2312 157273 35494 3.5399 3.5399 -124.689 -3.5399 0 0 706193. 2443.58 0.85 0.04 0.28 -1 -1 0.85 0.010869 0.00949345 123 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 23.38 vpr 64.15 MiB -1 -1 0.40 21584 1 0.03 -1 -1 33808 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65692 32 32 353 287 1 220 87 17 17 289 -1 unnamed_device 25.5 MiB 6.08 1053 12951 4521 6182 2248 64.2 MiB 0.21 0.00 4.44301 -128.576 -4.44301 4.44301 2.52 0.000166899 0.000132888 0.0202605 0.0111968 36 2766 29 6.89349e+06 324158 648988. 2245.63 6.60 0.0667079 0.0499854 26050 158493 -1 2198 23 1688 2397 202147 44724 3.11036 3.11036 -115.539 -3.11036 0 0 828058. 2865.25 1.03 0.15 0.32 -1 -1 1.03 0.0118027 0.0102965 148 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 24.13 vpr 64.14 MiB -1 -1 0.41 21432 1 0.11 -1 -1 33712 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65684 32 32 361 291 1 233 88 17 17 289 -1 unnamed_device 25.6 MiB 6.97 1202 11788 3122 7816 850 64.1 MiB 0.25 0.10 4.19329 -133.825 -4.19329 4.19329 2.49 0.000183749 0.000148657 0.0126274 0.010324 36 2908 34 6.89349e+06 338252 648988. 2245.63 6.10 0.179532 0.0537203 26050 158493 -1 2519 23 1772 2730 228071 48644 3.66955 3.66955 -130.973 -3.66955 0 0 828058. 2865.25 0.98 0.45 0.48 -1 -1 0.98 0.0136083 0.012064 154 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 21.47 vpr 64.14 MiB -1 -1 0.32 21584 1 0.06 -1 -1 33708 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65684 32 32 382 305 1 243 90 17 17 289 -1 unnamed_device 25.6 MiB 6.79 1324 15969 4574 9361 2034 64.1 MiB 0.44 0.00 4.16268 -137.652 -4.16268 4.16268 2.63 0.000185264 0.000149438 0.0173496 0.014153 34 3306 30 6.89349e+06 366440 618332. 2139.56 4.25 0.0703779 0.0585609 25762 151098 -1 2613 35 2421 3460 433837 152341 3.23786 3.23786 -127.791 -3.23786 0 0 787024. 2723.27 0.80 0.32 0.21 -1 -1 0.80 0.0174378 0.0151386 164 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 20.71 vpr 63.71 MiB -1 -1 0.42 21128 1 0.23 -1 -1 33856 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65240 32 32 306 248 1 188 85 17 17 289 -1 unnamed_device 25.2 MiB 5.93 1043 15337 4572 8852 1913 63.7 MiB 0.27 0.00 4.60527 -135.983 -4.60527 4.60527 2.38 0.000151061 0.000118608 0.00866557 0.00693249 34 2447 21 6.89349e+06 295971 618332. 2139.56 4.67 0.184195 0.175787 25762 151098 -1 2097 19 1155 1733 125369 28657 4.00016 4.00016 -131.526 -4.00016 0 0 787024. 2723.27 0.99 0.06 0.49 -1 -1 0.99 0.00991432 0.00858093 128 24 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 21.76 vpr 63.96 MiB -1 -1 0.74 21584 1 0.17 -1 -1 33968 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65492 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 25.2 MiB 5.06 999 13883 3878 7792 2213 64.0 MiB 0.30 0.00 4.84598 -138.728 -4.84598 4.84598 2.74 0.000152575 0.00012219 0.122713 0.120135 34 2662 35 6.89349e+06 310065 618332. 2139.56 5.00 0.206561 0.1953 25762 151098 -1 2249 18 1376 1994 140570 32119 3.8456 3.8456 -130.88 -3.8456 0 0 787024. 2723.27 1.03 0.11 0.43 -1 -1 1.03 0.00974207 0.00861996 135 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 20.99 vpr 64.38 MiB -1 -1 0.47 21584 1 0.02 -1 -1 33664 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65924 31 32 373 299 1 227 87 17 17 289 -1 unnamed_device 25.5 MiB 4.92 1200 9111 2304 5966 841 64.4 MiB 0.05 0.00 4.69282 -141.391 -4.69282 4.69282 2.41 0.000178572 0.000145133 0.00648746 0.00525394 34 3322 27 6.89349e+06 338252 618332. 2139.56 6.69 0.0559609 0.0465733 25762 151098 -1 2687 20 1784 2831 220165 49356 4.12199 4.12199 -138.153 -4.12199 0 0 787024. 2723.27 0.90 0.27 0.37 -1 -1 0.90 0.0119034 0.0105188 156 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 26.04 vpr 64.46 MiB -1 -1 0.48 21584 1 0.19 -1 -1 33508 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66008 32 32 387 315 1 249 89 17 17 289 -1 unnamed_device 25.7 MiB 8.53 1343 12167 3516 8024 627 64.5 MiB 0.31 0.04 4.50405 -138.501 -4.50405 4.50405 2.48 0.0390411 0.0390027 0.242501 0.239967 38 3202 26 6.89349e+06 352346 678818. 2348.85 5.83 0.293853 0.28163 26626 170182 -1 2797 19 1761 2600 192101 40142 3.86596 3.86596 -136.397 -3.86596 0 0 902133. 3121.57 0.87 0.04 0.37 -1 -1 0.87 0.00867032 0.00763446 166 77 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 19.98 vpr 63.59 MiB -1 -1 0.50 21128 1 0.12 -1 -1 33556 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65112 32 32 251 219 1 156 79 17 17 289 -1 unnamed_device 25.1 MiB 5.65 626 7008 1670 4854 484 63.6 MiB 0.04 0.00 3.61459 -104.917 -3.61459 3.61459 2.67 0.000127579 9.9978e-05 0.00710085 0.00559399 34 2255 39 6.89349e+06 211408 618332. 2139.56 5.01 0.0472596 0.0387255 25762 151098 -1 1534 21 1103 1639 109289 28405 2.72791 2.72791 -97.7045 -2.72791 0 0 787024. 2723.27 0.88 0.14 0.38 -1 -1 0.88 0.119369 0.118679 96 23 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 21.84 vpr 64.22 MiB -1 -1 0.29 21280 1 0.05 -1 -1 33924 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65764 32 32 341 285 1 219 84 17 17 289 -1 unnamed_device 25.5 MiB 4.38 1155 12345 3444 6961 1940 64.2 MiB 0.16 0.00 4.26535 -147.353 -4.26535 4.26535 2.87 0.000160263 0.000127956 0.0299192 0.0270681 34 3076 30 6.89349e+06 281877 618332. 2139.56 5.54 0.184282 0.173925 25762 151098 -1 2487 22 1956 2642 242136 49222 3.74935 3.74935 -148.334 -3.74935 0 0 787024. 2723.27 1.06 0.16 0.53 -1 -1 1.06 0.0134525 0.0116382 138 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 25.54 vpr 64.24 MiB -1 -1 0.28 21584 1 0.19 -1 -1 33952 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65780 32 32 387 293 1 237 89 17 17 289 -1 unnamed_device 25.7 MiB 7.14 1356 17711 6423 8690 2598 64.2 MiB 0.29 0.00 5.51412 -162.32 -5.51412 5.51412 2.28 0.000243559 0.000202251 0.0641045 0.0604416 34 3734 45 6.89349e+06 352346 618332. 2139.56 7.59 0.481313 0.468255 25762 151098 -1 2852 21 1994 3095 235675 53439 4.68885 4.68885 -157.727 -4.68885 0 0 787024. 2723.27 0.94 0.30 0.35 -1 -1 0.94 0.125407 0.123868 168 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 24.40 vpr 64.20 MiB -1 -1 0.45 21432 1 0.08 -1 -1 33936 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 32 32 340 270 1 212 86 17 17 289 -1 unnamed_device 25.5 MiB 6.80 1176 13694 3960 8110 1624 64.2 MiB 0.26 0.00 4.43296 -141.765 -4.43296 4.43296 2.85 7.9431e-05 6.1889e-05 0.0112061 0.00943761 36 2597 19 6.89349e+06 310065 648988. 2245.63 6.72 0.146085 0.0507587 26050 158493 -1 2335 18 1526 2255 185076 38993 3.01051 3.01051 -123.037 -3.01051 0 0 828058. 2865.25 0.69 0.16 0.28 -1 -1 0.69 0.126641 0.125282 144 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 20.00 vpr 63.73 MiB -1 -1 0.27 21280 1 0.09 -1 -1 33768 -1 -1 27 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65260 30 32 278 235 1 175 89 17 17 289 -1 unnamed_device 25.2 MiB 4.79 953 10979 2941 7323 715 63.7 MiB 0.21 0.00 4.13238 -125.523 -4.13238 4.13238 2.81 0.00015005 0.000118858 0.00707004 0.00557941 34 2254 24 6.89349e+06 380534 618332. 2139.56 4.82 0.0457448 0.0376598 25762 151098 -1 2013 22 1356 2162 198958 42605 3.39485 3.39485 -121.521 -3.39485 0 0 787024. 2723.27 1.02 0.15 0.36 -1 -1 1.02 0.0523629 0.00843968 118 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 34.47 vpr 64.69 MiB -1 -1 0.34 21736 1 0.17 -1 -1 33908 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66244 32 32 431 332 1 270 91 17 17 289 -1 unnamed_device 26.0 MiB 11.68 1587 13555 4266 6864 2425 64.7 MiB 0.44 0.00 6.66529 -189.759 -6.66529 6.66529 2.09 0.000191159 0.000153143 0.0559942 0.053203 36 3787 26 6.89349e+06 380534 648988. 2245.63 11.99 0.18235 0.133739 26050 158493 -1 3300 21 2337 3726 323115 67739 5.11714 5.11714 -175.516 -5.11714 0 0 828058. 2865.25 1.19 0.33 0.21 -1 -1 1.19 0.155697 0.153936 188 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 20.23 vpr 64.16 MiB -1 -1 0.69 21584 1 0.03 -1 -1 33960 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65696 32 32 336 268 1 205 85 17 17 289 -1 unnamed_device 25.4 MiB 4.71 1084 14035 4347 7601 2087 64.2 MiB 0.22 0.00 4.71732 -146.054 -4.71732 4.71732 3.00 0.000158516 0.000125927 0.014086 0.011392 34 2665 25 6.89349e+06 295971 618332. 2139.56 5.05 0.152688 0.143841 25762 151098 -1 2181 22 1699 2407 168402 38947 3.8375 3.8375 -138.918 -3.8375 0 0 787024. 2723.27 0.82 0.02 0.30 -1 -1 0.82 0.00659974 0.00590448 139 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 17.30 vpr 63.68 MiB -1 -1 0.48 20976 1 0.03 -1 -1 33484 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65204 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 25.1 MiB 2.05 733 14713 4574 7961 2178 63.7 MiB 0.39 0.00 3.6346 -103.696 -3.6346 3.6346 2.99 0.000133784 0.000104322 0.127527 0.00840601 34 1906 21 6.89349e+06 338252 618332. 2139.56 4.33 0.257882 0.133671 25762 151098 -1 1531 18 844 1462 108240 25496 2.80501 2.80501 -101.087 -2.80501 0 0 787024. 2723.27 0.88 0.14 0.35 -1 -1 0.88 0.00724094 0.00628905 94 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 21.96 vpr 64.11 MiB -1 -1 0.46 21280 1 0.21 -1 -1 33596 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65644 32 32 349 273 1 214 87 17 17 289 -1 unnamed_device 25.4 MiB 5.87 1286 14679 3997 8814 1868 64.1 MiB 0.28 0.00 5.36187 -142.911 -5.36187 5.36187 2.16 0.000175792 0.00014046 0.0148892 0.0120684 36 2850 21 6.89349e+06 324158 648988. 2245.63 6.61 0.122603 0.111944 26050 158493 -1 2566 22 1351 2504 229048 46874 4.49165 4.49165 -140.844 -4.49165 0 0 828058. 2865.25 0.96 0.29 0.37 -1 -1 0.96 0.116779 0.115266 149 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 15.99 vpr 63.72 MiB -1 -1 0.25 21128 1 0.23 -1 -1 33748 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65252 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 25.1 MiB 2.26 839 14303 4497 7906 1900 63.7 MiB 0.21 0.00 3.56945 -113.475 -3.56945 3.56945 2.32 0.000137515 0.000108184 0.011778 0.00932198 34 2028 26 6.89349e+06 267783 618332. 2139.56 3.74 0.159196 0.151276 25762 151098 -1 1724 20 1026 1876 147325 31715 2.81586 2.81586 -107.951 -2.81586 0 0 787024. 2723.27 0.97 0.08 0.30 -1 -1 0.97 0.00823069 0.00682716 98 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 20.40 vpr 63.73 MiB -1 -1 0.44 21128 1 0.17 -1 -1 33900 -1 -1 20 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65256 30 32 278 235 1 175 82 17 17 289 -1 unnamed_device 25.2 MiB 4.82 765 9872 2693 6531 648 63.7 MiB 0.23 0.00 4.06868 -115.875 -4.06868 4.06868 2.47 0.000138523 0.000109592 0.103906 0.102106 36 2037 21 6.89349e+06 281877 648988. 2245.63 5.18 0.261776 0.25349 26050 158493 -1 1725 19 1151 1651 123279 28535 3.27511 3.27511 -112.954 -3.27511 0 0 828058. 2865.25 1.00 0.13 0.31 -1 -1 1.00 0.0078477 0.00685102 113 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 26.71 vpr 64.15 MiB -1 -1 0.32 21280 1 0.02 -1 -1 33952 -1 -1 26 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65692 29 32 355 287 1 224 87 17 17 289 -1 unnamed_device 25.5 MiB 11.40 1238 16215 4925 9204 2086 64.2 MiB 0.26 0.00 4.47797 -134.56 -4.47797 4.47797 2.34 0.000181848 0.000149429 0.119696 0.116428 34 3148 29 6.89349e+06 366440 618332. 2139.56 5.06 0.335322 0.154526 25762 151098 -1 2482 23 1798 2645 192061 44510 3.62725 3.62725 -129.121 -3.62725 0 0 787024. 2723.27 1.11 0.14 0.34 -1 -1 1.11 0.0124727 0.0109654 154 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 22.38 vpr 64.33 MiB -1 -1 0.62 21128 1 0.06 -1 -1 33576 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65876 32 32 358 289 1 230 86 17 17 289 -1 unnamed_device 25.5 MiB 5.93 1158 9158 2522 5945 691 64.3 MiB 0.32 0.00 5.08364 -155.965 -5.08364 5.08364 2.12 0.00021094 0.000172734 0.0105648 0.00865069 34 3265 45 6.89349e+06 310065 618332. 2139.56 5.59 0.176481 0.16554 25762 151098 -1 2677 20 1821 2669 195441 45785 4.26489 4.26489 -151.208 -4.26489 0 0 787024. 2723.27 1.01 0.06 0.25 -1 -1 1.01 0.0111339 0.00967436 151 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 21.35 vpr 64.05 MiB -1 -1 0.31 21280 1 0.21 -1 -1 33604 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65584 32 32 353 285 1 228 87 17 17 289 -1 unnamed_device 25.4 MiB 5.39 1179 9495 2108 6587 800 64.0 MiB 0.27 0.00 5.42099 -154.483 -5.42099 5.42099 2.69 0.000231471 0.000194874 0.0108126 0.00894246 36 3089 22 6.89349e+06 324158 648988. 2245.63 6.21 0.472744 0.13703 26050 158493 -1 2679 22 1863 2759 218703 47951 4.88775 4.88775 -161.286 -4.88775 0 0 828058. 2865.25 0.90 0.10 0.44 -1 -1 0.90 0.0131315 0.0115332 150 51 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 17.67 vpr 63.82 MiB -1 -1 0.41 21280 1 0.27 -1 -1 33524 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65356 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 25.2 MiB 5.01 809 7684 1992 5210 482 63.8 MiB 0.11 0.00 4.51797 -123.273 -4.51797 4.51797 2.40 0.000137539 0.000109505 0.00799187 0.00644564 30 2237 24 6.89349e+06 211408 556674. 1926.21 2.79 0.033585 0.0280054 25186 138497 -1 1774 18 900 1288 91307 20980 3.18905 3.18905 -113.358 -3.18905 0 0 706193. 2443.58 0.91 0.03 0.31 -1 -1 0.91 0.00875331 0.00772807 105 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 20.03 vpr 64.12 MiB -1 -1 0.46 21280 1 0.07 -1 -1 33632 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65660 31 32 319 272 1 203 83 17 17 289 -1 unnamed_device 25.4 MiB 5.82 1070 14483 4888 7061 2534 64.1 MiB 0.41 0.00 3.67535 -124.357 -3.67535 3.67535 2.74 0.000155012 0.000123106 0.0146842 0.0117282 36 2551 21 6.89349e+06 281877 648988. 2245.63 4.10 0.0533338 0.0440892 26050 158493 -1 2220 16 1362 1896 131066 29818 3.42295 3.42295 -124.954 -3.42295 0 0 828058. 2865.25 1.06 0.22 0.25 -1 -1 1.06 0.00921183 0.00807401 131 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 24.57 vpr 64.20 MiB -1 -1 0.45 21280 1 0.13 -1 -1 33880 -1 -1 26 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65744 30 32 329 273 1 213 88 17 17 289 -1 unnamed_device 25.5 MiB 7.78 978 15493 5829 7048 2616 64.2 MiB 0.18 0.00 3.74244 -106.797 -3.74244 3.74244 2.75 0.000158246 0.000126657 0.0150579 0.0121518 36 2729 30 6.89349e+06 366440 648988. 2245.63 6.40 0.173613 0.162962 26050 158493 -1 2255 25 1674 2511 187286 43762 3.33836 3.33836 -110.581 -3.33836 0 0 828058. 2865.25 1.18 0.09 0.33 -1 -1 1.18 0.0369334 0.0107638 142 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 19.91 vpr 63.88 MiB -1 -1 0.67 21128 1 0.16 -1 -1 33764 -1 -1 23 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65408 28 32 277 229 1 171 83 17 17 289 -1 unnamed_device 25.2 MiB 4.57 909 14123 3981 8851 1291 63.9 MiB 0.26 0.00 4.4511 -113.633 -4.4511 4.4511 2.39 0.000133776 0.000105272 0.180451 0.178298 34 2249 22 6.89349e+06 324158 618332. 2139.56 4.87 0.217041 0.208433 25762 151098 -1 1933 21 1113 1927 152728 34237 3.56526 3.56526 -111.597 -3.56526 0 0 787024. 2723.27 0.97 0.04 0.50 -1 -1 0.97 0.00940156 0.00821871 119 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 22.57 vpr 63.92 MiB -1 -1 0.59 21432 1 0.15 -1 -1 33852 -1 -1 21 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65456 30 32 317 269 1 202 83 17 17 289 -1 unnamed_device 25.4 MiB 8.14 1061 15203 4868 8207 2128 63.9 MiB 0.30 0.00 4.60916 -138.593 -4.60916 4.60916 2.62 0.000153547 0.000121529 0.0147817 0.0119665 34 2809 29 6.89349e+06 295971 618332. 2139.56 4.94 0.146731 0.136262 25762 151098 -1 2270 20 1711 2405 200868 43200 3.8459 3.8459 -136.425 -3.8459 0 0 787024. 2723.27 0.69 0.18 0.33 -1 -1 0.69 0.00728554 0.00641479 130 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 23.77 vpr 63.92 MiB -1 -1 0.40 21280 1 0.20 -1 -1 33724 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65452 32 32 335 282 1 222 84 17 17 289 -1 unnamed_device 25.4 MiB 7.03 1154 13443 3441 8088 1914 63.9 MiB 0.34 0.00 4.07374 -139.312 -4.07374 4.07374 2.27 0.00016575 0.00012968 0.218277 0.215377 36 2669 24 6.89349e+06 281877 648988. 2245.63 5.63 0.266215 0.255767 26050 158493 -1 2331 22 1487 1998 151487 33232 3.09105 3.09105 -125.673 -3.09105 0 0 828058. 2865.25 1.14 0.02 0.28 -1 -1 1.14 0.00550433 0.00469847 138 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 20.36 vpr 63.93 MiB -1 -1 0.27 21128 1 0.42 -1 -1 33604 -1 -1 31 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65464 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 25.4 MiB 2.24 955 9679 2173 6860 646 63.9 MiB 0.24 0.00 4.69362 -132.871 -4.69362 4.69362 2.35 0.000150226 0.000120644 0.0407615 0.00696356 30 2522 22 6.89349e+06 436909 556674. 1926.21 9.30 0.165277 0.123646 25186 138497 -1 1987 18 919 1672 119220 26827 3.39635 3.39635 -119.763 -3.39635 0 0 706193. 2443.58 0.89 0.05 0.34 -1 -1 0.89 0.00911603 0.00806411 129 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 25.41 vpr 64.28 MiB -1 -1 0.38 21432 1 0.23 -1 -1 33972 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65820 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 25.5 MiB 6.60 941 15063 4400 7415 3248 64.3 MiB 0.37 0.00 4.82162 -147.572 -4.82162 4.82162 2.15 0.000162229 0.000129513 0.0841057 0.0811864 36 2908 28 6.89349e+06 324158 648988. 2245.63 7.91 0.130746 0.120406 26050 158493 -1 2183 23 1824 2782 213354 50451 4.03946 4.03946 -138.68 -4.03946 0 0 828058. 2865.25 0.85 0.19 0.27 -1 -1 0.85 0.0881961 0.0864791 148 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 24.97 vpr 64.44 MiB -1 -1 0.40 21432 1 0.07 -1 -1 33548 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65984 32 32 385 308 1 244 91 17 17 289 -1 unnamed_device 25.7 MiB 6.13 1350 12331 3666 6215 2450 64.4 MiB 0.28 0.00 5.44225 -166.483 -5.44225 5.44225 2.09 0.000204204 0.000167247 0.012945 0.0105622 34 3934 50 6.89349e+06 380534 618332. 2139.56 9.26 0.282495 0.269832 25762 151098 -1 2785 21 2139 3000 277051 60549 4.55095 4.55095 -162.881 -4.55095 0 0 787024. 2723.27 0.77 0.43 0.28 -1 -1 0.77 0.175876 0.174293 164 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 26.30 vpr 64.32 MiB -1 -1 0.62 21432 1 0.13 -1 -1 33596 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65864 32 32 387 309 1 248 90 17 17 289 -1 unnamed_device 25.5 MiB 6.74 1256 15366 4541 7767 3058 64.3 MiB 0.26 0.00 4.55797 -146.919 -4.55797 4.55797 2.46 0.000173389 0.000138913 0.0168525 0.0137073 36 3206 25 6.89349e+06 366440 648988. 2245.63 8.46 0.0670195 0.055905 26050 158493 -1 2691 20 1778 2589 202528 44258 3.77455 3.77455 -140.722 -3.77455 0 0 828058. 2865.25 0.95 0.23 0.31 -1 -1 0.95 0.0122185 0.0108175 164 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 20.54 vpr 63.87 MiB -1 -1 0.39 21128 1 0.02 -1 -1 33888 -1 -1 21 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65404 30 32 272 232 1 176 83 17 17 289 -1 unnamed_device 25.2 MiB 5.47 896 15383 5005 7997 2381 63.9 MiB 0.28 0.00 4.16933 -123.957 -4.16933 4.16933 2.83 0.000145567 0.000105814 0.0132442 0.0105646 34 2255 20 6.89349e+06 295971 618332. 2139.56 4.00 0.0482679 0.0398604 25762 151098 -1 1950 23 1239 1726 166521 34490 3.09671 3.09671 -112.07 -3.09671 0 0 787024. 2723.27 0.87 0.19 0.30 -1 -1 0.87 0.010198 0.00885843 112 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 25.43 vpr 64.20 MiB -1 -1 0.39 21432 1 0.17 -1 -1 34064 -1 -1 26 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 30 32 375 299 1 236 88 17 17 289 -1 unnamed_device 25.5 MiB 8.51 1198 5938 1274 4302 362 64.2 MiB 0.18 0.00 5.49187 -164.452 -5.49187 5.49187 2.04 0.000193889 0.000145403 0.0296397 0.0282922 34 3051 34 6.89349e+06 366440 618332. 2139.56 5.80 0.0770409 0.068139 25762 151098 -1 2580 20 1865 2528 220135 47612 4.59669 4.59669 -160.513 -4.59669 0 0 787024. 2723.27 1.21 0.25 0.47 -1 -1 1.21 0.0115218 0.0102854 162 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 20.64 vpr 64.15 MiB -1 -1 0.29 21280 1 0.02 -1 -1 33696 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65692 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 25.4 MiB 5.30 1140 15255 5147 8101 2007 64.2 MiB 0.45 0.00 5.21835 -154.719 -5.21835 5.21835 2.00 0.000163035 0.000128621 0.0157478 0.0126687 34 2848 21 6.89349e+06 324158 618332. 2139.56 5.75 0.224547 0.0521443 25762 151098 -1 2452 21 1640 2738 249504 52720 4.0231 4.0231 -141.136 -4.0231 0 0 787024. 2723.27 1.07 0.16 0.25 -1 -1 1.07 0.00805975 0.00704008 139 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 23.77 vpr 64.03 MiB -1 -1 0.49 21432 1 0.17 -1 -1 33776 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65568 31 32 340 275 1 211 86 17 17 289 -1 unnamed_device 25.5 MiB 6.83 1179 13505 4412 7143 1950 64.0 MiB 0.19 0.00 4.98904 -144.643 -4.98904 4.98904 2.90 0.000159733 0.000128128 0.0137356 0.0111582 38 2759 30 6.89349e+06 324158 678818. 2348.85 5.97 0.184194 0.173879 26626 170182 -1 2440 19 1314 2028 181681 37011 4.15485 4.15485 -140.802 -4.15485 0 0 902133. 3121.57 1.00 0.04 0.23 -1 -1 1.00 0.0102647 0.00907893 142 47 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 24.91 vpr 64.27 MiB -1 -1 0.49 21280 1 0.18 -1 -1 33832 -1 -1 26 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65812 30 32 377 310 1 239 88 17 17 289 -1 unnamed_device 25.7 MiB 7.78 1244 15103 4566 8211 2326 64.3 MiB 0.26 0.00 4.69488 -139.913 -4.69488 4.69488 2.40 0.000185554 0.00015161 0.0159818 0.0129162 36 2900 49 6.89349e+06 366440 648988. 2245.63 6.60 0.178138 0.166468 26050 158493 -1 2417 22 1825 2690 193242 42062 3.69799 3.69799 -131.492 -3.69799 0 0 828058. 2865.25 0.86 0.10 0.31 -1 -1 0.86 0.0090156 0.00780908 162 83 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 26.99 vpr 64.36 MiB -1 -1 0.43 21280 1 0.21 -1 -1 33832 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65900 32 32 365 294 1 230 87 17 17 289 -1 unnamed_device 25.7 MiB 9.80 1232 16599 5975 8052 2572 64.4 MiB 0.48 0.00 5.50928 -158.621 -5.50928 5.50928 2.77 0.000170116 0.000135799 0.0172355 0.013889 34 3271 23 6.89349e+06 324158 618332. 2139.56 5.55 0.184658 0.173751 25762 151098 -1 2589 22 1900 2887 231938 49963 4.39435 4.39435 -155.2 -4.39435 0 0 787024. 2723.27 1.16 0.11 0.32 -1 -1 1.16 0.0122461 0.0106283 155 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 21.88 vpr 64.45 MiB -1 -1 0.35 21280 1 0.06 -1 -1 33804 -1 -1 30 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65996 29 32 378 310 1 247 91 17 17 289 -1 unnamed_device 25.8 MiB 5.97 1305 10699 2770 6940 989 64.4 MiB 0.29 0.00 4.6273 -137.721 -4.6273 4.6273 2.25 0.000190568 0.000153878 0.177611 0.00927994 36 2780 26 6.89349e+06 422815 648988. 2245.63 6.12 0.314205 0.138065 26050 158493 -1 2445 20 1548 2135 144509 33144 3.4748 3.4748 -124.133 -3.4748 0 0 828058. 2865.25 0.92 0.16 0.47 -1 -1 0.92 0.0123846 0.0109614 166 85 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 13.98 vpr 63.70 MiB -1 -1 0.43 20976 1 0.03 -1 -1 34100 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65228 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 25.1 MiB 1.68 779 13381 4026 7576 1779 63.7 MiB 0.13 0.00 4.15903 -123.364 -4.15903 4.15903 2.35 0.000129179 0.000101415 0.0116914 0.00939573 30 1811 19 6.89349e+06 239595 556674. 1926.21 2.60 0.0333979 0.0276437 25186 138497 -1 1542 20 745 1194 79326 18467 2.80671 2.80671 -105.542 -2.80671 0 0 706193. 2443.58 1.17 0.04 0.48 -1 -1 1.17 0.0170474 0.0160413 96 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 22.89 vpr 64.39 MiB -1 -1 0.28 21280 1 0.20 -1 -1 33532 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65936 32 32 373 302 1 241 89 17 17 289 -1 unnamed_device 25.7 MiB 5.92 1363 14741 4757 7501 2483 64.4 MiB 0.11 0.00 5.7749 -170.63 -5.7749 5.7749 2.96 0.000165631 0.00013264 0.010877 0.00874846 38 2791 29 6.89349e+06 352346 678818. 2348.85 6.75 0.266175 0.252132 26626 170182 -1 2525 19 1500 2156 164571 35271 4.25068 4.25068 -147.335 -4.25068 0 0 902133. 3121.57 1.09 0.02 0.32 -1 -1 1.09 0.00660438 0.00591996 156 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 32.15 vpr 64.40 MiB -1 -1 0.30 21280 1 0.12 -1 -1 33512 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65948 32 32 397 314 1 256 89 17 17 289 -1 unnamed_device 25.7 MiB 11.10 1408 14543 4021 8480 2042 64.4 MiB 0.34 0.00 5.38563 -175.555 -5.38563 5.38563 2.57 0.000204368 0.00016567 0.212069 0.209123 34 3658 36 6.89349e+06 352346 618332. 2139.56 10.79 0.582621 0.565787 25762 151098 -1 2905 20 2190 3138 275923 60217 4.60928 4.60928 -169.451 -4.60928 0 0 787024. 2723.27 0.85 0.23 0.26 -1 -1 0.85 0.0124664 0.0110569 171 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 23.11 vpr 63.67 MiB -1 -1 0.33 21128 1 0.12 -1 -1 33724 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65200 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 25.1 MiB 8.98 833 8448 2039 5944 465 63.7 MiB 0.06 0.00 4.14342 -115.158 -4.14342 4.14342 2.51 0.000147778 0.000118352 0.00858533 0.00694423 34 2126 22 6.89349e+06 253689 618332. 2139.56 4.34 0.149866 0.142818 25762 151098 -1 1850 19 1229 1651 116347 27406 2.87616 2.87616 -103.554 -2.87616 0 0 787024. 2723.27 0.96 0.21 0.34 -1 -1 0.96 0.00842915 0.00737429 108 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 15.11 vpr 63.60 MiB -1 -1 0.57 21128 1 0.39 -1 -1 33792 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65128 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 24.9 MiB 2.01 851 11783 3652 6352 1779 63.6 MiB 0.09 0.00 4.15709 -122.39 -4.15709 4.15709 2.44 0.000131275 0.000103685 0.0101455 0.00816832 32 2162 37 6.89349e+06 281877 586450. 2029.24 3.02 0.142633 0.136407 25474 144626 -1 1820 20 1206 1988 166657 36264 2.86611 2.86611 -109.421 -2.86611 0 0 744469. 2576.02 1.22 0.25 0.58 -1 -1 1.22 0.0617261 0.0606918 99 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 21.74 vpr 64.25 MiB -1 -1 0.73 21280 1 0.13 -1 -1 34060 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65792 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 25.5 MiB 6.26 1128 5463 1080 3935 448 64.2 MiB 0.02 0.00 4.60732 -147.469 -4.60732 4.60732 2.85 8.3022e-05 6.5473e-05 0.00313374 0.0025469 34 2986 22 6.89349e+06 324158 618332. 2139.56 4.43 0.0510189 0.0427267 25762 151098 -1 2576 22 1848 2639 205468 44723 3.81745 3.81745 -144.162 -3.81745 0 0 787024. 2723.27 0.88 0.17 0.41 -1 -1 0.88 0.0542968 0.0527716 145 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 22.46 vpr 64.18 MiB -1 -1 0.44 21432 1 0.12 -1 -1 33732 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65716 32 32 356 289 1 224 87 17 17 289 -1 unnamed_device 25.5 MiB 6.02 1149 15639 4916 8896 1827 64.2 MiB 0.20 0.00 4.95049 -142.516 -4.95049 4.95049 2.61 0.000177933 0.000144383 0.0157059 0.0127585 36 2484 31 6.89349e+06 324158 648988. 2245.63 6.14 0.193422 0.0559911 26050 158493 -1 2192 17 1390 1998 142878 33097 4.10595 4.10595 -134.504 -4.10595 0 0 828058. 2865.25 0.96 0.11 0.26 -1 -1 0.96 0.0108504 0.009661 149 56 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 16.53 vpr 64.28 MiB -1 -1 0.50 21584 1 0.11 -1 -1 33644 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65824 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 25.5 MiB 2.05 1164 18660 4771 12167 1722 64.3 MiB 0.25 0.00 5.17601 -145.908 -5.17601 5.17601 2.93 0.000177074 0.000140351 0.0171829 0.0137555 30 2907 20 6.89349e+06 507378 556674. 1926.21 3.68 0.051244 0.0432518 25186 138497 -1 2337 23 1541 2927 191095 44081 4.29189 4.29189 -141.668 -4.29189 0 0 706193. 2443.58 1.05 0.08 0.17 -1 -1 1.05 0.0127475 0.0111675 157 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 19.33 vpr 64.14 MiB -1 -1 0.49 21280 1 0.21 -1 -1 33732 -1 -1 25 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65680 30 32 316 264 1 208 87 17 17 289 -1 unnamed_device 25.4 MiB 5.02 1063 8727 2092 6073 562 64.1 MiB 0.19 0.00 3.88834 -114.425 -3.88834 3.88834 2.49 0.000157164 0.000124618 0.0088473 0.00720077 34 2680 27 6.89349e+06 352346 618332. 2139.56 4.40 0.163025 0.154217 25762 151098 -1 2246 24 2014 2925 210422 47024 3.00136 3.00136 -105.925 -3.00136 0 0 787024. 2723.27 1.04 0.10 0.35 -1 -1 1.04 0.0117087 0.010213 136 52 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 22.21 vpr 63.61 MiB -1 -1 0.42 21280 1 0.20 -1 -1 34212 -1 -1 20 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65132 27 32 255 219 1 162 79 17 17 289 -1 unnamed_device 24.9 MiB 4.97 671 12416 5199 6032 1185 63.6 MiB 0.21 0.00 4.37503 -112.665 -4.37503 4.37503 3.09 0.000129922 0.00010165 0.0114461 0.00910148 36 1798 46 6.89349e+06 281877 648988. 2245.63 5.88 0.293177 0.102297 26050 158493 -1 1495 16 1035 1508 126330 31089 4.20355 4.20355 -115.594 -4.20355 0 0 828058. 2865.25 0.85 0.20 0.57 -1 -1 0.85 0.168288 0.167406 106 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 32.30 vpr 64.62 MiB -1 -1 0.57 21584 1 0.19 -1 -1 33808 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66172 32 32 421 327 1 271 91 17 17 289 -1 unnamed_device 25.8 MiB 10.54 1548 10495 2998 6825 672 64.6 MiB 0.28 0.00 4.58631 -145.891 -4.58631 4.58631 3.18 0.000217986 0.00017784 0.081175 0.0789575 36 3695 31 6.89349e+06 380534 648988. 2245.63 10.29 0.152387 0.141344 26050 158493 -1 3222 19 2063 3223 245817 53698 4.34139 4.34139 -147.194 -4.34139 0 0 828058. 2865.25 0.92 0.03 0.17 -1 -1 0.92 0.00747472 0.00668442 185 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 23.01 vpr 64.51 MiB -1 -1 0.42 21584 1 0.02 -1 -1 33528 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66056 31 32 365 296 1 233 87 17 17 289 -1 unnamed_device 25.8 MiB 6.69 1076 15639 5741 7479 2419 64.5 MiB 0.43 0.00 5.4794 -158.779 -5.4794 5.4794 2.29 0.000174894 0.000140044 0.27292 0.269701 36 3098 30 6.89349e+06 338252 648988. 2245.63 6.39 0.557437 0.441769 26050 158493 -1 2267 23 2051 2967 192027 45783 4.52198 4.52198 -150.578 -4.52198 0 0 828058. 2865.25 0.87 0.08 0.32 -1 -1 0.87 0.0121644 0.0106245 155 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 21.60 vpr 64.20 MiB -1 -1 0.36 21584 1 0.06 -1 -1 33932 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65740 32 32 331 280 1 221 85 17 17 289 -1 unnamed_device 25.5 MiB 6.07 1166 15523 4854 8569 2100 64.2 MiB 0.36 0.00 4.30939 -141.47 -4.30939 4.30939 2.54 0.00016881 0.000131832 0.0698507 0.0666225 34 2899 42 6.89349e+06 295971 618332. 2139.56 4.71 0.204328 0.112313 25762 151098 -1 2437 26 1907 2549 229050 49696 3.5282 3.5282 -138.137 -3.5282 0 0 787024. 2723.27 0.90 0.05 0.48 -1 -1 0.90 0.0122093 0.0106321 137 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 22.33 vpr 64.13 MiB -1 -1 0.34 21584 1 0.16 -1 -1 33904 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65672 32 32 326 263 1 203 85 17 17 289 -1 unnamed_device 25.5 MiB 6.16 1094 11617 2997 7709 911 64.1 MiB 0.07 0.00 5.20986 -144.706 -5.20986 5.20986 2.49 0.00016337 0.000130837 0.0120427 0.00981594 34 2652 23 6.89349e+06 295971 618332. 2139.56 5.52 0.148601 0.139401 25762 151098 -1 2163 20 1231 1828 141013 31610 3.72616 3.72616 -128.964 -3.72616 0 0 787024. 2723.27 1.03 0.09 0.30 -1 -1 1.03 0.0592577 0.0579475 135 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 21.74 vpr 64.39 MiB -1 -1 0.46 21584 1 0.13 -1 -1 33808 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65932 31 32 373 294 1 231 89 17 17 289 -1 unnamed_device 25.7 MiB 7.05 1250 13751 4489 7484 1778 64.4 MiB 0.38 0.04 4.48785 -130.629 -4.48785 4.48785 2.88 0.0394262 0.000164113 0.0512839 0.00977326 34 3040 22 6.89349e+06 366440 618332. 2139.56 4.20 0.152598 0.103546 25762 151098 -1 2564 18 1728 2629 184543 42607 4.0604 4.0604 -128.889 -4.0604 0 0 787024. 2723.27 0.80 0.26 0.20 -1 -1 0.80 0.0113901 0.0100323 163 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 24.92 vpr 64.16 MiB -1 -1 0.67 21432 1 0.02 -1 -1 34064 -1 -1 24 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 30 32 325 268 1 210 86 17 17 289 -1 unnamed_device 25.4 MiB 7.27 1146 9158 2597 5794 767 64.2 MiB 0.32 0.00 4.26851 -119.64 -4.26851 4.26851 3.09 0.000157528 0.000127065 0.0589576 0.0571749 34 3101 28 6.89349e+06 338252 618332. 2139.56 6.53 0.667182 0.657828 25762 151098 -1 2575 18 1343 2150 176039 37969 3.456 3.456 -117.55 -3.456 0 0 787024. 2723.27 0.98 0.12 0.38 -1 -1 0.98 0.0101841 0.00899752 140 51 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 26.40 vpr 64.28 MiB -1 -1 0.35 21432 1 0.12 -1 -1 33832 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65820 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 25.5 MiB 8.30 1212 14828 4814 7843 2171 64.3 MiB 0.16 0.00 4.88838 -154.361 -4.88838 4.88838 2.40 0.000186929 0.000139129 0.0168369 0.0137369 36 2984 22 6.89349e+06 310065 648988. 2245.63 7.18 0.0680473 0.0569205 26050 158493 -1 2636 20 1645 2634 228939 46913 3.99939 3.99939 -144.13 -3.99939 0 0 828058. 2865.25 0.89 0.26 0.35 -1 -1 0.89 0.0800076 0.0102794 148 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 24.87 vpr 64.45 MiB -1 -1 0.42 21584 1 0.20 -1 -1 33388 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65992 32 32 386 307 1 246 90 17 17 289 -1 unnamed_device 25.7 MiB 8.55 1282 15969 5653 7267 3049 64.4 MiB 0.30 0.00 4.10098 -137.106 -4.10098 4.10098 2.19 9.2791e-05 7.1517e-05 0.0798272 0.0765536 34 3469 29 6.89349e+06 366440 618332. 2139.56 6.08 0.31073 0.298644 25762 151098 -1 2577 22 2108 2976 221177 51691 3.61546 3.61546 -136.434 -3.61546 0 0 787024. 2723.27 0.91 0.25 0.30 -1 -1 0.91 0.154424 0.0115099 167 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 19.96 vpr 63.85 MiB -1 -1 0.29 21128 1 0.17 -1 -1 33804 -1 -1 20 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65380 29 32 269 229 1 173 81 17 17 289 -1 unnamed_device 25.1 MiB 4.49 640 9706 2308 6853 545 63.8 MiB 0.28 0.00 4.18793 -120.962 -4.18793 4.18793 2.42 0.000135154 0.000106849 0.00898731 0.00710241 34 1711 40 6.89349e+06 281877 618332. 2139.56 4.21 0.0452745 0.0372849 25762 151098 -1 1396 22 1306 1759 120180 30461 3.46451 3.46451 -114.15 -3.46451 0 0 787024. 2723.27 1.16 0.15 0.28 -1 -1 1.16 0.0102211 0.00900716 110 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 20.98 vpr 63.81 MiB -1 -1 0.38 21280 1 0.02 -1 -1 34044 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65340 32 32 310 266 1 200 84 17 17 289 -1 unnamed_device 25.2 MiB 3.74 1151 15456 4811 8697 1948 63.8 MiB 0.15 0.00 4.32729 -137.057 -4.32729 4.32729 2.39 6.9456e-05 5.3731e-05 0.00831482 0.00661248 36 2629 22 6.89349e+06 281877 648988. 2245.63 7.12 0.236735 0.21181 26050 158493 -1 2352 19 1523 2100 174325 37350 3.5651 3.5651 -130.487 -3.5651 0 0 828058. 2865.25 0.81 0.17 0.29 -1 -1 0.81 0.0100452 0.00876141 125 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 26.98 vpr 64.29 MiB -1 -1 0.61 21128 1 0.08 -1 -1 33996 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65836 31 32 326 261 1 204 85 17 17 289 -1 unnamed_device 25.5 MiB 4.47 1140 13477 4008 7256 2213 64.3 MiB 0.35 0.00 4.87863 -139.65 -4.87863 4.87863 2.54 0.000178144 0.000142033 0.0140783 0.0114068 34 2816 38 6.89349e+06 310065 618332. 2139.56 11.59 0.149882 0.135834 25762 151098 -1 2261 20 1585 2469 195102 43554 3.98916 3.98916 -133.793 -3.98916 0 0 787024. 2723.27 0.91 0.17 0.16 -1 -1 0.91 0.0107526 0.0094819 137 33 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 24.70 vpr 63.57 MiB -1 -1 0.54 21280 1 0.03 -1 -1 33880 -1 -1 19 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65100 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 25.1 MiB 9.78 743 7992 1817 5819 356 63.6 MiB 0.21 0.00 4.21347 -111.925 -4.21347 4.21347 2.81 0.000139216 0.000110547 0.00766615 0.00618746 30 2121 33 6.89349e+06 267783 556674. 1926.21 3.58 0.0342471 0.0284364 25186 138497 -1 1734 19 961 1330 97844 23122 2.9715 2.9715 -103.215 -2.9715 0 0 706193. 2443.58 1.34 0.05 0.26 -1 -1 1.34 0.00857104 0.00759085 108 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 21.99 vpr 63.62 MiB -1 -1 0.31 21584 1 0.05 -1 -1 33516 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65152 32 32 278 238 1 182 82 17 17 289 -1 unnamed_device 25.1 MiB 6.04 963 11652 3141 7413 1098 63.6 MiB 0.33 0.00 4.14413 -129.495 -4.14413 4.14413 2.20 6.5384e-05 4.9992e-05 0.0911093 0.00831123 34 2440 49 6.89349e+06 253689 618332. 2139.56 6.05 0.233424 0.143217 25762 151098 -1 2081 21 1519 2129 189778 40165 3.15871 3.15871 -120.031 -3.15871 0 0 787024. 2723.27 0.97 0.05 0.21 -1 -1 0.97 0.0100594 0.00879218 114 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 21.71 vpr 64.23 MiB -1 -1 0.53 21432 1 0.16 -1 -1 33840 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65776 31 32 373 300 1 236 89 17 17 289 -1 unnamed_device 25.5 MiB 5.19 1148 8801 2055 6262 484 64.2 MiB 0.25 0.00 4.66911 -146.299 -4.66911 4.66911 2.42 0.000177482 0.000142542 0.00977455 0.00805415 34 3184 42 6.89349e+06 366440 618332. 2139.56 5.96 0.661935 0.548411 25762 151098 -1 2593 21 2070 2865 230832 52120 3.73625 3.73625 -139.661 -3.73625 0 0 787024. 2723.27 0.87 0.34 0.69 -1 -1 0.87 0.010731 0.00935867 160 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 20.99 vpr 63.68 MiB -1 -1 0.41 21280 1 0.23 -1 -1 33756 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65212 31 32 265 230 1 175 80 17 17 289 -1 unnamed_device 25.1 MiB 6.21 799 6960 1451 5242 267 63.7 MiB 0.15 0.00 3.55845 -110.116 -3.55845 3.55845 2.46 0.000130468 0.000103685 0.121818 0.120414 34 2362 25 6.89349e+06 239595 618332. 2139.56 4.88 0.154775 0.147745 25762 151098 -1 1961 18 1203 1687 149474 33371 2.87011 2.87011 -108.988 -2.87011 0 0 787024. 2723.27 0.84 0.07 0.30 -1 -1 0.84 0.00842668 0.00740156 108 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 22.78 vpr 64.29 MiB -1 -1 0.52 21280 1 0.07 -1 -1 33688 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65828 32 32 349 286 1 221 86 17 17 289 -1 unnamed_device 25.5 MiB 5.95 1229 13883 4377 7381 2125 64.3 MiB 0.26 0.00 4.30445 -130.63 -4.30445 4.30445 3.21 0.00017229 0.00012905 0.0787474 0.0759874 34 3092 29 6.89349e+06 310065 618332. 2139.56 6.00 0.289372 0.278589 25762 151098 -1 2481 21 1411 2036 157419 35147 3.398 3.398 -125.222 -3.398 0 0 787024. 2723.27 0.77 0.17 0.19 -1 -1 0.77 0.0118959 0.0104286 146 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 26.14 vpr 64.38 MiB -1 -1 0.54 21736 1 0.03 -1 -1 33804 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65920 31 32 396 325 1 259 89 17 17 289 -1 unnamed_device 25.7 MiB 6.03 1410 16127 5422 8584 2121 64.4 MiB 0.28 0.00 4.86804 -156.439 -4.86804 4.86804 2.23 0.000178334 0.000143382 0.0171012 0.0139332 36 3574 24 6.89349e+06 366440 648988. 2245.63 8.64 0.223924 0.211835 26050 158493 -1 2991 22 2294 3249 274679 57779 4.43249 4.43249 -161.158 -4.43249 0 0 828058. 2865.25 1.05 0.09 0.42 -1 -1 1.05 0.0129085 0.0113396 167 91 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 24.21 vpr 63.61 MiB -1 -1 0.52 21128 1 0.08 -1 -1 33704 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65140 32 32 303 262 1 200 82 17 17 289 -1 unnamed_device 25.1 MiB 9.84 1102 7914 1891 5147 876 63.6 MiB 0.09 0.00 3.8031 -118.938 -3.8031 3.8031 2.79 0.000174316 0.00014394 0.0518347 0.0502704 34 2636 25 6.89349e+06 253689 618332. 2139.56 4.65 0.104329 0.097019 25762 151098 -1 2252 20 1548 2123 174961 37783 2.90126 2.90126 -115.992 -2.90126 0 0 787024. 2723.27 0.92 0.19 0.24 -1 -1 0.92 0.0100668 0.00877884 124 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 19.34 vpr 63.92 MiB -1 -1 0.38 21280 1 0.02 -1 -1 33808 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65456 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 25.2 MiB 4.22 807 8448 2163 5780 505 63.9 MiB 0.16 0.00 4.17839 -126.972 -4.17839 4.17839 2.34 0.000151446 0.0001198 0.00937569 0.00768463 34 2328 25 6.89349e+06 253689 618332. 2139.56 4.59 0.0498073 0.0416968 25762 151098 -1 1966 17 1279 1909 140751 34111 3.24765 3.24765 -119.345 -3.24765 0 0 787024. 2723.27 1.21 0.09 0.38 -1 -1 1.21 0.00962645 0.00838545 115 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 20.55 vpr 63.96 MiB -1 -1 0.36 21432 1 0.03 -1 -1 33832 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65492 32 32 318 257 1 198 86 17 17 289 -1 unnamed_device 25.2 MiB 5.84 1027 14828 4768 7813 2247 64.0 MiB 0.31 0.00 4.90028 -135.696 -4.90028 4.90028 2.64 0.000181285 0.000145784 0.0160408 0.0129457 34 2558 23 6.89349e+06 310065 618332. 2139.56 4.30 0.276127 0.265548 25762 151098 -1 2264 19 1350 1887 133010 30628 3.69936 3.69936 -130.261 -3.69936 0 0 787024. 2723.27 0.96 0.20 0.42 -1 -1 0.96 0.0100675 0.00882803 133 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 20.95 vpr 64.16 MiB -1 -1 0.32 21432 1 0.13 -1 -1 33764 -1 -1 25 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65696 29 32 324 268 1 207 86 17 17 289 -1 unnamed_device 25.4 MiB 6.87 1109 14639 4187 8652 1800 64.2 MiB 0.34 0.00 4.08804 -114.007 -4.08804 4.08804 2.65 0.000164732 0.000132755 0.0145936 0.0118895 30 2421 25 6.89349e+06 352346 556674. 1926.21 3.37 0.0420948 0.0349819 25186 138497 -1 2027 20 1092 1557 101389 22884 3.32475 3.32475 -110.151 -3.32475 0 0 706193. 2443.58 0.75 0.24 0.33 -1 -1 0.75 0.00763949 0.0067353 138 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 25.12 vpr 64.32 MiB -1 -1 0.37 21432 1 0.11 -1 -1 33632 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65868 32 32 393 312 1 243 88 17 17 289 -1 unnamed_device 25.7 MiB 6.68 1260 16078 5801 8535 1742 64.3 MiB 0.26 0.00 5.65598 -180.247 -5.65598 5.65598 3.01 0.000205848 0.00016758 0.0663335 0.0629995 34 3621 37 6.89349e+06 338252 618332. 2139.56 7.89 0.126222 0.113304 25762 151098 -1 2914 23 2099 3261 294480 62314 4.80588 4.80588 -169.563 -4.80588 0 0 787024. 2723.27 1.00 0.16 0.28 -1 -1 1.00 0.0118916 0.0102498 166 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 18.17 vpr 63.65 MiB -1 -1 0.30 21128 1 0.03 -1 -1 33780 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65176 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 25.1 MiB 1.94 765 8164 2211 5437 516 63.6 MiB 0.08 0.00 3.49795 -107.657 -3.49795 3.49795 2.65 0.000147879 0.000119776 0.00792074 0.00635542 34 1845 19 6.89349e+06 239595 618332. 2139.56 4.82 0.221076 0.21405 25762 151098 -1 1589 19 725 1119 83681 18632 2.57636 2.57636 -97.7119 -2.57636 0 0 787024. 2723.27 1.05 0.12 0.29 -1 -1 1.05 0.103386 0.102359 92 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 22.88 vpr 64.55 MiB -1 -1 0.43 21736 1 0.03 -1 -1 33804 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66096 32 32 412 334 1 269 91 17 17 289 -1 unnamed_device 25.8 MiB 6.10 1449 14167 4014 7626 2527 64.5 MiB 0.23 0.00 5.78233 -180.669 -5.78233 5.78233 2.40 0.000215442 0.000175505 0.0276983 0.0247365 34 3752 47 6.89349e+06 380534 618332. 2139.56 7.01 0.0858023 0.0734008 25762 151098 -1 3040 19 2102 2772 224967 49169 5.38524 5.38524 -185.112 -5.38524 0 0 787024. 2723.27 1.08 0.11 0.35 -1 -1 1.08 0.0499225 0.0485076 175 90 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 22.25 vpr 64.44 MiB -1 -1 0.40 21432 1 0.07 -1 -1 33712 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65984 32 32 376 318 1 259 87 17 17 289 -1 unnamed_device 25.5 MiB 7.19 1300 9495 2262 6592 641 64.4 MiB 0.18 0.00 4.81994 -164.712 -4.81994 4.81994 2.69 0.000210846 0.000162027 0.0103378 0.00842966 36 3397 34 6.89349e+06 324158 648988. 2245.63 5.49 0.0630784 0.052594 26050 158493 -1 2633 21 2418 2999 239568 51827 4.33539 4.33539 -159.505 -4.33539 0 0 828058. 2865.25 0.91 0.08 0.18 -1 -1 0.91 0.0556903 0.0548207 160 96 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 23.34 vpr 64.34 MiB -1 -1 0.26 21584 1 0.04 -1 -1 33812 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65884 32 32 360 293 1 227 86 17 17 289 -1 unnamed_device 25.5 MiB 6.30 1234 15017 4303 8531 2183 64.3 MiB 0.40 0.00 4.10098 -126.009 -4.10098 4.10098 2.77 0.00020311 0.000167695 0.0166606 0.0136713 34 2988 24 6.89349e+06 310065 618332. 2139.56 6.09 0.329835 0.319239 25762 151098 -1 2338 21 1700 2332 199279 43093 3.23576 3.23576 -119.971 -3.23576 0 0 787024. 2723.27 0.85 0.29 0.23 -1 -1 0.85 0.0124456 0.0109865 152 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 25.30 vpr 64.45 MiB -1 -1 0.43 21736 1 0.09 -1 -1 33532 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65996 32 32 396 299 1 241 90 17 17 289 -1 unnamed_device 25.7 MiB 8.33 1279 16170 5076 8373 2721 64.4 MiB 0.41 0.00 5.8006 -172.976 -5.8006 5.8006 2.31 9.1537e-05 7.1825e-05 0.0174817 0.0143455 34 3567 22 6.89349e+06 366440 618332. 2139.56 6.93 0.0716582 0.0600033 25762 151098 -1 2699 21 2086 3337 323710 67797 4.54445 4.54445 -156.128 -4.54445 0 0 787024. 2723.27 0.87 0.07 0.18 -1 -1 0.87 0.012756 0.0112965 172 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 14.06 vpr 63.63 MiB -1 -1 0.41 21128 1 0.05 -1 -1 33724 -1 -1 15 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65156 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 24.9 MiB 2.63 775 6434 1498 4493 443 63.6 MiB 0.13 0.00 3.08622 -96.4372 -3.08622 3.08622 2.50 0.000143054 0.000116213 0.0059216 0.00471773 30 1655 23 6.89349e+06 211408 556674. 1926.21 2.33 0.0226946 0.018387 25186 138497 -1 1548 16 662 874 63994 14007 2.32501 2.32501 -94.7646 -2.32501 0 0 706193. 2443.58 0.75 0.17 0.19 -1 -1 0.75 0.00709399 0.0062645 82 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 18.36 vpr 63.91 MiB -1 -1 0.28 21128 1 0.03 -1 -1 33848 -1 -1 20 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65444 30 32 286 239 1 176 82 17 17 289 -1 unnamed_device 25.1 MiB 4.19 965 13610 5107 7005 1498 63.9 MiB 0.15 0.00 4.62117 -141.292 -4.62117 4.62117 2.66 0.000164657 0.000130325 0.00929135 0.00738936 34 2261 32 6.89349e+06 281877 618332. 2139.56 4.53 0.196293 0.154331 25762 151098 -1 1973 18 1265 1860 176101 36344 3.6743 3.6743 -133.516 -3.6743 0 0 787024. 2723.27 0.93 0.06 0.41 -1 -1 0.93 0.0329342 0.00771684 119 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 27.63 vpr 63.88 MiB -1 -1 0.36 21280 1 0.03 -1 -1 33684 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65412 32 32 296 247 1 187 82 17 17 289 -1 unnamed_device 25.2 MiB 6.08 1149 10406 3059 5866 1481 63.9 MiB 0.12 0.00 4.19289 -140.143 -4.19289 4.19289 3.15 0.000149437 0.000117561 0.010765 0.00861864 36 2692 44 6.89349e+06 253689 648988. 2245.63 11.23 0.151484 0.136889 26050 158493 -1 2234 18 1335 2383 172957 38095 3.5312 3.5312 -138.222 -3.5312 0 0 828058. 2865.25 0.91 0.11 0.27 -1 -1 0.91 0.0643106 0.063138 120 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 20.30 vpr 63.45 MiB -1 -1 0.33 21128 1 0.07 -1 -1 34004 -1 -1 21 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64976 25 32 216 194 1 138 78 17 17 289 -1 unnamed_device 25.0 MiB 4.14 538 11200 3798 4353 3049 63.5 MiB 0.18 0.00 3.6656 -83.8355 -3.6656 3.6656 2.77 0.000119147 9.3182e-05 0.00925102 0.00735563 34 1768 43 6.89349e+06 295971 618332. 2139.56 6.26 0.0455755 0.0373787 25762 151098 -1 1290 19 793 1238 107114 27053 2.84936 2.84936 -80.5665 -2.84936 0 0 787024. 2723.27 0.86 0.13 0.28 -1 -1 0.86 0.110124 0.00441335 92 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 26.03 vpr 64.23 MiB -1 -1 0.32 21432 1 0.03 -1 -1 33552 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65772 32 32 376 307 1 242 87 17 17 289 -1 unnamed_device 25.5 MiB 7.02 1224 10455 2606 6691 1158 64.2 MiB 0.42 0.00 4.36555 -131.719 -4.36555 4.36555 2.83 0.000207291 0.000166062 0.124815 0.122383 36 3235 24 6.89349e+06 324158 648988. 2245.63 8.62 0.446978 0.436299 26050 158493 -1 2709 22 2008 3044 219720 49398 3.76586 3.76586 -131.33 -3.76586 0 0 828058. 2865.25 0.94 0.16 0.31 -1 -1 0.94 0.0120957 0.0105961 161 72 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 23.80 vpr 64.59 MiB -1 -1 0.40 21584 1 0.06 -1 -1 33876 -1 -1 29 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66140 31 32 409 331 1 264 92 17 17 289 -1 unnamed_device 25.7 MiB 7.63 1242 10442 2632 6826 984 64.6 MiB 0.42 0.00 4.77028 -152.218 -4.77028 4.77028 2.47 0.000200944 0.000162858 0.0120702 0.0099316 34 3362 29 6.89349e+06 408721 618332. 2139.56 6.38 0.456192 0.324359 25762 151098 -1 2697 22 2278 3206 240107 54749 4.44149 4.44149 -153.801 -4.44149 0 0 787024. 2723.27 0.69 0.22 0.23 -1 -1 0.69 0.0137196 0.012184 179 90 -1 -1 -1 -1 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 4ad620feddc..14b02df4c6e 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 place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - k6_N8_gate_boost_0.2V_22nm.xml Md5Core.v common 891.61 vpr 934.46 MiB -1 -1 27.14 326268 27 22.80 -1 -1 141788 -1 -1 5694 641 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 956888 641 128 52026 52154 1 24058 6463 90 90 8100 clb auto 346.1 MiB 248.45 312828 934.5 MiB 145.79 1.16 12.2664 -33975.2 -12.2664 12.2664 117.15 0.0882271 0.0767682 12.6953 10.5551 74 448391 32 2.50222e+08 6.86455e+07 3.72985e+07 4604.75 188.93 39.0877 33.1897 418547 17 104887 229635 18003954 3362218 13.234 13.234 -36422.7 -13.234 0 0 4.63728e+07 5725.03 37.97 10.39 4.55225 4.00545 41833 14777 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml cordic.v common 6.51 vpr 62.03 MiB -1 -1 0.71 29428 11 0.38 -1 -1 36688 -1 -1 49 54 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63516 54 51 465 516 1 301 154 11 11 121 clb auto 24.0 MiB 0.16 2292 62.0 MiB 0.10 0.00 4.9508 -205.649 -4.9508 4.9508 0.34 0.000643118 0.000529344 0.0248522 0.0210447 48 5695 35 2.09946e+06 590695 317060. 2620.33 3.05 0.257101 0.22269 4871 21 2150 10679 707105 153170 5.36286 5.36286 -233.356 -5.36286 0 0 382250. 3159.09 0.16 0.22 0.0507321 0.0456471 355 355 -1 -1 -1 -1 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml Md5Core.v common 784.51 vpr 874.42 MiB -1 -1 17.97 221420 1 5.61 -1 -1 148452 -1 -1 5125 641 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 895404 641 128 55563 47815 1 19235 5894 85 85 7225 clb auto 354.8 MiB 76.08 237870 874.4 MiB 249.97 1.73 5.74411 -22836.7 -5.74411 5.74411 105.32 0.065045 0.055807 11.4486 9.41981 78 306321 28 2.22196e+08 6.43647e+07 3.44250e+07 4764.71 204.26 41.6029 35.4381 291043 18 68261 110489 10827436 1893374 4.92108 4.92108 -22366.4 -4.92108 0 0 4.31121e+07 5967.07 36.68 6.75 3.44589 3.01626 39986 2048 -1 -1 -1 -1 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml cordic.v common 10.52 vpr 62.59 MiB -1 -1 0.65 29192 4 0.23 -1 -1 36268 -1 -1 41 54 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64092 54 51 503 502 1 302 146 10 10 100 clb auto 24.6 MiB 2.19 2018 62.6 MiB 0.14 0.00 4.0367 -191.892 -4.0367 4.0367 0.27 0.000855179 0.000728856 0.0357914 0.0311147 48 4428 39 1.94278e+06 514878 254498. 2544.98 5.08 0.52382 0.461165 4152 21 1803 7688 462873 111112 4.65806 4.65806 -223.324 -4.65806 0 0 306731. 3067.31 0.12 0.19 0.0629149 0.0574304 310 279 -1 -1 -1 -1 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml Md5Core.v common 876.12 vpr 897.15 MiB -1 -1 17.32 222108 1 4.75 -1 -1 148404 -1 -1 5176 641 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 918684 641 128 55563 47815 1 19575 5945 86 86 7396 clb auto 363.3 MiB 204.88 229889 897.2 MiB 271.18 2.17 5.94805 -22791.4 -5.94805 5.94805 104.99 0.105912 0.0849653 12.2351 10.0443 70 304821 35 2.34635e+08 6.56264e+07 3.26175e+07 4410.15 145.85 37.4824 31.5982 285741 33 72065 105124 10431520 1973062 4.75157 4.75157 -22591.2 -4.75157 0 0 4.09886e+07 5542.00 34.60 11.75 7.95486 6.84428 40262 2048 -1 -1 -1 -1 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml cordic.v common 7.26 vpr 62.75 MiB -1 -1 0.65 29252 4 0.24 -1 -1 36368 -1 -1 39 54 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64252 54 51 503 502 1 307 144 10 10 100 clb auto 24.9 MiB 1.63 2060 62.7 MiB 0.15 0.01 3.696 -183.234 -3.696 3.696 0.27 0.000674288 0.000558701 0.0315237 0.0269096 54 4491 34 1.94854e+06 494442 279084. 2790.84 2.75 0.310335 0.26989 3744 15 1595 5975 310629 72327 3.79249 3.79249 -198.025 -3.79249 0 0 343682. 3436.82 0.13 0.13 0.0431736 0.0397482 305 279 -1 -1 -1 -1 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time 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 1864.14 vpr 957.58 MiB -1 -1 22.42 331380 27 13.20 -1 -1 142432 -1 -1 5694 641 0 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 980564 641 128 52026 52154 1 24058 6463 90 90 8100 clb auto 349.0 MiB 173.06 299893 8009738 3248634 4687011 74093 957.6 MiB 90.11 0.74 14.696 -38781.3 -14.696 14.696 78.67 0.0454146 0.0364574 6.41213 5.29191 66 440752 49 2.50222e+08 6.86455e+07 3.39805e+07 4195.12 1395.25 30.8998 26.3648 844532 8713078 -1 405206 17 108336 237098 17288222 3304110 13.1078 13.1078 -35765.6 -13.1078 0 0 4.24114e+07 5235.97 21.75 5.86 5.90 -1 -1 21.75 2.25901 2.0474 41833 14777 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml cordic.v common 7.58 vpr 64.93 MiB -1 -1 0.84 29792 11 0.37 -1 -1 37192 -1 -1 47 54 0 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66492 54 51 461 512 1 307 152 10 10 100 clb auto 26.7 MiB 0.17 2373 13922 2643 10142 1137 64.9 MiB 0.13 0.00 6.47024 -256.927 -6.47024 6.47024 0.33 0.00042886 0.000357536 0.0688225 0.0500239 54 5335 26 1.91864e+06 566585 279084. 2790.84 3.59 0.401441 0.318793 8874 64549 -1 4508 18 1941 9258 477400 107312 5.64329 5.64329 -238.143 -5.64329 0 0 343682. 3436.82 0.14 0.15 0.08 -1 -1 0.14 0.031029 0.0281091 351 351 -1 -1 -1 -1 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml Md5Core.v common 496.86 vpr 906.63 MiB -1 -1 14.92 221280 1 3.28 -1 -1 149256 -1 -1 5125 641 0 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 928388 641 128 55563 47815 1 19235 5894 85 85 7225 clb auto 357.9 MiB 53.49 222909 7988444 3311697 4529990 146757 906.6 MiB 158.12 1.29 7.30188 -25593.7 -7.30188 7.30188 59.85 0.0346093 0.0287273 5.37677 4.40327 72 301784 47 2.22196e+08 6.43647e+07 3.24327e+07 4488.96 129.63 18.1686 15.4729 798746 8418143 -1 279076 27 66623 107145 10680598 2015876 5.67328 5.67328 -22253.4 -5.67328 0 0 4.04835e+07 5603.25 23.02 4.40 5.91 -1 -1 23.02 2.21605 1.94489 39986 2048 -1 -1 -1 -1 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml cordic.v common 8.87 vpr 65.29 MiB -1 -1 0.79 28728 4 0.20 -1 -1 36472 -1 -1 41 54 0 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66852 54 51 503 502 1 302 146 10 10 100 clb auto 27.3 MiB 2.56 2020 13202 2597 9296 1309 65.3 MiB 0.11 0.00 4.8288 -228.616 -4.8288 4.8288 0.37 0.000364269 0.000298402 0.0192023 0.0163646 54 4296 26 1.94278e+06 514878 279084. 2790.84 2.89 0.263514 0.235912 9066 64687 -1 3771 16 1579 6792 333407 78376 3.86988 3.86988 -205.334 -3.86988 0 0 343682. 3436.82 0.12 0.10 0.06 -1 -1 0.12 0.0312726 0.0289765 310 279 -1 -1 -1 -1 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml Md5Core.v common 1397.07 vpr 910.60 MiB -1 -1 14.85 221360 1 3.28 -1 -1 149104 -1 -1 5176 641 0 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 932456 641 128 55563 47815 1 19575 5945 86 86 7396 clb auto 365.9 MiB 147.36 216449 8026913 3325604 4544181 157128 910.6 MiB 163.05 1.15 7.79808 -26173.5 -7.79808 7.79808 74.45 0.0333148 0.0256067 5.40235 4.3967 64 296093 41 2.34635e+08 6.56264e+07 3.02030e+07 4083.70 918.35 25.6673 21.649 786056 7778811 -1 273121 29 74523 108445 10800591 2118622 5.10857 5.10857 -22338.5 -5.10857 0 0 3.78329e+07 5115.32 18.90 4.37 4.97 -1 -1 18.90 2.1942 1.92409 40262 2048 -1 -1 -1 -1 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml cordic.v common 7.20 vpr 65.30 MiB -1 -1 0.75 28880 4 0.23 -1 -1 36456 -1 -1 39 54 0 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66864 54 51 503 502 1 307 144 10 10 100 clb auto 27.3 MiB 1.64 2063 8438 1287 6455 696 65.3 MiB 0.11 0.04 4.75191 -227.336 -4.75191 4.75191 0.39 0.0381416 0.0380647 0.0525767 0.050608 52 4645 30 1.94854e+06 494442 271502. 2715.02 1.67 0.208403 0.193565 8966 63017 -1 3899 50 1667 6383 746112 263022 3.83606 3.83606 -202.472 -3.83606 0 0 335037. 3350.37 0.15 0.37 0.15 -1 -1 0.15 0.120279 0.114452 305 279 -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 01aee2c8841..88295e998b9 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_arch_list/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_arch_list/config/golden_results.txt @@ -1,31 +1,31 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time total_power routing_power_perc clock_power_perc tile_power_perc -k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.60 vpr 66.65 MiB -1 -1 0.29 20848 3 0.10 -1 -1 36796 -1 -1 68 99 1 0 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68248 99 130 343 473 1 230 298 12 12 144 clb auto 28.0 MiB 0.08 575 71938 22962 36263 12713 66.6 MiB 0.19 0.00 1.865 -120.725 -1.865 1.865 0.35 0.000815861 0.000748755 0.0617856 0.0568042 48 1298 10 5.66058e+06 4.21279e+06 394078. 2736.65 0.90 0.214795 0.194146 13382 75762 -1 1209 12 404 645 32631 9803 2.02042 2.02042 -137.126 -2.02042 -0.563537 -0.200829 503207. 3494.49 0.15 0.04 0.08 -1 -1 0.15 0.0258055 0.0238079 0.009948 0.2516 0.08188 0.6665 -k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 14.13 vpr 69.70 MiB -1 -1 0.45 25932 15 0.39 -1 -1 37716 -1 -1 38 162 0 5 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71372 162 96 994 935 1 693 301 16 16 256 mult_36 auto 31.5 MiB 0.27 5403 85981 26951 52367 6663 69.7 MiB 0.55 0.01 21.1329 -1677.85 -21.1329 21.1329 0.70 0.00246832 0.00228744 0.233934 0.216378 48 12202 43 1.21132e+07 4.02797e+06 756778. 2956.16 7.65 1.12946 1.03662 25228 149258 -1 9996 17 3110 6320 1606287 397256 22.4645 22.4645 -1794.92 -22.4645 0 0 968034. 3781.38 0.33 0.44 0.16 -1 -1 0.33 0.117727 0.11029 0.007642 0.3669 0.0171 0.616 -k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 600.92 vpr 464.61 MiB -1 -1 65.23 338648 122 76.78 -1 -1 83316 -1 -1 1377 114 45 8 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 475760 114 102 21867 21777 1 11713 1646 50 50 2500 memory auto 194.0 MiB 19.12 158027 1079900 387262 672407 20231 464.6 MiB 26.67 0.24 78.8362 -52334.1 -78.8362 78.8362 27.83 0.0501868 0.0433544 6.07162 5.06108 92 239808 35 1.47946e+08 1.02043e+08 1.52089e+07 6083.58 292.79 22.9131 19.2573 338772 3221652 -1 215840 20 45193 170020 34120371 7547042 79.2114 79.2114 -63324.9 -79.2114 -27.5943 -0.296573 1.93279e+07 7731.17 9.08 12.95 3.86 -1 -1 9.08 3.13819 2.76074 0.08144 0.428 0.01144 0.5606 -k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.74 vpr 66.20 MiB -1 -1 0.28 21136 3 0.10 -1 -1 37124 -1 -1 68 99 1 0 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67784 99 130 343 473 1 232 298 12 12 144 clb auto 27.8 MiB 0.11 574 69948 22489 35398 12061 66.2 MiB 0.19 0.00 1.865 -123.177 -1.865 1.865 0.35 0.00076293 0.00070322 0.057574 0.052908 54 1285 10 5.66058e+06 4.21279e+06 434679. 3018.61 0.94 0.205654 0.185365 13954 85374 -1 1148 10 425 690 31206 8619 1.95525 1.95525 -135.363 -1.95525 -1.22707 -0.320482 565229. 3925.20 0.17 0.04 0.10 -1 -1 0.17 0.0215127 0.0198103 0.01168 0.2282 0.07635 0.6954 -k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml diffeq1.v common 12.97 vpr 69.81 MiB -1 -1 0.45 26044 15 0.40 -1 -1 37832 -1 -1 38 162 0 5 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71488 162 96 994 935 1 693 301 16 16 256 mult_36 auto 31.8 MiB 0.38 5549 72877 19214 46632 7031 69.8 MiB 0.50 0.01 21.1195 -1704.09 -21.1195 21.1195 0.72 0.00285249 0.00265419 0.217117 0.201931 48 12685 31 1.21132e+07 4.02797e+06 756778. 2956.16 6.14 0.900467 0.829897 25228 149258 -1 10232 16 3305 6771 2350801 597324 22.6533 22.6533 -1813.43 -22.6533 0 0 968034. 3781.38 0.33 0.61 0.15 -1 -1 0.33 0.121135 0.113629 0.007906 0.3543 0.01641 0.6293 -k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml LU8PEEng.v common 681.66 vpr 465.20 MiB -1 -1 63.83 338012 122 80.42 -1 -1 82900 -1 -1 1266 114 45 8 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 476368 114 102 21867 21777 1 11313 1535 50 50 2500 memory auto 194.3 MiB 36.40 153774 983996 362572 600931 20493 465.2 MiB 25.42 0.21 78.6962 -51318.9 -78.6962 78.6962 27.98 0.0511208 0.0415951 6.197 5.12134 98 235687 31 1.47946e+08 9.60601e+07 1.60641e+07 6425.63 344.41 26.0738 21.7058 348768 3430976 -1 208276 21 43003 163786 53231941 14496011 80.3246 80.3246 -64952.4 -80.3246 -23.2381 -0.296573 2.03677e+07 8147.07 10.20 23.25 3.92 -1 -1 10.20 3.83421 3.26511 0.08388 0.4279 0.0113 0.5608 -k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.58 vpr 66.74 MiB -1 -1 0.29 20736 3 0.10 -1 -1 37008 -1 -1 68 99 1 0 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68344 99 130 343 473 1 228 298 12 12 144 clb auto 28.1 MiB 0.12 564 73928 23247 37393 13288 66.7 MiB 0.19 0.00 1.696 -122.279 -1.696 1.696 0.35 0.000732008 0.000673213 0.0597764 0.0551337 48 1099 13 5.66058e+06 4.21279e+06 411630. 2858.54 0.87 0.208058 0.188144 13872 80872 -1 998 10 395 609 36422 11872 1.909 1.909 -133.315 -1.909 -0.67911 -0.298787 526257. 3654.56 0.16 0.04 0.09 -1 -1 0.16 0.021713 0.0201049 0.01042 0.2387 0.08301 0.6783 -k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 13.79 vpr 69.92 MiB -1 -1 0.46 26104 15 0.40 -1 -1 37740 -1 -1 38 162 0 5 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71596 162 96 994 935 1 696 301 16 16 256 mult_36 auto 31.7 MiB 0.98 5074 83965 23415 52823 7727 69.9 MiB 0.55 0.01 21.1448 -1773.98 -21.1448 21.1448 0.78 0.00278688 0.00257786 0.24095 0.223096 44 12552 40 1.21132e+07 4.02797e+06 727469. 2841.68 6.31 0.947639 0.871174 25696 150430 -1 9574 20 3014 5787 1693041 422086 22.6508 22.6508 -1874.75 -22.6508 0 0 947281. 3700.32 0.33 0.46 0.15 -1 -1 0.33 0.124691 0.116285 0.007761 0.3489 0.01616 0.635 -k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 939.54 vpr 521.84 MiB -1 -1 65.02 339268 122 79.46 -1 -1 82900 -1 -1 1285 114 45 8 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 534360 114 102 21867 21777 1 11916 1554 50 50 2500 memory auto 193.0 MiB 360.81 160671 973230 341049 615032 17149 496.4 MiB 28.98 0.25 79.5283 -52971.2 -79.5283 79.5283 31.65 0.0564089 0.0468529 6.45275 5.37655 100 229842 22 1.47946e+08 9.70841e+07 1.70584e+07 6823.36 275.02 29.3021 24.4694 363360 3730996 -1 210777 19 39735 152623 35740430 8533255 80.5981 80.5981 -62184.9 -80.5981 -27.6794 -0.218703 2.14473e+07 8578.92 9.66 15.76 4.41 -1 -1 9.66 3.71125 3.19492 0.08729 0.4251 0.01138 0.5636 -k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.67 vpr 66.64 MiB -1 -1 0.31 21284 3 0.10 -1 -1 37164 -1 -1 68 99 1 0 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68236 99 130 343 473 1 225 298 12 12 144 clb auto 28.2 MiB 0.13 547 72933 24263 35607 13063 66.6 MiB 0.19 0.00 1.696 -118.157 -1.696 1.696 0.37 0.000806382 0.00074675 0.0625901 0.0578156 38 1343 16 5.66058e+06 4.21279e+06 334530. 2323.13 0.82 0.226119 0.204681 13012 66834 -1 1180 13 428 629 29651 9921 1.79083 1.79083 -136.144 -1.79083 -1.33719 -0.298787 424691. 2949.24 0.14 0.04 0.07 -1 -1 0.14 0.0278926 0.025754 0.01219 0.202 0.0676 0.7304 -k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 15.70 vpr 70.03 MiB -1 -1 0.46 25680 15 0.38 -1 -1 37632 -1 -1 38 162 0 5 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71708 162 96 994 935 1 695 301 16 16 256 mult_36 auto 31.8 MiB 0.83 5189 80941 24382 48242 8317 70.0 MiB 0.49 0.01 21.3233 -1781.39 -21.3233 21.3233 0.73 0.00241375 0.00221581 0.211085 0.194444 54 12518 38 1.21132e+07 4.02797e+06 875436. 3419.67 8.58 1.11261 1.01891 27228 179190 -1 9359 17 2923 5859 1515299 452004 22.3476 22.3476 -1883.67 -22.3476 0 0 1.13617e+06 4438.18 0.36 0.41 0.18 -1 -1 0.36 0.112458 0.105361 0.008313 0.3501 0.01687 0.633 -k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 997.62 vpr 497.06 MiB -1 -1 63.01 338984 122 82.33 -1 -1 83068 -1 -1 1189 114 45 8 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 508992 114 102 21867 21777 1 11141 1458 50 50 2500 memory auto 193.2 MiB 356.37 154217 893970 310056 563309 20605 497.1 MiB 26.22 0.21 77.977 -52377.6 -77.977 77.977 31.56 0.0510464 0.0439876 6.19765 5.19271 98 231483 31 1.47946e+08 9.19101e+07 1.67994e+07 6719.74 337.51 24.8147 20.6324 360864 3674624 -1 204981 18 39330 157165 41672116 10474139 78.4675 78.4675 -65908.8 -78.4675 -27.0397 -0.295467 2.12220e+07 8488.81 9.73 16.99 4.21 -1 -1 9.73 3.04278 2.67476 0.08866 0.4126 0.01145 0.576 -k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.33 vpr 66.57 MiB -1 -1 0.29 20824 3 0.10 -1 -1 36944 -1 -1 68 99 1 0 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68168 99 130 343 473 1 229 298 12 12 144 clb auto 28.2 MiB 0.14 625 72933 23170 36916 12847 66.6 MiB 0.19 0.00 1.696 -122.589 -1.696 1.696 0.38 0.000701566 0.000650373 0.0594935 0.0548722 32 1521 11 5.66058e+06 4.21279e+06 307825. 2137.67 0.52 0.148686 0.135213 12860 59602 -1 1532 7 379 525 45601 15043 1.98753 1.98753 -149.88 -1.98753 -0.544616 -0.296573 375846. 2610.04 0.13 0.03 0.06 -1 -1 0.13 0.0192473 0.0179469 0.01029 0.2696 0.06819 0.6622 -k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 16.40 vpr 70.24 MiB -1 -1 0.45 25900 15 0.39 -1 -1 37996 -1 -1 36 162 0 5 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71928 162 96 994 935 1 695 299 16 16 256 mult_36 auto 32.1 MiB 1.08 5458 84215 27445 50531 6239 70.2 MiB 0.57 0.01 20.9732 -1696.36 -20.9732 20.9732 0.78 0.002678 0.00246123 0.243163 0.224989 46 13060 49 1.21132e+07 3.92018e+06 791147. 3090.42 8.68 0.891534 0.819982 26792 163197 -1 10077 21 3191 6618 1994586 487970 22.5538 22.5538 -1803.34 -22.5538 0 0 1.01637e+06 3970.19 0.34 0.54 0.16 -1 -1 0.34 0.132896 0.123805 0.007978 0.3555 0.01627 0.6282 -k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1099.99 vpr 542.89 MiB -1 -1 62.78 337816 122 82.47 -1 -1 83208 -1 -1 1284 114 45 8 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 555924 114 102 21867 21777 1 11781 1553 50 50 2500 memory auto 192.7 MiB 458.90 159248 972365 340589 611685 20091 542.9 MiB 32.35 0.28 79.6755 -52039.2 -79.6755 79.6755 35.44 0.0687935 0.0558384 7.83175 6.43884 94 246449 44 1.47946e+08 9.70302e+07 1.68500e+07 6739.98 322.42 29.6188 24.5714 363732 3705320 -1 214729 22 39713 155273 47721884 11744308 80.4266 80.4266 -64889.5 -80.4266 -13.2266 -0.339827 2.11127e+07 8445.07 9.61 19.51 4.44 -1 -1 9.61 3.53141 3.07879 0.08945 0.4089 0.01166 0.5794 -k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.36 vpr 67.05 MiB -1 -1 0.29 20924 3 0.10 -1 -1 37148 -1 -1 68 99 1 0 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68664 99 130 343 473 1 229 298 12 12 144 clb auto 28.7 MiB 0.15 625 72933 23170 36916 12847 67.1 MiB 0.19 0.00 1.696 -122.589 -1.696 1.696 0.37 0.000763631 0.000704287 0.0601119 0.0553147 32 1510 14 5.66058e+06 4.21279e+06 307825. 2137.67 0.53 0.152274 0.138227 12860 59602 -1 1522 7 397 547 46415 15231 1.98753 1.98753 -149.467 -1.98753 -0.544616 -0.296573 375846. 2610.04 0.13 0.03 0.07 -1 -1 0.13 0.0191064 0.0177799 0.01159 0.2411 0.06055 0.6983 -k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 16.33 vpr 70.46 MiB -1 -1 0.44 25860 15 0.39 -1 -1 37688 -1 -1 36 162 0 5 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72152 162 96 994 935 1 695 299 16 16 256 mult_36 auto 32.4 MiB 1.19 5485 77222 22800 47614 6808 70.5 MiB 0.53 0.01 21.0073 -1705.46 -21.0073 21.0073 0.80 0.00256127 0.00237899 0.225193 0.208569 50 12007 21 1.21132e+07 3.92018e+06 848054. 3312.71 8.53 1.02785 0.942023 27304 172908 -1 10008 20 3088 6377 1585829 393503 22.3306 22.3306 -1824.19 -22.3306 0 0 1.09096e+06 4261.55 0.36 0.46 0.17 -1 -1 0.36 0.132522 0.123631 0.008403 0.3495 0.0155 0.635 -k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1037.28 vpr 527.96 MiB -1 -1 63.34 338900 122 83.05 -1 -1 83028 -1 -1 1172 114 45 8 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 540632 114 102 21867 21777 1 10748 1441 50 50 2500 memory auto 191.3 MiB 443.94 148863 888265 316807 552869 18589 528.0 MiB 29.71 0.25 80.3781 -51821.7 -80.3781 80.3781 35.37 0.0658797 0.0532274 7.86676 6.43018 92 223094 41 1.47946e+08 9.09939e+07 1.65231e+07 6609.23 283.91 28.7738 23.8076 361236 3648468 -1 198315 20 36076 149792 32327143 7197388 82.8873 82.8873 -62668.3 -82.8873 -17.3714 -0.174033 2.08892e+07 8355.67 9.55 12.75 4.22 -1 -1 9.55 3.2673 2.85714 0.08896 0.395 0.01138 0.5936 -k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.60 vpr 66.73 MiB -1 -1 0.30 20956 3 0.11 -1 -1 36692 -1 -1 68 99 1 0 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68336 99 130 343 473 1 228 298 12 12 144 clb auto 28.1 MiB 0.13 564 73928 23247 37393 13288 66.7 MiB 0.18 0.00 1.696 -122.279 -1.696 1.696 0.33 0.000690582 0.000632028 0.0582905 0.0536405 42 1329 19 5.66058e+06 4.21279e+06 345702. 2400.71 0.83 0.226979 0.205356 12810 66778 -1 1166 10 447 714 41192 12794 2.03227 2.03227 -146.289 -2.03227 -1.0964 -0.298787 434679. 3018.61 0.14 0.04 0.08 -1 -1 0.14 0.0245169 0.022748 0.009788 0.2439 0.07787 0.6782 -k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 15.62 vpr 70.06 MiB -1 -1 0.44 25964 15 0.38 -1 -1 37896 -1 -1 37 162 0 5 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71744 162 96 994 935 1 696 300 16 16 256 mult_36 auto 31.8 MiB 0.60 5236 89567 28727 53459 7381 70.1 MiB 0.56 0.01 21.2123 -1766.84 -21.2123 21.2123 0.69 0.00246129 0.00225697 0.238775 0.22024 50 11391 31 1.21132e+07 3.97408e+06 780512. 3048.87 8.78 1.24466 1.14016 25484 153448 -1 9569 20 3013 6108 1693639 414139 22.7013 22.7013 -1855.03 -22.7013 0 0 1.00276e+06 3917.05 0.32 0.47 0.16 -1 -1 0.32 0.130345 0.121698 0.007682 0.3608 0.01656 0.6227 -k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1005.02 vpr 462.19 MiB -1 -1 64.15 338628 122 80.59 -1 -1 83416 -1 -1 1319 114 45 8 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 473280 114 102 21867 21777 1 11967 1588 50 50 2500 memory auto 191.2 MiB 245.02 160659 983254 341779 619040 22435 462.2 MiB 28.20 0.25 78.8754 -50592.1 -78.8754 78.8754 28.48 0.0609285 0.0543682 6.94102 5.80409 98 244578 32 1.47946e+08 9.89166e+07 1.60641e+07 6425.63 454.32 24.0197 20.026 348768 3430976 -1 217089 23 45747 171825 50482725 12870103 79.9366 79.9366 -61209.6 -79.9366 -38.3447 -0.29436 2.03677e+07 8147.07 9.72 20.49 4.24 -1 -1 9.72 3.46999 3.02906 0.08405 0.4326 0.0115 0.5558 -k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.71 vpr 66.20 MiB -1 -1 0.30 21296 3 0.10 -1 -1 36784 -1 -1 68 99 1 0 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67788 99 130 343 473 1 225 298 12 12 144 clb auto 27.8 MiB 0.12 547 72933 24263 35607 13063 66.2 MiB 0.20 0.00 1.696 -118.157 -1.696 1.696 0.35 0.000761432 0.000700498 0.0625776 0.0578178 48 1074 11 5.66058e+06 4.21279e+06 394078. 2736.65 0.89 0.217234 0.196539 13382 75762 -1 1127 9 397 613 34025 10771 1.93851 1.93851 -131.386 -1.93851 -0.715103 -0.298787 503207. 3494.49 0.15 0.04 0.09 -1 -1 0.15 0.0216434 0.0200725 0.01165 0.2201 0.07284 0.707 -k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 16.06 vpr 70.19 MiB -1 -1 0.45 25892 15 0.41 -1 -1 37708 -1 -1 37 162 0 5 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71876 162 96 994 935 1 695 300 16 16 256 mult_36 auto 31.9 MiB 0.61 5234 87561 27411 52708 7442 70.2 MiB 0.55 0.01 21.7842 -1750.03 -21.7842 21.7842 0.74 0.00274809 0.00253506 0.231863 0.213988 50 11353 26 1.21132e+07 3.97408e+06 780512. 3048.87 9.05 1.20855 1.10853 25484 153448 -1 9545 17 2914 5688 1598836 398479 22.7576 22.7576 -1901.76 -22.7576 0 0 1.00276e+06 3917.05 0.33 0.45 0.16 -1 -1 0.33 0.122404 0.114816 0.007978 0.3485 0.01591 0.6356 -k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1054.43 vpr 463.28 MiB -1 -1 63.41 337836 122 81.76 -1 -1 83280 -1 -1 1218 114 45 8 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 474396 114 102 21867 21777 1 11178 1487 50 50 2500 memory auto 192.4 MiB 263.42 154706 883823 298850 566535 18438 463.3 MiB 23.57 0.23 79.5364 -52561.2 -79.5364 79.5364 28.81 0.0538801 0.0447466 5.88144 4.89573 98 237685 48 1.47946e+08 9.34731e+07 1.60641e+07 6425.63 493.38 28.0815 23.3826 348768 3430976 -1 209008 21 43238 165461 40950197 10270033 79.938 79.938 -64302 -79.938 -11.3207 -0.172573 2.03677e+07 8147.07 10.20 17.09 3.95 -1 -1 10.20 3.80221 3.26183 0.0851 0.4217 0.01143 0.5668 -k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.80 vpr 67.08 MiB -1 -1 0.30 20876 3 0.11 -1 -1 36864 -1 -1 68 99 1 0 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68692 99 130 343 473 1 229 298 12 12 144 clb auto 28.4 MiB 0.13 600 72933 23473 36928 12532 67.1 MiB 0.21 0.00 1.696 -119.711 -1.696 1.696 0.38 0.000801871 0.00073182 0.0670582 0.0618617 46 1322 12 5.66058e+06 4.21279e+06 378970. 2631.74 0.92 0.233322 0.211178 13238 73581 -1 1264 9 424 628 35038 10711 1.84708 1.84708 -137.295 -1.84708 -1.24178 -0.320482 486261. 3376.82 0.15 0.04 0.09 -1 -1 0.15 0.0224805 0.0208482 0.01091 0.2546 0.08033 0.6651 -k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 16.20 vpr 70.15 MiB -1 -1 0.44 25972 15 0.40 -1 -1 37780 -1 -1 36 162 0 5 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71836 162 96 994 935 1 692 299 16 16 256 mult_36 auto 32.0 MiB 0.80 5190 85214 26746 50913 7555 70.2 MiB 0.56 0.01 21.0406 -1713.01 -21.0406 21.0406 0.73 0.00249827 0.00230086 0.229983 0.212424 50 10972 24 1.21132e+07 3.92018e+06 780512. 3048.87 8.90 1.07818 0.987985 25484 153448 -1 9569 18 3125 6222 1808922 447355 22.2102 22.2102 -1794.02 -22.2102 0 0 1.00276e+06 3917.05 0.32 0.48 0.17 -1 -1 0.32 0.119674 0.111822 0.007904 0.3557 0.01642 0.6279 -k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 882.46 vpr 462.77 MiB -1 -1 61.79 338664 122 78.91 -1 -1 83044 -1 -1 1300 114 45 8 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 473872 114 102 21867 21777 1 11836 1569 50 50 2500 memory auto 191.7 MiB 242.34 155826 976660 342397 612158 22105 462.8 MiB 26.41 0.22 78.5313 -51850 -78.5313 78.5313 26.56 0.0506502 0.0449052 6.58032 5.44019 98 236294 27 1.47946e+08 9.78926e+07 1.60641e+07 6425.63 346.83 28.1395 23.3242 348768 3430976 -1 211840 21 44912 170320 38693129 9632722 80.4704 80.4704 -64801.7 -80.4704 -25.5629 -0.295467 2.03677e+07 8147.07 10.67 17.33 4.04 -1 -1 10.67 3.68821 3.19444 0.0848 0.4256 0.01159 0.5628 -k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.68 vpr 66.68 MiB -1 -1 0.27 21348 3 0.10 -1 -1 37016 -1 -1 68 99 1 0 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68284 99 130 343 473 1 229 298 12 12 144 clb auto 28.3 MiB 0.13 600 72933 23473 36928 12532 66.7 MiB 0.18 0.00 1.696 -119.711 -1.696 1.696 0.35 0.000760395 0.000698578 0.0581751 0.0534093 46 1350 17 5.66058e+06 4.21279e+06 378970. 2631.74 0.87 0.213815 0.191886 13238 73581 -1 1244 11 424 623 34139 10493 1.84708 1.84708 -135.069 -1.84708 -1.24178 -0.320482 486261. 3376.82 0.14 0.04 0.09 -1 -1 0.14 0.0237484 0.0218101 0.01229 0.227 0.07134 0.7016 -k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 15.51 vpr 70.14 MiB -1 -1 0.45 25952 15 0.39 -1 -1 37700 -1 -1 36 162 0 5 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71824 162 96 994 935 1 692 299 16 16 256 mult_36 auto 32.1 MiB 0.79 5273 79220 23230 49089 6901 70.1 MiB 0.51 0.01 20.8357 -1730.13 -20.8357 20.8357 0.72 0.00261631 0.00241255 0.218534 0.202065 50 11078 27 1.21132e+07 3.92018e+06 780512. 3048.87 8.35 1.07479 0.986217 25484 153448 -1 9530 17 2996 5942 1627953 403012 22.3086 22.3086 -1833.79 -22.3086 0 0 1.00276e+06 3917.05 0.33 0.46 0.16 -1 -1 0.33 0.121117 0.113388 0.008195 0.3451 0.01577 0.6392 -k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 991.87 vpr 463.02 MiB -1 -1 63.17 339232 122 80.46 -1 -1 83200 -1 -1 1196 114 45 8 success 33829c2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-04T15:25:46 gh-actions-runner-vtr-auto-spawned151 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 474136 114 102 21867 21777 1 11032 1465 50 50 2500 memory auto 191.7 MiB 265.85 145762 916335 321906 571781 22648 463.0 MiB 24.63 0.20 78.5699 -49656.4 -78.5699 78.5699 28.62 0.0508222 0.0441833 6.15495 5.16457 94 231039 49 1.47946e+08 9.22874e+07 1.55181e+07 6207.23 429.61 28.6829 23.9844 341268 3271592 -1 203951 22 43156 167896 42691733 9807132 78.2436 78.2436 -60332.1 -78.2436 -47.3724 -0.29436 1.95446e+07 7817.85 8.30 17.72 3.79 -1 -1 8.30 3.84184 3.30593 0.08521 0.4059 0.01177 0.5823 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 11.93 vpr 65.76 MiB -1 -1 0.78 21736 3 0.47 -1 -1 36920 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67340 99 130 344 474 1 226 298 12 12 144 clb auto 26.9 MiB 0.14 538 74923 23743 38186 12994 65.8 MiB 0.44 0.00 1.85836 -118.859 -1.85836 1.85836 0.84 0.000408519 0.000364671 0.184671 0.181849 48 1120 12 5.66058e+06 4.21279e+06 394078. 2736.65 2.57 0.568796 0.558488 13382 75762 -1 1135 9 413 643 29837 9031 1.90517 1.90517 -131.612 -1.90517 -1.14837 -0.298787 503207. 3494.49 0.23 0.30 0.20 -1 -1 0.23 0.291907 0.29099 0.01054 0.2563 0.08194 0.6618 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 27.94 vpr 68.73 MiB -1 -1 1.81 26840 15 1.79 -1 -1 38032 -1 -1 41 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70380 162 96 1009 950 1 703 304 16 16 256 mult_36 auto 30.6 MiB 0.50 5227 78921 22014 50546 6361 68.7 MiB 0.94 0.01 21.1088 -1572.42 -21.1088 21.1088 1.81 0.0013239 0.00120799 0.360424 0.349771 46 11694 25 1.21132e+07 4.18965e+06 727248. 2840.81 9.09 1.89864 1.86775 24972 144857 -1 9825 16 3189 6463 1052158 265115 22.5834 22.5834 -1743.32 -22.5834 0 0 934704. 3651.19 0.66 0.81 0.69 -1 -1 0.66 0.191856 0.186748 0.007573 0.3608 0.01692 0.6223 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 971.39 vpr 417.21 MiB -1 -1 136.56 351828 123 163.84 -1 -1 82460 -1 -1 1358 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 427224 114 102 21994 21904 1 11874 1627 50 50 2500 memory auto 194.6 MiB 40.69 156844 1044212 377727 645941 20544 417.2 MiB 50.77 0.52 78.9156 -53096.5 -78.9156 78.9156 55.59 0.0726829 0.0689205 7.9984 7.08451 90 237837 41 1.47946e+08 1.01019e+08 1.49211e+07 5968.42 321.09 28.7799 25.2504 333772 3118116 -1 214457 20 45318 170990 10540927 1886623 78.9114 78.9114 -67440.7 -78.9114 -14.3667 -0.295467 1.86646e+07 7465.86 17.49 10.34 5.27 -1 -1 17.49 4.79057 4.32098 0.08049 0.4194 0.01155 0.5691 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 14.90 vpr 65.43 MiB -1 -1 1.16 21432 3 0.22 -1 -1 37072 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66996 99 130 344 474 1 226 298 12 12 144 clb auto 26.9 MiB 0.26 629 72933 24501 35348 13084 65.4 MiB 0.72 0.00 1.87772 -119.549 -1.87772 1.87772 1.14 0.000479167 0.00042192 0.212818 0.209003 44 1500 15 5.66058e+06 4.21279e+06 360780. 2505.42 5.58 1.12644 1.10872 13094 71552 -1 1272 11 403 626 28515 8379 1.88524 1.88524 -136.944 -1.88524 -0.676272 -0.265573 470765. 3269.20 0.41 0.04 0.19 -1 -1 0.41 0.0274683 0.0265622 0.01202 0.2318 0.0696 0.6986 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml diffeq1.v common 40.08 vpr 69.02 MiB -1 -1 1.40 26524 15 1.73 -1 -1 38204 -1 -1 40 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70672 162 96 1009 950 1 703 303 16 16 256 mult_36 auto 30.8 MiB 1.35 5429 85731 25421 52883 7427 69.0 MiB 1.27 0.01 20.9899 -1533.86 -20.9899 20.9899 2.08 0.00121353 0.00108507 0.507519 0.481322 50 12052 37 1.21132e+07 4.13576e+06 780512. 3048.87 19.61 2.10484 1.8922 25484 153448 -1 10094 17 3136 6091 944877 237338 22.9092 22.9092 -1705.45 -22.9092 0 0 1.00276e+06 3917.05 0.78 0.57 0.44 -1 -1 0.78 0.125277 0.122118 0.007901 0.3567 0.01597 0.6273 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml LU8PEEng.v common 920.00 vpr 427.51 MiB -1 -1 139.70 351276 123 168.15 -1 -1 82008 -1 -1 1278 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 437768 114 102 21994 21904 1 11394 1547 50 50 2500 memory auto 193.8 MiB 84.56 155462 967391 346358 602799 18234 427.5 MiB 46.41 0.37 79.1658 -49689.3 -79.1658 79.1658 56.74 0.103633 0.0992122 8.06245 6.91846 96 240817 38 1.47946e+08 9.67069e+07 1.58254e+07 6330.17 228.24 30.7597 26.6251 343768 3324272 -1 213621 20 46955 176640 11088774 1958407 81.0653 81.0653 -60662.6 -81.0653 -20.9911 -0.197508 1.97871e+07 7914.84 17.55 10.21 6.24 -1 -1 17.55 4.84567 4.57718 0.08295 0.4232 0.01129 0.5655 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 16.91 vpr 65.43 MiB -1 -1 1.16 21736 3 0.65 -1 -1 36916 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67000 99 130 344 474 1 226 298 12 12 144 clb auto 27.1 MiB 0.53 538 74923 23743 38186 12994 65.4 MiB 1.07 0.00 1.85836 -118.859 -1.85836 1.85836 1.33 0.000186152 0.000164307 0.172613 0.16947 44 1225 10 5.66058e+06 4.21279e+06 377431. 2621.05 5.28 0.585898 0.568378 13584 76382 -1 1026 7 371 587 21190 6589 1.9572 1.9572 -129.175 -1.9572 -1.32765 -0.320482 492119. 3417.49 0.49 0.04 0.36 -1 -1 0.49 0.238059 0.0128334 0.01016 0.2377 0.08 0.6823 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 58.79 vpr 68.94 MiB -1 -1 1.73 26836 15 1.23 -1 -1 38508 -1 -1 37 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70596 162 96 1009 950 1 715 300 16 16 256 mult_36 auto 30.9 MiB 3.88 5395 81543 23350 50681 7512 68.9 MiB 1.53 0.00 20.8098 -1508.89 -20.8098 20.8098 1.91 0.000558472 0.000495563 0.368414 0.35917 56 12401 28 1.21132e+07 3.97408e+06 911589. 3560.89 34.45 2.04765 2.00047 27484 183688 -1 9683 17 3070 6168 1098441 282892 22.0044 22.0044 -1619.24 -22.0044 0 0 1.16227e+06 4540.11 1.03 0.87 0.39 -1 -1 1.03 0.312795 0.305315 0.008246 0.3685 0.01686 0.6146 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1573.89 vpr 455.68 MiB -1 -1 141.95 352652 123 167.28 -1 -1 82160 -1 -1 1291 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 466612 114 102 21994 21904 1 12048 1560 50 50 2500 memory auto 192.1 MiB 646.85 163983 969268 328314 619639 21315 455.7 MiB 44.23 0.44 79.6079 -54089.1 -79.6079 79.6079 55.73 0.115444 0.110958 6.94791 5.93632 100 236092 23 1.47946e+08 9.74075e+07 1.70584e+07 6823.36 367.16 19.4598 16.8584 363360 3730996 -1 215771 19 40895 156451 9739432 1761939 80.7225 80.7225 -67991.3 -80.7225 -19.0561 -0.29436 2.14473e+07 8578.92 8.23 4.07 2.89 -1 -1 8.23 2.15856 1.98292 0.08741 0.4253 0.01135 0.5634 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 13.14 vpr 65.50 MiB -1 -1 0.91 21736 3 0.32 -1 -1 37224 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67076 99 130 344 474 1 226 298 12 12 144 clb auto 27.0 MiB 0.27 629 72933 24501 35348 13084 65.5 MiB 0.46 0.00 1.87772 -119.549 -1.87772 1.87772 1.34 0.000461057 0.000414004 0.168372 0.164632 34 1558 17 5.66058e+06 4.21279e+06 307677. 2136.65 3.61 0.731952 0.716879 12584 59343 -1 1425 11 394 640 30288 9228 2.15283 2.15283 -138.724 -2.15283 -0.152537 -0.0520174 377431. 2621.05 0.42 0.43 0.18 -1 -1 0.42 0.0171947 0.0162506 0.01078 0.2391 0.06093 0.6999 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 49.71 vpr 68.93 MiB -1 -1 1.12 26684 15 1.28 -1 -1 38208 -1 -1 37 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70580 162 96 1009 950 1 715 300 16 16 256 mult_36 auto 30.9 MiB 4.72 5395 81543 23350 50681 7512 68.9 MiB 1.19 0.01 20.8098 -1508.89 -20.8098 20.8098 2.07 0.00131862 0.00119429 0.27794 0.267234 56 12691 45 1.21132e+07 3.97408e+06 911589. 3560.89 25.18 2.24193 2.17 27484 183688 -1 9721 17 3144 6378 1106486 283876 22.1411 22.1411 -1617.04 -22.1411 0 0 1.16227e+06 4540.11 1.14 0.77 0.35 -1 -1 1.14 0.125803 0.121804 0.008525 0.3564 0.01622 0.6273 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1437.01 vpr 446.18 MiB -1 -1 148.65 351224 123 169.85 -1 -1 82612 -1 -1 1201 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 456884 114 102 21994 21904 1 11290 1470 50 50 2500 memory auto 191.0 MiB 648.45 148158 912165 314749 574211 23205 446.2 MiB 41.39 0.31 79.4554 -51068 -79.4554 79.4554 57.06 0.0584539 0.0538898 7.36841 6.01039 92 223660 32 1.47946e+08 9.25569e+07 1.59225e+07 6369.02 195.34 24.4233 20.6408 350868 3451476 -1 200356 21 40851 161569 10051585 1827302 79.5633 79.5633 -65693.9 -79.5633 -41.7379 -0.295467 2.01686e+07 8067.44 13.73 6.98 4.95 -1 -1 13.73 3.92051 3.55382 0.08666 0.4013 0.0114 0.5873 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 15.04 vpr 65.53 MiB -1 -1 0.81 21736 3 0.09 -1 -1 37220 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67100 99 130 344 474 1 224 298 12 12 144 clb auto 27.2 MiB 0.97 549 73928 23829 36791 13308 65.5 MiB 0.52 0.00 1.8401 -118.152 -1.8401 1.8401 1.13 0.000186215 0.000161836 0.0287834 0.025549 34 1372 17 5.66058e+06 4.21279e+06 320229. 2223.82 4.56 0.455391 0.445202 13004 62563 -1 1233 15 463 706 34457 11587 1.99839 1.99839 -140.337 -1.99839 -0.526504 -0.320482 391831. 2721.05 0.46 0.04 0.15 -1 -1 0.46 0.0182445 0.0171197 0.009937 0.244 0.07196 0.684 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 41.84 vpr 69.40 MiB -1 -1 1.22 26688 15 2.05 -1 -1 38352 -1 -1 37 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 71064 162 96 1009 950 1 708 300 16 16 256 mult_36 auto 31.2 MiB 3.56 5371 88564 26733 54405 7426 69.4 MiB 1.60 0.01 20.9753 -1548.5 -20.9753 20.9753 2.39 0.00142561 0.00128936 0.187074 0.175506 46 12058 27 1.21132e+07 3.97408e+06 791147. 3090.42 16.13 0.952523 0.920295 26792 163197 -1 10037 19 3263 6488 1051073 260909 22.1926 22.1926 -1736.57 -22.1926 0 0 1.01637e+06 3970.19 1.20 1.06 0.35 -1 -1 1.20 0.234786 0.23044 0.008092 0.3537 0.01628 0.63 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1667.34 vpr 498.08 MiB -1 -1 144.32 350948 123 172.00 -1 -1 82156 -1 -1 1277 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 510036 114 102 21994 21904 1 11867 1546 50 50 2500 memory auto 191.2 MiB 797.15 164477 984396 341560 619558 23278 480.8 MiB 43.60 0.39 81.3796 -51372.9 -81.3796 81.3796 64.66 0.0580813 0.0538211 7.45432 6.37272 100 240715 32 1.47946e+08 9.6653e+07 1.76909e+07 7076.35 287.93 19.8524 17.0744 373728 3941812 -1 214762 21 37798 149570 9908123 1796529 82.1147 82.1147 -65653.6 -82.1147 -27.1769 -0.293253 2.21802e+07 8872.08 8.04 3.84 2.85 -1 -1 8.04 2.10564 1.93225 0.09065 0.4176 0.01141 0.571 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 17.54 vpr 65.28 MiB -1 -1 0.81 21584 3 0.87 -1 -1 37068 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66844 99 130 344 474 1 224 298 12 12 144 clb auto 27.0 MiB 0.24 613 74923 25398 37402 12123 65.3 MiB 0.23 0.00 1.839 -119.464 -1.839 1.839 1.08 0.0004368 0.00039467 0.0297252 0.0265196 50 1247 9 5.66058e+06 4.21279e+06 440062. 3055.98 6.47 0.558669 0.547423 14436 87570 -1 1189 7 289 409 21086 6553 1.98899 1.98899 -140.896 -1.98899 -1.29567 -0.29768 564899. 3922.91 0.72 0.03 0.08 -1 -1 0.72 0.00982496 0.0093716 0.01164 0.2334 0.07046 0.6962 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 49.11 vpr 69.34 MiB -1 -1 1.01 26676 15 1.07 -1 -1 38200 -1 -1 37 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 71000 162 96 1009 950 1 708 300 16 16 256 mult_36 auto 31.2 MiB 4.48 5371 88564 26733 54405 7426 69.3 MiB 2.30 0.00 20.9753 -1548.5 -20.9753 20.9753 2.26 0.000601515 0.000520993 0.886993 0.76491 46 11676 22 1.21132e+07 3.97408e+06 791147. 3090.42 23.41 1.73898 1.5887 26792 163197 -1 10085 19 3292 6578 1048327 260277 22.2433 22.2433 -1672.58 -22.2433 0 0 1.01637e+06 3970.19 0.99 0.71 0.17 -1 -1 0.99 0.401058 0.396803 0.008387 0.342 0.01567 0.6423 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1633.80 vpr 496.20 MiB -1 -1 147.19 352640 123 168.91 -1 -1 82564 -1 -1 1182 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 508112 114 102 21994 21904 1 10940 1451 50 50 2500 memory auto 191.6 MiB 877.79 154452 888239 304307 561658 22274 481.8 MiB 37.23 0.30 78.2539 -52586.4 -78.2539 78.2539 58.97 0.0684197 0.0639946 6.31801 5.30985 98 229563 46 1.47946e+08 9.15329e+07 1.74237e+07 6969.48 192.91 20.0051 17.0121 371232 3885440 -1 203027 22 36338 146810 9236519 1669830 79.2502 79.2502 -62195.8 -79.2502 -16.5833 -0.293253 2.19566e+07 8782.65 8.00 3.87 2.70 -1 -1 8.00 2.15194 1.96794 0.09196 0.4057 0.01158 0.5827 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 16.91 vpr 65.74 MiB -1 -1 0.87 21888 3 0.25 -1 -1 36784 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67316 99 130 344 474 1 226 298 12 12 144 clb auto 27.0 MiB 0.74 538 74923 23743 38186 12994 65.7 MiB 0.46 0.00 1.85836 -118.859 -1.85836 1.85836 1.25 0.00044323 0.00039874 0.0833149 0.0794368 44 1213 11 5.66058e+06 4.21279e+06 360780. 2505.42 6.90 0.345088 0.171848 13094 71552 -1 1006 9 361 566 21966 6628 1.95498 1.95498 -124.29 -1.95498 -1.3969 -0.320482 470765. 3269.20 0.34 0.20 0.23 -1 -1 0.34 0.193415 0.193005 0.0101 0.2387 0.07992 0.6814 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 47.92 vpr 68.84 MiB -1 -1 0.99 26840 15 1.36 -1 -1 38504 -1 -1 37 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70492 162 96 1009 950 1 711 300 16 16 256 mult_36 auto 30.7 MiB 3.23 5580 88564 28209 53179 7176 68.8 MiB 1.44 0.00 21.167 -1577.48 -21.167 21.167 2.90 0.000553365 0.00049063 0.333332 0.322203 52 12084 35 1.21132e+07 3.97408e+06 805949. 3148.24 22.47 2.73815 2.21138 25992 162577 -1 10001 21 3150 6471 953126 250011 22.6633 22.6633 -1754.49 -22.6633 0 0 1.06067e+06 4143.25 1.21 1.18 0.67 -1 -1 1.21 0.232977 0.228467 0.007879 0.3702 0.0172 0.6126 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1418.28 vpr 470.36 MiB -1 -1 145.00 351576 123 171.93 -1 -1 82612 -1 -1 1315 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 481648 114 102 21994 21904 1 12069 1584 50 50 2500 memory auto 192.3 MiB 494.09 161733 1035344 376809 638291 20244 426.2 MiB 47.71 0.39 79.7884 -52633 -79.7884 79.7884 51.20 0.0795758 0.073882 7.82214 6.15179 100 239535 23 1.47946e+08 9.8701e+07 1.63173e+07 6526.93 333.66 33.9002 28.5792 351264 3480436 -1 216591 19 45827 171695 10458335 1849574 80.5324 80.5324 -65613.9 -80.5324 -28.5065 -0.295467 2.05845e+07 8233.80 17.07 8.12 5.20 -1 -1 17.07 4.09986 3.75578 0.08432 0.4351 0.01143 0.5535 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 16.83 vpr 65.55 MiB -1 -1 0.83 21736 3 0.19 -1 -1 36916 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67124 99 130 344 474 1 226 298 12 12 144 clb auto 27.1 MiB 0.46 629 72933 24501 35348 13084 65.6 MiB 0.48 0.00 1.87772 -119.549 -1.87772 1.87772 1.04 0.000452653 0.00040623 0.174031 0.170487 44 1518 15 5.66058e+06 4.21279e+06 360780. 2505.42 6.14 1.10383 1.08443 13094 71552 -1 1281 11 402 620 30031 8814 1.88524 1.88524 -135.78 -1.88524 -0.676272 -0.265573 470765. 3269.20 0.44 0.03 0.20 -1 -1 0.44 0.0156127 0.0147278 0.01213 0.2346 0.06899 0.6964 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 46.26 vpr 68.68 MiB -1 -1 1.55 26524 15 1.10 -1 -1 38504 -1 -1 37 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70332 162 96 1009 950 1 711 300 16 16 256 mult_36 auto 30.6 MiB 3.51 5580 88564 28209 53179 7176 68.7 MiB 1.17 0.01 21.167 -1577.48 -21.167 21.167 2.19 0.00115365 0.00103787 0.263251 0.254836 52 11848 29 1.21132e+07 3.97408e+06 805949. 3148.24 19.66 1.68755 1.64436 25992 162577 -1 10011 19 3121 6382 869066 230925 22.6666 22.6666 -1713.82 -22.6666 0 0 1.06067e+06 4143.25 1.22 1.09 0.49 -1 -1 1.22 0.362726 0.358428 0.008166 0.3564 0.01659 0.627 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1328.64 vpr 427.14 MiB -1 -1 142.77 350980 123 176.23 -1 -1 82612 -1 -1 1230 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 437396 114 102 21994 21904 1 11404 1499 50 50 2500 memory auto 192.8 MiB 529.83 147778 953324 346443 585551 21330 427.1 MiB 40.69 0.27 78.2524 -50084.1 -78.2524 78.2524 54.46 0.0277941 0.0234826 7.20707 6.24514 92 230324 36 1.47946e+08 9.41199e+07 1.52089e+07 6083.58 204.30 25.2542 21.7376 338772 3221652 -1 204378 20 45281 171417 10544859 1903351 77.7124 77.7124 -63142.5 -77.7124 -11.6434 -0.17368 1.93279e+07 7731.17 17.86 9.85 5.34 -1 -1 17.86 4.98385 4.62141 0.08373 0.4084 0.01162 0.5799 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 13.89 vpr 65.46 MiB -1 -1 1.17 21584 3 0.36 -1 -1 36936 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67028 99 130 344 474 1 224 298 12 12 144 clb auto 27.0 MiB 0.57 639 73928 23996 36536 13396 65.5 MiB 0.70 0.00 1.839 -119.624 -1.839 1.839 1.17 0.000186206 0.00016243 0.0288122 0.0256314 46 1373 14 5.66058e+06 4.21279e+06 378970. 2631.74 2.82 0.363528 0.315944 13238 73581 -1 1270 10 404 640 27867 7804 1.92827 1.92827 -132.912 -1.92827 -1.34165 -0.320482 486261. 3376.82 0.64 0.03 0.16 -1 -1 0.64 0.0169172 0.0159901 0.01068 0.2679 0.07864 0.6535 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 45.63 vpr 68.88 MiB -1 -1 1.14 26840 15 1.36 -1 -1 38200 -1 -1 37 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70528 162 96 1009 950 1 710 300 16 16 256 mult_36 auto 30.7 MiB 3.31 5491 86558 27021 52195 7342 68.9 MiB 1.25 0.34 20.8422 -1499.39 -20.8422 20.8422 2.21 0.00126488 0.00115014 0.355281 0.343671 52 12476 25 1.21132e+07 3.97408e+06 805949. 3148.24 21.70 2.51603 2.46771 25992 162577 -1 9995 18 3172 6560 1017823 266673 22.9367 22.9367 -1682.08 -22.9367 0 0 1.06067e+06 4143.25 1.26 0.80 0.64 -1 -1 1.26 0.072601 0.068555 0.00792 0.3643 0.01693 0.6188 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1479.70 vpr 470.31 MiB -1 -1 146.52 350988 123 170.60 -1 -1 82460 -1 -1 1303 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 481600 114 102 21994 21904 1 12000 1572 50 50 2500 memory auto 192.2 MiB 511.84 161777 1024804 369415 632178 23211 426.2 MiB 45.74 0.52 79.8923 -52835.3 -79.8923 79.8923 53.16 0.0653945 0.0613355 7.28465 5.98334 102 240718 39 1.47946e+08 9.80543e+07 1.66061e+07 6642.43 398.17 36.5754 31.2569 353764 3530188 -1 218796 20 45896 172140 11008942 1948718 82.1463 82.1463 -66824.1 -82.1463 -47.1487 -0.200829 2.08230e+07 8329.19 10.19 5.12 3.00 -1 -1 10.19 2.57727 2.35988 0.08548 0.4322 0.01138 0.5564 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 17.72 vpr 65.50 MiB -1 -1 0.83 21584 3 0.17 -1 -1 37220 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67076 99 130 344 474 1 224 298 12 12 144 clb auto 27.0 MiB 0.26 640 74923 24032 38029 12862 65.5 MiB 0.43 0.00 1.85836 -119.386 -1.85836 1.85836 1.19 0.000427283 0.000383087 0.120511 0.0306172 48 1330 15 5.66058e+06 4.21279e+06 394078. 2736.65 6.99 0.537171 0.439507 13382 75762 -1 1278 9 390 592 29773 8505 1.97104 1.97104 -133.596 -1.97104 -0.999065 -0.298787 503207. 3494.49 0.58 0.11 0.14 -1 -1 0.58 0.10463 0.103805 0.0119 0.2454 0.07017 0.6845 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 42.62 vpr 69.23 MiB -1 -1 1.12 26524 15 1.65 -1 -1 38200 -1 -1 37 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70892 162 96 1009 950 1 710 300 16 16 256 mult_36 auto 31.0 MiB 4.17 5491 86558 27021 52195 7342 69.2 MiB 1.25 0.09 20.8422 -1499.39 -20.8422 20.8422 1.99 0.000650897 0.000577386 0.516363 0.50516 50 12593 36 1.21132e+07 3.97408e+06 780512. 3048.87 18.20 1.59155 1.53776 25484 153448 -1 9868 18 3208 6547 956943 250643 22.4753 22.4753 -1640.64 -22.4753 0 0 1.00276e+06 3917.05 1.19 1.66 0.25 -1 -1 1.19 0.973698 0.35489 0.008176 0.3414 0.01571 0.6429 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1450.83 vpr 451.48 MiB -1 -1 145.88 351092 123 171.94 -1 -1 82308 -1 -1 1214 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 462320 114 102 21994 21904 1 11183 1483 50 50 2500 memory auto 191.6 MiB 562.84 147783 922860 327293 577723 17844 426.0 MiB 38.37 0.28 78.8747 -50577.6 -78.8747 78.8747 49.09 0.0250041 0.0209632 7.20624 5.97775 98 225377 21 1.47946e+08 9.32575e+07 1.60641e+07 6425.63 317.00 34.1863 29.5372 348768 3430976 -1 200896 21 42829 165324 9641173 1718310 79.0088 79.0088 -60411.8 -79.0088 -30.4278 -0.295467 2.03677e+07 8147.07 14.76 6.23 4.38 -1 -1 14.76 3.1241 2.84352 0.08621 0.4138 0.01162 0.5746 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/task_list.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/task_list.txt index 5714a36569d..359cb73b4bb 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/task_list.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/task_list.txt @@ -13,4 +13,4 @@ regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/open_cores regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/open_cores_frac #regression_tests/vtr_reg_nightly_test1/symbiflow regression_tests/vtr_reg_nightly_test1/power_extended_arch_list -regression_tests/vtr_reg_nightly_test1/power_extended_circuit_list +regression_tests/vtr_reg_nightly_test1/power_extended_circuit_list \ No newline at end of file diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/FIR_filters/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/FIR_filters/config/golden_results.txt index e71a04d0dbd..6e30998de45 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/FIR_filters/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/FIR_filters/config/golden_results.txt @@ -1,235 +1,235 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_14.v common 8.75 vpr 72.94 MiB 0.06 10688 -1 -1 8 0.59 -1 -1 40204 -1 -1 129 22 0 4 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74692 22 19 1764 1664 1 986 174 16 16 256 mult_36 auto 34.9 MiB 0.31 6950 22484 4314 16298 1872 72.9 MiB 0.35 0.01 3.97876 -1194.27 -3.97876 3.97876 0.82 0.00282128 0.00247538 0.154371 0.135275 54 13279 29 6.2557e+06 3.1391e+06 784202. 3063.29 3.75 0.898366 0.790294 23308 185586 -1 10939 15 3911 7989 660108 160597 4.33936 4.33936 -1345.3 -4.33936 0 0 965591. 3771.84 0.38 0.28 0.19 -1 -1 0.38 0.13023 0.118656 966 909 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_15.v common 14.06 vpr 73.55 MiB 0.07 11152 -1 -1 8 0.60 -1 -1 40768 -1 -1 139 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75312 22 19 1918 1801 1 1083 185 16 16 256 clb mult_36 auto 35.7 MiB 0.33 7708 26485 5012 19283 2190 73.5 MiB 0.41 0.01 4.09896 -1323.08 -4.09896 4.09896 0.80 0.00321197 0.00282657 0.173722 0.15257 64 12735 48 6.2557e+06 3.65564e+06 891356. 3481.86 8.86 1.5564 1.37201 25092 220585 -1 11559 13 3728 7247 701585 162821 4.33936 4.33936 -1472.33 -4.33936 0 0 1.11946e+06 4372.88 0.45 0.27 0.23 -1 -1 0.45 0.12349 0.112542 1047 984 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_16.v common 14.81 vpr 73.41 MiB 0.07 11388 -1 -1 8 0.67 -1 -1 40400 -1 -1 143 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75176 22 19 1976 1859 1 1114 189 17 17 289 clb auto 36.1 MiB 0.35 8087 27831 5702 20181 1948 73.4 MiB 0.43 0.01 3.97876 -1337.86 -3.97876 3.97876 0.92 0.00304645 0.0027101 0.180081 0.157831 60 14041 31 6.55708e+06 3.70386e+06 958460. 3316.47 9.10 1.48146 1.30187 27358 235245 -1 12603 15 4109 8405 790637 184656 4.33936 4.33936 -1525.97 -4.33936 0 0 1.19711e+06 4142.24 0.50 0.33 0.25 -1 -1 0.50 0.149313 0.135733 1086 1023 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_17.v common 10.48 vpr 75.49 MiB 0.08 11976 -1 -1 8 0.74 -1 -1 40892 -1 -1 163 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 77300 22 19 2278 2144 1 1240 209 17 17 289 clb auto 37.7 MiB 0.39 8126 30589 5968 22015 2606 75.5 MiB 0.50 0.01 4.09896 -1524.63 -4.09896 4.09896 0.95 0.00405493 0.0035833 0.221107 0.196051 56 14769 33 6.55708e+06 3.94496e+06 918491. 3178.17 4.43 1.21858 1.07412 26494 218197 -1 13003 18 4596 8764 912568 220841 4.33936 4.33936 -1763.6 -4.33936 0 0 1.12733e+06 3900.80 0.44 0.37 0.22 -1 -1 0.44 0.180601 0.163162 1242 1171 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_18.v common 28.48 vpr 75.94 MiB 0.08 12348 -1 -1 8 0.78 -1 -1 40480 -1 -1 168 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 77760 22 19 2336 2202 1 1265 214 18 18 324 clb auto 38.2 MiB 0.42 8889 37276 7702 27115 2459 75.9 MiB 0.56 0.01 3.97876 -1560.56 -3.97876 3.97876 1.12 0.00375959 0.00331858 0.240747 0.211605 50 18122 50 7.67456e+06 4.00524e+06 975281. 3010.13 21.57 2.03044 1.78169 28904 225404 -1 14699 35 5453 10624 1782416 472012 4.33936 4.33936 -1792.05 -4.33936 0 0 1.16663e+06 3600.72 0.43 0.73 0.23 -1 -1 0.43 0.295091 0.262494 1281 1210 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_19.v common 17.68 vpr 76.11 MiB 0.08 12600 -1 -1 8 0.81 -1 -1 41156 -1 -1 175 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 77936 22 19 2488 2337 1 1372 222 18 18 324 clb auto 39.0 MiB 0.41 9855 37127 8192 26388 2547 76.1 MiB 0.60 0.01 3.97876 -1658.31 -3.97876 3.97876 1.08 0.00439298 0.00388642 0.266819 0.235391 64 16249 20 7.67456e+06 4.48562e+06 1.16663e+06 3600.72 10.89 2.18375 1.93252 32132 291232 -1 15051 13 4838 9736 992282 226550 4.33936 4.33936 -1875.5 -4.33936 0 0 1.46385e+06 4518.05 0.61 0.37 0.31 -1 -1 0.61 0.160884 0.146607 1360 1285 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_20.v common 14.17 vpr 76.41 MiB 0.09 12704 -1 -1 8 0.91 -1 -1 41080 -1 -1 182 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 78240 22 19 2546 2395 1 1407 229 18 18 324 clb auto 39.0 MiB 0.43 10398 41529 9428 29957 2144 76.4 MiB 0.69 0.01 4.21916 -1734.27 -4.21916 4.21916 1.14 0.00431526 0.00385525 0.287704 0.254341 58 18576 38 7.67456e+06 4.57001e+06 1.07356e+06 3313.45 7.05 1.44243 1.26931 30840 265148 -1 16315 13 5424 10868 1122122 258343 4.33936 4.33936 -1966.31 -4.33936 0 0 1.34501e+06 4151.27 0.55 0.39 0.27 -1 -1 0.55 0.162853 0.147565 1399 1324 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_21.v common 17.92 vpr 77.82 MiB 0.10 13128 -1 -1 8 1.03 -1 -1 41516 -1 -1 193 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79688 22 19 2735 2567 1 1516 240 19 19 361 clb auto 40.6 MiB 0.48 11377 38980 8200 28513 2267 77.8 MiB 0.62 0.01 4.21916 -1866 -4.21916 4.21916 1.26 0.00502901 0.00445507 0.258818 0.226302 56 21028 45 8.02416e+06 4.70262e+06 1.18337e+06 3278.02 10.14 1.89838 1.67387 33518 283317 -1 18533 14 6220 12462 1433584 324336 4.33936 4.33936 -2213.23 -4.33936 0 0 1.45127e+06 4020.14 0.62 0.51 0.29 -1 -1 0.62 0.199363 0.182373 1497 1417 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_22.v common 19.54 vpr 78.04 MiB 0.10 13500 -1 -1 8 1.06 -1 -1 41820 -1 -1 200 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79912 22 19 2793 2625 1 1545 247 19 19 361 clb auto 40.7 MiB 0.51 12225 45913 10605 32518 2790 78.0 MiB 0.83 0.01 4.09896 -1922.19 -4.09896 4.09896 1.33 0.00583796 0.00527046 0.368801 0.328246 58 22230 39 8.02416e+06 4.787e+06 1.20750e+06 3344.89 11.22 1.94263 1.72862 34238 298765 -1 18740 14 6151 12451 1327066 290823 4.57976 4.57976 -2206.22 -4.57976 0 0 1.51231e+06 4189.22 0.69 0.52 0.30 -1 -1 0.69 0.230375 0.210967 1536 1456 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_23.v common 14.97 vpr 79.60 MiB 0.10 13620 -1 -1 8 1.10 -1 -1 42292 -1 -1 211 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 81512 22 19 2947 2762 1 1644 259 19 19 361 clb auto 41.5 MiB 0.52 11753 42334 8594 31743 1997 79.6 MiB 0.67 0.01 3.97876 -2014.86 -3.97876 3.97876 1.27 0.00457914 0.00402936 0.268535 0.234035 58 20786 33 8.02416e+06 5.3156e+06 1.20750e+06 3344.89 6.93 1.65125 1.45282 34238 298765 -1 18146 13 6170 12370 1196493 283483 4.33936 4.33936 -2321.54 -4.33936 0 0 1.51231e+06 4189.22 0.66 0.45 0.30 -1 -1 0.66 0.198937 0.181291 1617 1531 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_24.v common 16.83 vpr 79.12 MiB 0.11 13888 -1 -1 8 1.17 -1 -1 42144 -1 -1 216 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 81024 22 19 3005 2820 1 1676 264 19 19 361 clb auto 41.9 MiB 0.53 12038 47640 10271 34539 2830 79.1 MiB 0.74 0.01 3.97876 -2047.55 -3.97876 3.97876 1.26 0.00479762 0.00409112 0.296687 0.256003 58 21487 43 8.02416e+06 5.37588e+06 1.20750e+06 3344.89 8.62 1.74659 1.52977 34238 298765 -1 18506 15 6230 12542 1297201 303049 4.21916 4.21916 -2316.09 -4.21916 0 0 1.51231e+06 4189.22 0.63 0.48 0.30 -1 -1 0.63 0.205088 0.185267 1656 1570 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_25.v common 25.27 vpr 80.47 MiB 0.11 14436 -1 -1 8 1.27 -1 -1 44060 -1 -1 231 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 82400 22 19 3229 3027 1 1787 279 20 20 400 clb auto 43.4 MiB 0.57 14117 50384 10985 36503 2896 80.5 MiB 0.88 0.01 4.21916 -2315.15 -4.21916 4.21916 1.47 0.00551374 0.00488139 0.363541 0.32138 60 24883 50 1.09209e+07 5.5567e+06 1.36764e+06 3419.10 16.12 2.77971 2.4504 38726 338483 -1 21185 14 6962 14688 1438925 321635 4.57976 4.57976 -2635.99 -4.57976 0 0 1.70760e+06 4269.00 0.75 0.54 0.32 -1 -1 0.75 0.234449 0.213434 1771 1681 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_26.v common 18.84 vpr 81.66 MiB 0.12 14504 -1 -1 8 1.38 -1 -1 44296 -1 -1 237 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 83624 22 19 3287 3085 1 1821 285 21 21 441 clb auto 43.6 MiB 0.72 12904 61190 14457 43853 2880 81.7 MiB 0.95 0.01 3.97876 -2318 -3.97876 3.97876 1.59 0.0051613 0.00448483 0.375788 0.323973 56 23450 28 1.13066e+07 5.62904e+06 1.45633e+06 3302.33 8.86 2.16819 1.91401 41182 349235 -1 21258 17 7517 15304 1566154 366935 4.21916 4.21916 -2613.91 -4.21916 0 0 1.78656e+06 4051.16 0.78 0.63 0.35 -1 -1 0.78 0.283278 0.257824 1810 1720 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_27.v common 33.41 vpr 82.48 MiB 0.12 15144 -1 -1 8 1.41 -1 -1 43232 -1 -1 251 22 0 8 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84464 22 19 3453 3234 1 1931 300 21 21 441 clb auto 44.6 MiB 0.59 14026 64492 15465 45323 3704 82.5 MiB 1.02 0.02 4.09896 -2434.05 -4.09896 4.09896 1.59 0.00556357 0.00488192 0.395889 0.344825 58 25685 50 1.13066e+07 6.1938e+06 1.48593e+06 3369.47 23.31 2.8567 2.48521 42062 368216 -1 21881 15 7217 14968 1469419 338525 4.21916 4.21916 -2822.87 -4.21916 0 0 1.86135e+06 4220.76 0.85 0.59 0.38 -1 -1 0.85 0.260882 0.237237 1903 1795 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_28.v common 37.59 vpr 83.00 MiB 0.12 15148 -1 -1 8 1.46 -1 -1 43184 -1 -1 256 22 0 8 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84996 22 19 3511 3292 1 1964 305 21 21 441 clb auto 45.2 MiB 0.64 14136 61865 14021 44839 3005 83.0 MiB 1.07 0.02 4.21916 -2498.53 -4.21916 4.21916 1.66 0.00599192 0.00530113 0.428301 0.374901 58 25540 34 1.13066e+07 6.25408e+06 1.48593e+06 3369.47 27.22 3.10275 2.72391 42062 368216 -1 22023 13 7407 15125 1544820 351812 4.45956 4.45956 -2789.36 -4.45956 0 0 1.86135e+06 4220.76 0.89 0.57 0.38 -1 -1 0.89 0.240894 0.219153 1942 1834 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_29.v common 28.00 vpr 85.19 MiB 0.13 15728 -1 -1 8 1.55 -1 -1 45208 -1 -1 268 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87236 22 19 3709 3473 1 2078 318 22 22 484 clb mult_36 auto 46.9 MiB 0.66 17087 69758 16122 49974 3662 84.1 MiB 1.08 0.02 4.09896 -2509.73 -4.09896 4.09896 1.89 0.00577704 0.00499599 0.416428 0.363017 64 28412 21 1.25085e+07 6.79474e+06 1.79645e+06 3711.66 16.71 2.36492 2.08265 48502 451691 -1 25409 14 7719 15888 1704627 365555 4.45956 4.45956 -2999.39 -4.45956 0 0 2.25323e+06 4655.43 1.01 0.65 0.43 -1 -1 1.01 0.274714 0.25024 2049 1927 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_30.v common 30.58 vpr 84.31 MiB 0.14 15872 -1 -1 8 1.65 -1 -1 45164 -1 -1 274 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 86336 22 19 3767 3531 1 2107 324 22 22 484 clb mult_36 auto 46.9 MiB 0.65 15670 75940 17509 53893 4538 84.3 MiB 1.26 0.02 3.85856 -2552.39 -3.85856 3.85856 1.87 0.00691441 0.0061691 0.49017 0.427793 62 29067 44 1.25085e+07 6.86707e+06 1.74100e+06 3597.11 19.04 3.48224 3.05533 47538 430501 -1 23353 16 7629 15902 1415187 320005 4.33936 4.33936 -3025.71 -4.33936 0 0 2.15309e+06 4448.52 0.96 0.60 0.43 -1 -1 0.96 0.290796 0.263881 2088 1966 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_31.v common 19.37 vpr 85.43 MiB 0.14 16184 -1 -1 8 1.75 -1 -1 45744 -1 -1 288 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87484 22 19 3928 3675 1 2213 338 22 22 484 clb mult_36 auto 48.1 MiB 0.70 16317 73250 16944 52034 4272 85.4 MiB 1.15 0.02 3.97876 -2647.52 -3.97876 3.97876 1.84 0.00608248 0.00522636 0.42825 0.369463 64 26821 16 1.25085e+07 7.03584e+06 1.79645e+06 3711.66 7.63 2.00423 1.75652 48502 451691 -1 24619 14 7666 16227 1599307 362335 4.33936 4.33936 -3087.7 -4.33936 0 0 2.25323e+06 4655.43 1.03 0.66 0.46 -1 -1 1.03 0.291156 0.264906 2176 2041 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_32.v common 29.01 vpr 86.09 MiB 0.14 16164 -1 -1 8 1.77 -1 -1 46236 -1 -1 292 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 88156 22 19 3986 3733 1 2248 342 22 22 484 clb mult_36 auto 48.2 MiB 0.71 18206 67262 14267 49464 3531 85.5 MiB 1.16 0.02 4.09896 -2779.53 -4.09896 4.09896 1.80 0.00635347 0.00561765 0.43978 0.384062 64 29888 24 1.25085e+07 7.08406e+06 1.79645e+06 3711.66 17.33 3.0183 2.65773 48502 451691 -1 26453 13 8005 16907 1562907 350202 4.45956 4.45956 -3159.17 -4.45956 0 0 2.25323e+06 4655.43 1.04 0.62 0.46 -1 -1 1.04 0.277289 0.252645 2215 2080 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_33.v common 26.88 vpr 87.38 MiB 0.16 17148 -1 -1 8 1.87 -1 -1 44652 -1 -1 314 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89472 22 19 4329 4059 1 2377 365 23 23 529 clb auto 50.2 MiB 0.77 18099 82454 19138 59519 3797 87.4 MiB 1.38 0.02 4.09896 -3027.72 -4.09896 4.09896 2.05 0.00886854 0.00802358 0.532768 0.464087 58 31696 42 1.29425e+07 7.74527e+06 1.81842e+06 3437.46 13.90 2.81402 2.4769 50706 452665 -1 27989 27 8880 18001 2165752 531671 4.33936 4.33936 -3433.42 -4.33936 0 0 2.27638e+06 4303.19 0.99 1.01 0.46 -1 -1 0.99 0.485647 0.434068 2394 2246 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_34.v common 34.11 vpr 91.73 MiB 0.16 17320 -1 -1 8 2.00 -1 -1 46492 -1 -1 320 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 93932 22 19 4387 4117 1 2404 371 23 23 529 clb auto 50.7 MiB 0.76 19886 89615 21729 64145 3741 87.9 MiB 1.44 0.02 4.09896 -3102.53 -4.09896 4.09896 1.99 0.00802373 0.00691866 0.537851 0.463309 64 33737 42 1.29425e+07 7.8176e+06 1.97533e+06 3734.07 21.05 3.84338 3.37425 52818 497331 -1 29856 15 9134 18993 2025315 431763 4.45956 4.45956 -3559.18 -4.45956 0 0 2.47740e+06 4683.17 1.14 0.73 0.51 -1 -1 1.14 0.297967 0.268625 2433 2285 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_35.v common 36.40 vpr 91.61 MiB 0.16 17896 -1 -1 8 2.09 -1 -1 44948 -1 -1 332 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 93804 22 19 4547 4260 1 2527 383 23 23 529 clb auto 51.1 MiB 0.78 20203 92123 22391 65583 4149 88.5 MiB 1.52 0.02 4.21916 -3208.51 -4.21916 4.21916 2.01 0.00737096 0.00652208 0.560869 0.483883 66 33509 34 1.29425e+07 7.96226e+06 2.03400e+06 3844.99 23.00 4.45128 3.91677 53346 510233 -1 29603 13 8960 19237 1955740 433109 4.33936 4.33936 -3547.06 -4.33936 0 0 2.53752e+06 4796.82 1.20 0.77 0.48 -1 -1 1.20 0.335966 0.306555 2520 2360 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_36.v common 37.52 vpr 93.32 MiB 0.17 18100 -1 -1 8 2.19 -1 -1 47280 -1 -1 338 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 95564 22 19 4605 4318 1 2554 389 24 24 576 clb auto 51.8 MiB 0.84 19192 89786 21571 63212 5003 89.1 MiB 1.60 0.02 3.97876 -3173.17 -3.97876 3.97876 2.30 0.00913558 0.00820412 0.639943 0.564697 62 33685 33 1.51154e+07 8.03459e+06 2.06880e+06 3591.66 23.09 5.06255 4.51036 56266 511197 -1 28622 15 9120 19125 1787870 401768 4.33936 4.33936 -3584.43 -4.33936 0 0 2.55996e+06 4444.37 1.24 0.83 0.52 -1 -1 1.24 0.405226 0.370166 2559 2399 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_37.v common 34.59 vpr 89.20 MiB 0.18 18252 -1 -1 8 2.34 -1 -1 44048 -1 -1 351 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 91340 22 19 4802 4498 1 2682 403 24 24 576 clb mult_36 auto 52.4 MiB 0.84 21956 98611 23267 70695 4649 89.2 MiB 1.64 0.02 4.21916 -3341.58 -4.21916 4.21916 2.27 0.00817262 0.00720333 0.591013 0.510659 60 37156 31 1.51154e+07 8.5873e+06 2.00908e+06 3487.99 19.81 3.0441 2.68093 55690 499183 -1 32903 15 10273 20986 2416203 519955 4.45956 4.45956 -3848.46 -4.45956 0 0 2.50809e+06 4354.32 1.22 0.95 0.50 -1 -1 1.22 0.397746 0.362393 2665 2492 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_38.v common 58.20 vpr 89.91 MiB 0.18 18424 -1 -1 8 2.39 -1 -1 47224 -1 -1 355 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 92068 22 19 4860 4556 1 2713 407 25 25 625 clb auto 53.2 MiB 0.87 21079 111925 28546 77279 6100 89.9 MiB 1.80 0.02 4.09896 -3420.96 -4.09896 4.09896 2.51 0.00828543 0.006866 0.647448 0.560057 58 37590 49 1.55855e+07 8.63552e+06 2.14341e+06 3429.45 42.74 5.35778 4.6943 59588 533201 -1 32297 14 10403 22809 2128773 478681 4.45956 4.45956 -4033.08 -4.45956 0 0 2.68463e+06 4295.40 1.31 0.80 0.54 -1 -1 1.31 0.335286 0.303673 2704 2531 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_39.v common 33.73 vpr 94.43 MiB 0.18 18852 -1 -1 8 2.52 -1 -1 47296 -1 -1 370 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 96696 22 19 5019 4698 1 2814 422 25 25 625 clb auto 54.1 MiB 0.92 22025 111162 28522 76731 5909 92.1 MiB 1.78 0.02 4.33936 -3519.41 -4.33936 4.33936 2.36 0.00795811 0.00697266 0.621396 0.536095 60 37992 31 1.55855e+07 8.81635e+06 2.19200e+06 3507.21 17.80 3.08382 2.70538 60212 545296 -1 33430 34 10552 21862 2779460 660410 4.45956 4.45956 -4008.99 -4.45956 0 0 2.73590e+06 4377.44 1.33 1.30 0.55 -1 -1 1.33 0.627494 0.556372 2790 2606 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_40.v common 27.15 vpr 91.36 MiB 0.19 18944 -1 -1 8 2.68 -1 -1 47748 -1 -1 373 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 93552 22 19 5077 4756 1 2844 425 25 25 625 clb auto 54.6 MiB 0.92 22689 112215 28554 78433 5228 91.4 MiB 1.86 0.03 4.09896 -3625.33 -4.09896 4.09896 2.47 0.00907938 0.00768794 0.658025 0.566932 66 36941 31 1.55855e+07 8.85252e+06 2.39749e+06 3835.99 11.06 2.99029 2.62404 62708 601000 -1 33061 15 9671 20134 1875009 414680 4.57976 4.57976 -4182.16 -4.57976 0 0 2.99279e+06 4788.46 1.39 0.79 0.61 -1 -1 1.39 0.38097 0.345004 2829 2645 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_41.v common 79.83 vpr 96.98 MiB 0.19 19524 -1 -1 8 2.79 -1 -1 48140 -1 -1 390 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 99312 22 19 5308 4970 1 2955 443 25 25 625 clb auto 55.8 MiB 0.97 24295 118603 30276 82434 5893 93.6 MiB 1.85 0.02 4.21916 -3735.1 -4.21916 4.21916 2.46 0.0083342 0.00724295 0.661549 0.565313 62 42239 27 1.55855e+07 9.45345e+06 2.25743e+06 3611.89 63.53 5.31695 4.65492 60836 558452 -1 35386 16 11338 23622 2241756 509042 4.33936 4.33936 -4245.26 -4.33936 0 0 2.79245e+06 4467.92 1.34 0.89 0.55 -1 -1 1.34 0.401834 0.362437 2951 2756 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_42.v common 40.42 vpr 107.80 MiB 0.20 19796 -1 -1 8 2.78 -1 -1 48584 -1 -1 397 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 110384 22 19 5366 5028 1 2986 450 26 26 676 clb auto 56.4 MiB 0.99 22059 126229 32906 88025 5298 92.8 MiB 1.99 0.03 3.97876 -3739.3 -3.97876 3.97876 2.72 0.0087742 0.00773125 0.703795 0.605637 60 36976 32 1.89118e+07 9.53784e+06 2.42032e+06 3580.36 23.22 4.16726 3.65658 66764 605600 -1 33538 14 10915 23001 2070408 465145 4.33936 4.33936 -4304.98 -4.33936 0 0 3.01907e+06 4466.08 1.49 0.87 0.62 -1 -1 1.49 0.409541 0.373734 2990 2795 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_43.v common 39.15 vpr 98.01 MiB 0.20 20196 -1 -1 8 2.77 -1 -1 49136 -1 -1 404 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 100360 22 19 5524 5169 1 3090 457 26 26 676 clb auto 57.3 MiB 1.01 22797 128864 34818 87814 6232 95.0 MiB 2.13 0.03 4.09896 -3949.66 -4.09896 4.09896 2.74 0.00904196 0.00796249 0.768392 0.658237 58 40039 26 1.89118e+07 9.62222e+06 2.36678e+06 3501.15 21.69 3.29017 2.8653 66088 592148 -1 35400 14 11484 23274 2316005 522037 4.45956 4.45956 -4603.02 -4.45956 0 0 2.96266e+06 4382.64 1.44 0.93 0.60 -1 -1 1.44 0.42174 0.383139 3075 2870 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_44.v common 42.31 vpr 112.72 MiB 0.22 20412 -1 -1 8 2.91 -1 -1 48812 -1 -1 410 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 115428 22 19 5582 5227 1 3122 463 26 26 676 clb auto 57.8 MiB 0.96 23985 131133 34172 91366 5595 95.3 MiB 2.16 0.03 3.97876 -3955.1 -3.97876 3.97876 2.70 0.00971406 0.00862054 0.773427 0.669341 66 38683 30 1.89118e+07 9.69455e+06 2.64624e+06 3914.56 24.81 4.63323 4.07624 69464 667360 -1 35704 13 10565 22862 2235373 489103 4.33936 4.33936 -4647.83 -4.33936 0 0 3.30163e+06 4884.07 1.61 0.88 0.64 -1 -1 1.61 0.407164 0.370827 3114 2909 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_45.v common 56.48 vpr 102.78 MiB 0.21 20680 -1 -1 8 3.24 -1 -1 49636 -1 -1 425 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 105244 22 19 5779 5407 1 3235 479 26 26 676 clb auto 58.9 MiB 1.04 24480 135335 35427 94438 5470 96.4 MiB 2.22 0.03 3.97876 -3976.67 -3.97876 3.97876 2.75 0.0101618 0.00905163 0.784002 0.679981 60 41314 41 1.89118e+07 1.02714e+07 2.42032e+06 3580.36 38.15 6.60336 5.82023 66764 605600 -1 36793 15 11827 24486 2552762 577407 4.33936 4.33936 -4657.2 -4.33936 0 0 3.01907e+06 4466.08 1.50 1.06 0.61 -1 -1 1.50 0.484969 0.442179 3220 3002 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_46.v common 36.91 vpr 101.14 MiB 0.21 21048 -1 -1 8 3.39 -1 -1 49496 -1 -1 430 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 103572 22 19 5837 5465 1 3273 484 26 26 676 clb auto 59.0 MiB 1.09 25354 133414 34046 94363 5005 96.4 MiB 2.42 0.03 4.09896 -4049.03 -4.09896 4.09896 2.85 0.011603 0.010481 0.905995 0.790879 62 43998 45 1.89118e+07 1.03316e+07 2.49248e+06 3687.09 17.88 5.31956 4.73624 67440 620228 -1 37238 14 11863 24873 2415389 536316 4.45956 4.45956 -4755.27 -4.45956 0 0 3.08129e+06 4558.12 1.53 1.09 0.61 -1 -1 1.53 0.520224 0.474091 3259 3041 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_47.v common 47.69 vpr 126.25 MiB 0.22 21176 -1 -1 8 3.62 -1 -1 49548 -1 -1 439 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 129276 22 19 5997 5608 1 3373 493 27 27 729 clb auto 59.6 MiB 1.08 26739 142551 37614 98306 6631 97.2 MiB 2.42 0.03 4.21916 -4297.45 -4.21916 4.21916 3.09 0.00986826 0.00869597 0.858127 0.75202 68 42234 19 1.94302e+07 1.04401e+07 2.93284e+06 4023.09 27.69 4.98592 4.394 75330 737039 -1 38718 15 11599 23921 2313999 510246 4.57976 4.57976 -4916.79 -4.57976 0 0 3.64745e+06 5003.36 1.79 0.91 0.74 -1 -1 1.79 0.412289 0.370584 3346 3116 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_48.v common 47.65 vpr 126.68 MiB 0.22 21548 -1 -1 8 3.38 -1 -1 50028 -1 -1 448 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 129716 22 19 6055 5666 1 3405 502 27 27 729 clb auto 60.2 MiB 1.12 27808 142076 35951 101311 4814 97.7 MiB 2.31 0.03 4.21916 -4391.89 -4.21916 4.21916 3.02 0.0100591 0.00889228 0.78181 0.680163 66 45323 49 1.94302e+07 1.05486e+07 2.86480e+06 3929.76 28.12 5.17704 4.54085 74602 723059 -1 40781 13 11889 25062 2611322 554995 4.45956 4.45956 -5001.08 -4.45956 0 0 3.57338e+06 4901.75 1.69 0.95 0.74 -1 -1 1.69 0.398459 0.360516 3385 3155 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_49.v common 53.86 vpr 119.89 MiB 0.24 21864 -1 -1 8 3.84 -1 -1 50308 -1 -1 465 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 122772 22 19 6324 5918 1 3526 520 27 27 729 clb auto 61.6 MiB 1.14 29007 161450 43721 111550 6179 99.0 MiB 2.71 0.03 4.33936 -4547.8 -4.33936 4.33936 3.10 0.00906845 0.00770856 0.926287 0.801211 66 47835 33 1.94302e+07 1.11496e+07 2.86480e+06 3929.76 32.78 5.41941 4.74339 74602 723059 -1 42499 15 12778 27325 3072270 656584 4.69996 4.69996 -5126.18 -4.69996 0 0 3.57338e+06 4901.75 1.79 1.19 0.73 -1 -1 1.79 0.506976 0.460794 3527 3284 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_50.v common 37.48 vpr 108.77 MiB 0.23 22080 -1 -1 8 3.63 -1 -1 50468 -1 -1 466 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 111376 22 19 6382 5976 1 3558 521 27 27 729 clb auto 62.1 MiB 1.16 27189 151361 39519 105451 6391 99.4 MiB 2.51 0.03 4.09896 -4561.85 -4.09896 4.09896 2.99 0.0104929 0.00922855 0.863042 0.743715 64 44952 29 1.94302e+07 1.11616e+07 2.78336e+06 3818.06 17.24 5.10782 4.50158 73874 704979 -1 41044 14 12633 26549 2624300 573522 4.45956 4.45956 -5204.83 -4.45956 0 0 3.48985e+06 4787.17 1.74 1.06 0.71 -1 -1 1.74 0.48173 0.437387 3566 3323 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_51.v common 39.50 vpr 111.37 MiB 0.27 22576 -1 -1 8 3.61 -1 -1 51360 -1 -1 479 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 114044 22 19 6542 6119 1 3674 534 28 28 784 clb auto 62.9 MiB 1.24 29173 156414 40019 109909 6486 100.2 MiB 2.65 0.04 4.21916 -4706.31 -4.21916 4.21916 3.19 0.0105177 0.00929938 0.920872 0.796904 62 50315 29 2.18512e+07 1.13183e+07 2.87318e+06 3664.77 18.51 4.86631 4.28067 77276 713722 -1 42808 14 13234 27957 2772469 603588 4.45956 4.45956 -5285.65 -4.45956 0 0 3.55346e+06 4532.48 1.74 1.11 0.71 -1 -1 1.74 0.491957 0.447273 3653 3398 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_52.v common 41.45 vpr 111.80 MiB 0.23 22624 -1 -1 8 3.93 -1 -1 51588 -1 -1 485 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 114480 22 19 6600 6177 1 3704 540 28 28 784 clb auto 63.5 MiB 1.18 30568 152202 39113 107231 5858 100.7 MiB 2.39 0.04 4.21916 -4801.78 -4.21916 4.21916 3.18 0.0116992 0.0103868 0.788803 0.678439 60 51409 47 2.18512e+07 1.13907e+07 2.78985e+06 3558.49 20.36 5.0332 4.41621 76492 696852 -1 46024 13 14256 30617 3068555 660987 4.57976 4.57976 -5679.83 -4.57976 0 0 3.48130e+06 4440.43 1.74 1.15 0.70 -1 -1 1.74 0.465388 0.422293 3692 3437 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_14.v common 28.58 vpr 69.31 MiB 0.05 9720 -1 -1 10 0.62 -1 -1 38776 -1 -1 93 22 0 4 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 70972 22 19 1149 1049 1 787 138 16 16 256 mult_36 auto 31.6 MiB 0.22 5203 17226 3437 12408 1381 69.3 MiB 0.28 0.01 11.5066 -378.727 -11.5066 11.5066 0.83 0.00228846 0.00204438 0.131501 0.118679 50 10859 45 6.2557e+06 2.70512e+06 744679. 2908.90 23.92 1.44179 1.2839 22544 170752 -1 9537 21 4554 9502 952532 214813 12.1591 12.1591 -516.42 -12.1591 0 0 891356. 3481.86 0.35 0.33 0.17 -1 -1 0.35 0.124739 0.113829 715 658 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_15.v common 10.08 vpr 70.27 MiB 0.06 9768 -1 -1 11 0.64 -1 -1 39072 -1 -1 106 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71952 22 19 1261 1144 1 879 152 16 16 256 mult_36 auto 32.4 MiB 0.24 6049 16757 3015 12438 1304 70.3 MiB 0.28 0.01 12.5671 -431.764 -12.5671 12.5671 0.82 0.00273135 0.0024435 0.126681 0.114174 56 11759 43 6.2557e+06 3.25783e+06 803869. 3140.11 5.27 0.872244 0.783319 23564 190428 -1 10542 18 4706 9723 1013153 237134 12.9573 12.9573 -580.952 -12.9573 0 0 987003. 3855.48 0.39 0.34 0.19 -1 -1 0.39 0.120423 0.110373 790 727 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_16.v common 11.83 vpr 70.77 MiB 0.06 9860 -1 -1 11 0.67 -1 -1 40052 -1 -1 112 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72464 22 19 1336 1219 1 929 158 16 16 256 mult_36 auto 33.0 MiB 0.25 6304 16811 2985 12580 1246 70.8 MiB 0.28 0.01 13.0968 -433.621 -13.0968 13.0968 0.81 0.00271927 0.00243872 0.1226 0.110588 54 12739 33 6.2557e+06 3.33016e+06 784202. 3063.29 7.02 1.11371 0.991507 23308 185586 -1 10528 18 4739 9524 916006 216721 13.6188 13.6188 -540.357 -13.6188 0 0 965591. 3771.84 0.36 0.32 0.19 -1 -1 0.36 0.121704 0.110484 846 783 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_17.v common 15.27 vpr 71.21 MiB 0.07 10200 -1 -1 11 0.75 -1 -1 40252 -1 -1 121 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72920 22 19 1446 1312 1 989 167 16 16 256 mult_36 auto 33.6 MiB 0.28 7177 18068 2964 13629 1475 71.2 MiB 0.31 0.01 12.8686 -455.531 -12.8686 12.8686 0.82 0.00289612 0.00260314 0.133167 0.119702 54 14767 48 6.2557e+06 3.43866e+06 784202. 3063.29 10.11 1.5585 1.3854 23308 185586 -1 11792 21 5545 11599 1279267 322865 13.872 13.872 -590.134 -13.872 0 0 965591. 3771.84 0.38 0.46 0.17 -1 -1 0.38 0.160793 0.145467 919 848 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_18.v common 11.07 vpr 71.78 MiB 0.07 10520 -1 -1 11 0.81 -1 -1 40056 -1 -1 128 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 73500 22 19 1507 1373 1 1035 174 16 16 256 mult_36 auto 34.3 MiB 0.28 7769 18604 3057 14083 1464 71.8 MiB 0.32 0.01 12.9567 -485.19 -12.9567 12.9567 0.81 0.00306138 0.00277719 0.140779 0.126426 58 14489 44 6.2557e+06 3.52304e+06 820238. 3204.05 5.73 0.978935 0.871547 24072 200857 -1 12852 19 5690 11995 1068605 257243 13.6407 13.6407 -764.054 -13.6407 0 0 1.02849e+06 4017.54 0.44 0.41 0.22 -1 -1 0.44 0.158118 0.144242 961 890 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_19.v common 14.41 vpr 72.40 MiB 0.07 10612 -1 -1 11 0.85 -1 -1 39600 -1 -1 135 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74136 22 19 1596 1445 1 1100 182 16 16 256 clb mult_36 auto 34.8 MiB 0.31 7817 20782 3082 16224 1476 72.4 MiB 0.37 0.01 12.974 -505.115 -12.974 12.974 0.82 0.00322964 0.00289921 0.159019 0.143111 60 14196 44 6.2557e+06 4.00342e+06 838722. 3276.26 8.96 1.60042 1.42538 24328 205314 -1 12632 19 5412 11419 1069634 253455 13.8154 13.8154 -693.573 -13.8154 0 0 1.04796e+06 4093.58 0.41 0.39 0.21 -1 -1 0.41 0.149836 0.136464 1013 938 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_20.v common 11.33 vpr 72.64 MiB 0.07 10912 -1 -1 11 0.90 -1 -1 40076 -1 -1 137 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74384 22 19 1656 1505 1 1146 184 16 16 256 clb mult_36 auto 35.1 MiB 0.29 8225 21104 3333 16460 1311 72.6 MiB 0.35 0.01 13.055 -521.844 -13.055 13.055 0.86 0.00298609 0.00262964 0.148614 0.132739 58 15443 26 6.2557e+06 4.02754e+06 820238. 3204.05 5.74 0.944002 0.838124 24072 200857 -1 13416 18 5731 11689 1194013 283234 13.8572 13.8572 -708.305 -13.8572 0 0 1.02849e+06 4017.54 0.40 0.43 0.20 -1 -1 0.40 0.160056 0.146464 1054 979 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_21.v common 13.39 vpr 73.00 MiB 0.08 11352 -1 -1 12 0.98 -1 -1 40428 -1 -1 145 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74748 22 19 1754 1586 1 1213 192 17 17 289 clb auto 35.6 MiB 0.33 9372 24524 4200 18624 1700 73.0 MiB 0.42 0.01 13.0709 -523.895 -13.0709 13.0709 0.98 0.00353219 0.00317799 0.178261 0.159529 60 16834 24 6.55708e+06 4.12398e+06 958460. 3316.47 7.04 1.02725 0.914342 27358 235245 -1 14653 22 6836 14072 1605498 363703 13.5517 13.5517 -670.062 -13.5517 0 0 1.19711e+06 4142.24 0.50 0.56 0.24 -1 -1 0.50 0.192806 0.175786 1115 1035 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_22.v common 16.86 vpr 73.88 MiB 0.08 11200 -1 -1 11 1.02 -1 -1 40988 -1 -1 154 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75648 22 19 1827 1659 1 1262 201 17 17 289 clb auto 36.3 MiB 0.36 9359 24897 4182 18980 1735 73.9 MiB 0.46 0.01 13.1655 -601.995 -13.1655 13.1655 0.98 0.00401374 0.00364558 0.205027 0.184197 64 15645 26 6.55708e+06 4.23247e+06 1.01866e+06 3524.77 10.35 1.6987 1.52947 28222 252754 -1 14459 18 6156 12592 1346678 305905 13.8887 13.8887 -808.872 -13.8887 0 0 1.27888e+06 4425.19 0.54 0.51 0.26 -1 -1 0.54 0.201568 0.185499 1169 1089 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_23.v common 30.00 vpr 74.07 MiB 0.09 11656 -1 -1 12 1.09 -1 -1 41652 -1 -1 157 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75852 22 19 1905 1720 1 1323 205 18 18 324 mult_36 auto 36.7 MiB 0.36 9770 31613 6051 23433 2129 74.1 MiB 0.54 0.01 13.6417 -596.742 -13.6417 13.6417 1.12 0.00384735 0.00347484 0.231268 0.206522 58 19311 46 7.67456e+06 4.66464e+06 1.07356e+06 3313.45 22.82 1.89384 1.67643 30840 265148 -1 16505 23 7101 14801 1778786 400726 14.4831 14.4831 -807.998 -14.4831 0 0 1.34501e+06 4151.27 0.55 0.65 0.28 -1 -1 0.55 0.232669 0.21196 1210 1124 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_24.v common 18.51 vpr 74.77 MiB 0.09 11684 -1 -1 12 1.13 -1 -1 40480 -1 -1 163 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 76564 22 19 1979 1794 1 1362 211 18 18 324 mult_36 auto 37.2 MiB 0.37 9890 29680 5216 22721 1743 74.8 MiB 0.51 0.01 13.1101 -607.782 -13.1101 13.1101 1.12 0.00406895 0.00367668 0.21755 0.194484 60 17948 30 7.67456e+06 4.73696e+06 1.09776e+06 3388.15 11.35 1.70196 1.52368 31164 271060 -1 16046 19 7159 14934 1563902 347490 13.9734 13.9734 -945.022 -13.9734 0 0 1.37043e+06 4229.72 0.62 0.54 0.28 -1 -1 0.62 0.194605 0.177767 1265 1179 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_25.v common 17.48 vpr 75.52 MiB 0.09 12176 -1 -1 12 1.20 -1 -1 41060 -1 -1 174 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 77328 22 19 2073 1871 1 1415 222 18 18 324 clb mult_36 auto 38.1 MiB 0.38 10116 37798 7687 27724 2387 75.5 MiB 0.62 0.01 13.2252 -636.654 -13.2252 13.2252 1.10 0.00430208 0.00388785 0.264639 0.235289 60 18920 47 7.67456e+06 4.86957e+06 1.09776e+06 3388.15 10.12 1.68965 1.4999 31164 271060 -1 15951 18 7253 15313 1453290 329841 14.1573 14.1573 -922.83 -14.1573 0 0 1.37043e+06 4229.72 0.59 0.51 0.28 -1 -1 0.59 0.192449 0.175296 1322 1232 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_26.v common 15.26 vpr 76.00 MiB 0.10 12260 -1 -1 12 1.30 -1 -1 41280 -1 -1 180 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 77820 22 19 2130 1928 1 1466 228 18 18 324 clb mult_36 auto 38.4 MiB 0.39 10708 38508 7490 28356 2662 76.0 MiB 0.63 0.01 13.3306 -627.781 -13.3306 13.3306 1.14 0.00385828 0.00345686 0.262131 0.232009 60 19445 47 7.67456e+06 4.9419e+06 1.09776e+06 3388.15 7.70 1.52438 1.35291 31164 271060 -1 17108 22 7683 15497 1521602 357830 14.3314 14.3314 -1034.46 -14.3314 0 0 1.37043e+06 4229.72 0.59 0.59 0.28 -1 -1 0.59 0.238263 0.216472 1360 1270 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_27.v common 16.70 vpr 76.29 MiB 0.10 12340 -1 -1 12 1.36 -1 -1 41408 -1 -1 187 22 0 8 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 78120 22 19 2238 2019 1 1561 236 18 18 324 clb mult_36 auto 39.1 MiB 0.40 12377 33770 6411 25220 2139 76.3 MiB 0.59 0.01 13.5221 -628.278 -13.5221 13.5221 1.14 0.00439955 0.00395741 0.241432 0.215436 64 23492 41 7.67456e+06 5.42228e+06 1.16663e+06 3600.72 8.86 1.48223 1.3183 32132 291232 -1 19810 21 8434 17231 2335908 509181 14.4419 14.4419 -936.521 -14.4419 0 0 1.46385e+06 4518.05 0.60 0.73 0.30 -1 -1 0.60 0.229927 0.20862 1431 1323 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_28.v common 31.79 vpr 76.75 MiB 0.11 12484 -1 -1 12 1.38 -1 -1 41168 -1 -1 195 22 0 8 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 78596 22 19 2299 2080 1 1608 244 19 19 361 clb auto 39.6 MiB 0.42 11802 38344 7076 28930 2338 76.8 MiB 0.67 0.01 13.4116 -689.025 -13.4116 13.4116 1.27 0.00507286 0.00462348 0.278492 0.248224 60 22296 38 8.02416e+06 5.51872e+06 1.23460e+06 3419.94 23.38 2.1944 1.93677 34598 305437 -1 19379 24 8801 18308 1953665 470354 13.6443 13.6443 -911.981 -13.6443 0 0 1.54069e+06 4267.84 0.70 0.73 0.31 -1 -1 0.70 0.260837 0.235742 1473 1365 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_29.v common 27.01 vpr 77.41 MiB 0.11 12736 -1 -1 12 1.52 -1 -1 41436 -1 -1 198 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79272 22 19 2400 2164 1 1689 248 22 22 484 mult_36 auto 40.2 MiB 0.46 12258 38370 7118 28776 2476 77.4 MiB 0.67 0.01 12.8793 -650.835 -12.8793 12.8793 1.86 0.00487565 0.00439706 0.277595 0.245642 58 25550 48 1.25085e+07 5.95089e+06 1.65337e+06 3416.05 16.73 2.12466 1.88148 46570 411141 -1 21347 21 9599 19784 2273240 506124 13.8409 13.8409 -1052.87 -13.8409 0 0 2.07026e+06 4277.39 0.97 0.78 0.41 -1 -1 0.97 0.261001 0.236725 1537 1415 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_30.v common 78.82 vpr 78.00 MiB 0.11 12920 -1 -1 12 1.55 -1 -1 41612 -1 -1 209 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79868 22 19 2474 2238 1 1711 259 22 22 484 mult_36 auto 40.6 MiB 0.46 13168 42334 8006 31700 2628 78.0 MiB 0.71 0.01 12.9822 -681.383 -12.9822 12.9822 1.90 0.00478391 0.00430389 0.29026 0.257666 56 25794 45 1.25085e+07 6.0835e+06 1.62053e+06 3348.21 68.40 2.96129 2.61637 45606 389969 -1 22385 19 9669 19872 2463370 560510 14.3854 14.3854 -1273.9 -14.3854 0 0 1.98725e+06 4105.89 0.95 0.86 0.40 -1 -1 0.95 0.284297 0.260468 1592 1470 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_31.v common 19.53 vpr 78.72 MiB 0.11 13208 -1 -1 12 1.70 -1 -1 41884 -1 -1 218 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80608 22 19 2603 2350 1 1810 268 22 22 484 mult_36 auto 41.5 MiB 0.46 13008 46007 9138 34360 2509 78.7 MiB 0.78 0.01 13.1024 -694.824 -13.1024 13.1024 1.90 0.005338 0.0048423 0.314077 0.278714 60 23819 31 1.25085e+07 6.19199e+06 1.69059e+06 3492.95 8.87 1.71242 1.52129 47054 420411 -1 21251 18 9641 19893 2121715 484332 14.2383 14.2383 -1059.29 -14.2383 0 0 2.10969e+06 4358.87 0.99 0.74 0.43 -1 -1 0.99 0.247994 0.225674 1684 1549 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_32.v common 22.08 vpr 79.36 MiB 0.12 13340 -1 -1 12 1.68 -1 -1 43128 -1 -1 235 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 81260 22 19 2694 2441 1 1869 285 22 22 484 mult_36 auto 42.2 MiB 0.49 13665 49946 9984 37132 2830 79.4 MiB 0.85 0.02 13.1854 -738.745 -13.1854 13.1854 1.86 0.00574672 0.00502425 0.335071 0.294545 60 25408 43 1.25085e+07 6.39692e+06 1.69059e+06 3492.95 11.36 1.86154 1.64643 47054 420411 -1 22456 20 9999 21368 1955562 449564 14.2851 14.2851 -1312.37 -14.2851 0 0 2.10969e+06 4358.87 0.98 0.76 0.42 -1 -1 0.98 0.287943 0.262706 1756 1621 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_33.v common 21.51 vpr 80.02 MiB 0.12 13824 -1 -1 13 1.77 -1 -1 43448 -1 -1 238 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 81944 22 19 2787 2517 1 1950 289 22 22 484 mult_36 auto 42.9 MiB 0.50 15107 47084 8719 35813 2552 80.0 MiB 0.80 0.02 13.6988 -760.723 -13.6988 13.6988 1.78 0.00586621 0.00504744 0.320024 0.280613 64 27286 27 1.25085e+07 6.82909e+06 1.79645e+06 3711.66 10.72 1.9795 1.75369 48502 451691 -1 24073 21 9708 20204 2221286 487308 15.0898 15.0898 -1219.79 -15.0898 0 0 2.25323e+06 4655.43 1.05 0.77 0.47 -1 -1 1.05 0.273903 0.247526 1812 1664 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_34.v common 28.19 vpr 80.68 MiB 0.13 13988 -1 -1 13 1.82 -1 -1 43908 -1 -1 240 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 82616 22 19 2834 2564 1 1962 291 22 22 484 mult_36 auto 42.9 MiB 0.53 14145 54275 10883 39991 3401 80.1 MiB 0.92 0.02 13.9 -781.72 -13.9 13.9 1.88 0.00613081 0.00556923 0.370254 0.32763 60 25397 35 1.25085e+07 6.8532e+06 1.69059e+06 3492.95 17.16 2.62735 2.32307 47054 420411 -1 22955 20 10758 22829 2080381 460730 15.102 15.102 -1292.32 -15.102 0 0 2.10969e+06 4358.87 0.94 0.75 0.42 -1 -1 0.94 0.27965 0.251163 1840 1692 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_35.v common 32.21 vpr 82.92 MiB 0.13 14448 -1 -1 13 1.89 -1 -1 43800 -1 -1 248 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84908 22 19 2941 2654 1 2054 299 22 22 484 mult_36 auto 43.9 MiB 0.56 16261 54245 10728 40554 2963 80.7 MiB 0.94 0.02 13.7605 -766.965 -13.7605 13.7605 1.85 0.00590144 0.00530457 0.366153 0.32163 66 29054 46 1.25085e+07 6.94964e+06 1.84972e+06 3821.73 20.72 2.90835 2.57736 48986 463441 -1 25434 20 10530 21377 2671984 568902 15.0654 15.0654 -1123.63 -15.0654 0 0 2.30827e+06 4769.15 1.06 0.88 0.48 -1 -1 1.06 0.291049 0.263928 1910 1750 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_36.v common 24.76 vpr 81.32 MiB 0.16 14328 -1 -1 13 2.01 -1 -1 42600 -1 -1 255 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 83272 22 19 3011 2724 1 2092 306 22 22 484 mult_36 auto 44.6 MiB 0.53 15494 53866 10408 40513 2945 81.3 MiB 0.88 0.02 13.8216 -775.976 -13.8216 13.8216 1.88 0.00627425 0.00562257 0.339967 0.298428 60 28474 33 1.25085e+07 7.03402e+06 1.69059e+06 3492.95 13.33 2.34932 2.06619 47054 420411 -1 24752 20 11353 23667 2419309 554948 14.4226 14.4226 -1264.95 -14.4226 0 0 2.10969e+06 4358.87 0.96 0.82 0.44 -1 -1 0.96 0.284205 0.256123 1961 1801 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_37.v common 37.06 vpr 89.76 MiB 0.14 14956 -1 -1 13 2.10 -1 -1 42724 -1 -1 267 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 91916 22 19 3132 2828 1 2184 319 24 24 576 mult_36 auto 45.0 MiB 0.57 16778 63481 13802 46873 2806 82.3 MiB 1.03 0.02 14.5428 -956.024 -14.5428 14.5428 2.26 0.00657328 0.00591033 0.394895 0.346756 60 30710 43 1.51154e+07 7.57468e+06 2.00908e+06 3487.99 24.11 3.11681 2.74305 55690 499183 -1 26773 33 11577 23800 2771698 669678 15.1438 15.1438 -1499.19 -15.1438 0 0 2.50809e+06 4354.32 1.16 1.16 0.46 -1 -1 1.16 0.47771 0.428816 2045 1872 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_38.v common 30.78 vpr 82.09 MiB 0.14 14932 -1 -1 13 2.12 -1 -1 44464 -1 -1 265 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84056 22 19 3159 2855 1 2196 317 24 24 576 mult_36 auto 45.4 MiB 0.57 16513 61877 12396 46195 3286 82.1 MiB 0.98 0.02 13.9418 -876.4 -13.9418 13.9418 2.18 0.00551746 0.00477476 0.366828 0.319516 60 30140 40 1.51154e+07 7.55058e+06 2.00908e+06 3487.99 17.95 2.13418 1.87992 55690 499183 -1 26537 21 11985 24883 2676861 595396 14.3834 14.3834 -1373.9 -14.3834 0 0 2.50809e+06 4354.32 1.19 0.94 0.50 -1 -1 1.19 0.333691 0.301312 2053 1880 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_39.v common 24.36 vpr 82.82 MiB 0.15 15148 -1 -1 13 2.31 -1 -1 43720 -1 -1 277 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84804 22 19 3284 2963 1 2301 329 24 24 576 mult_36 auto 45.8 MiB 0.62 17109 66159 14431 49024 2704 82.8 MiB 1.14 0.02 14.3024 -943.148 -14.3024 14.3024 2.21 0.00594674 0.0052939 0.43798 0.383412 64 29925 33 1.51154e+07 7.69524e+06 2.13454e+06 3705.80 10.93 2.25777 1.99685 57414 536310 -1 27196 21 11200 23146 2344688 521868 14.9987 14.9987 -1376.91 -14.9987 0 0 2.67880e+06 4650.70 1.24 0.90 0.55 -1 -1 1.24 0.353638 0.31939 2141 1957 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_40.v common 27.01 vpr 83.34 MiB 0.14 15208 -1 -1 13 2.22 -1 -1 45012 -1 -1 285 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 85336 22 19 3343 3022 1 2312 337 24 24 576 mult_36 auto 46.4 MiB 0.59 17675 73001 16428 52531 4042 83.2 MiB 1.23 0.02 14.42 -1000.68 -14.42 14.42 2.18 0.00652359 0.00585277 0.467438 0.40743 64 32300 32 1.51154e+07 7.79168e+06 2.13454e+06 3705.80 13.82 2.28832 2.01699 57414 536310 -1 28230 19 11839 25652 2643955 576660 14.9008 14.9008 -1558.65 -14.9008 0 0 2.67880e+06 4650.70 1.28 0.93 0.51 -1 -1 1.28 0.336858 0.304936 2181 1997 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_41.v common 25.22 vpr 84.04 MiB 0.19 15432 -1 -1 13 2.47 -1 -1 45180 -1 -1 297 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 86056 22 19 3448 3110 1 2410 350 24 24 576 mult_36 auto 47.3 MiB 0.62 18295 62000 11200 47475 3325 84.0 MiB 1.04 0.02 14.6309 -972.595 -14.6309 14.6309 2.26 0.00643186 0.00582868 0.385755 0.340423 64 32292 29 1.51154e+07 8.33234e+06 2.13454e+06 3705.80 11.55 2.17227 1.92615 57414 536310 -1 28960 19 11740 24309 2498665 559268 15.5264 15.5264 -1426.2 -15.5264 0 0 2.67880e+06 4650.70 1.28 0.88 0.55 -1 -1 1.28 0.321223 0.290475 2249 2054 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_42.v common 40.68 vpr 94.08 MiB 0.16 15692 -1 -1 13 2.52 -1 -1 43736 -1 -1 296 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 96336 22 19 3510 3172 1 2428 349 24 24 576 mult_36 auto 47.4 MiB 0.64 18565 67889 13547 51530 2812 84.2 MiB 1.13 0.02 13.5812 -985.246 -13.5812 13.5812 2.22 0.00690385 0.00617091 0.419248 0.367196 68 31600 28 1.51154e+07 8.32028e+06 2.25030e+06 3906.77 26.76 3.69331 3.23542 58566 560801 -1 28841 20 12471 26207 2660568 564997 14.3416 14.3416 -1551.05 -14.3416 0 0 2.80126e+06 4863.30 1.32 0.95 0.57 -1 -1 1.32 0.363381 0.325274 2292 2097 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_43.v common 37.36 vpr 93.05 MiB 0.16 16060 -1 -1 13 2.53 -1 -1 41968 -1 -1 307 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 95288 22 19 3598 3243 1 2500 360 24 24 576 mult_36 auto 47.9 MiB 0.72 20769 77160 16859 56280 4021 84.7 MiB 1.31 0.02 14.7216 -1040.55 -14.7216 14.7216 2.20 0.00659039 0.00591814 0.483298 0.421646 68 34497 29 1.51154e+07 8.45288e+06 2.25030e+06 3906.77 22.98 3.53046 3.12225 58566 560801 -1 31404 18 12072 24712 2572762 561640 15.7642 15.7642 -1508.48 -15.7642 0 0 2.80126e+06 4863.30 1.39 0.92 0.58 -1 -1 1.39 0.335075 0.303615 2343 2138 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_44.v common 29.75 vpr 85.77 MiB 0.16 16080 -1 -1 13 2.73 -1 -1 46212 -1 -1 317 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87832 22 19 3689 3334 1 2572 370 24 24 576 mult_36 auto 48.9 MiB 0.67 19632 74682 14534 56476 3672 85.8 MiB 1.30 0.02 13.8608 -992.663 -13.8608 13.8608 2.24 0.007055 0.00629882 0.479792 0.420119 64 34315 30 1.51154e+07 8.57344e+06 2.13454e+06 3705.80 15.28 2.88065 2.54869 57414 536310 -1 30814 21 12983 26888 3071917 666393 14.8102 14.8102 -1530.03 -14.8102 0 0 2.67880e+06 4650.70 1.26 1.04 0.57 -1 -1 1.26 0.361499 0.325093 2415 2210 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_45.v common 30.22 vpr 85.90 MiB 0.17 16276 -1 -1 13 2.90 -1 -1 42220 -1 -1 321 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87960 22 19 3763 3391 1 2638 375 24 24 576 mult_36 auto 48.9 MiB 0.69 20714 84137 18599 61364 4174 85.9 MiB 1.43 0.02 14.1746 -1049.42 -14.1746 14.1746 2.23 0.00725317 0.00642731 0.52725 0.460681 62 38138 48 1.51154e+07 9.01766e+06 2.06880e+06 3591.66 15.56 3.24572 2.85794 56266 511197 -1 31673 22 13571 28115 2645261 587482 14.7832 14.7832 -1524.37 -14.7832 0 0 2.55996e+06 4444.37 1.17 1.05 0.51 -1 -1 1.17 0.425748 0.38218 2452 2234 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_46.v common 29.60 vpr 86.98 MiB 0.17 16456 -1 -1 13 2.93 -1 -1 43952 -1 -1 323 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89072 22 19 3845 3473 1 2666 377 24 24 576 mult_36 auto 50.0 MiB 0.70 19822 76593 15506 57388 3699 87.0 MiB 1.33 0.02 14.4618 -1087.32 -14.4618 14.4618 2.26 0.0071996 0.00643097 0.483962 0.424505 64 35725 30 1.51154e+07 9.04176e+06 2.13454e+06 3705.80 14.63 2.54337 2.24435 57414 536310 -1 31639 20 13171 27472 3119997 686434 14.663 14.663 -1657.34 -14.663 0 0 2.67880e+06 4650.70 1.29 1.12 0.55 -1 -1 1.29 0.418446 0.381024 2515 2297 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_47.v common 54.52 vpr 88.43 MiB 0.19 17128 -1 -1 13 3.08 -1 -1 46252 -1 -1 337 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 90552 22 19 3983 3594 1 2790 391 24 24 576 clb mult_36 auto 50.8 MiB 0.74 21014 86131 18620 63573 3938 87.8 MiB 1.51 0.02 14.2484 -1147.18 -14.2484 14.2484 2.27 0.00805113 0.00724493 0.536939 0.470135 66 36791 26 1.51154e+07 9.21054e+06 2.19797e+06 3815.93 38.89 4.95193 4.3785 57990 550195 -1 33013 20 14060 30315 2888112 647240 14.7736 14.7736 -1889.22 -14.7736 0 0 2.74415e+06 4764.15 1.36 1.17 0.57 -1 -1 1.36 0.48167 0.44009 2616 2386 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_48.v common 46.63 vpr 98.22 MiB 0.18 17112 -1 -1 13 3.08 -1 -1 42496 -1 -1 341 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 100576 22 19 4025 3636 1 2807 395 24 24 576 clb mult_36 auto 51.1 MiB 0.74 24043 88723 19375 64615 4733 88.1 MiB 1.44 0.02 14.4761 -1168.06 -14.4761 14.4761 2.21 0.00722455 0.00638976 0.505635 0.436217 70 39628 29 1.51154e+07 9.25876e+06 2.31032e+06 4010.97 31.21 4.3355 3.8113 59714 584380 -1 35888 18 14340 29860 3738958 787462 15.455 15.455 -1803.63 -15.455 0 0 2.90211e+06 5038.38 1.33 1.22 0.62 -1 -1 1.33 0.38926 0.352691 2639 2409 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_49.v common 34.18 vpr 92.25 MiB 0.19 17432 -1 -1 13 3.23 -1 -1 47140 -1 -1 355 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 94464 22 19 4164 3758 1 2908 410 25 25 625 clb auto 52.0 MiB 0.79 22217 85642 17658 63703 4281 88.8 MiB 1.46 0.02 14.9818 -1210.71 -14.9818 14.9818 2.51 0.0086223 0.00784131 0.5204 0.454559 64 38919 45 1.55855e+07 9.82352e+06 2.32897e+06 3726.35 17.92 3.38187 2.96235 62084 585869 -1 34778 21 16622 35475 3477117 762776 15.4208 15.4208 -1975.61 -15.4208 0 0 2.92220e+06 4675.52 1.39 1.21 0.60 -1 -1 1.39 0.432815 0.388762 2741 2498 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_50.v common 33.19 vpr 92.50 MiB 0.19 17748 -1 -1 13 3.31 -1 -1 43136 -1 -1 356 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 94720 22 19 4190 3784 1 2926 411 25 25 625 clb auto 52.1 MiB 0.80 22950 93558 20490 68815 4253 88.9 MiB 1.74 0.03 14.3808 -1150.84 -14.3808 14.3808 2.48 0.00936934 0.0084816 0.657067 0.574827 66 39379 43 1.55855e+07 9.83558e+06 2.39749e+06 3835.99 16.32 3.76048 3.35612 62708 601000 -1 35218 19 14229 29917 3044881 660126 15.3129 15.3129 -1606.74 -15.3129 0 0 2.99279e+06 4788.46 1.47 1.19 0.62 -1 -1 1.47 0.479691 0.438225 2748 2505 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_51.v common 35.40 vpr 92.02 MiB 0.20 17820 -1 -1 13 3.37 -1 -1 43512 -1 -1 366 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 94224 22 19 4305 3882 1 2980 421 25 25 625 clb auto 52.9 MiB 0.83 23115 99772 22036 72208 5528 89.8 MiB 1.67 0.02 14.6534 -1199.26 -14.6534 14.6534 2.39 0.008379 0.00749764 0.606662 0.529383 66 41138 44 1.55855e+07 9.95613e+06 2.39749e+06 3835.99 18.62 3.0394 2.66499 62708 601000 -1 35024 22 14620 31027 3234931 704588 15.014 15.014 -1822.37 -15.014 0 0 2.99279e+06 4788.46 1.46 1.17 0.62 -1 -1 1.46 0.443718 0.399687 2826 2571 -1 -1 -1 -1 - k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_52.v common 30.51 vpr 93.60 MiB 0.20 17828 -1 -1 13 3.50 -1 -1 47056 -1 -1 370 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 95844 22 19 4363 3940 1 3039 425 25 25 625 clb auto 53.4 MiB 0.80 23622 96245 20766 70233 5246 90.2 MiB 1.63 0.03 14.5943 -1245.11 -14.5943 14.5943 2.45 0.00907827 0.00819027 0.591239 0.513392 70 39481 30 1.55855e+07 1.00044e+07 2.52006e+06 4032.10 13.49 3.01844 2.65756 64580 638411 -1 37067 19 15345 31694 3197237 696949 14.8938 14.8938 -1960.29 -14.8938 0 0 3.16512e+06 5064.19 1.56 1.19 0.67 -1 -1 1.56 0.46356 0.421212 2865 2610 -1 -1 -1 -1 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_14.v common 10.76 vpr 73.89 MiB 0.06 10676 -1 -1 1 0.26 -1 -1 39764 -1 -1 125 22 0 4 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75664 22 19 1974 1653 1 1039 170 16 16 256 mult_36 auto 36.2 MiB 0.41 6519 25550 4932 18152 2466 73.9 MiB 0.42 0.01 3.76036 -1103.09 -3.76036 3.76036 0.81 0.00265584 0.00236805 0.163696 0.145008 46 11634 21 6.32612e+06 3.15375e+06 684529. 2673.94 6.00 0.960721 0.845071 22592 160355 -1 9321 16 3271 3961 556160 147556 4.24116 4.24116 -1214.27 -4.24116 0 0 838722. 3276.26 0.35 0.25 0.17 -1 -1 0.35 0.126006 0.114223 955 649 247 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_15.v common 9.19 vpr 74.66 MiB 0.07 11148 -1 -1 1 0.27 -1 -1 41288 -1 -1 134 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 76448 22 19 2144 1789 1 1138 180 16 16 256 clb mult_36 auto 37.4 MiB 0.45 7347 29136 5774 20319 3043 74.7 MiB 0.47 0.01 4.00076 -1223.4 -4.00076 4.00076 0.83 0.00313564 0.00279766 0.184042 0.162998 44 14311 47 6.32612e+06 3.66277e+06 649498. 2537.10 4.27 0.932805 0.82112 22336 155612 -1 10218 12 3597 4356 665929 174089 4.36136 4.36136 -1418.79 -4.36136 0 0 820238. 3204.05 0.35 0.26 0.15 -1 -1 0.35 0.113257 0.103568 1035 704 266 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_16.v common 11.28 vpr 75.26 MiB 0.07 11288 -1 -1 1 0.29 -1 -1 40628 -1 -1 139 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 77064 22 19 2218 1846 1 1177 185 16 16 256 clb mult_36 auto 37.9 MiB 0.46 7096 25959 4259 18607 3093 75.3 MiB 0.44 0.01 3.76036 -1240.57 -3.76036 3.76036 0.83 0.00326399 0.00291242 0.17517 0.156135 46 13238 28 6.32612e+06 3.72556e+06 684529. 2673.94 6.33 1.16145 1.02209 22592 160355 -1 10274 15 3509 4265 628636 157203 4.24116 4.24116 -1394.72 -4.24116 0 0 838722. 3276.26 0.32 0.25 0.16 -1 -1 0.32 0.125571 0.113725 1073 723 285 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_17.v common 11.06 vpr 76.90 MiB 0.08 12096 -1 -1 1 0.32 -1 -1 40616 -1 -1 159 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 78748 22 19 2536 2130 1 1298 205 17 17 289 clb auto 39.8 MiB 0.53 8282 37049 7797 25207 4045 76.9 MiB 0.62 0.01 4.12096 -1391.9 -4.12096 4.12096 0.96 0.00363636 0.00324519 0.248013 0.220601 48 14318 34 6.64007e+06 3.97672e+06 816265. 2824.45 5.30 1.26249 1.12104 25714 189529 -1 11775 15 4206 5310 714294 182295 4.48156 4.48156 -1602.92 -4.48156 0 0 986792. 3414.50 0.41 0.29 0.19 -1 -1 0.41 0.142638 0.12948 1228 851 304 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_18.v common 13.72 vpr 77.44 MiB 0.08 11960 -1 -1 1 0.34 -1 -1 40504 -1 -1 165 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79300 22 19 2610 2187 1 1336 211 17 17 289 clb auto 40.2 MiB 0.50 8846 39085 8016 26563 4506 77.4 MiB 0.65 0.01 3.88056 -1433.98 -3.88056 3.88056 0.96 0.00374165 0.00331529 0.250483 0.222087 50 14061 49 6.64007e+06 4.05207e+06 851065. 2944.86 7.81 1.53572 1.35802 26002 196109 -1 11873 13 4111 5057 761270 192339 4.48156 4.48156 -1662.65 -4.48156 0 0 1.01866e+06 3524.77 0.41 0.28 0.19 -1 -1 0.41 0.135548 0.123202 1266 870 323 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_19.v common 14.99 vpr 78.07 MiB 0.09 12400 -1 -1 1 0.35 -1 -1 40576 -1 -1 174 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79948 22 19 2778 2321 1 1434 221 18 18 324 clb auto 40.8 MiB 0.57 8863 42909 9790 29232 3887 78.1 MiB 0.68 0.01 4.00076 -1508.9 -4.00076 4.00076 1.08 0.00395781 0.00345488 0.261227 0.229576 46 16084 49 7.77114e+06 4.56109e+06 895831. 2764.91 8.63 1.58258 1.39205 29024 211752 -1 12345 13 4224 5323 796192 197063 4.48156 4.48156 -1730.63 -4.48156 0 0 1.09776e+06 3388.15 0.47 0.31 0.20 -1 -1 0.47 0.147549 0.13434 1344 925 342 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_20.v common 14.57 vpr 78.88 MiB 0.09 12420 -1 -1 1 0.38 -1 -1 40744 -1 -1 178 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80768 22 19 2852 2378 1 1479 225 18 18 324 clb auto 41.7 MiB 0.61 10069 41949 8731 30267 2951 78.9 MiB 0.74 0.01 4.12096 -1553.01 -4.12096 4.12096 1.13 0.00441669 0.00397487 0.284905 0.254464 46 17423 36 7.77114e+06 4.61132e+06 895831. 2764.91 7.96 1.34996 1.1877 29024 211752 -1 13619 14 4470 5709 757059 190598 4.36136 4.36136 -1809.04 -4.36136 0 0 1.09776e+06 3388.15 0.46 0.32 0.20 -1 -1 0.46 0.158236 0.144179 1382 944 361 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_21.v common 11.20 vpr 79.93 MiB 0.10 13012 -1 -1 1 0.40 -1 -1 41616 -1 -1 190 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 81852 22 19 3057 2549 1 1586 237 18 18 324 clb auto 42.5 MiB 0.64 10084 42751 8794 30420 3537 79.9 MiB 0.71 0.01 4.00076 -1662.98 -4.00076 4.00076 1.13 0.00401197 0.00355641 0.264485 0.233463 48 17199 25 7.77114e+06 4.76202e+06 935225. 2886.50 4.31 1.07682 0.947312 29348 218440 -1 14442 14 5179 6438 1151169 281664 4.36136 4.36136 -1869.36 -4.36136 0 0 1.13028e+06 3488.51 0.50 0.42 0.22 -1 -1 0.50 0.175787 0.159199 1479 1017 380 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_22.v common 14.81 vpr 80.19 MiB 0.10 13316 -1 -1 1 0.42 -1 -1 40848 -1 -1 196 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 82116 22 19 3131 2606 1 1626 243 19 19 361 clb auto 42.9 MiB 0.63 10752 44965 9363 31759 3843 80.2 MiB 0.77 0.01 3.76036 -1731.93 -3.76036 3.76036 1.28 0.00434471 0.0038365 0.282946 0.250062 48 18301 38 8.13532e+06 4.83737e+06 1.05176e+06 2913.46 7.44 1.47911 1.29998 32602 246183 -1 15172 18 5359 6675 1163755 270686 4.24116 4.24116 -2061.24 -4.24116 0 0 1.27108e+06 3521.00 0.55 0.45 0.24 -1 -1 0.55 0.204576 0.185119 1517 1036 399 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_23.v common 19.03 vpr 81.63 MiB 0.10 13360 -1 -1 1 0.45 -1 -1 42784 -1 -1 206 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 83592 22 19 3301 2742 1 1720 254 19 19 361 clb auto 44.3 MiB 0.68 12213 54926 11995 38659 4272 81.6 MiB 1.04 0.02 4.00076 -1867.25 -4.00076 4.00076 1.31 0.00583055 0.00531384 0.404577 0.363293 54 19161 20 8.13532e+06 5.35895e+06 1.15452e+06 3198.10 11.13 1.99515 1.78313 34042 276675 -1 16269 16 5064 6310 980148 232881 4.36136 4.36136 -2151.56 -4.36136 0 0 1.41983e+06 3933.05 0.62 0.40 0.27 -1 -1 0.62 0.193475 0.175283 1597 1091 418 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_24.v common 24.67 vpr 81.96 MiB 0.11 13768 -1 -1 1 0.45 -1 -1 42332 -1 -1 211 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 83928 22 19 3375 2799 1 1765 259 19 19 361 clb auto 44.5 MiB 0.65 11421 48109 9487 34530 4092 82.0 MiB 0.84 0.01 3.88056 -1889.25 -3.88056 3.88056 1.30 0.00475317 0.00423388 0.301069 0.265732 50 19655 29 8.13532e+06 5.42174e+06 1.09718e+06 3039.29 17.12 2.14084 1.87344 32962 254619 -1 15908 15 5529 7179 1015726 242988 4.36136 4.36136 -2233.05 -4.36136 0 0 1.31179e+06 3633.76 0.52 0.39 0.25 -1 -1 0.52 0.189496 0.171449 1635 1110 437 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_25.v common 15.98 vpr 82.88 MiB 0.12 13988 -1 -1 1 0.50 -1 -1 42344 -1 -1 225 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84868 22 19 3615 3005 1 1878 273 20 20 400 clb auto 45.8 MiB 0.75 13473 57798 10978 41881 4939 82.9 MiB 1.00 0.02 3.88056 -2073.24 -3.88056 3.88056 1.47 0.00506339 0.00445389 0.358138 0.315819 50 22512 28 1.10386e+07 5.59755e+06 1.21483e+06 3037.08 7.38 1.68208 1.47851 36870 282114 -1 18639 17 6171 8096 1390780 326733 4.36136 4.36136 -2570.46 -4.36136 0 0 1.45344e+06 3633.59 0.63 0.52 0.28 -1 -1 0.63 0.226682 0.204748 1749 1201 456 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_26.v common 23.23 vpr 83.41 MiB 0.11 14136 -1 -1 1 0.52 -1 -1 42480 -1 -1 230 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 85412 22 19 3689 3062 1 1918 278 20 20 400 clb auto 46.7 MiB 0.74 13453 52884 10185 38264 4435 83.4 MiB 1.01 0.02 3.88056 -2087.24 -3.88056 3.88056 1.49 0.00570159 0.0048843 0.373923 0.331842 50 22524 34 1.10386e+07 5.66034e+06 1.21483e+06 3037.08 14.58 2.49997 2.19209 36870 282114 -1 18273 17 6143 8126 1230658 293473 4.36136 4.36136 -2395.89 -4.36136 0 0 1.45344e+06 3633.59 0.65 0.50 0.28 -1 -1 0.65 0.230317 0.208158 1787 1220 475 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_27.v common 24.30 vpr 84.84 MiB 0.12 14736 -1 -1 1 0.53 -1 -1 42824 -1 -1 242 22 0 8 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 86872 22 19 3871 3210 1 2023 291 21 21 441 clb auto 47.9 MiB 0.71 13688 68735 15137 47424 6174 84.8 MiB 1.22 0.02 4.00076 -2234.35 -4.00076 4.00076 1.64 0.0057096 0.00509249 0.427783 0.378995 52 23030 26 1.14404e+07 6.20704e+06 1.38344e+06 3137.06 14.95 2.51448 2.21058 41366 331634 -1 18736 12 6017 7389 1155254 268892 4.48156 4.48156 -2599.52 -4.48156 0 0 1.70223e+06 3859.94 0.77 0.44 0.33 -1 -1 0.77 0.200781 0.183233 1879 1275 494 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_28.v common 22.05 vpr 84.77 MiB 0.12 14572 -1 -1 1 0.56 -1 -1 42476 -1 -1 247 22 0 8 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 86804 22 19 3945 3267 1 2070 296 21 21 441 clb auto 47.9 MiB 0.75 14085 62414 13575 44184 4655 84.8 MiB 1.10 0.02 3.88056 -2230.24 -3.88056 3.88056 1.62 0.00541076 0.0048059 0.378104 0.333245 52 24323 31 1.14404e+07 6.26983e+06 1.38344e+06 3137.06 12.61 2.1417 1.87097 41366 331634 -1 18889 18 6383 8291 1218627 292334 4.24116 4.24116 -2572.6 -4.24116 0 0 1.70223e+06 3859.94 0.78 0.52 0.33 -1 -1 0.78 0.257636 0.233175 1917 1294 513 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_29.v common 23.52 vpr 86.27 MiB 0.13 15096 -1 -1 1 0.59 -1 -1 42716 -1 -1 260 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 88344 22 19 4159 3447 1 2186 310 22 22 484 mult_36 auto 49.4 MiB 0.81 15049 75766 16423 53040 6303 86.3 MiB 1.32 0.02 3.88056 -2294.95 -3.88056 3.88056 1.85 0.0061685 0.00551826 0.474153 0.420515 48 26495 45 1.26594e+07 6.82908e+06 1.44011e+06 2975.42 13.20 2.19973 1.92875 44390 338934 -1 21162 13 7101 9222 1618261 367829 4.36136 4.36136 -2893.48 -4.36136 0 0 1.74100e+06 3597.11 0.81 0.56 0.34 -1 -1 0.81 0.226876 0.206635 2023 1367 532 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_30.v common 20.51 vpr 86.77 MiB 0.13 15192 -1 -1 1 0.62 -1 -1 44248 -1 -1 265 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 88856 22 19 4233 3504 1 2225 315 22 22 484 mult_36 auto 49.8 MiB 0.86 14874 77427 16334 55482 5611 86.8 MiB 1.34 0.02 3.88056 -2335.91 -3.88056 3.88056 1.84 0.00574101 0.00508484 0.470286 0.415611 48 25686 33 1.26594e+07 6.89187e+06 1.44011e+06 2975.42 10.04 2.0548 1.79619 44390 338934 -1 21514 17 7275 8816 1481169 344883 4.36136 4.36136 -2824.54 -4.36136 0 0 1.74100e+06 3597.11 0.79 0.58 0.34 -1 -1 0.79 0.268662 0.243132 2061 1386 551 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_31.v common 42.78 vpr 87.56 MiB 0.12 15516 -1 -1 1 0.62 -1 -1 43596 -1 -1 276 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89664 22 19 4410 3647 1 2335 326 22 22 484 clb mult_36 auto 50.8 MiB 0.81 17005 77675 16210 54413 7052 87.6 MiB 1.32 0.02 3.76036 -2430.81 -3.76036 3.76036 1.79 0.00605074 0.00538178 0.462161 0.408441 50 28849 36 1.26594e+07 7.03001e+06 1.50222e+06 3103.76 32.54 3.18879 2.78226 44874 350400 -1 23327 17 7683 9461 1828402 412768 4.48156 4.48156 -2923.58 -4.48156 0 0 1.79645e+06 3711.66 0.82 0.65 0.32 -1 -1 0.82 0.278768 0.250646 2148 1441 570 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_32.v common 30.12 vpr 88.41 MiB 0.14 15812 -1 -1 1 0.64 -1 -1 44772 -1 -1 280 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 90528 22 19 4484 3704 1 2374 330 22 22 484 clb mult_36 auto 51.7 MiB 0.87 17055 78921 17021 55994 5906 88.4 MiB 1.33 0.02 4.00076 -2536.62 -4.00076 4.00076 1.79 0.00648533 0.00557464 0.451792 0.39157 54 28718 37 1.26594e+07 7.08024e+06 1.58090e+06 3266.32 19.44 3.03338 2.65359 46322 380746 -1 23100 19 7423 8883 1450821 323232 4.48156 4.48156 -3013.7 -4.48156 0 0 1.94386e+06 4016.24 0.85 0.59 0.39 -1 -1 0.85 0.290736 0.261199 2186 1460 589 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_33.v common 25.17 vpr 89.61 MiB 0.16 16976 -1 -1 1 0.71 -1 -1 45160 -1 -1 304 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 91756 22 19 4843 4029 1 2501 355 23 23 529 clb auto 52.9 MiB 0.97 18233 92043 20336 64889 6818 89.6 MiB 1.53 0.02 4.00076 -2768.11 -4.00076 4.00076 2.01 0.00645187 0.00565551 0.508039 0.442425 54 30731 42 1.31115e+07 7.77763e+06 1.73850e+06 3286.39 13.40 2.43845 2.12159 50466 419205 -1 24623 17 7677 9440 1672495 376494 4.48156 4.48156 -3237.62 -4.48156 0 0 2.13727e+06 4040.20 0.97 0.65 0.41 -1 -1 0.97 0.302204 0.272562 2364 1606 608 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_34.v common 23.49 vpr 90.66 MiB 0.16 17144 -1 -1 1 0.73 -1 -1 44816 -1 -1 309 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 92840 22 19 4917 4086 1 2542 360 23 23 529 clb auto 53.8 MiB 0.92 18059 87400 18975 61999 6426 90.7 MiB 1.51 0.02 4.12096 -2789.42 -4.12096 4.12096 2.03 0.00686882 0.00606478 0.503257 0.443001 50 29631 27 1.31115e+07 7.84042e+06 1.65241e+06 3123.66 11.79 2.28972 2.00623 48882 385791 -1 24694 17 8048 10065 1539170 354045 4.36136 4.36136 -3223.09 -4.36136 0 0 1.97533e+06 3734.07 0.93 0.64 0.37 -1 -1 0.93 0.309018 0.277979 2402 1625 627 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_35.v common 24.68 vpr 91.52 MiB 0.17 17312 -1 -1 1 0.75 -1 -1 45496 -1 -1 320 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 93720 22 19 5093 4228 1 2643 371 23 23 529 clb auto 54.7 MiB 1.03 19605 93611 19695 67066 6850 91.5 MiB 1.57 0.02 4.00076 -2996.44 -4.00076 4.00076 2.05 0.00664505 0.00586623 0.521079 0.456271 54 33345 38 1.31115e+07 7.97856e+06 1.73850e+06 3286.39 12.53 2.62045 2.29607 50466 419205 -1 26278 13 8329 10293 1749204 391780 4.48156 4.48156 -3495.28 -4.48156 0 0 2.13727e+06 4040.20 1.00 0.65 0.41 -1 -1 1.00 0.297891 0.271483 2488 1680 646 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_36.v common 23.80 vpr 91.57 MiB 0.17 17268 -1 -1 1 0.80 -1 -1 45152 -1 -1 324 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 93768 22 19 5167 4285 1 2691 375 23 23 529 clb auto 55.1 MiB 1.00 18807 98998 21686 70725 6587 91.6 MiB 1.72 0.02 4.12096 -2950.06 -4.12096 4.12096 2.08 0.00704993 0.00620548 0.56298 0.493424 52 32087 47 1.31115e+07 8.02879e+06 1.69338e+06 3201.10 11.64 2.75939 2.41695 49938 407647 -1 25508 13 8048 10614 1673874 393359 4.60176 4.60176 -3410.38 -4.60176 0 0 2.08190e+06 3935.53 0.93 0.58 0.39 -1 -1 0.93 0.255865 0.231092 2526 1699 665 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_37.v common 20.41 vpr 92.83 MiB 0.17 17748 -1 -1 1 0.83 -1 -1 44720 -1 -1 337 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 95060 22 19 5380 4464 1 2808 389 24 24 576 clb mult_36 auto 56.3 MiB 1.08 19120 98300 20399 70009 7892 92.8 MiB 1.73 0.02 4.12096 -3063.91 -4.12096 4.12096 2.22 0.00716094 0.00633785 0.572745 0.50201 48 30920 37 1.52924e+07 8.58805e+06 1.71014e+06 2969.00 7.62 2.18327 1.91669 52498 402441 -1 26913 15 8911 11596 1743479 419232 4.48156 4.48156 -3550.49 -4.48156 0 0 2.06880e+06 3591.66 0.99 0.69 0.40 -1 -1 0.99 0.322126 0.291042 2631 1772 684 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_38.v common 48.95 vpr 93.00 MiB 0.17 17992 -1 -1 1 0.85 -1 -1 44576 -1 -1 343 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 95228 22 19 5454 4521 1 2849 395 24 24 576 clb mult_36 auto 56.4 MiB 1.04 20227 101755 21854 71841 8060 93.0 MiB 1.81 0.02 4.12096 -3128.18 -4.12096 4.12096 2.25 0.00745483 0.00655255 0.579595 0.508137 50 31809 24 1.52924e+07 8.66339e+06 1.78400e+06 3097.22 35.75 3.55093 3.08641 53074 415989 -1 27250 14 8588 10858 1665446 392426 4.60176 4.60176 -3568.12 -4.60176 0 0 2.13454e+06 3705.80 0.93 0.65 0.41 -1 -1 0.93 0.316605 0.287016 2669 1791 703 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_39.v common 30.97 vpr 94.38 MiB 0.18 18356 -1 -1 1 0.88 -1 -1 44360 -1 -1 353 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 96644 22 19 5629 4662 1 2951 405 25 25 625 clb auto 57.7 MiB 1.15 21491 121662 29355 83177 9130 94.4 MiB 2.06 0.03 4.00076 -3324.63 -4.00076 4.00076 2.22 0.00788614 0.00699172 0.659014 0.575535 50 37678 48 1.57822e+07 8.78897e+06 1.94653e+06 3114.45 17.02 3.0506 2.66121 57408 454416 -1 29468 17 9716 12111 2145635 494491 4.36136 4.36136 -3806.85 -4.36136 0 0 2.32897e+06 3726.35 1.09 0.82 0.44 -1 -1 1.09 0.373025 0.33714 2754 1846 722 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_40.v common 28.64 vpr 94.64 MiB 0.18 18668 -1 -1 1 0.91 -1 -1 46532 -1 -1 358 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 96912 22 19 5703 4719 1 2994 410 25 25 625 clb auto 58.1 MiB 1.17 22341 111516 25385 78104 8027 94.6 MiB 2.04 0.03 4.24116 -3348.68 -4.24116 4.24116 2.46 0.00894412 0.00803155 0.668033 0.590603 54 34365 23 1.57822e+07 8.85176e+06 2.04878e+06 3278.05 14.38 3.24298 2.86682 59280 493784 -1 28826 15 8579 11416 1553876 364967 4.60176 4.60176 -4018.14 -4.60176 0 0 2.52006e+06 4032.10 1.21 0.73 0.49 -1 -1 1.21 0.381294 0.347451 2792 1865 741 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_41.v common 28.28 vpr 95.88 MiB 0.19 19180 -1 -1 1 0.98 -1 -1 44960 -1 -1 374 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 98176 22 19 5950 4932 1 3111 427 25 25 625 clb auto 59.2 MiB 1.30 23375 125773 30238 87123 8412 95.9 MiB 2.19 0.03 4.12096 -3483.77 -4.12096 4.12096 2.46 0.00812444 0.00720082 0.69735 0.608704 54 36976 37 1.57822e+07 9.44869e+06 2.04878e+06 3278.05 13.24 3.03873 2.6498 59280 493784 -1 30755 16 9686 12381 1815491 429681 4.48156 4.48156 -4038.4 -4.48156 0 0 2.52006e+06 4032.10 1.18 0.77 0.49 -1 -1 1.18 0.373679 0.337144 2913 1956 760 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_42.v common 31.92 vpr 96.70 MiB 0.19 19048 -1 -1 1 0.97 -1 -1 47056 -1 -1 377 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 99020 22 19 6024 4989 1 3151 430 25 25 625 clb auto 60.1 MiB 1.27 23102 130190 30059 88590 11541 96.7 MiB 2.25 0.03 4.12096 -3514.96 -4.12096 4.12096 2.45 0.00844391 0.00749272 0.723681 0.632742 54 37210 39 1.57822e+07 9.48637e+06 2.04878e+06 3278.05 16.86 3.27879 2.86776 59280 493784 -1 30138 14 9223 10892 1680910 390279 4.48156 4.48156 -4042.88 -4.48156 0 0 2.52006e+06 4032.10 1.19 0.72 0.49 -1 -1 1.19 0.360712 0.326628 2951 1975 779 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_43.v common 35.54 vpr 101.04 MiB 0.21 19356 -1 -1 1 1.05 -1 -1 45840 -1 -1 389 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 103460 22 19 6198 5129 1 3252 442 25 25 625 clb auto 60.9 MiB 1.25 24301 138448 32917 95669 9862 97.5 MiB 2.39 0.03 4.00076 -3614.89 -4.00076 4.00076 2.42 0.00814978 0.00713316 0.744042 0.647848 54 38732 25 1.57822e+07 9.63706e+06 2.04878e+06 3278.05 20.36 3.51612 3.09146 59280 493784 -1 31753 15 9662 12847 1899881 437495 4.48156 4.48156 -4248.29 -4.48156 0 0 2.52006e+06 4032.10 1.16 0.76 0.49 -1 -1 1.16 0.360397 0.324409 3035 2030 798 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_44.v common 42.81 vpr 105.49 MiB 0.20 19588 -1 -1 1 1.08 -1 -1 47356 -1 -1 394 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 108020 22 19 6272 5186 1 3297 447 26 26 676 clb auto 61.3 MiB 1.34 24035 137087 33585 94368 9134 97.8 MiB 2.66 0.03 4.00076 -3664.71 -4.00076 4.00076 2.82 0.0102237 0.00872232 0.872182 0.752683 54 39371 26 1.91291e+07 9.69985e+06 2.26288e+06 3347.46 26.32 4.21071 3.71095 65792 548382 -1 32403 15 10251 12894 2166517 483458 4.48156 4.48156 -4257.73 -4.48156 0 0 2.78165e+06 4114.86 1.35 0.79 0.53 -1 -1 1.35 0.358014 0.323102 3073 2049 817 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_45.v common 34.84 vpr 99.14 MiB 0.21 20068 -1 -1 1 1.13 -1 -1 47712 -1 -1 407 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 101516 22 19 6485 5365 1 3415 461 26 26 676 clb auto 62.8 MiB 1.19 24137 146421 35942 100318 10161 99.1 MiB 2.62 0.03 3.88056 -3774 -3.88056 3.88056 2.80 0.00962574 0.00860969 0.82929 0.727499 54 39699 28 1.91291e+07 1.02591e+07 2.26288e+06 3347.46 18.43 3.78768 3.31906 65792 548382 -1 32322 17 10208 13123 1978130 469314 4.36136 4.36136 -4478.6 -4.36136 0 0 2.78165e+06 4114.86 1.33 0.81 0.54 -1 -1 1.33 0.397818 0.357002 3178 2122 836 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_46.v common 42.28 vpr 108.13 MiB 0.21 20048 -1 -1 1 1.16 -1 -1 47580 -1 -1 412 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 110724 22 19 6559 5422 1 3449 466 26 26 676 clb auto 63.1 MiB 1.27 25720 161200 39946 110298 10956 99.5 MiB 2.90 0.03 4.12096 -3827.31 -4.12096 4.12096 2.82 0.00870284 0.00754995 0.891994 0.787836 58 39107 32 1.91291e+07 1.03219e+07 2.36678e+06 3501.15 25.10 4.72075 4.14969 67816 593426 -1 33726 14 9788 12308 1948819 437780 4.60176 4.60176 -4539.69 -4.60176 0 0 2.96266e+06 4382.64 1.47 0.83 0.59 -1 -1 1.47 0.412727 0.376897 3216 2141 855 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_47.v common 38.38 vpr 102.53 MiB 0.22 20404 -1 -1 1 1.19 -1 -1 48032 -1 -1 422 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 104992 22 19 6735 5564 1 3561 476 26 26 676 clb auto 64.7 MiB 1.30 25229 147179 34695 102736 9748 101.4 MiB 2.73 0.03 4.00076 -3914.51 -4.00076 4.00076 2.83 0.00924959 0.00821812 0.822731 0.724534 54 41123 38 1.91291e+07 1.04475e+07 2.26288e+06 3347.46 21.23 4.04156 3.53865 65792 548382 -1 33730 20 10560 13793 2179396 514213 4.48156 4.48156 -4512.81 -4.48156 0 0 2.78165e+06 4114.86 1.37 1.00 0.54 -1 -1 1.37 0.516661 0.465574 3302 2196 874 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_48.v common 38.31 vpr 101.07 MiB 0.22 20880 -1 -1 1 1.20 -1 -1 47636 -1 -1 428 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 103500 22 19 6809 5621 1 3598 482 26 26 676 clb auto 65.5 MiB 1.26 27968 157269 40086 106308 10875 101.1 MiB 2.77 0.03 4.24116 -3984.16 -4.24116 4.24116 2.70 0.00937627 0.00834075 0.824567 0.721842 54 44104 36 1.91291e+07 1.05228e+07 2.26288e+06 3347.46 21.71 4.01553 3.50802 65792 548382 -1 36483 13 10631 13740 2296447 519676 4.84216 4.84216 -4717.73 -4.84216 0 0 2.78165e+06 4114.86 1.33 0.85 0.51 -1 -1 1.33 0.388528 0.352169 3340 2215 893 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_49.v common 39.69 vpr 105.66 MiB 0.23 21432 -1 -1 1 1.23 -1 -1 48404 -1 -1 444 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 108200 22 19 7094 5872 1 3718 499 27 27 729 clb auto 66.9 MiB 1.40 28606 160717 39048 111953 9716 102.9 MiB 2.94 0.04 4.24116 -4233.22 -4.24116 4.24116 2.93 0.0110658 0.00941763 0.895977 0.768681 54 45885 48 1.9669e+07 1.11198e+07 2.44988e+06 3360.60 21.74 4.3673 3.79297 70678 594165 -1 38069 14 11353 14198 2180930 492139 4.60176 4.60176 -4934.7 -4.60176 0 0 3.01106e+06 4130.40 1.40 0.89 0.58 -1 -1 1.40 0.428021 0.387906 3481 2324 912 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_50.v common 48.09 vpr 105.89 MiB 0.23 21588 -1 -1 1 1.28 -1 -1 48004 -1 -1 449 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 108436 22 19 7168 5929 1 3755 504 27 27 729 clb auto 67.0 MiB 1.47 29567 170929 41661 118530 10738 103.2 MiB 3.00 0.03 4.24116 -4188.75 -4.24116 4.24116 2.92 0.00944817 0.00822353 0.895163 0.779084 56 46098 47 1.9669e+07 1.11825e+07 2.51142e+06 3445.02 29.70 3.9769 3.45252 71406 610069 -1 39488 14 11831 14658 2560966 583161 4.60176 4.60176 -4912.79 -4.60176 0 0 3.07846e+06 4222.85 1.49 0.98 0.60 -1 -1 1.49 0.431118 0.389935 3519 2343 931 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_51.v common 49.75 vpr 117.46 MiB 0.23 21696 -1 -1 1 1.31 -1 -1 48640 -1 -1 460 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 120284 22 19 7344 6071 1 3863 515 27 27 729 clb auto 68.3 MiB 1.48 30103 165555 40629 114605 10321 104.2 MiB 3.07 0.03 4.12096 -4411.71 -4.12096 4.12096 3.00 0.00894235 0.00769672 0.923152 0.812806 60 44856 49 1.9669e+07 1.13207e+07 2.62021e+06 3594.25 31.00 5.70788 5.00767 73590 657565 -1 38520 13 10723 13671 2141446 476103 4.72196 4.72196 -5015.9 -4.72196 0 0 3.26774e+06 4482.49 1.65 0.86 0.66 -1 -1 1.65 0.410196 0.371195 3605 2398 950 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_52.v common 46.02 vpr 107.84 MiB 0.24 22108 -1 -1 1 1.32 -1 -1 48336 -1 -1 465 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 110424 22 19 7418 6128 1 3909 520 27 27 729 clb auto 68.5 MiB 1.51 31492 171900 41546 119773 10581 104.3 MiB 3.19 0.04 4.24116 -4436.07 -4.24116 4.24116 3.02 0.0104339 0.00929063 0.960089 0.849101 58 48323 37 1.9669e+07 1.13835e+07 2.56250e+06 3515.09 27.37 3.95624 3.45677 72862 642985 -1 41043 16 12153 15278 2781166 629491 4.60176 4.60176 -5067.12 -4.60176 0 0 3.20690e+06 4399.04 1.54 1.10 0.64 -1 -1 1.54 0.493199 0.444946 3643 2417 969 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_14.v common 7.94 vpr 69.57 MiB 0.06 9688 -1 -1 1 0.18 -1 -1 38812 -1 -1 81 22 0 4 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71244 22 19 1246 925 1 736 126 16 16 256 mult_36 auto 31.9 MiB 0.37 4392 19656 4553 12870 2233 69.6 MiB 0.35 0.01 7.45953 -334.328 -7.45953 7.45953 0.79 0.00185336 0.00166994 0.130464 0.117672 36 9107 44 6.32612e+06 2.6012e+06 535569. 2092.07 3.68 0.60392 0.539726 20808 126872 -1 7202 24 5848 6901 1301713 326153 7.88639 7.88639 -457.954 -7.88639 0 0 684529. 2673.94 0.27 0.38 0.13 -1 -1 0.27 0.108125 0.0972679 591 285 247 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_15.v common 8.92 vpr 70.06 MiB 0.06 9972 -1 -1 1 0.19 -1 -1 39024 -1 -1 86 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71744 22 19 1344 989 1 796 132 16 16 256 mult_36 auto 32.2 MiB 0.37 4878 21572 4915 13607 3050 70.1 MiB 0.42 0.01 7.47778 -344.368 -7.47778 7.47778 0.83 0.00237173 0.00217125 0.165009 0.149011 40 9143 28 6.32612e+06 3.05999e+06 583096. 2277.72 4.44 0.726165 0.649141 21572 140635 -1 7895 21 5458 6354 1363462 337457 8.10239 8.10239 -473.06 -8.10239 0 0 763333. 2981.77 0.29 0.37 0.14 -1 -1 0.29 0.102763 0.0928572 635 304 266 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_16.v common 7.89 vpr 70.68 MiB 0.06 9944 -1 -1 1 0.21 -1 -1 38676 -1 -1 91 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72372 22 19 1418 1046 1 833 137 16 16 256 mult_36 auto 33.0 MiB 0.45 5105 24141 5626 14822 3693 70.7 MiB 0.43 0.01 7.40158 -376.798 -7.40158 7.40158 0.81 0.00219367 0.00196382 0.159258 0.143182 44 9347 24 6.32612e+06 3.12278e+06 649498. 2537.10 3.38 0.583948 0.521659 22336 155612 -1 7352 21 5380 6035 951423 245989 7.64659 7.64659 -463.847 -7.64659 0 0 820238. 3204.05 0.33 0.27 0.16 -1 -1 0.33 0.100852 0.0915513 673 323 285 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_17.v common 9.98 vpr 71.39 MiB 0.07 10348 -1 -1 1 0.21 -1 -1 38344 -1 -1 97 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 73104 22 19 1518 1112 1 899 143 16 16 256 mult_36 auto 33.6 MiB 0.45 5287 29983 7445 18834 3704 71.4 MiB 0.54 0.01 7.94484 -393.627 -7.94484 7.94484 0.83 0.00229775 0.00205607 0.198341 0.177565 40 10184 32 6.32612e+06 3.19813e+06 583096. 2277.72 5.11 0.792809 0.706589 21572 140635 -1 8484 23 6839 7777 1340264 348461 8.58465 8.58465 -610.373 -8.58465 0 0 763333. 2981.77 0.30 0.45 0.14 -1 -1 0.30 0.151979 0.138195 719 342 304 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_18.v common 9.62 vpr 71.76 MiB 0.07 10660 -1 -1 1 0.22 -1 -1 39120 -1 -1 102 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 73484 22 19 1592 1169 1 937 148 16 16 256 mult_36 auto 34.1 MiB 0.53 5358 25954 5901 16707 3346 71.8 MiB 0.49 0.01 7.90083 -429.836 -7.90083 7.90083 0.83 0.00237115 0.00213904 0.174099 0.156 44 10799 28 6.32612e+06 3.26092e+06 649498. 2537.10 4.77 0.778605 0.693663 22336 155612 -1 8124 20 5295 6216 1048475 268901 8.36425 8.36425 -630.03 -8.36425 0 0 820238. 3204.05 0.32 0.34 0.16 -1 -1 0.32 0.120042 0.10909 757 361 323 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_19.v common 11.22 vpr 72.17 MiB 0.07 10932 -1 -1 1 0.23 -1 -1 39996 -1 -1 107 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 73904 22 19 1688 1231 1 998 154 16 16 256 mult_36 auto 34.7 MiB 0.50 6122 24050 4863 16397 2790 72.2 MiB 0.48 0.01 7.81364 -421.708 -7.81364 7.81364 0.80 0.00258926 0.00228005 0.164014 0.146463 44 12318 44 6.32612e+06 3.71971e+06 649498. 2537.10 6.10 0.863429 0.764973 22336 155612 -1 8928 22 6032 6957 1496969 380838 8.16485 8.16485 -553.871 -8.16485 0 0 820238. 3204.05 0.33 0.48 0.16 -1 -1 0.33 0.144268 0.130901 799 380 342 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_20.v common 9.32 vpr 72.74 MiB 0.07 10684 -1 -1 1 0.25 -1 -1 39244 -1 -1 112 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74488 22 19 1762 1288 1 1033 159 16 16 256 mult_36 auto 35.1 MiB 0.56 6461 24669 5073 16191 3405 72.7 MiB 0.46 0.01 8.07603 -431.43 -8.07603 8.07603 0.82 0.00273379 0.00245494 0.168637 0.151507 44 12171 49 6.32612e+06 3.7825e+06 649498. 2537.10 4.28 0.806515 0.716689 22336 155612 -1 9202 22 6191 7346 1344622 333877 8.38325 8.38325 -675.537 -8.38325 0 0 820238. 3204.05 0.34 0.42 0.16 -1 -1 0.34 0.142289 0.128581 837 399 361 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_21.v common 11.65 vpr 73.11 MiB 0.08 11148 -1 -1 1 0.26 -1 -1 39748 -1 -1 119 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74860 22 19 1859 1351 1 1097 166 16 16 256 mult_36 auto 35.6 MiB 0.57 7254 23878 4435 16403 3040 73.1 MiB 0.52 0.01 8.14498 -460.765 -8.14498 8.14498 0.82 0.00296813 0.00264456 0.171052 0.153957 48 12447 36 6.32612e+06 3.8704e+06 714410. 2790.66 6.38 0.89989 0.798861 22848 165380 -1 10368 24 6585 7820 1628179 396024 9.37285 9.37285 -687.831 -9.37285 0 0 863353. 3372.47 0.35 0.50 0.17 -1 -1 0.35 0.160705 0.145409 880 418 380 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_22.v common 9.14 vpr 73.41 MiB 0.08 11436 -1 -1 1 0.28 -1 -1 39684 -1 -1 123 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75168 22 19 1933 1408 1 1134 170 16 16 256 mult_36 auto 36.0 MiB 0.63 7512 25550 4866 16928 3756 73.4 MiB 0.47 0.01 8.07603 -487.999 -8.07603 8.07603 0.78 0.00291044 0.00258413 0.165789 0.14844 48 12359 32 6.32612e+06 3.92063e+06 714410. 2790.66 3.95 0.808859 0.719099 22848 165380 -1 10414 22 6323 7557 1314276 331752 8.65185 8.65185 -738.93 -8.65185 0 0 863353. 3372.47 0.34 0.43 0.17 -1 -1 0.34 0.152754 0.138252 918 437 399 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_23.v common 12.17 vpr 74.07 MiB 0.09 11620 -1 -1 1 0.29 -1 -1 40488 -1 -1 131 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75848 22 19 2031 1472 1 1198 179 18 18 324 mult_36 auto 36.5 MiB 0.66 7156 32435 6973 20399 5063 74.1 MiB 0.62 0.01 7.95583 -499.319 -7.95583 7.95583 1.13 0.00304345 0.00273361 0.222389 0.200534 46 14415 37 7.77114e+06 4.4171e+06 895831. 2764.91 5.87 0.966146 0.864308 29024 211752 -1 10807 24 6884 8263 1409674 354460 8.51865 8.51865 -733.328 -8.51865 0 0 1.09776e+06 3388.15 0.47 0.47 0.21 -1 -1 0.47 0.172655 0.155819 962 456 418 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_24.v common 21.84 vpr 74.71 MiB 0.09 11524 -1 -1 1 0.30 -1 -1 39840 -1 -1 136 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 76500 22 19 2105 1529 1 1235 184 18 18 324 mult_36 auto 37.1 MiB 0.67 7774 42024 9957 27556 4511 74.7 MiB 0.78 0.01 7.95583 -519.035 -7.95583 7.95583 1.13 0.0030588 0.00272949 0.270036 0.241653 44 15687 39 7.77114e+06 4.47989e+06 850563. 2625.19 15.25 1.61834 1.43667 28700 205432 -1 11491 21 6852 8008 1692024 401943 8.67185 8.67185 -791.432 -8.67185 0 0 1.07356e+06 3313.45 0.46 0.53 0.20 -1 -1 0.46 0.170826 0.155434 1000 475 437 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_25.v common 13.61 vpr 75.14 MiB 0.10 11896 -1 -1 1 0.33 -1 -1 40164 -1 -1 141 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 76944 22 19 2201 1591 1 1295 189 18 18 324 mult_36 auto 37.6 MiB 0.69 8051 40839 8949 25568 6322 75.1 MiB 0.77 0.01 7.93383 -566.824 -7.93383 7.93383 1.13 0.00351178 0.00317118 0.274168 0.246411 46 15676 36 7.77114e+06 4.54268e+06 895831. 2764.91 6.96 1.13139 1.004 29024 211752 -1 12101 23 8482 9881 1786644 426690 8.47245 8.47245 -1153.45 -8.47245 0 0 1.09776e+06 3388.15 0.45 0.55 0.20 -1 -1 0.45 0.185837 0.168439 1042 494 456 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_26.v common 13.48 vpr 75.79 MiB 0.10 12104 -1 -1 1 0.34 -1 -1 40656 -1 -1 145 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 77608 22 19 2275 1648 1 1331 193 18 18 324 mult_36 auto 38.2 MiB 0.73 8287 40297 8702 27070 4525 75.8 MiB 0.80 0.01 7.90083 -552.972 -7.90083 7.90083 1.12 0.00366319 0.00331446 0.281826 0.253574 46 16138 47 7.77114e+06 4.59291e+06 895831. 2764.91 6.73 1.15883 1.0322 29024 211752 -1 12117 22 8225 9448 1709201 408367 8.24425 8.24425 -797.186 -8.24425 0 0 1.09776e+06 3388.15 0.45 0.50 0.21 -1 -1 0.45 0.17199 0.155133 1080 513 475 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_27.v common 18.12 vpr 76.18 MiB 0.10 12316 -1 -1 1 0.36 -1 -1 40132 -1 -1 153 22 0 8 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 78004 22 19 2385 1724 1 1408 202 18 18 324 mult_36 auto 38.9 MiB 0.76 9107 41050 8433 25134 7483 76.2 MiB 0.76 0.01 8.07603 -585.38 -8.07603 8.07603 1.13 0.00394443 0.00357484 0.282537 0.254324 50 16355 36 7.77114e+06 5.08937e+06 975281. 3010.13 11.13 1.75147 1.55457 29672 225968 -1 13232 25 8905 10434 1911891 465582 8.58465 8.58465 -883.379 -8.58465 0 0 1.16663e+06 3600.72 0.49 0.61 0.22 -1 -1 0.49 0.211719 0.190924 1136 532 494 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_28.v common 15.47 vpr 76.95 MiB 0.10 12636 -1 -1 1 0.38 -1 -1 40540 -1 -1 158 22 0 8 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 78796 22 19 2459 1781 1 1444 207 18 18 324 mult_36 auto 39.5 MiB 1.12 8924 44271 9197 29563 5511 76.9 MiB 0.80 0.01 8.17423 -576.522 -8.17423 8.17423 1.10 0.00332022 0.00296959 0.271698 0.242412 48 15412 36 7.77114e+06 5.15216e+06 935225. 2886.50 8.18 1.24519 1.10352 29348 218440 -1 12958 21 7328 8990 1724080 416818 8.67985 8.67985 -874.829 -8.67985 0 0 1.13028e+06 3488.51 0.49 0.55 0.21 -1 -1 0.49 0.191392 0.173581 1174 551 513 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_29.v common 53.52 vpr 77.43 MiB 0.11 12712 -1 -1 1 0.39 -1 -1 40580 -1 -1 165 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79284 22 19 2565 1853 1 1517 215 22 22 484 mult_36 auto 40.2 MiB 0.80 9429 42653 9331 29424 3898 77.4 MiB 0.83 0.01 7.94484 -557.934 -7.94484 7.94484 1.84 0.0037679 0.00337654 0.2836 0.254153 40 20229 39 1.26594e+07 5.63607e+06 1.17677e+06 2431.33 44.35 2.30084 2.03517 41974 287914 -1 15852 24 13032 14852 3314243 759248 9.22765 9.22765 -966.96 -9.22765 0 0 1.53957e+06 3180.94 0.70 0.92 0.29 -1 -1 0.70 0.235822 0.213593 1226 570 532 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_30.v common 25.61 vpr 77.86 MiB 0.10 13056 -1 -1 1 0.38 -1 -1 41044 -1 -1 170 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79728 22 19 2639 1910 1 1554 220 22 22 484 mult_36 auto 40.4 MiB 0.81 10436 47293 10606 32212 4475 77.9 MiB 0.93 0.01 8.27243 -600.329 -8.27243 8.27243 1.81 0.00398314 0.00361407 0.310895 0.277592 46 20885 45 1.26594e+07 5.69886e+06 1.37878e+06 2848.72 16.69 1.46772 1.29832 43906 328446 -1 15401 23 9919 11346 2315171 529494 8.75485 8.75485 -942.625 -8.75485 0 0 1.69059e+06 3492.95 0.76 0.70 0.30 -1 -1 0.76 0.219775 0.197742 1264 589 551 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_31.v common 22.19 vpr 78.23 MiB 0.11 13296 -1 -1 1 0.41 -1 -1 41068 -1 -1 177 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80104 22 19 2744 1981 1 1626 227 22 22 484 mult_36 auto 40.9 MiB 0.91 11536 52819 11405 35484 5930 78.2 MiB 1.02 0.01 7.90083 -597.662 -7.90083 7.90083 1.83 0.00438958 0.0038742 0.341944 0.304099 46 21906 41 1.26594e+07 5.78677e+06 1.37878e+06 2848.72 12.62 1.46284 1.29221 43906 328446 -1 16696 24 11898 14015 3062879 701383 8.78405 8.78405 -989.062 -8.78405 0 0 1.69059e+06 3492.95 0.74 0.84 0.33 -1 -1 0.74 0.225423 0.202464 1315 608 570 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_32.v common 17.75 vpr 78.54 MiB 0.12 13384 -1 -1 1 0.52 -1 -1 40752 -1 -1 181 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80420 22 19 2818 2038 1 1662 231 22 22 484 mult_36 auto 41.1 MiB 0.93 10931 61119 15185 40798 5136 78.5 MiB 1.17 0.01 7.82463 -692.937 -7.82463 7.82463 1.85 0.004074 0.00361665 0.385747 0.343578 44 20989 29 1.26594e+07 5.837e+06 1.30964e+06 2705.88 7.99 1.28032 1.13397 43422 318546 -1 15643 25 11269 13282 2275825 531095 8.32945 8.32945 -1141.45 -8.32945 0 0 1.65337e+06 3416.05 0.76 0.73 0.31 -1 -1 0.76 0.250305 0.225305 1353 627 589 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_33.v common 27.70 vpr 79.48 MiB 0.16 13792 -1 -1 1 0.45 -1 -1 41556 -1 -1 189 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 81388 22 19 2923 2109 1 1730 240 22 22 484 mult_36 auto 41.9 MiB 0.91 11888 68035 16768 43587 7680 79.5 MiB 1.38 0.02 8.75049 -711.16 -8.75049 8.75049 1.89 0.00524112 0.00477921 0.486812 0.437151 50 19383 28 1.26594e+07 6.33346e+06 1.50222e+06 3103.76 17.31 2.72588 2.43874 44874 350400 -1 16380 21 8998 10674 1980601 454864 9.22611 9.22611 -1061.2 -9.22611 0 0 1.79645e+06 3711.66 0.83 0.66 0.35 -1 -1 0.83 0.248529 0.226161 1404 646 608 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_34.v common 42.63 vpr 79.82 MiB 0.13 13860 -1 -1 1 0.46 -1 -1 41520 -1 -1 194 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 81732 22 19 2997 2166 1 1769 245 22 22 484 mult_36 auto 42.4 MiB 1.10 12094 66121 15382 43885 6854 79.8 MiB 1.34 0.02 8.59729 -721.806 -8.59729 8.59729 1.84 0.00465823 0.00415817 0.421193 0.37362 44 24961 50 1.26594e+07 6.39625e+06 1.30964e+06 2705.88 32.28 2.37639 2.09358 43422 318546 -1 17716 23 12136 14363 2832130 667884 9.40431 9.40431 -1135.81 -9.40431 0 0 1.65337e+06 3416.05 0.78 0.87 0.31 -1 -1 0.78 0.265194 0.239956 1442 665 627 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_35.v common 22.26 vpr 80.29 MiB 0.13 14396 -1 -1 1 0.48 -1 -1 41412 -1 -1 200 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 82220 22 19 3101 2236 1 1838 251 22 22 484 mult_36 auto 43.0 MiB 1.06 12370 56412 12219 36079 8114 80.3 MiB 1.10 0.02 8.56429 -748.354 -8.56429 8.56429 1.84 0.00502298 0.00453037 0.373104 0.332943 46 22874 41 1.26594e+07 6.4716e+06 1.37878e+06 2848.72 12.18 1.67036 1.4801 43906 328446 -1 17874 25 12744 14758 2557592 595798 9.30531 9.30531 -1223.26 -9.30531 0 0 1.69059e+06 3492.95 0.80 0.84 0.32 -1 -1 0.80 0.289914 0.261789 1492 684 646 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_36.v common 23.16 vpr 80.95 MiB 0.13 14476 -1 -1 1 0.49 -1 -1 41552 -1 -1 204 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 82888 22 19 3175 2293 1 1872 255 22 22 484 mult_36 auto 43.8 MiB 1.19 12249 62471 14567 43086 4818 80.9 MiB 1.18 0.02 8.59729 -744.038 -8.59729 8.59729 1.84 0.00462437 0.00404635 0.376087 0.332825 48 22942 42 1.26594e+07 6.52183e+06 1.44011e+06 2975.42 12.71 1.67585 1.47963 44390 338934 -1 18184 24 13951 15929 3209360 729162 9.35731 9.35731 -1131.26 -9.35731 0 0 1.74100e+06 3597.11 0.81 0.94 0.33 -1 -1 0.81 0.269138 0.240993 1530 703 665 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_37.v common 26.61 vpr 81.50 MiB 0.14 14476 -1 -1 1 0.54 -1 -1 41696 -1 -1 211 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 83452 22 19 3280 2364 1 1945 263 24 24 576 mult_36 auto 44.3 MiB 1.19 13165 65939 15175 45128 5636 81.5 MiB 1.43 0.02 8.72849 -828.623 -8.72849 8.72849 2.22 0.0052082 0.00463636 0.453074 0.404222 46 24527 44 1.52924e+07 7.00574e+06 1.63708e+06 2842.15 14.98 1.81495 1.60435 51922 389946 -1 18452 24 12475 14714 2507167 595570 9.18511 9.18511 -1323.46 -9.18511 0 0 2.00908e+06 3487.99 0.94 0.81 0.38 -1 -1 0.94 0.280464 0.252051 1581 722 684 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_38.v common 23.12 vpr 81.93 MiB 0.13 14568 -1 -1 1 0.51 -1 -1 42280 -1 -1 216 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 83892 22 19 3354 2421 1 1981 268 24 24 576 mult_36 auto 44.9 MiB 1.22 12740 64993 14592 44175 6226 81.9 MiB 1.34 0.02 8.84869 -820.812 -8.84869 8.84869 2.11 0.0048873 0.00428799 0.393651 0.347013 44 24704 45 1.52924e+07 7.06853e+06 1.55518e+06 2699.97 11.83 1.82149 1.60975 51346 378163 -1 18388 25 12105 14238 2566964 611215 9.25411 9.25411 -1418.24 -9.25411 0 0 1.96475e+06 3411.02 0.92 0.85 0.37 -1 -1 0.92 0.296944 0.267482 1619 741 703 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_39.v common 30.13 vpr 82.51 MiB 0.15 14780 -1 -1 1 0.54 -1 -1 41608 -1 -1 223 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84488 22 19 3457 2490 1 2052 275 24 24 576 mult_36 auto 45.4 MiB 1.23 14107 76180 18404 50729 7047 82.5 MiB 1.52 0.02 8.85969 -817.628 -8.85969 8.85969 2.26 0.00533894 0.00479565 0.472819 0.41937 48 25170 44 1.52924e+07 7.15643e+06 1.71014e+06 2969.00 18.21 2.61575 2.30307 52498 402441 -1 20290 22 11703 13887 2642522 613817 9.47131 9.47131 -1247.44 -9.47131 0 0 2.06880e+06 3591.66 0.98 0.82 0.40 -1 -1 0.98 0.270323 0.243788 1668 760 722 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_40.v common 21.67 vpr 82.89 MiB 0.15 15064 -1 -1 1 0.57 -1 -1 41612 -1 -1 228 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84880 22 19 3531 2547 1 2089 280 24 24 576 mult_36 auto 45.9 MiB 1.35 13933 82630 20703 54954 6973 82.9 MiB 1.73 0.02 8.75049 -920.85 -8.75049 8.75049 2.26 0.00533088 0.00479207 0.505766 0.450057 46 25236 31 1.52924e+07 7.21922e+06 1.63708e+06 2842.15 9.49 1.72559 1.53449 51922 389946 -1 19565 22 10949 13008 2111715 506422 9.68371 9.68371 -1384.09 -9.68371 0 0 2.00908e+06 3487.99 0.89 0.75 0.38 -1 -1 0.89 0.290263 0.261845 1706 779 741 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_41.v common 24.93 vpr 83.51 MiB 0.15 15228 -1 -1 1 0.58 -1 -1 41752 -1 -1 234 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 85512 22 19 3634 2616 1 2155 287 24 24 576 mult_36 auto 46.6 MiB 1.34 14241 80697 18835 51852 10010 83.5 MiB 1.55 0.02 8.75049 -883.696 -8.75049 8.75049 2.22 0.00520673 0.00458703 0.503424 0.447809 48 24243 43 1.52924e+07 7.69057e+06 1.71014e+06 2969.00 12.54 2.01347 1.78155 52498 402441 -1 20703 23 12932 15396 3012988 705113 9.40931 9.40931 -1441.04 -9.40931 0 0 2.06880e+06 3591.66 0.96 0.95 0.40 -1 -1 0.96 0.311028 0.281019 1755 798 760 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_42.v common 29.20 vpr 84.14 MiB 0.15 15496 -1 -1 1 0.60 -1 -1 42656 -1 -1 239 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 86156 22 19 3708 2673 1 2193 292 24 24 576 mult_36 auto 47.1 MiB 1.43 14348 78700 18197 51186 9317 84.1 MiB 1.60 0.02 9.05609 -851.737 -9.05609 9.05609 2.28 0.0058645 0.00507878 0.497801 0.439387 46 26058 48 1.52924e+07 7.75336e+06 1.63708e+06 2842.15 16.72 2.1147 1.86393 51922 389946 -1 20163 24 12300 14571 2594808 640493 9.92411 9.92411 -1231.98 -9.92411 0 0 2.00908e+06 3487.99 0.94 0.88 0.38 -1 -1 0.94 0.32662 0.294655 1793 817 779 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_43.v common 24.94 vpr 84.52 MiB 0.16 15740 -1 -1 1 0.62 -1 -1 43104 -1 -1 245 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 86544 22 19 3810 2741 1 2260 298 24 24 576 mult_36 auto 47.6 MiB 1.50 14750 79898 18747 54531 6620 84.5 MiB 1.75 0.02 8.58629 -958.377 -8.58629 8.58629 2.22 0.00589901 0.00513504 0.496745 0.436113 48 25945 50 1.52924e+07 7.82871e+06 1.71014e+06 2969.00 12.28 2.18483 1.92865 52498 402441 -1 21476 22 13448 15830 2787133 657802 9.11391 9.11391 -1451.79 -9.11391 0 0 2.06880e+06 3591.66 0.97 0.86 0.40 -1 -1 0.97 0.292816 0.263051 1841 836 798 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_44.v common 21.68 vpr 85.07 MiB 0.16 15784 -1 -1 1 0.63 -1 -1 42620 -1 -1 250 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87108 22 19 3884 2798 1 2296 303 24 24 576 mult_36 auto 47.9 MiB 1.49 15148 73527 16640 46301 10586 85.1 MiB 1.42 0.02 8.87069 -922.279 -8.87069 8.87069 2.24 0.0061591 0.00555311 0.466429 0.415736 52 26613 49 1.52924e+07 7.8915e+06 1.82869e+06 3174.81 9.24 2.0175 1.79109 54222 439550 -1 20407 22 10526 12398 2112596 523816 9.17791 9.17791 -1395.25 -9.17791 0 0 2.25030e+06 3906.77 1.06 0.79 0.44 -1 -1 1.06 0.324546 0.293915 1879 855 817 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_45.v common 33.29 vpr 85.30 MiB 0.17 16160 -1 -1 1 0.69 -1 -1 44108 -1 -1 257 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87344 22 19 3989 2869 1 2368 311 24 24 576 mult_36 auto 48.3 MiB 1.47 16744 75074 15897 50463 8714 85.3 MiB 1.57 0.02 9.19829 -945.131 -9.19829 9.19829 2.20 0.00540046 0.00481682 0.456139 0.405358 50 27547 40 1.52924e+07 8.37541e+06 1.78400e+06 3097.22 20.55 2.92587 2.57762 53074 415989 -1 22953 22 13367 16086 3159903 741664 9.49951 9.49951 -1417.29 -9.49951 0 0 2.13454e+06 3705.80 0.99 0.96 0.41 -1 -1 0.99 0.308043 0.275225 1930 874 836 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_46.v common 31.46 vpr 85.95 MiB 0.17 16132 -1 -1 1 0.66 -1 -1 44448 -1 -1 261 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 88008 22 19 4063 2926 1 2404 315 24 24 576 mult_36 auto 48.9 MiB 1.57 16231 79569 18029 52307 9233 85.9 MiB 1.56 0.02 8.84869 -959.475 -8.84869 8.84869 2.19 0.00646847 0.00585415 0.460709 0.406776 54 26179 32 1.52924e+07 8.42564e+06 1.87785e+06 3260.16 18.76 2.84097 2.50677 54798 452027 -1 21825 21 10831 12681 2420177 599015 9.20191 9.20191 -1492.05 -9.20191 0 0 2.31032e+06 4010.97 1.06 0.84 0.41 -1 -1 1.06 0.329739 0.29815 1968 893 855 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_47.v common 32.46 vpr 86.29 MiB 0.17 16728 -1 -1 1 0.67 -1 -1 44332 -1 -1 268 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 88364 22 19 4167 2996 1 2473 322 24 24 576 mult_36 auto 49.1 MiB 1.45 16256 89665 20795 56967 11903 86.3 MiB 1.78 0.02 9.23129 -969.897 -9.23129 9.23129 2.14 0.00633087 0.00572242 0.535754 0.47872 50 26638 46 1.52924e+07 8.51354e+06 1.78400e+06 3097.22 19.86 3.43541 3.04051 53074 415989 -1 22570 24 12036 14426 2709908 661393 9.64971 9.64971 -1480.55 -9.64971 0 0 2.13454e+06 3705.80 0.90 0.89 0.42 -1 -1 0.90 0.329702 0.29501 2018 912 874 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_48.v common 29.34 vpr 86.81 MiB 0.19 16772 -1 -1 1 0.72 -1 -1 45016 -1 -1 273 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 88896 22 19 4241 3053 1 2509 327 24 24 576 mult_36 auto 49.7 MiB 1.65 17266 85903 19885 57149 8869 86.8 MiB 1.79 0.02 8.87069 -1051.6 -8.87069 8.87069 2.17 0.00641923 0.00576025 0.517461 0.456227 50 29822 37 1.52924e+07 8.57633e+06 1.78400e+06 3097.22 16.15 2.21678 1.95029 53074 415989 -1 24169 23 14748 17796 3098135 716149 9.37931 9.37931 -1770.09 -9.37931 0 0 2.13454e+06 3705.80 0.97 0.97 0.41 -1 -1 0.97 0.329856 0.294588 2056 931 893 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_49.v common 24.70 vpr 87.05 MiB 0.19 17036 -1 -1 1 0.74 -1 -1 44832 -1 -1 279 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89144 22 19 4346 3124 1 2580 334 24 24 576 mult_36 auto 50.2 MiB 1.57 17032 88342 19883 56989 11470 87.1 MiB 1.73 0.02 8.75049 -1035.7 -8.75049 8.75049 2.14 0.00663184 0.00595876 0.508782 0.44658 48 29878 45 1.52924e+07 9.04768e+06 1.71014e+06 2969.00 11.50 2.37501 2.09532 52498 402441 -1 24517 21 15130 17801 3460339 840135 9.79411 9.79411 -1748.95 -9.79411 0 0 2.06880e+06 3591.66 0.98 1.06 0.39 -1 -1 0.98 0.335388 0.302671 2107 950 912 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_50.v common 25.08 vpr 87.48 MiB 0.19 17408 -1 -1 1 0.76 -1 -1 44660 -1 -1 284 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89576 22 19 4420 3181 1 2615 339 24 24 576 mult_36 auto 50.4 MiB 1.74 17639 93638 20800 59398 13440 87.5 MiB 1.83 0.02 8.87069 -1092.03 -8.87069 8.87069 2.18 0.00658177 0.00590427 0.545849 0.481878 52 30432 38 1.52924e+07 9.11047e+06 1.82869e+06 3174.81 11.32 2.22041 1.96792 54222 439550 -1 24210 23 15134 17425 3308055 786370 9.40131 9.40131 -1686.06 -9.40131 0 0 2.25030e+06 3906.77 1.08 1.12 0.44 -1 -1 1.08 0.39345 0.354098 2145 969 931 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_51.v common 30.31 vpr 88.29 MiB 0.48 17636 -1 -1 1 0.79 -1 -1 44856 -1 -1 292 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 90408 22 19 4524 3251 1 2687 347 24 24 576 mult_36 auto 51.4 MiB 1.72 17151 86825 17854 57788 11183 88.3 MiB 1.92 0.03 8.63029 -1132.46 -8.63029 8.63029 2.25 0.00876288 0.00769709 0.599679 0.535507 56 27553 28 1.52924e+07 9.21094e+06 1.92546e+06 3342.82 15.93 2.66425 2.37555 55374 464059 -1 23806 23 15014 17598 3113772 752815 8.96251 8.96251 -1691.46 -8.96251 0 0 2.36234e+06 4101.29 1.14 1.10 0.46 -1 -1 1.14 0.423109 0.382957 2195 988 950 19 0 0 - k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_52.v common 48.67 vpr 88.65 MiB 0.20 17660 -1 -1 1 0.79 -1 -1 45188 -1 -1 296 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 90776 22 19 4598 3308 1 2721 351 24 24 576 mult_36 auto 51.8 MiB 1.81 17632 96837 22103 64924 9810 88.6 MiB 2.00 0.03 8.87069 -1123.96 -8.87069 8.87069 2.07 0.0064902 0.00578253 0.554896 0.486851 50 29434 38 1.52924e+07 9.26117e+06 1.78400e+06 3097.22 34.91 3.37311 2.9575 53074 415989 -1 24600 24 14602 17511 2881395 714077 9.36711 9.36711 -1877.29 -9.36711 0 0 2.13454e+06 3705.80 0.99 1.04 0.41 -1 -1 0.99 0.412679 0.371997 2233 1007 969 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_14.v common 10.20 vpr 74.09 MiB 0.06 10584 -1 -1 1 0.26 -1 -1 40136 -1 -1 123 22 0 4 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75868 22 19 1974 1653 1 1039 168 16 16 256 mult_36 auto 36.5 MiB 2.04 6653 27485 5506 18919 3060 74.1 MiB 0.45 0.01 3.88056 -1067.72 -3.88056 3.88056 0.81 0.00277779 0.00246871 0.180546 0.160576 44 12446 31 6.34292e+06 3.14339e+06 649498. 2537.10 3.74 0.92227 0.815911 22336 155612 -1 9712 17 3430 4175 751385 183273 4.24116 4.24116 -1294.93 -4.24116 0 0 820238. 3204.05 0.34 0.29 0.16 -1 -1 0.34 0.128804 0.11714 953 649 247 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_15.v common 15.55 vpr 74.96 MiB 0.07 11028 -1 -1 1 0.27 -1 -1 40508 -1 -1 132 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 76764 22 19 2144 1789 1 1138 178 16 16 256 clb mult_36 auto 37.4 MiB 2.16 7125 28178 5361 19748 3069 75.0 MiB 0.48 0.01 3.88056 -1170.44 -3.88056 3.88056 0.83 0.00308223 0.0027408 0.198111 0.177361 50 12324 28 6.34292e+06 3.6535e+06 744679. 2908.90 8.86 1.27949 1.12983 23104 171162 -1 9905 16 3619 4109 691137 181290 4.24116 4.24116 -1362.92 -4.24116 0 0 891356. 3481.86 0.34 0.27 0.17 -1 -1 0.34 0.128642 0.116861 1033 704 266 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_16.v common 14.45 vpr 75.03 MiB 0.07 11012 -1 -1 1 0.29 -1 -1 40700 -1 -1 137 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 76832 22 19 2218 1846 1 1177 183 16 16 256 clb mult_36 auto 37.8 MiB 2.32 7500 27690 5434 19432 2824 75.0 MiB 0.50 0.01 3.88056 -1237.3 -3.88056 3.88056 0.82 0.00312344 0.00277031 0.185316 0.164279 48 12634 30 6.34292e+06 3.71689e+06 714410. 2790.66 7.52 1.35409 1.19478 22848 165380 -1 10813 19 3999 4856 728975 186106 4.36136 4.36136 -1403.91 -4.36136 0 0 863353. 3372.47 0.35 0.31 0.17 -1 -1 0.35 0.150848 0.136517 1071 723 285 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_17.v common 13.00 vpr 76.88 MiB 0.08 11880 -1 -1 1 0.33 -1 -1 40752 -1 -1 157 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 78728 22 19 2536 2130 1 1298 203 17 17 289 clb auto 39.6 MiB 2.46 8699 32983 6620 22935 3428 76.9 MiB 0.53 0.01 4.00076 -1350.29 -4.00076 4.00076 0.93 0.00338665 0.00298464 0.2055 0.180479 48 15216 28 6.65987e+06 3.97045e+06 816265. 2824.45 5.41 1.08025 0.9465 25714 189529 -1 12274 16 4394 5303 862389 207995 4.24116 4.24116 -1524.97 -4.24116 0 0 986792. 3414.50 0.40 0.32 0.19 -1 -1 0.40 0.146473 0.132386 1226 851 304 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_18.v common 12.22 vpr 77.67 MiB 0.08 11932 -1 -1 1 0.34 -1 -1 40524 -1 -1 163 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79536 22 19 2610 2187 1 1336 209 17 17 289 clb auto 40.3 MiB 2.57 8706 38649 8140 26765 3744 77.7 MiB 0.63 0.01 4.00076 -1436.94 -4.00076 4.00076 0.92 0.00350901 0.00309982 0.240895 0.2122 50 14041 25 6.65987e+06 4.04651e+06 851065. 2944.86 4.17 1.11378 0.976837 26002 196109 -1 11818 14 4185 5086 730507 188342 4.36136 4.36136 -1631.11 -4.36136 0 0 1.01866e+06 3524.77 0.40 0.28 0.19 -1 -1 0.40 0.139146 0.12629 1264 870 323 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_19.v common 17.42 vpr 78.40 MiB 0.09 12616 -1 -1 1 0.36 -1 -1 40548 -1 -1 172 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80284 22 19 2778 2321 1 1434 219 18 18 324 clb auto 41.5 MiB 2.78 9442 41736 9260 28904 3572 78.4 MiB 0.67 0.01 3.88056 -1509.14 -3.88056 3.88056 1.13 0.00381581 0.00337557 0.262868 0.232474 48 16218 27 7.79418e+06 4.55662e+06 935225. 2886.50 8.68 1.56694 1.37672 29348 218440 -1 13649 16 4947 5883 908017 221890 4.24116 4.24116 -1946.55 -4.24116 0 0 1.13028e+06 3488.51 0.47 0.38 0.22 -1 -1 0.47 0.178936 0.162919 1342 925 342 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_20.v common 14.82 vpr 79.12 MiB 0.09 12672 -1 -1 1 0.38 -1 -1 40596 -1 -1 176 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 81020 22 19 2852 2378 1 1479 223 18 18 324 clb auto 42.1 MiB 2.91 9040 36727 6815 26433 3479 79.1 MiB 0.59 0.01 4.00076 -1565.06 -4.00076 4.00076 1.09 0.0036669 0.00322872 0.225784 0.198938 46 16457 24 7.79418e+06 4.60733e+06 895831. 2764.91 6.12 1.20524 1.05911 29024 211752 -1 12830 16 4459 5416 756444 183307 4.48156 4.48156 -1779.96 -4.48156 0 0 1.09776e+06 3388.15 0.46 0.33 0.21 -1 -1 0.46 0.171959 0.155704 1380 944 361 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_21.v common 14.84 vpr 80.04 MiB 0.10 12840 -1 -1 1 0.39 -1 -1 41548 -1 -1 188 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 81964 22 19 3057 2549 1 1586 235 18 18 324 clb auto 43.2 MiB 3.11 10623 50191 11446 34686 4059 80.0 MiB 0.86 0.01 3.88056 -1674.94 -3.88056 3.88056 1.12 0.00449622 0.00400245 0.328357 0.290647 48 18850 40 7.79418e+06 4.75946e+06 935225. 2886.50 5.21 1.32159 1.16826 29348 218440 -1 14963 18 5391 6675 1011123 247431 4.24116 4.24116 -1948.26 -4.24116 0 0 1.13028e+06 3488.51 0.48 0.44 0.21 -1 -1 0.48 0.215526 0.195719 1477 1017 380 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_22.v common 14.96 vpr 80.69 MiB 0.10 13056 -1 -1 1 0.42 -1 -1 40660 -1 -1 194 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 82624 22 19 3131 2606 1 1626 241 19 19 361 clb auto 43.7 MiB 3.25 11075 47428 9860 34003 3565 80.7 MiB 0.81 0.01 3.88056 -1713.12 -3.88056 3.88056 1.25 0.00381237 0.00335079 0.302095 0.266249 46 19574 35 8.16184e+06 4.83553e+06 1.00734e+06 2790.40 5.03 1.27641 1.12325 32242 238619 -1 15449 15 5333 6293 1039451 248803 4.48156 4.48156 -2022.93 -4.48156 0 0 1.23460e+06 3419.94 0.54 0.39 0.24 -1 -1 0.54 0.178415 0.161776 1515 1036 399 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_23.v common 16.97 vpr 81.68 MiB 0.10 13644 -1 -1 1 0.45 -1 -1 42616 -1 -1 204 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 83636 22 19 3301 2742 1 1720 252 19 19 361 clb auto 44.7 MiB 3.43 11340 53517 10972 38772 3773 81.7 MiB 0.99 0.01 4.12096 -1844.89 -4.12096 4.12096 1.31 0.00546398 0.00491764 0.387348 0.346904 50 19231 34 8.16184e+06 5.35831e+06 1.09718e+06 3039.29 6.36 1.87336 1.66563 32962 254619 -1 15990 16 5660 6849 1080415 254872 4.36136 4.36136 -2097.5 -4.36136 0 0 1.31179e+06 3633.76 0.58 0.46 0.25 -1 -1 0.58 0.223301 0.203272 1595 1091 418 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_24.v common 30.71 vpr 82.30 MiB 0.10 13804 -1 -1 1 0.44 -1 -1 42200 -1 -1 209 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84280 22 19 3375 2799 1 1765 257 19 19 361 clb auto 45.1 MiB 3.34 11967 46769 9481 33178 4110 82.3 MiB 0.79 0.01 4.00076 -1865.51 -4.00076 4.00076 1.22 0.00459051 0.00407563 0.295055 0.261339 50 20440 30 8.16184e+06 5.4217e+06 1.09718e+06 3039.29 20.57 2.19137 1.91752 32962 254619 -1 16399 16 5699 6861 1120128 258858 4.48156 4.48156 -2174.85 -4.48156 0 0 1.31179e+06 3633.76 0.58 0.45 0.25 -1 -1 0.58 0.209359 0.18955 1633 1110 437 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_25.v common 17.08 vpr 83.03 MiB 0.11 14316 -1 -1 1 0.49 -1 -1 42396 -1 -1 223 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 85020 22 19 3615 3005 1 1878 271 20 20 400 clb auto 46.0 MiB 3.72 12280 52831 10521 37415 4895 83.0 MiB 0.92 0.01 4.00076 -2042.46 -4.00076 4.00076 1.46 0.00513692 0.00454771 0.33463 0.29589 48 21259 30 1.10667e+07 5.59919e+06 1.16517e+06 2912.92 5.70 1.36717 1.20151 36470 272802 -1 17751 17 6476 8068 1219422 292449 4.36136 4.36136 -2564.95 -4.36136 0 0 1.40818e+06 3520.44 0.59 0.47 0.28 -1 -1 0.59 0.219827 0.197876 1747 1201 456 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_26.v common 22.29 vpr 83.73 MiB 0.11 14104 -1 -1 1 0.50 -1 -1 42504 -1 -1 228 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 85740 22 19 3689 3062 1 1918 276 20 20 400 clb auto 46.8 MiB 3.66 13288 58646 11664 42490 4492 83.7 MiB 1.04 0.02 4.00076 -2078.04 -4.00076 4.00076 1.42 0.00507789 0.00453081 0.361356 0.318881 50 21259 27 1.10667e+07 5.66258e+06 1.21483e+06 3037.08 10.97 2.08118 1.81955 36870 282114 -1 18171 16 6256 7503 1140836 268384 4.36136 4.36136 -2430.48 -4.36136 0 0 1.45344e+06 3633.59 0.60 0.43 0.29 -1 -1 0.60 0.203037 0.182651 1785 1220 475 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_27.v common 36.77 vpr 85.20 MiB 0.12 14712 -1 -1 1 0.53 -1 -1 43056 -1 -1 240 22 0 8 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87248 22 19 3871 3210 1 2023 289 21 21 441 clb auto 48.2 MiB 3.99 12736 66184 14222 47449 4513 85.2 MiB 1.18 0.02 4.00076 -2150.31 -4.00076 4.00076 1.66 0.00576034 0.00515359 0.418569 0.371365 48 23674 38 1.14723e+07 6.21072e+06 1.29409e+06 2934.45 24.10 2.62405 2.28633 40046 303487 -1 18538 16 6725 8094 1367360 329524 4.36136 4.36136 -2481.33 -4.36136 0 0 1.56480e+06 3548.29 0.75 0.54 0.29 -1 -1 0.75 0.245176 0.221444 1877 1275 494 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_28.v common 23.25 vpr 85.15 MiB 0.12 14620 -1 -1 1 0.54 -1 -1 42280 -1 -1 245 22 0 8 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87196 22 19 3945 3267 1 2070 294 21 21 441 clb auto 48.3 MiB 4.16 15274 71615 16087 49018 6510 85.2 MiB 1.27 0.02 4.12096 -2212.78 -4.12096 4.12096 1.66 0.00608728 0.00546566 0.463329 0.410628 50 26326 44 1.14723e+07 6.27411e+06 1.34972e+06 3060.59 10.32 2.12878 1.86988 40486 313801 -1 20757 15 6888 8539 1369431 310657 4.36136 4.36136 -2629.09 -4.36136 0 0 1.61476e+06 3661.58 0.73 0.52 0.31 -1 -1 0.73 0.233746 0.211816 1915 1294 513 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_29.v common 26.74 vpr 86.66 MiB 0.13 15180 -1 -1 1 0.58 -1 -1 42376 -1 -1 258 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 88736 22 19 4159 3447 1 2186 308 22 22 484 mult_36 auto 49.5 MiB 4.38 15784 69921 15261 50158 4502 86.7 MiB 1.23 0.02 4.12096 -2281.06 -4.12096 4.12096 1.85 0.00626139 0.00562284 0.452872 0.401888 54 24396 19 1.26954e+07 6.83492e+06 1.58090e+06 3266.32 12.95 2.46623 2.18875 46322 380746 -1 20947 14 6290 7567 1058093 248434 4.60176 4.60176 -2724.95 -4.60176 0 0 1.94386e+06 4016.24 0.89 0.46 0.38 -1 -1 0.89 0.236453 0.214245 2021 1367 532 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_30.v common 21.91 vpr 87.24 MiB 0.13 15308 -1 -1 1 0.62 -1 -1 44468 -1 -1 263 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89332 22 19 4233 3504 1 2225 313 22 22 484 mult_36 auto 50.5 MiB 4.49 15547 67219 13410 48892 4917 87.2 MiB 1.18 0.02 3.88056 -2252.62 -3.88056 3.88056 1.85 0.00621901 0.00555232 0.411059 0.3633 48 28072 29 1.26954e+07 6.89831e+06 1.44011e+06 2975.42 7.90 1.6639 1.45969 44390 338934 -1 22188 17 8188 10079 2044484 465211 4.48156 4.48156 -2862.8 -4.48156 0 0 1.74100e+06 3597.11 0.80 0.67 0.33 -1 -1 0.80 0.257819 0.230982 2059 1386 551 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_31.v common 23.67 vpr 88.33 MiB 0.13 15864 -1 -1 1 0.64 -1 -1 43652 -1 -1 274 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 90452 22 19 4410 3647 1 2335 324 22 22 484 clb mult_36 auto 51.5 MiB 4.57 15750 71492 15173 51187 5132 88.3 MiB 1.20 0.02 3.88056 -2412.46 -3.88056 3.88056 1.82 0.00594185 0.00519709 0.418814 0.368231 50 27040 29 1.26954e+07 7.03777e+06 1.50222e+06 3103.76 9.55 2.02363 1.77142 44874 350400 -1 21841 16 7538 9195 1400457 324058 4.36136 4.36136 -2862.98 -4.36136 0 0 1.79645e+06 3711.66 0.81 0.56 0.34 -1 -1 0.81 0.266262 0.241288 2146 1441 570 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_32.v common 23.94 vpr 88.89 MiB 0.14 15688 -1 -1 1 0.65 -1 -1 44800 -1 -1 278 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 91028 22 19 4484 3704 1 2374 328 22 22 484 clb mult_36 auto 52.0 MiB 4.93 15980 79428 16275 56899 6254 88.9 MiB 1.47 0.02 4.00076 -2374.85 -4.00076 4.00076 1.87 0.00731938 0.00657471 0.534304 0.47614 50 26329 28 1.26954e+07 7.08848e+06 1.50222e+06 3103.76 8.86 2.57122 2.28663 44874 350400 -1 21817 17 7632 9627 1511377 363667 4.36136 4.36136 -2876.01 -4.36136 0 0 1.79645e+06 3711.66 0.86 0.69 0.35 -1 -1 0.86 0.349121 0.318062 2184 1460 589 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_33.v common 23.38 vpr 90.34 MiB 0.16 16976 -1 -1 1 0.72 -1 -1 44868 -1 -1 302 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 92512 22 19 4843 4029 1 2501 353 23 23 529 clb auto 53.5 MiB 4.96 18294 97619 22986 67222 7411 90.3 MiB 1.66 0.02 4.12096 -2727.64 -4.12096 4.12096 2.02 0.00651688 0.00577354 0.562258 0.493 52 30691 28 1.31518e+07 7.78876e+06 1.69338e+06 3201.10 7.58 2.04797 1.81036 49938 407647 -1 24903 15 7928 9754 1504513 353358 4.48156 4.48156 -3103.38 -4.48156 0 0 2.08190e+06 3935.53 0.97 0.62 0.37 -1 -1 0.97 0.2966 0.268295 2362 1606 608 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_34.v common 30.80 vpr 90.95 MiB 0.16 16924 -1 -1 1 0.73 -1 -1 44940 -1 -1 308 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 93136 22 19 4917 4086 1 2542 359 23 23 529 clb auto 54.1 MiB 5.30 17956 89609 19205 64663 5741 91.0 MiB 1.55 0.02 4.12096 -2797.92 -4.12096 4.12096 2.07 0.00714681 0.00636293 0.524854 0.462349 50 30892 49 1.31518e+07 7.86482e+06 1.65241e+06 3123.66 14.61 2.60073 2.2712 48882 385791 -1 24578 18 8360 10419 1593065 368457 4.36136 4.36136 -3316.56 -4.36136 0 0 1.97533e+06 3734.07 0.90 0.66 0.37 -1 -1 0.90 0.324979 0.291963 2401 1625 627 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_35.v common 36.49 vpr 91.87 MiB 0.16 17160 -1 -1 1 0.77 -1 -1 45684 -1 -1 319 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 94072 22 19 5093 4228 1 2643 370 23 23 529 clb auto 55.2 MiB 5.49 19373 97241 22360 68346 6535 91.9 MiB 1.70 0.02 4.12096 -2896.96 -4.12096 4.12096 2.09 0.00651675 0.0057091 0.551514 0.483056 54 30788 25 1.31518e+07 8.00428e+06 1.73850e+06 3286.39 19.78 2.98271 2.60897 50466 419205 -1 25718 12 7896 9395 1399928 327698 4.60176 4.60176 -3400.02 -4.60176 0 0 2.13727e+06 4040.20 0.95 0.54 0.41 -1 -1 0.95 0.25634 0.233076 2487 1680 646 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_36.v common 32.04 vpr 91.91 MiB 0.21 17236 -1 -1 1 0.77 -1 -1 45780 -1 -1 323 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 94120 22 19 5167 4285 1 2691 374 23 23 529 clb auto 55.4 MiB 5.27 20318 94664 20935 66987 6742 91.9 MiB 1.58 0.02 4.00076 -2960.59 -4.00076 4.00076 2.02 0.00758318 0.00632257 0.51376 0.446363 54 34592 46 1.31518e+07 8.05499e+06 1.73850e+06 3286.39 15.63 2.93832 2.55435 50466 419205 -1 27179 15 8550 10525 1660528 371666 4.60176 4.60176 -3363.69 -4.60176 0 0 2.13727e+06 4040.20 0.98 0.64 0.41 -1 -1 0.98 0.300518 0.271119 2525 1699 665 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_37.v common 34.89 vpr 93.22 MiB 0.20 17980 -1 -1 1 0.83 -1 -1 44488 -1 -1 336 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 95456 22 19 5380 4464 1 2808 388 24 24 576 mult_36 auto 56.7 MiB 5.43 19885 102196 21733 73159 7304 93.2 MiB 1.72 0.02 4.12096 -3078.59 -4.12096 4.12096 2.20 0.00736465 0.00644783 0.556934 0.484339 50 32788 25 1.53347e+07 8.61581e+06 1.78400e+06 3097.22 17.67 3.18759 2.78438 53074 415989 -1 27355 14 8950 10854 1867472 424298 4.60176 4.60176 -3577.53 -4.60176 0 0 2.13454e+06 3705.80 0.95 0.65 0.42 -1 -1 0.95 0.283233 0.254442 2630 1772 684 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_38.v common 53.71 vpr 94.14 MiB 0.18 18012 -1 -1 1 0.88 -1 -1 44512 -1 -1 342 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 96404 22 19 5454 4521 1 2849 394 24 24 576 clb mult_36 auto 58.4 MiB 5.58 19285 98518 21214 69423 7881 94.1 MiB 1.68 0.02 4.00076 -3085.14 -4.00076 4.00076 2.17 0.00740884 0.00645893 0.542398 0.472131 48 30991 45 1.53347e+07 8.69188e+06 1.71014e+06 2969.00 36.35 3.77622 3.27428 52498 402441 -1 27026 17 9379 11487 1756089 429028 4.24116 4.24116 -3658.49 -4.24116 0 0 2.06880e+06 3591.66 0.95 0.71 0.39 -1 -1 0.95 0.335176 0.300873 2668 1791 703 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_39.v common 33.24 vpr 94.52 MiB 0.18 18328 -1 -1 1 0.87 -1 -1 44504 -1 -1 352 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 96784 22 19 5629 4662 1 2951 404 24 24 576 clb mult_36 auto 58.5 MiB 5.85 21655 104844 21870 76021 6953 94.5 MiB 1.85 0.02 4.12096 -3250.33 -4.12096 4.12096 2.21 0.00740825 0.00650976 0.599376 0.526407 54 35048 49 1.53347e+07 8.81866e+06 1.87785e+06 3260.16 15.21 2.94003 2.56045 54798 452027 -1 28521 15 9047 11024 1837268 419775 4.48156 4.48156 -3667.08 -4.48156 0 0 2.31032e+06 4010.97 1.03 0.67 0.45 -1 -1 1.03 0.311829 0.280157 2753 1846 722 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_40.v common 42.45 vpr 99.68 MiB 0.18 18440 -1 -1 1 0.91 -1 -1 46112 -1 -1 357 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 102076 22 19 5703 4719 1 2994 409 25 25 625 clb auto 59.1 MiB 5.98 22926 126320 30403 84754 11163 95.0 MiB 2.28 0.03 4.12096 -3237.14 -4.12096 4.12096 2.49 0.00879502 0.00786958 0.763139 0.674175 56 36184 34 1.58291e+07 8.88205e+06 2.10056e+06 3360.90 22.83 3.57657 3.14606 59904 506958 -1 30982 16 9702 11996 2409119 550756 4.60176 4.60176 -3861.5 -4.60176 0 0 2.57664e+06 4122.63 1.23 0.88 0.51 -1 -1 1.23 0.366249 0.330154 2791 1865 741 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_41.v common 39.71 vpr 100.84 MiB 0.19 19200 -1 -1 1 0.96 -1 -1 44940 -1 -1 373 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 103256 22 19 5950 4932 1 3111 426 25 25 625 clb auto 60.6 MiB 5.86 23624 123780 29199 86474 8107 96.8 MiB 2.13 0.03 4.12096 -3502.46 -4.12096 4.12096 2.39 0.00820844 0.00723486 0.669933 0.588453 56 37293 24 1.58291e+07 9.48089e+06 2.10056e+06 3360.90 20.60 3.3769 2.9612 59904 506958 -1 32472 14 10096 12878 2153864 496652 4.48156 4.48156 -4147.32 -4.48156 0 0 2.57664e+06 4122.63 1.22 0.79 0.47 -1 -1 1.22 0.347609 0.314935 2912 1956 760 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_42.v common 33.42 vpr 97.00 MiB 0.19 19180 -1 -1 1 0.97 -1 -1 47288 -1 -1 376 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 99324 22 19 6024 4989 1 3151 429 25 25 625 clb auto 61.1 MiB 6.35 23087 137874 33874 93660 10340 97.0 MiB 2.32 0.03 4.00076 -3506.48 -4.00076 4.00076 2.41 0.00827164 0.0069755 0.74538 0.640524 52 40352 48 1.58291e+07 9.51893e+06 1.99531e+06 3192.49 13.34 3.08765 2.68394 58656 480125 -1 31323 14 10229 12351 2069982 478125 4.36136 4.36136 -4070.51 -4.36136 0 0 2.45448e+06 3927.17 1.19 0.86 0.48 -1 -1 1.19 0.408659 0.37307 2950 1975 779 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_43.v common 42.65 vpr 104.13 MiB 0.19 19332 -1 -1 1 1.02 -1 -1 45872 -1 -1 388 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 106628 22 19 6198 5129 1 3252 441 25 25 625 clb auto 62.1 MiB 6.43 23221 127969 29180 88206 10583 98.1 MiB 2.24 0.03 4.24116 -3691.52 -4.24116 4.24116 2.43 0.00835972 0.0073822 0.694057 0.605939 58 36321 39 1.58291e+07 9.67106e+06 2.14341e+06 3429.45 22.28 3.89652 3.42545 61152 534357 -1 31360 16 9849 11850 2196127 485248 4.48156 4.48156 -4120.94 -4.48156 0 0 2.68463e+06 4295.40 1.31 0.88 0.53 -1 -1 1.31 0.414554 0.374999 3034 2030 798 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_44.v common 31.45 vpr 98.61 MiB 0.23 19516 -1 -1 1 1.04 -1 -1 46948 -1 -1 393 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 100972 22 19 6272 5186 1 3297 446 26 26 676 clb auto 62.5 MiB 6.68 21533 138389 33486 95600 9303 98.6 MiB 2.38 0.03 4.00076 -3511.78 -4.00076 4.00076 2.70 0.00813622 0.00718718 0.773818 0.682828 50 36492 37 1.91809e+07 9.73445e+06 2.15046e+06 3181.16 10.27 3.30533 2.90459 63768 504694 -1 29930 13 10222 13066 1948660 459106 4.48156 4.48156 -4199.13 -4.48156 0 0 2.57128e+06 3803.68 1.25 0.74 0.49 -1 -1 1.25 0.336024 0.303347 3072 2049 817 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_45.v common 37.17 vpr 100.30 MiB 0.20 20004 -1 -1 1 1.11 -1 -1 47796 -1 -1 406 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 102704 22 19 6485 5365 1 3415 460 26 26 676 clb auto 64.3 MiB 6.76 24611 147785 37106 101413 9266 100.3 MiB 2.54 0.03 4.24116 -3640.55 -4.24116 4.24116 2.76 0.009347 0.00830256 0.790812 0.693713 54 38649 20 1.91809e+07 1.02953e+07 2.26288e+06 3347.46 15.39 3.58624 3.15894 65792 548382 -1 33148 14 10293 12503 2055791 472478 4.72196 4.72196 -4363.18 -4.72196 0 0 2.78165e+06 4114.86 1.28 0.81 0.54 -1 -1 1.28 0.384213 0.348306 3177 2122 836 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_46.v common 35.86 vpr 99.93 MiB 0.21 20324 -1 -1 1 1.11 -1 -1 47860 -1 -1 411 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 102328 22 19 6559 5422 1 3449 465 26 26 676 clb auto 64.1 MiB 7.25 25632 148065 36512 102746 8807 99.9 MiB 2.60 0.03 4.00076 -3754.16 -4.00076 4.00076 2.74 0.00870915 0.00763867 0.795288 0.696621 54 41061 28 1.91809e+07 1.03587e+07 2.26288e+06 3347.46 13.49 3.27057 2.8531 65792 548382 -1 34219 13 10504 13554 2073225 470734 4.60176 4.60176 -4493.33 -4.60176 0 0 2.78165e+06 4114.86 1.33 0.79 0.54 -1 -1 1.33 0.367406 0.332632 3215 2141 855 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_47.v common 44.89 vpr 101.55 MiB 0.22 20456 -1 -1 1 1.16 -1 -1 47656 -1 -1 421 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 103988 22 19 6735 5564 1 3561 475 26 26 676 clb auto 65.4 MiB 7.19 26361 150487 36779 102941 10767 101.6 MiB 2.53 0.03 4.24116 -3818.29 -4.24116 4.24116 2.70 0.00911103 0.00797996 0.782723 0.680401 56 40127 28 1.91809e+07 1.04854e+07 2.31971e+06 3431.53 22.41 3.3148 2.88499 66468 563034 -1 35521 14 10835 13455 2452157 557846 4.72196 4.72196 -4708.86 -4.72196 0 0 2.84390e+06 4206.95 1.36 0.90 0.56 -1 -1 1.36 0.387148 0.349314 3301 2196 874 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_48.v common 47.48 vpr 109.91 MiB 0.21 20596 -1 -1 1 1.17 -1 -1 47452 -1 -1 427 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 112552 22 19 6809 5621 1 3598 481 26 26 676 clb auto 65.8 MiB 7.60 26836 168068 42557 115084 10427 101.8 MiB 3.01 0.03 4.12096 -3953.29 -4.12096 4.12096 2.73 0.00981435 0.00876669 0.926243 0.81054 56 41934 34 1.91809e+07 1.05615e+07 2.31971e+06 3431.53 24.02 4.25545 3.72412 66468 563034 -1 36357 14 11240 13665 2293013 526085 4.60176 4.60176 -4887.71 -4.60176 0 0 2.84390e+06 4206.95 1.37 0.89 0.55 -1 -1 1.37 0.390258 0.352766 3339 2215 893 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_49.v common 40.73 vpr 103.73 MiB 0.23 21456 -1 -1 1 1.28 -1 -1 48152 -1 -1 443 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 106224 22 19 7094 5872 1 3718 498 27 27 729 clb auto 67.8 MiB 7.48 25269 162284 38743 113116 10425 103.7 MiB 3.06 0.04 4.00076 -4019.88 -4.00076 4.00076 3.02 0.0111984 0.0100651 0.991145 0.878996 54 40098 24 1.9726e+07 1.11604e+07 2.44988e+06 3360.60 16.30 4.58504 4.05731 70678 594165 -1 33613 14 10626 12972 1955827 455487 4.48156 4.48156 -4724.77 -4.48156 0 0 3.01106e+06 4130.40 1.51 0.89 0.59 -1 -1 1.51 0.463479 0.420757 3480 2324 912 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_50.v common 37.50 vpr 104.67 MiB 0.23 21628 -1 -1 1 1.26 -1 -1 47932 -1 -1 448 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 107180 22 19 7168 5929 1 3755 503 27 27 729 clb auto 68.1 MiB 7.53 27460 168419 40250 118403 9766 103.9 MiB 2.96 0.03 4.00076 -4115.98 -4.00076 4.00076 2.89 0.0103195 0.00915504 0.891123 0.776708 56 41198 24 1.9726e+07 1.12237e+07 2.51142e+06 3445.02 13.28 3.21629 2.82487 71406 610069 -1 36995 14 11421 14302 2286266 526329 4.60176 4.60176 -4896.08 -4.60176 0 0 3.07846e+06 4222.85 1.48 0.92 0.61 -1 -1 1.48 0.423224 0.382052 3518 2343 931 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_51.v common 49.16 vpr 116.28 MiB 0.23 21672 -1 -1 1 1.31 -1 -1 48380 -1 -1 459 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 119072 22 19 7344 6071 1 3863 514 27 27 729 clb auto 68.8 MiB 7.83 30021 177502 45547 119976 11979 104.7 MiB 2.97 0.03 4.24116 -4303.02 -4.24116 4.24116 2.88 0.00868335 0.00764345 0.895194 0.779808 56 45433 25 1.9726e+07 1.13632e+07 2.51142e+06 3445.02 24.42 4.1602 3.63758 71406 610069 -1 40268 16 12071 14986 2560757 574086 4.60176 4.60176 -5157.37 -4.60176 0 0 3.07846e+06 4222.85 1.51 0.96 0.59 -1 -1 1.51 0.445191 0.400753 3604 2398 950 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_52.v common 45.26 vpr 107.68 MiB 0.23 21828 -1 -1 1 1.33 -1 -1 48376 -1 -1 464 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 110264 22 19 7418 6128 1 3909 519 27 27 729 clb auto 69.4 MiB 7.78 29687 175575 42190 122853 10532 105.2 MiB 3.04 0.03 4.24116 -4306.32 -4.24116 4.24116 2.90 0.0101263 0.00899503 0.918712 0.804635 56 44607 40 1.9726e+07 1.14266e+07 2.51142e+06 3445.02 20.76 4.47455 3.91286 71406 610069 -1 39484 14 11843 14725 2357119 537184 4.72196 4.72196 -5058.54 -4.72196 0 0 3.07846e+06 4222.85 1.42 0.90 0.60 -1 -1 1.42 0.406396 0.364979 3642 2417 969 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_14.v common 17.15 vpr 69.55 MiB 0.05 9572 -1 -1 1 0.17 -1 -1 38836 -1 -1 79 22 0 4 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71220 22 19 1246 925 1 736 124 16 16 256 mult_36 auto 32.1 MiB 1.42 4475 15883 3181 10532 2170 69.6 MiB 0.27 0.00 7.19932 -326.794 -7.19932 7.19932 0.79 0.0019276 0.00173694 0.107375 0.0969999 38 8699 35 6.34292e+06 2.58556e+06 558663. 2182.28 12.06 0.986474 0.877153 21316 135884 -1 6852 22 5149 5713 1005527 256123 7.81499 7.81499 -421.469 -7.81499 0 0 744679. 2908.90 0.29 0.32 0.13 -1 -1 0.29 0.105413 0.0957513 589 285 247 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_15.v common 12.78 vpr 70.07 MiB 0.06 9672 -1 -1 1 0.19 -1 -1 38840 -1 -1 84 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71748 22 19 1344 989 1 796 130 16 16 256 mult_36 auto 32.7 MiB 1.71 4728 20857 4958 12174 3725 70.1 MiB 0.37 0.01 7.17732 -352.66 -7.17732 7.17732 0.85 0.00231709 0.00199964 0.145707 0.130572 44 9564 36 6.34292e+06 3.04495e+06 649498. 2537.10 7.06 0.914404 0.808368 22336 155612 -1 6952 22 4657 5241 849116 226157 7.60742 7.60742 -466.22 -7.60742 0 0 820238. 3204.05 0.33 0.28 0.16 -1 -1 0.33 0.108274 0.0978284 633 304 266 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_16.v common 9.72 vpr 70.80 MiB 0.06 9800 -1 -1 1 0.20 -1 -1 38952 -1 -1 89 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72500 22 19 1418 1046 1 833 135 16 16 256 mult_36 auto 33.0 MiB 1.72 4969 22625 5126 13275 4224 70.8 MiB 0.39 0.01 7.31952 -370.156 -7.31952 7.31952 0.82 0.00211244 0.00190423 0.153889 0.138586 42 9873 46 6.34292e+06 3.10834e+06 613404. 2396.11 3.89 0.69514 0.62173 21828 146600 -1 7397 22 5433 6026 1153238 298731 7.56554 7.56554 -464.767 -7.56554 0 0 784202. 3063.29 0.31 0.36 0.15 -1 -1 0.31 0.120265 0.109376 671 323 285 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_17.v common 14.14 vpr 71.65 MiB 0.07 10280 -1 -1 1 0.21 -1 -1 38768 -1 -1 95 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 73368 22 19 1518 1112 1 899 141 16 16 256 mult_36 auto 34.0 MiB 1.80 5830 24663 5585 14854 4224 71.6 MiB 0.44 0.01 7.83563 -387.164 -7.83563 7.83563 0.81 0.00252338 0.00230384 0.170481 0.153645 46 10609 30 6.34292e+06 3.18441e+06 684529. 2673.94 8.13 1.05339 0.93408 22592 160355 -1 8330 23 6321 7050 1082514 288242 8.41714 8.41714 -508.76 -8.41714 0 0 838722. 3276.26 0.32 0.34 0.16 -1 -1 0.32 0.123351 0.11132 717 342 304 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_18.v common 11.45 vpr 71.77 MiB 0.07 10396 -1 -1 1 0.22 -1 -1 39164 -1 -1 100 22 0 5 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 73492 22 19 1592 1169 1 937 146 16 16 256 mult_36 auto 34.2 MiB 1.90 5768 23186 5043 14807 3336 71.8 MiB 0.46 0.01 7.87378 -423.859 -7.87378 7.87378 0.82 0.00267849 0.0024322 0.165083 0.14916 46 11279 34 6.34292e+06 3.2478e+06 684529. 2673.94 5.25 0.827492 0.740361 22592 160355 -1 8399 23 5797 6537 1001088 254098 8.35225 8.35225 -500.681 -8.35225 0 0 838722. 3276.26 0.34 0.36 0.16 -1 -1 0.34 0.141375 0.128341 755 361 323 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_19.v common 10.46 vpr 71.95 MiB 0.07 10612 -1 -1 1 0.23 -1 -1 39708 -1 -1 105 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 73680 22 19 1688 1231 1 998 152 16 16 256 mult_36 auto 34.6 MiB 2.15 6163 25262 5430 16322 3510 72.0 MiB 0.52 0.01 7.91183 -414.648 -7.91183 7.91183 0.83 0.00291905 0.0026183 0.197662 0.178609 46 10789 30 6.34292e+06 3.70719e+06 684529. 2673.94 3.75 0.835531 0.749498 22592 160355 -1 8911 23 6128 6963 1301513 331479 8.37739 8.37739 -575.715 -8.37739 0 0 838722. 3276.26 0.34 0.46 0.16 -1 -1 0.34 0.167083 0.152387 797 380 342 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_20.v common 10.67 vpr 72.79 MiB 0.07 10672 -1 -1 1 0.25 -1 -1 39148 -1 -1 110 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74540 22 19 1762 1288 1 1033 157 16 16 256 mult_36 auto 35.3 MiB 2.39 6258 25537 5082 16804 3651 72.8 MiB 0.50 0.01 7.94272 -446.391 -7.94272 7.94272 0.80 0.00257027 0.00230072 0.173994 0.155258 44 11870 36 6.34292e+06 3.77058e+06 649498. 2537.10 3.82 0.752048 0.668658 22336 155612 -1 8869 23 6454 7264 1097871 292530 8.38325 8.38325 -610.89 -8.38325 0 0 820238. 3204.05 0.33 0.37 0.16 -1 -1 0.33 0.144271 0.130342 835 399 361 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_21.v common 12.17 vpr 73.70 MiB 0.08 11292 -1 -1 1 0.26 -1 -1 39588 -1 -1 117 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75468 22 19 1859 1351 1 1097 164 16 16 256 mult_36 auto 36.0 MiB 2.45 7610 23460 4742 15321 3397 73.7 MiB 0.49 0.01 7.98298 -454.868 -7.98298 7.98298 0.81 0.00300627 0.00272172 0.16963 0.152694 52 13753 35 6.34292e+06 3.85933e+06 763333. 2981.77 5.14 0.932395 0.833109 23612 180979 -1 10662 21 6037 6974 1331985 336907 8.73999 8.73999 -600.024 -8.73999 0 0 940801. 3675.00 0.37 0.40 0.18 -1 -1 0.37 0.136939 0.124269 878 418 380 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_22.v common 12.87 vpr 73.69 MiB 0.08 11172 -1 -1 1 0.28 -1 -1 39832 -1 -1 121 22 0 6 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75456 22 19 1933 1408 1 1134 168 16 16 256 mult_36 auto 36.2 MiB 2.44 7807 22392 4309 14490 3593 73.7 MiB 0.43 0.01 8.06292 -488.77 -8.06292 8.06292 0.80 0.00282789 0.00252625 0.154994 0.13849 48 13647 34 6.34292e+06 3.91004e+06 714410. 2790.66 5.77 0.896998 0.794985 22848 165380 -1 11235 26 8357 9534 1777922 437547 8.71387 8.71387 -667.422 -8.71387 0 0 863353. 3372.47 0.34 0.53 0.17 -1 -1 0.34 0.166767 0.149703 916 437 399 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_23.v common 17.65 vpr 74.27 MiB 0.09 11716 -1 -1 1 0.29 -1 -1 40456 -1 -1 129 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 76052 22 19 2031 1472 1 1198 177 18 18 324 mult_36 auto 36.6 MiB 2.59 7542 30433 6810 19340 4283 74.3 MiB 0.58 0.01 7.94272 -501.884 -7.94272 7.94272 1.14 0.00320232 0.00287304 0.209658 0.187884 48 13282 30 7.79418e+06 4.40746e+06 935225. 2886.50 9.44 1.35558 1.20174 29348 218440 -1 11154 22 7239 8059 1500210 362151 8.48233 8.48233 -747.315 -8.48233 0 0 1.13028e+06 3488.51 0.46 0.45 0.22 -1 -1 0.46 0.155735 0.140324 960 456 418 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_24.v common 12.86 vpr 74.71 MiB 0.09 11592 -1 -1 1 0.30 -1 -1 39500 -1 -1 134 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 76508 22 19 2105 1529 1 1235 182 18 18 324 mult_36 auto 37.2 MiB 2.65 7570 34172 7597 23356 3219 74.7 MiB 0.62 0.01 7.59312 -513.375 -7.59312 7.59312 1.10 0.0031322 0.00278971 0.216381 0.192034 44 14158 33 7.79418e+06 4.47085e+06 850563. 2625.19 4.61 0.890638 0.79037 28700 205432 -1 11048 21 7097 7987 1477099 359438 8.30119 8.30119 -660.145 -8.30119 0 0 1.07356e+06 3313.45 0.45 0.47 0.20 -1 -1 0.45 0.161733 0.1464 998 475 437 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_25.v common 17.06 vpr 75.58 MiB 0.09 12208 -1 -1 1 0.31 -1 -1 40500 -1 -1 139 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 77392 22 19 2201 1591 1 1295 187 18 18 324 mult_36 auto 37.9 MiB 2.72 7862 35431 7296 24084 4051 75.6 MiB 0.67 0.01 7.71437 -501.545 -7.71437 7.71437 1.07 0.00330828 0.00296073 0.237566 0.213375 46 14965 29 7.79418e+06 4.53424e+06 895831. 2764.91 8.65 1.10649 0.985049 29024 211752 -1 11539 24 7840 8969 1854298 430384 8.08653 8.08653 -737.874 -8.08653 0 0 1.09776e+06 3388.15 0.45 0.57 0.19 -1 -1 0.45 0.1942 0.175501 1040 494 456 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_26.v common 21.93 vpr 75.76 MiB 0.10 12204 -1 -1 1 0.34 -1 -1 40364 -1 -1 143 22 0 7 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 77580 22 19 2275 1648 1 1331 191 18 18 324 mult_36 auto 38.2 MiB 2.85 8291 29288 5409 20620 3259 75.8 MiB 0.54 0.01 7.83458 -536.937 -7.83458 7.83458 1.08 0.0031197 0.00281403 0.187943 0.16739 44 17052 44 7.79418e+06 4.58495e+06 850563. 2625.19 13.30 1.45499 1.28327 28700 205432 -1 12326 23 8867 10137 1782485 427167 8.48854 8.48854 -792.977 -8.48854 0 0 1.07356e+06 3313.45 0.44 0.59 0.20 -1 -1 0.44 0.196261 0.176418 1078 513 475 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_27.v common 18.80 vpr 76.61 MiB 0.10 12552 -1 -1 1 0.36 -1 -1 40116 -1 -1 151 22 0 8 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 78444 22 19 2385 1724 1 1408 200 18 18 324 mult_36 auto 39.2 MiB 3.07 8555 40496 8834 26732 4930 76.6 MiB 0.79 0.01 7.71543 -566.391 -7.71543 7.71543 1.12 0.00385094 0.0035008 0.27539 0.24644 46 16439 47 7.79418e+06 5.08238e+06 895831. 2764.91 9.62 1.27874 1.13414 29024 211752 -1 12581 22 8414 9443 1854623 450803 8.25705 8.25705 -878.508 -8.25705 0 0 1.09776e+06 3388.15 0.48 0.56 0.20 -1 -1 0.48 0.187419 0.16983 1134 532 494 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_28.v common 14.52 vpr 76.74 MiB 0.10 12364 -1 -1 1 0.38 -1 -1 40708 -1 -1 156 22 0 8 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 78584 22 19 2459 1781 1 1444 205 18 18 324 mult_36 auto 39.5 MiB 3.11 8535 40069 7689 26192 6188 76.7 MiB 0.78 0.01 7.99398 -584.948 -7.99398 7.99398 1.12 0.00395272 0.00361013 0.2795 0.251781 46 15532 41 7.79418e+06 5.14577e+06 895831. 2764.91 5.33 1.19537 1.06459 29024 211752 -1 12353 23 7759 8859 1385863 355857 8.68499 8.68499 -778.714 -8.68499 0 0 1.09776e+06 3388.15 0.44 0.47 0.20 -1 -1 0.44 0.191571 0.172778 1172 551 513 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_29.v common 26.32 vpr 77.48 MiB 0.11 12944 -1 -1 1 0.38 -1 -1 40784 -1 -1 163 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79336 22 19 2565 1853 1 1517 213 22 22 484 mult_36 auto 40.0 MiB 3.36 10332 44028 9540 29782 4706 77.5 MiB 0.86 0.01 7.68032 -561.846 -7.68032 7.68032 1.86 0.00423394 0.00373435 0.30523 0.273104 48 18056 32 1.26954e+07 5.63051e+06 1.44011e+06 2975.42 14.55 1.81213 1.60838 44390 338934 -1 15071 23 10772 12350 2420932 571299 8.73268 8.73268 -1024.67 -8.73268 0 0 1.74100e+06 3597.11 0.80 0.73 0.34 -1 -1 0.80 0.21668 0.1961 1224 570 532 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_30.v common 53.73 vpr 77.70 MiB 0.11 13028 -1 -1 1 0.38 -1 -1 41044 -1 -1 168 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79564 22 19 2639 1910 1 1554 218 22 22 484 mult_36 auto 40.9 MiB 3.35 9943 44103 9526 30646 3931 77.7 MiB 0.82 0.01 7.49118 -621.709 -7.49118 7.49118 1.79 0.00408202 0.00366684 0.278856 0.247563 44 18610 34 1.26954e+07 5.6939e+06 1.30964e+06 2705.88 42.17 2.17214 1.90982 43422 318546 -1 14497 22 10422 11974 2178353 518046 8.43928 8.43928 -1106.24 -8.43928 0 0 1.65337e+06 3416.05 0.80 0.69 0.32 -1 -1 0.80 0.230301 0.208586 1262 589 551 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_31.v common 23.70 vpr 78.55 MiB 0.11 13328 -1 -1 1 0.41 -1 -1 41064 -1 -1 175 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80440 22 19 2744 1981 1 1626 225 22 22 484 mult_36 auto 41.6 MiB 3.52 11319 53577 12639 36107 4831 78.6 MiB 1.03 0.01 8.19518 -627.631 -8.19518 8.19518 1.81 0.00400188 0.00355335 0.33293 0.295992 46 19595 34 1.26954e+07 5.78265e+06 1.37878e+06 2848.72 11.90 1.38519 1.22493 43906 328446 -1 15799 20 7815 9008 1698885 394130 8.73379 8.73379 -1044.97 -8.73379 0 0 1.69059e+06 3492.95 0.72 0.54 0.29 -1 -1 0.72 0.197058 0.178535 1313 608 570 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_32.v common 20.14 vpr 78.50 MiB 0.11 13376 -1 -1 1 0.42 -1 -1 40732 -1 -1 179 22 0 9 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80388 22 19 2818 2038 1 1662 229 22 22 484 mult_36 auto 41.7 MiB 3.62 11687 58329 13444 38031 6854 78.5 MiB 1.21 0.01 7.83563 -668.143 -7.83563 7.83563 1.87 0.00438922 0.00392343 0.383675 0.342488 48 20452 27 1.26954e+07 5.83336e+06 1.44011e+06 2975.42 7.45 1.26814 1.1303 44390 338934 -1 17015 25 12799 14418 2942689 654010 8.81588 8.81588 -1151.48 -8.81588 0 0 1.74100e+06 3597.11 0.82 0.88 0.34 -1 -1 0.82 0.263237 0.238312 1351 627 589 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_33.v common 28.36 vpr 79.55 MiB 0.12 13888 -1 -1 1 0.44 -1 -1 41488 -1 -1 187 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 81456 22 19 2923 2109 1 1730 238 22 22 484 mult_36 auto 42.6 MiB 3.68 11630 59198 14082 39735 5381 79.5 MiB 1.15 0.01 8.35583 -670.999 -8.35583 8.35583 1.83 0.00478166 0.0042249 0.377558 0.334673 48 20271 41 1.26954e+07 6.33079e+06 1.44011e+06 2975.42 15.80 2.24024 1.98377 44390 338934 -1 17298 25 13133 14760 3141332 711676 9.74399 9.74399 -1109.97 -9.74399 0 0 1.74100e+06 3597.11 0.76 0.85 0.34 -1 -1 0.76 0.226556 0.202673 1402 646 608 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_34.v common 25.58 vpr 80.18 MiB 0.13 13880 -1 -1 1 0.45 -1 -1 41624 -1 -1 193 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 82100 22 19 2997 2166 1 1769 244 22 22 484 mult_36 auto 43.0 MiB 3.90 11992 60442 13730 41497 5215 80.2 MiB 1.27 0.02 8.37783 -706.347 -8.37783 8.37783 1.83 0.00472287 0.00417452 0.404252 0.359802 46 22642 38 1.26954e+07 6.40685e+06 1.37878e+06 2848.72 12.62 1.57388 1.38993 43906 328446 -1 17422 23 11950 13600 2755453 629440 9.56259 9.56259 -1125.44 -9.56259 0 0 1.69059e+06 3492.95 0.76 0.83 0.33 -1 -1 0.76 0.246354 0.221281 1441 665 627 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_35.v common 20.72 vpr 80.75 MiB 0.12 14224 -1 -1 1 0.47 -1 -1 41716 -1 -1 199 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 82684 22 19 3101 2236 1 1838 250 22 22 484 mult_36 auto 43.4 MiB 3.91 11314 53766 11250 36397 6119 80.7 MiB 1.00 0.01 8.50903 -699.08 -8.50903 8.50903 1.80 0.00464485 0.004163 0.343069 0.30678 44 22456 48 1.26954e+07 6.48292e+06 1.30964e+06 2705.88 8.28 1.52247 1.3481 43422 318546 -1 17308 22 10540 12094 2333773 553804 9.15685 9.15685 -1153.39 -9.15685 0 0 1.65337e+06 3416.05 0.75 0.73 0.28 -1 -1 0.75 0.252143 0.227723 1491 684 646 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_36.v common 31.24 vpr 80.89 MiB 0.13 14420 -1 -1 1 0.48 -1 -1 41812 -1 -1 203 22 0 10 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 82836 22 19 3175 2293 1 1872 254 22 22 484 mult_36 auto 43.8 MiB 4.17 13673 66182 15113 45335 5734 80.9 MiB 1.27 0.02 8.24663 -726.645 -8.24663 8.24663 1.80 0.00459728 0.00405956 0.390449 0.344173 50 23499 49 1.26954e+07 6.53363e+06 1.50222e+06 3103.76 17.94 2.46001 2.16968 44874 350400 -1 19099 24 12478 14328 2738214 607596 9.29494 9.29494 -1395.99 -9.29494 0 0 1.79645e+06 3711.66 0.79 0.81 0.35 -1 -1 0.79 0.253337 0.227298 1529 703 665 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_37.v common 35.01 vpr 81.54 MiB 0.14 14460 -1 -1 1 0.51 -1 -1 41496 -1 -1 210 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 83500 22 19 3280 2364 1 1945 262 24 24 576 mult_36 auto 44.4 MiB 4.40 13737 63112 14736 42966 5410 81.5 MiB 1.46 0.02 8.70438 -826.125 -8.70438 8.70438 2.26 0.00530001 0.00479361 0.470333 0.418118 48 24848 31 1.53347e+07 7.01838e+06 1.71014e+06 2969.00 20.00 3.01691 2.689 52498 402441 -1 20321 23 11003 12847 2489752 579818 9.82799 9.82799 -1274.48 -9.82799 0 0 2.06880e+06 3591.66 0.99 0.86 0.40 -1 -1 0.99 0.307462 0.280033 1580 722 684 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_38.v common 25.88 vpr 82.12 MiB 0.14 14556 -1 -1 1 0.53 -1 -1 42300 -1 -1 215 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84092 22 19 3354 2421 1 1981 267 24 24 576 mult_36 auto 45.1 MiB 4.60 12283 66410 15467 44998 5945 82.1 MiB 1.36 0.02 8.46398 -758.271 -8.46398 8.46398 2.17 0.00472731 0.00419657 0.395579 0.350185 48 20857 42 1.53347e+07 7.08177e+06 1.71014e+06 2969.00 10.90 1.77491 1.56841 52498 402441 -1 17767 24 11243 12656 2487383 592395 9.04079 9.04079 -1226.22 -9.04079 0 0 2.06880e+06 3591.66 1.00 0.85 0.40 -1 -1 1.00 0.30973 0.28091 1618 741 703 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_39.v common 35.89 vpr 82.77 MiB 0.15 14832 -1 -1 1 0.55 -1 -1 41292 -1 -1 222 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84752 22 19 3457 2490 1 2052 274 24 24 576 mult_36 auto 45.6 MiB 4.82 13340 69616 16006 45166 8444 82.8 MiB 1.46 0.02 8.74838 -809.99 -8.74838 8.74838 2.20 0.00591186 0.00538996 0.466662 0.419949 50 23404 47 1.53347e+07 7.17052e+06 1.78400e+06 3097.22 20.53 2.93676 2.60264 53074 415989 -1 19070 21 10387 11943 2313286 543292 9.20774 9.20774 -1215.56 -9.20774 0 0 2.13454e+06 3705.80 0.98 0.74 0.41 -1 -1 0.98 0.262964 0.237441 1667 760 722 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_40.v common 27.55 vpr 82.93 MiB 0.15 14940 -1 -1 1 0.57 -1 -1 41696 -1 -1 227 22 0 11 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84916 22 19 3531 2547 1 2089 279 24 24 576 mult_36 auto 45.9 MiB 4.63 13529 82269 20031 55843 6395 82.9 MiB 1.72 0.02 8.59729 -884.211 -8.59729 8.59729 2.22 0.00539309 0.00481214 0.51783 0.460064 46 24371 47 1.53347e+07 7.23391e+06 1.63708e+06 2842.15 12.27 1.97068 1.7396 51922 389946 -1 19167 20 9569 11156 1870147 451949 8.84851 8.84851 -1221.04 -8.84851 0 0 2.00908e+06 3487.99 0.95 0.65 0.38 -1 -1 0.95 0.273848 0.248872 1705 779 741 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_41.v common 38.23 vpr 83.74 MiB 0.15 15236 -1 -1 1 0.59 -1 -1 41648 -1 -1 233 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 85752 22 19 3634 2616 1 2155 286 24 24 576 mult_36 auto 46.9 MiB 4.88 14066 76507 18629 50571 7307 83.7 MiB 1.58 0.02 8.32658 -889.45 -8.32658 8.32658 2.21 0.00531035 0.00466593 0.478946 0.422501 46 27199 49 1.53347e+07 7.70597e+06 1.63708e+06 2842.15 22.48 3.00462 2.65441 51922 389946 -1 20364 23 14158 16229 3058167 719678 8.91839 8.91839 -1304.55 -8.91839 0 0 2.00908e+06 3487.99 0.89 0.89 0.39 -1 -1 0.89 0.281098 0.252011 1754 798 760 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_42.v common 85.63 vpr 84.37 MiB 0.15 15580 -1 -1 1 0.60 -1 -1 42456 -1 -1 238 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 86396 22 19 3708 2673 1 2193 291 24 24 576 mult_36 auto 47.3 MiB 4.94 14393 69699 15615 45613 8471 84.4 MiB 1.46 0.02 8.58629 -871.096 -8.58629 8.58629 2.18 0.00580354 0.00522938 0.452299 0.402312 46 27212 37 1.53347e+07 7.76936e+06 1.63708e+06 2842.15 69.93 3.46929 3.04683 51922 389946 -1 20409 23 13934 15633 3266871 800639 8.93951 8.93951 -1205.8 -8.93951 0 0 2.00908e+06 3487.99 0.91 0.94 0.39 -1 -1 0.91 0.284858 0.254321 1792 817 779 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_43.v common 30.37 vpr 84.80 MiB 0.15 15788 -1 -1 1 0.63 -1 -1 42788 -1 -1 244 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 86840 22 19 3810 2741 1 2260 297 24 24 576 mult_36 auto 47.9 MiB 5.14 16071 81477 19018 53219 9240 84.8 MiB 1.77 0.02 8.62924 -937.626 -8.62924 8.62924 2.23 0.00606957 0.00549596 0.532064 0.477678 54 27526 39 1.53347e+07 7.84543e+06 1.87785e+06 3260.16 13.95 2.14196 1.90591 54798 452027 -1 22237 21 13184 15235 2671438 625800 8.94128 8.94128 -1796.27 -8.94128 0 0 2.31032e+06 4010.97 1.05 0.81 0.45 -1 -1 1.05 0.276879 0.249277 1840 836 798 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_44.v common 38.64 vpr 85.39 MiB 0.16 15880 -1 -1 1 0.64 -1 -1 42540 -1 -1 249 22 0 12 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87440 22 19 3884 2798 1 2296 302 24 24 576 mult_36 auto 48.3 MiB 5.14 14391 78226 17480 49727 11019 85.4 MiB 1.62 0.02 8.36684 -987.151 -8.36684 8.36684 2.21 0.00637851 0.00578517 0.505522 0.45181 54 24867 41 1.53347e+07 7.90882e+06 1.87785e+06 3260.16 22.25 3.00173 2.64897 54798 452027 -1 20180 23 13027 14691 2229389 548851 8.74305 8.74305 -1525.59 -8.74305 0 0 2.31032e+06 4010.97 1.05 0.76 0.45 -1 -1 1.05 0.29856 0.267337 1878 855 817 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_45.v common 28.49 vpr 85.58 MiB 0.17 16328 -1 -1 1 0.67 -1 -1 44140 -1 -1 256 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87632 22 19 3989 2869 1 2368 310 24 24 576 mult_36 auto 48.6 MiB 5.34 17255 81006 18209 54882 7915 85.6 MiB 1.75 0.02 8.80258 -947.115 -8.80258 8.80258 2.20 0.00654553 0.00588192 0.516044 0.457479 50 29571 39 1.53347e+07 8.39357e+06 1.78400e+06 3097.22 11.72 1.95797 1.72376 53074 415989 -1 23657 24 11958 13884 2978828 669738 8.97365 8.97365 -1515.11 -8.97365 0 0 2.13454e+06 3705.80 0.97 0.99 0.41 -1 -1 0.97 0.358945 0.324475 1929 874 836 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_46.v common 37.01 vpr 86.20 MiB 0.17 16224 -1 -1 1 0.69 -1 -1 44200 -1 -1 260 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 88272 22 19 4063 2926 1 2404 314 24 24 576 mult_36 auto 49.2 MiB 5.68 15542 80264 17530 54759 7975 86.2 MiB 1.72 0.02 8.62444 -966.953 -8.62444 8.62444 2.25 0.00638868 0.00575842 0.504826 0.449973 50 26967 32 1.53347e+07 8.44428e+06 1.78400e+06 3097.22 19.93 3.03156 2.68391 53074 415989 -1 22163 23 12520 14433 2702693 623825 9.06673 9.06673 -1389.09 -9.06673 0 0 2.13454e+06 3705.80 0.94 0.83 0.42 -1 -1 0.94 0.30421 0.272574 1967 893 855 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_47.v common 40.66 vpr 87.20 MiB 0.18 16716 -1 -1 1 0.70 -1 -1 44076 -1 -1 267 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89292 22 19 4167 2996 1 2473 321 24 24 576 mult_36 auto 49.6 MiB 5.72 16428 105729 25776 65623 14330 86.5 MiB 2.28 0.02 8.37783 -972.516 -8.37783 8.37783 2.22 0.0063636 0.00571461 0.651966 0.574117 56 26967 30 1.53347e+07 8.53303e+06 1.92546e+06 3342.82 22.47 3.18016 2.80437 55374 464059 -1 22842 23 14352 16602 3132067 738407 8.74214 8.74214 -1442.51 -8.74214 0 0 2.36234e+06 4101.29 1.09 1.04 0.46 -1 -1 1.09 0.375168 0.340089 2017 912 874 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_48.v common 29.05 vpr 87.19 MiB 0.18 16836 -1 -1 1 0.73 -1 -1 44604 -1 -1 272 22 0 13 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89284 22 19 4241 3053 1 2509 326 24 24 576 mult_36 auto 50.4 MiB 5.90 16205 92248 21319 62712 8217 87.2 MiB 2.00 0.02 8.58523 -1008.44 -8.58523 8.58523 2.25 0.00611281 0.00541359 0.573915 0.508331 50 26974 27 1.53347e+07 8.59642e+06 1.78400e+06 3097.22 11.27 2.16395 1.9105 53074 415989 -1 23071 23 14033 16117 2697143 651562 9.06959 9.06959 -1652.11 -9.06959 0 0 2.13454e+06 3705.80 0.97 0.90 0.41 -1 -1 0.97 0.341926 0.307447 2055 931 893 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_49.v common 43.63 vpr 88.40 MiB 0.21 17308 -1 -1 1 0.73 -1 -1 44880 -1 -1 278 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 90520 22 19 4346 3124 1 2580 333 24 24 576 mult_36 auto 50.5 MiB 5.77 19132 83349 17942 56751 8656 87.5 MiB 1.79 0.03 8.74838 -1077.09 -8.74838 8.74838 2.18 0.00705073 0.00639779 0.51176 0.453648 60 28663 28 1.53347e+07 9.06848e+06 2.00908e+06 3487.99 25.95 3.37159 2.97419 57098 500223 -1 25086 25 13155 15106 2766161 645366 9.00665 9.00665 -1546.42 -9.00665 0 0 2.50809e+06 4354.32 1.16 0.94 0.52 -1 -1 1.16 0.358266 0.319686 2106 950 912 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_50.v common 32.81 vpr 88.05 MiB 0.19 17220 -1 -1 1 0.74 -1 -1 44664 -1 -1 283 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 90164 22 19 4420 3181 1 2615 338 24 24 576 mult_36 auto 51.2 MiB 6.17 18236 95594 22929 60216 12449 88.1 MiB 2.16 0.03 8.57692 -1068.8 -8.57692 8.57692 2.23 0.00712538 0.00633311 0.610293 0.536943 54 30155 40 1.53347e+07 9.13187e+06 1.87785e+06 3260.16 14.52 2.52764 2.22502 54798 452027 -1 24126 24 13902 15826 2415015 599306 9.43834 9.43834 -1593.1 -9.43834 0 0 2.31032e+06 4010.97 1.05 0.85 0.44 -1 -1 1.05 0.348125 0.310388 2144 969 931 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_51.v common 60.01 vpr 88.80 MiB 0.20 17712 -1 -1 1 0.78 -1 -1 44952 -1 -1 291 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 90928 22 19 4524 3251 1 2687 346 24 24 576 mult_36 auto 51.8 MiB 6.07 17218 92610 21196 61186 10228 88.8 MiB 2.10 0.03 8.50904 -1102.87 -8.50904 8.50904 2.25 0.0077412 0.00706102 0.626188 0.55675 50 29027 48 1.53347e+07 9.2333e+06 1.78400e+06 3097.22 41.76 3.68451 3.25194 53074 415989 -1 24104 20 14136 16584 2986471 725281 9.06165 9.06165 -1515.82 -9.06165 0 0 2.13454e+06 3705.80 0.99 0.95 0.41 -1 -1 0.99 0.341313 0.308709 2194 988 950 19 0 0 - k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_52.v common 43.78 vpr 89.11 MiB 0.20 17544 -1 -1 1 0.79 -1 -1 45040 -1 -1 295 22 0 14 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:25:09 gh-actions-runner-vtr-auto-spawned196 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 91252 22 19 4598 3308 1 2721 350 24 24 576 mult_36 auto 52.2 MiB 6.06 18308 102689 24167 65548 12974 89.1 MiB 2.10 0.03 8.50903 -1056.08 -8.50903 8.50903 2.15 0.00703979 0.00635312 0.600221 0.526128 54 31817 39 1.53347e+07 9.28401e+06 1.87785e+06 3260.16 25.46 3.78341 3.32298 54798 452027 -1 25400 23 17578 19604 3706703 897186 9.12306 9.12306 -1712.02 -9.12306 0 0 2.31032e+06 4010.97 0.99 1.18 0.41 -1 -1 0.99 0.386808 0.346951 2232 1007 969 19 0 0 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_14.v common 10.54 vpr 70.70 MiB 0.08 10424 -1 -1 8 0.47 -1 -1 34568 -1 -1 129 22 0 4 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72392 22 19 1764 1664 1 986 174 16 16 256 mult_36 auto 32.5 MiB 0.23 6911 23454 4494 16949 2011 70.7 MiB 0.38 0.01 4.33936 -1301.29 -4.33936 4.33936 0.56 0.00365899 0.00326498 0.195213 0.174646 56 12579 33 6.2557e+06 3.1391e+06 803869. 3140.11 6.06 1.35873 1.18031 23564 190428 -1 11422 16 3998 8028 649808 152476 4.21916 4.21916 -1356.04 -4.21916 0 0 987003. 3855.48 0.24 0.27 0.17 -1 -1 0.24 0.135479 0.1203 966 966 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_15.v common 18.70 vpr 71.25 MiB 0.12 10744 -1 -1 8 0.49 -1 -1 36248 -1 -1 139 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72960 22 19 1918 1801 1 1083 185 16 16 256 clb mult_36 auto 33.3 MiB 0.31 7452 24381 4617 17851 1913 71.2 MiB 0.40 0.01 4.2726 -1449.28 -4.2726 4.2726 0.57 0.00379266 0.0033986 0.199621 0.178244 58 13092 31 6.2557e+06 3.65564e+06 820238. 3204.05 13.97 1.94719 1.68393 24072 200857 -1 11442 15 3878 7716 550889 129867 4.33936 4.33936 -1521.98 -4.33936 0 0 1.02849e+06 4017.54 0.26 0.28 0.18 -1 -1 0.26 0.149226 0.132931 1047 1047 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_16.v common 20.82 vpr 71.85 MiB 0.08 10924 -1 -1 8 0.49 -1 -1 37424 -1 -1 143 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73572 22 19 1976 1859 1 1114 189 17 17 289 clb auto 33.9 MiB 0.32 7264 24037 4291 17788 1958 71.8 MiB 0.41 0.01 4.21916 -1486.51 -4.21916 4.21916 0.63 0.00489752 0.00431003 0.201025 0.178991 50 13894 29 6.55708e+06 3.70386e+06 851065. 2944.86 15.84 1.99817 1.72454 25342 195625 -1 12284 15 4638 9503 717159 167904 4.21916 4.21916 -1550.01 -4.21916 0 0 1.01866e+06 3524.77 0.26 0.29 0.17 -1 -1 0.26 0.142612 0.126662 1086 1086 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_17.v common 9.92 vpr 72.78 MiB 0.12 11700 -1 -1 8 0.62 -1 -1 36784 -1 -1 163 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74524 22 19 2278 2144 1 1240 209 17 17 289 clb auto 35.2 MiB 0.36 8060 29969 5695 21748 2526 72.8 MiB 0.47 0.01 4.45956 -1684.95 -4.45956 4.45956 0.63 0.00463111 0.0041369 0.23625 0.210005 54 15140 22 6.55708e+06 3.94496e+06 896083. 3100.63 4.55 1.53975 1.33532 26206 212621 -1 12577 16 4569 8799 640836 153828 4.21916 4.21916 -1745.34 -4.21916 0 0 1.10294e+06 3816.40 0.28 0.32 0.18 -1 -1 0.28 0.176032 0.155889 1242 1242 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_18.v common 11.28 vpr 73.71 MiB 0.09 11836 -1 -1 8 0.64 -1 -1 37796 -1 -1 168 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75484 22 19 2336 2202 1 1265 214 18 18 324 clb auto 35.8 MiB 0.40 8290 36637 7934 26298 2405 73.7 MiB 0.57 0.01 4.21916 -1744.34 -4.21916 4.21916 0.73 0.00444452 0.00396062 0.286115 0.253518 50 16367 48 7.67456e+06 4.00524e+06 975281. 3010.13 5.32 1.59346 1.38595 28904 225404 -1 13788 16 5109 10482 831833 193930 4.33936 4.33936 -1820.48 -4.33936 0 0 1.16663e+06 3600.72 0.32 0.37 0.20 -1 -1 0.32 0.182922 0.161524 1281 1281 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_19.v common 27.64 vpr 73.89 MiB 0.14 12416 -1 -1 8 0.73 -1 -1 37396 -1 -1 175 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75668 22 19 2488 2337 1 1372 222 18 18 324 clb auto 36.6 MiB 0.40 9596 39140 8295 28140 2705 73.9 MiB 0.68 0.01 4.33936 -1880.13 -4.33936 4.33936 0.80 0.0047139 0.00418558 0.324637 0.286821 54 18562 42 7.67456e+06 4.48562e+06 1.02660e+06 3168.53 21.36 2.68022 2.31611 29872 244976 -1 14749 13 5049 10006 745695 175397 4.33936 4.33936 -1903.22 -4.33936 0 0 1.26286e+06 3897.71 0.32 0.31 0.21 -1 -1 0.32 0.161915 0.144401 1360 1360 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_20.v common 12.23 vpr 74.60 MiB 0.14 12340 -1 -1 8 0.79 -1 -1 37540 -1 -1 182 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76388 22 19 2546 2395 1 1407 229 18 18 324 clb auto 37.3 MiB 0.40 9852 41529 9029 29722 2778 74.6 MiB 0.66 0.01 4.23263 -1906.98 -4.23263 4.23263 0.73 0.00510993 0.00455479 0.311577 0.274832 56 17400 27 7.67456e+06 4.57001e+06 1.05222e+06 3247.61 5.92 1.81762 1.58422 30196 251424 -1 15852 16 5369 10891 854362 201858 4.33936 4.33936 -2002.14 -4.33936 0 0 1.29075e+06 3983.80 0.34 0.40 0.22 -1 -1 0.34 0.201322 0.179277 1399 1399 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_21.v common 16.26 vpr 75.50 MiB 0.15 12828 -1 -1 8 0.89 -1 -1 37744 -1 -1 193 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77308 22 19 2735 2567 1 1516 240 19 19 361 clb auto 38.2 MiB 0.47 11409 38235 7770 28551 1914 75.5 MiB 0.63 0.01 4.57976 -2047.16 -4.57976 4.57976 0.84 0.00577536 0.00518636 0.3054 0.270886 60 19097 20 8.02416e+06 4.70262e+06 1.23460e+06 3419.94 9.34 2.14776 1.86265 34598 305437 -1 17021 13 5592 11571 878461 200428 4.45956 4.45956 -2093.27 -4.45956 0 0 1.54069e+06 4267.84 0.41 0.36 0.27 -1 -1 0.41 0.181661 0.162213 1497 1497 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_22.v common 12.01 vpr 75.86 MiB 0.14 12916 -1 -1 8 0.92 -1 -1 38120 -1 -1 200 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77680 22 19 2793 2625 1 1545 247 19 19 361 clb auto 38.7 MiB 0.43 10819 43591 9468 32068 2055 75.9 MiB 0.69 0.01 4.33936 -2094.5 -4.33936 4.33936 0.83 0.00528357 0.00468913 0.332009 0.293678 58 18949 22 8.02416e+06 4.787e+06 1.20750e+06 3344.89 5.03 1.59876 1.39152 34238 298765 -1 17036 18 6019 12139 929813 221385 4.33936 4.33936 -2185.66 -4.33936 0 0 1.51231e+06 4189.22 0.41 0.44 0.25 -1 -1 0.41 0.233865 0.207296 1536 1536 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_23.v common 12.86 vpr 76.60 MiB 0.11 13404 -1 -1 8 0.92 -1 -1 38712 -1 -1 211 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78440 22 19 2947 2762 1 1644 259 19 19 361 clb auto 39.4 MiB 0.49 11020 43159 9038 31489 2632 76.6 MiB 0.75 0.01 4.2726 -2221.58 -4.2726 4.2726 0.87 0.0059107 0.00523601 0.358623 0.318099 58 19050 20 8.02416e+06 5.3156e+06 1.20750e+06 3344.89 5.62 1.82998 1.60216 34238 298765 -1 17111 13 5734 11444 793982 193134 4.45956 4.45956 -2263.88 -4.45956 0 0 1.51231e+06 4189.22 0.41 0.40 0.26 -1 -1 0.41 0.205585 0.184619 1617 1617 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_24.v common 13.53 vpr 76.93 MiB 0.18 13496 -1 -1 8 0.95 -1 -1 38724 -1 -1 216 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78780 22 19 3005 2820 1 1676 264 19 19 361 clb auto 39.9 MiB 0.51 11788 45102 9582 33144 2376 76.9 MiB 0.77 0.01 4.33936 -2265.94 -4.33936 4.33936 0.89 0.0060117 0.00535217 0.367787 0.325894 58 20359 33 8.02416e+06 5.37588e+06 1.20750e+06 3344.89 5.91 1.94923 1.70406 34238 298765 -1 17938 13 6106 12521 945470 221782 4.33936 4.33936 -2379.04 -4.33936 0 0 1.51231e+06 4189.22 0.42 0.42 0.26 -1 -1 0.42 0.207164 0.185275 1656 1656 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_25.v common 16.78 vpr 79.07 MiB 0.16 13996 -1 -1 8 1.12 -1 -1 40320 -1 -1 231 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80972 22 19 3229 3027 1 1787 279 20 20 400 clb auto 41.1 MiB 0.55 13104 50384 10538 36503 3343 79.1 MiB 0.86 0.01 4.33936 -2497.75 -4.33936 4.33936 1.01 0.00631594 0.00563073 0.407978 0.360229 56 24126 48 1.09209e+07 5.5567e+06 1.31097e+06 3277.42 8.53 2.56516 2.25629 37530 313959 -1 21480 15 7283 15143 1320591 298085 4.33936 4.33936 -2564.15 -4.33936 0 0 1.60880e+06 4022.00 0.42 0.54 0.27 -1 -1 0.42 0.247739 0.220975 1771 1771 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_26.v common 19.25 vpr 79.34 MiB 0.18 14372 -1 -1 8 1.08 -1 -1 40560 -1 -1 237 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81244 22 19 3287 3085 1 1821 285 21 21 441 clb auto 41.4 MiB 0.56 13136 57442 13523 40914 3005 79.3 MiB 0.90 0.01 4.33936 -2504.53 -4.33936 4.33936 1.08 0.00606643 0.00535482 0.414242 0.364529 58 22683 37 1.13066e+07 5.62904e+06 1.48593e+06 3369.47 10.49 2.35823 2.04792 42062 368216 -1 20548 13 6990 14309 1055541 245303 4.21916 4.21916 -2554.32 -4.21916 0 0 1.86135e+06 4220.76 0.51 0.49 0.31 -1 -1 0.51 0.232733 0.208547 1810 1810 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_27.v common 19.01 vpr 79.30 MiB 0.15 14548 -1 -1 8 1.04 -1 -1 39364 -1 -1 251 22 0 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81208 22 19 3453 3234 1 1931 300 21 21 441 clb auto 42.4 MiB 0.57 14985 60480 13891 43297 3292 79.3 MiB 0.96 0.02 4.35283 -2683.1 -4.35283 4.35283 1.06 0.006508 0.00577071 0.447304 0.394235 58 26866 32 1.13066e+07 6.1938e+06 1.48593e+06 3369.47 10.12 2.22103 1.93376 42062 368216 -1 23239 14 7816 16183 1303787 291924 4.33936 4.33936 -2773.32 -4.33936 0 0 1.86135e+06 4220.76 0.54 0.60 0.32 -1 -1 0.54 0.286199 0.260459 1903 1903 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_28.v common 21.07 vpr 80.57 MiB 0.14 14696 -1 -1 8 1.34 -1 -1 41092 -1 -1 256 22 0 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82504 22 19 3511 3292 1 1964 305 21 21 441 clb auto 42.9 MiB 0.62 13949 56735 12285 41462 2988 80.6 MiB 0.96 0.02 4.33936 -2735.23 -4.33936 4.33936 1.10 0.00704446 0.00619059 0.437073 0.384685 64 23032 20 1.13066e+07 6.25408e+06 1.61476e+06 3661.58 11.73 2.81808 2.45166 43822 404518 -1 20960 15 6761 13901 1029805 236692 4.33936 4.33936 -2868.81 -4.33936 0 0 2.02607e+06 4594.27 0.59 0.55 0.37 -1 -1 0.59 0.291523 0.261599 1942 1942 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_29.v common 43.72 vpr 81.68 MiB 0.11 15144 -1 -1 8 1.20 -1 -1 40048 -1 -1 268 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83640 22 19 3709 3473 1 2078 318 22 22 484 clb mult_36 auto 44.3 MiB 0.60 16039 68673 16015 49006 3652 81.7 MiB 1.06 0.02 4.45956 -2880.87 -4.45956 4.45956 1.15 0.00686048 0.00606524 0.489167 0.431798 58 28453 49 1.25085e+07 6.79474e+06 1.65337e+06 3416.05 34.20 3.77322 3.27923 46570 411141 -1 24738 15 8089 16692 1363351 299594 4.45956 4.45956 -2907.33 -4.45956 0 0 2.07026e+06 4277.39 0.57 0.58 0.34 -1 -1 0.57 0.269084 0.238866 2049 2049 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_30.v common 19.05 vpr 82.44 MiB 0.15 15328 -1 -1 8 1.43 -1 -1 40280 -1 -1 274 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84420 22 19 3767 3531 1 2107 324 22 22 484 clb mult_36 auto 45.1 MiB 0.63 15345 71492 17040 50634 3818 82.4 MiB 1.15 0.02 4.33936 -2892.9 -4.33936 4.33936 1.15 0.00691652 0.00611562 0.518098 0.456256 58 27413 39 1.25085e+07 6.86707e+06 1.65337e+06 3416.05 8.83 2.77404 2.41177 46570 411141 -1 23887 38 8479 18001 1648879 434292 4.21916 4.21916 -3000.49 -4.21916 0 0 2.07026e+06 4277.39 0.57 0.99 0.35 -1 -1 0.57 0.558583 0.489165 2088 2088 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_31.v common 23.10 vpr 85.05 MiB 0.22 15676 -1 -1 8 1.39 -1 -1 41812 -1 -1 288 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87096 22 19 3928 3675 1 2213 338 22 22 484 clb mult_36 auto 45.3 MiB 0.65 16438 72074 17115 51144 3815 82.8 MiB 1.12 0.02 4.45956 -3035.76 -4.45956 4.45956 1.16 0.00842428 0.00738986 0.509085 0.449211 66 26913 16 1.25085e+07 7.03584e+06 1.84972e+06 3821.73 12.87 3.03126 2.63675 48986 463441 -1 24448 13 7560 15563 1140627 256835 4.33936 4.33936 -3082.3 -4.33936 0 0 2.30827e+06 4769.15 0.68 0.58 0.41 -1 -1 0.68 0.287148 0.25805 2176 2176 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_32.v common 41.95 vpr 83.27 MiB 0.21 15936 -1 -1 8 1.45 -1 -1 41916 -1 -1 292 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85272 22 19 3986 3733 1 2248 342 22 22 484 clb mult_36 auto 45.9 MiB 0.69 16132 74432 17571 52958 3903 83.3 MiB 1.25 0.02 4.33936 -3099.4 -4.33936 4.33936 1.20 0.00832441 0.00746229 0.553013 0.486788 56 31857 46 1.25085e+07 7.08406e+06 1.62053e+06 3348.21 31.65 4.71659 4.10469 45606 389969 -1 26896 15 9433 19525 1638672 375328 4.33936 4.33936 -3259.61 -4.33936 0 0 1.98725e+06 4105.89 0.58 0.70 0.31 -1 -1 0.58 0.308955 0.276833 2215 2215 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_33.v common 27.12 vpr 84.87 MiB 0.20 16892 -1 -1 8 1.52 -1 -1 40940 -1 -1 314 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86904 22 19 4329 4059 1 2377 365 23 23 529 clb auto 47.6 MiB 0.71 17638 86363 21629 61030 3704 84.9 MiB 1.40 0.02 4.33936 -3329.38 -4.33936 4.33936 1.33 0.00842929 0.00749515 0.624815 0.549057 56 32553 43 1.29425e+07 7.74527e+06 1.78215e+06 3368.90 15.79 3.43193 2.97782 49650 429369 -1 28679 14 9750 20297 1623196 372067 4.33936 4.33936 -3511.98 -4.33936 0 0 2.18505e+06 4130.54 0.64 0.72 0.38 -1 -1 0.64 0.329797 0.295474 2394 2394 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_34.v common 39.21 vpr 85.64 MiB 0.20 17024 -1 -1 8 1.64 -1 -1 42864 -1 -1 320 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87692 22 19 4387 4117 1 2404 371 23 23 529 clb auto 48.3 MiB 0.69 17853 80291 18434 57983 3874 85.6 MiB 1.21 0.02 4.45956 -3364.34 -4.45956 4.45956 1.27 0.00861945 0.00760705 0.533402 0.469055 58 31056 35 1.29425e+07 7.8176e+06 1.81842e+06 3437.46 28.23 4.18589 3.6422 50706 452665 -1 27658 13 8876 18773 1389811 318585 4.45956 4.45956 -3663.51 -4.45956 0 0 2.27638e+06 4303.19 0.70 0.65 0.39 -1 -1 0.70 0.310666 0.27925 2433 2433 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_35.v common 45.93 vpr 86.46 MiB 0.24 17376 -1 -1 8 1.95 -1 -1 41248 -1 -1 332 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88540 22 19 4547 4260 1 2527 383 23 23 529 clb auto 49.1 MiB 0.73 20564 89343 22019 63218 4106 86.5 MiB 1.37 0.01 4.82016 -3575.21 -4.82016 4.82016 1.28 0.00390532 0.00345335 0.58105 0.50917 60 35309 42 1.29425e+07 7.96226e+06 1.85922e+06 3514.59 34.57 4.57786 3.97843 51234 462879 -1 30694 15 9803 20169 1570176 351008 4.57976 4.57976 -3704.57 -4.57976 0 0 2.31949e+06 4384.67 0.66 0.70 0.30 -1 -1 0.66 0.333676 0.299901 2520 2520 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_36.v common 45.50 vpr 86.77 MiB 0.23 17680 -1 -1 8 1.67 -1 -1 42968 -1 -1 338 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88856 22 19 4605 4318 1 2554 389 24 24 576 clb auto 49.6 MiB 0.76 18525 94043 22672 66010 5361 86.8 MiB 1.51 0.02 4.45956 -3538.08 -4.45956 4.45956 1.49 0.00864421 0.00766543 0.665878 0.585505 56 33729 42 1.51154e+07 8.03459e+06 1.92546e+06 3342.82 33.34 4.66845 4.07049 53966 463019 -1 29788 15 10190 21554 1705839 394532 4.33936 4.33936 -3753.01 -4.33936 0 0 2.36234e+06 4101.29 0.66 0.75 0.42 -1 -1 0.66 0.352504 0.314279 2559 2559 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_37.v common 22.04 vpr 87.12 MiB 0.20 17976 -1 -1 8 1.84 -1 -1 42520 -1 -1 351 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89208 22 19 4802 4498 1 2682 403 24 24 576 clb mult_36 auto 50.5 MiB 0.86 19431 94147 22569 66089 5489 87.1 MiB 1.43 0.02 4.45956 -3723.98 -4.45956 4.45956 1.39 0.0086402 0.0075446 0.622163 0.546013 56 35377 34 1.51154e+07 8.5873e+06 1.92546e+06 3342.82 9.78 3.04425 2.66311 53966 463019 -1 31103 16 10222 21287 1730423 396197 4.57976 4.57976 -3856.23 -4.57976 0 0 2.36234e+06 4101.29 0.66 0.81 0.37 -1 -1 0.66 0.393402 0.3512 2665 2665 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_38.v common 32.37 vpr 98.18 MiB 0.23 18300 -1 -1 8 2.18 -1 -1 43312 -1 -1 355 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 100540 22 19 4860 4556 1 2713 407 25 25 625 clb auto 51.0 MiB 0.83 21029 104390 26805 72904 4681 87.5 MiB 1.68 0.02 4.513 -3868.35 -4.513 4.513 1.70 0.00965273 0.008604 0.734399 0.645727 64 35977 33 1.55855e+07 8.63552e+06 2.32897e+06 3726.35 18.72 4.63084 4.04052 62084 585869 -1 31942 15 9860 20631 1603833 349642 4.45956 4.45956 -4006.24 -4.45956 0 0 2.92220e+06 4675.52 0.82 0.72 0.47 -1 -1 0.82 0.357199 0.317705 2704 2704 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_39.v common 24.48 vpr 92.17 MiB 0.23 18476 -1 -1 8 1.83 -1 -1 43728 -1 -1 370 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94384 22 19 5019 4698 1 2814 422 25 25 625 clb auto 51.8 MiB 0.93 21376 107998 26675 75558 5765 90.1 MiB 1.77 0.02 4.45956 -3908.53 -4.45956 4.45956 1.67 0.0098254 0.00872615 0.770677 0.674985 60 35666 26 1.55855e+07 8.81635e+06 2.19200e+06 3507.21 10.76 3.20825 2.79842 60212 545296 -1 32349 15 10208 20831 1555874 356042 4.45956 4.45956 -4053.04 -4.45956 0 0 2.73590e+06 4377.44 0.86 0.79 0.43 -1 -1 0.86 0.408342 0.366378 2790 2790 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_40.v common 47.64 vpr 88.98 MiB 0.27 18672 -1 -1 8 1.74 -1 -1 44484 -1 -1 373 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 91120 22 19 5077 4756 1 2844 425 25 25 625 clb auto 52.2 MiB 0.79 22187 109021 28352 74964 5705 89.0 MiB 1.76 0.02 4.41198 -3961.73 -4.41198 4.41198 1.69 0.00879722 0.00775738 0.74496 0.650224 60 37354 31 1.55855e+07 8.85252e+06 2.19200e+06 3507.21 34.33 4.88166 4.24231 60212 545296 -1 33432 14 10491 21945 1609096 367850 4.45956 4.45956 -4146.86 -4.45956 0 0 2.73590e+06 4377.44 0.84 0.82 0.48 -1 -1 0.84 0.41413 0.373534 2829 2829 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_41.v common 28.07 vpr 92.51 MiB 0.19 19240 -1 -1 8 2.21 -1 -1 44384 -1 -1 390 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94728 22 19 5308 4970 1 2955 443 25 25 625 clb auto 53.4 MiB 0.83 22244 116915 29597 81136 6182 91.4 MiB 2.03 0.03 4.33936 -4167.37 -4.33936 4.33936 1.53 0.0115226 0.0100091 0.892569 0.778064 60 38133 46 1.55855e+07 9.45345e+06 2.19200e+06 3507.21 14.07 4.6204 4.04005 60212 545296 -1 33462 15 11128 23144 1658743 384938 4.45956 4.45956 -4499.79 -4.45956 0 0 2.73590e+06 4377.44 0.90 1.01 0.45 -1 -1 0.90 0.494115 0.446228 2951 2951 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_42.v common 27.25 vpr 95.28 MiB 0.24 19348 -1 -1 8 2.09 -1 -1 44368 -1 -1 397 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 97564 22 19 5366 5028 1 2986 450 26 26 676 clb auto 53.8 MiB 0.86 22251 119337 30576 83966 4795 90.3 MiB 1.80 0.02 4.23263 -4198.35 -4.23263 4.23263 1.74 0.0101791 0.00901582 0.76676 0.671252 56 40623 46 1.89118e+07 9.53784e+06 2.31971e+06 3431.53 12.60 4.2101 3.65301 64740 561756 -1 35526 16 11590 24438 1963681 445204 4.45956 4.45956 -4499.81 -4.45956 0 0 2.84390e+06 4206.95 1.08 0.94 0.59 -1 -1 1.08 0.462596 0.415325 2990 2990 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_43.v common 36.63 vpr 106.50 MiB 0.22 19876 -1 -1 8 2.33 -1 -1 44700 -1 -1 404 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 109060 22 19 5524 5169 1 3090 457 26 26 676 clb auto 54.9 MiB 0.90 23398 130623 34411 91228 4984 92.7 MiB 2.06 0.03 4.45956 -4342.14 -4.45956 4.45956 1.83 0.0108931 0.00969226 0.874489 0.767625 60 39582 39 1.89118e+07 9.62222e+06 2.42032e+06 3580.36 21.57 5.52395 4.85172 66764 605600 -1 35437 14 11429 23247 1712213 389393 4.45956 4.45956 -4737.53 -4.45956 0 0 3.01907e+06 4466.08 0.95 0.86 0.52 -1 -1 0.95 0.4245 0.38237 3075 3075 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_44.v common 27.82 vpr 97.39 MiB 0.30 20044 -1 -1 8 2.22 -1 -1 45288 -1 -1 410 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 99732 22 19 5582 5227 1 3122 463 26 26 676 clb auto 55.3 MiB 0.91 23363 127553 31863 89801 5889 93.0 MiB 2.05 0.03 4.27831 -4344.88 -4.27831 4.27831 1.88 0.0113308 0.00977111 0.865698 0.753045 62 41142 45 1.89118e+07 9.69455e+06 2.49248e+06 3687.09 12.53 4.14757 3.63222 67440 620228 -1 34376 15 11066 23357 1579372 363024 4.33936 4.33936 -4431.47 -4.33936 0 0 3.08129e+06 4558.12 0.99 0.79 0.54 -1 -1 0.99 0.404434 0.366476 3114 3114 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_45.v common 30.33 vpr 94.30 MiB 0.31 20512 -1 -1 8 2.50 -1 -1 45808 -1 -1 425 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 96568 22 19 5779 5407 1 3235 479 26 26 676 clb auto 56.3 MiB 0.95 23950 131589 34547 91644 5398 94.1 MiB 2.07 0.03 4.45956 -4534.82 -4.45956 4.45956 1.69 0.0104165 0.00917941 0.856769 0.747596 60 39921 26 1.89118e+07 1.02714e+07 2.42032e+06 3580.36 14.93 4.02805 3.54349 66764 605600 -1 36239 14 11805 24184 1789503 412264 4.45956 4.45956 -4715.09 -4.45956 0 0 3.01907e+06 4466.08 0.99 0.95 0.51 -1 -1 0.99 0.470665 0.428037 3220 3220 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_46.v common 36.59 vpr 110.85 MiB 0.37 20516 -1 -1 8 2.59 -1 -1 46132 -1 -1 430 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 113508 22 19 5837 5465 1 3273 484 26 26 676 clb auto 56.7 MiB 0.97 25020 129616 32700 91627 5289 94.3 MiB 2.03 0.03 4.57976 -4526.26 -4.57976 4.57976 1.79 0.0116437 0.0100253 0.85139 0.741577 64 41880 26 1.89118e+07 1.03316e+07 2.57128e+06 3803.68 20.71 4.81991 4.21682 68788 650644 -1 37495 14 11335 23945 1784441 404680 4.69996 4.69996 -4644.5 -4.69996 0 0 3.22435e+06 4769.75 0.92 0.86 0.55 -1 -1 0.92 0.432421 0.387364 3259 3259 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_47.v common 46.74 vpr 103.91 MiB 0.32 20872 -1 -1 8 2.71 -1 -1 44652 -1 -1 439 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 106400 22 19 5997 5608 1 3373 493 27 27 729 clb auto 57.9 MiB 0.97 25273 134767 34216 94888 5663 94.0 MiB 2.08 0.03 4.33936 -4732.99 -4.33936 4.33936 2.01 0.0117245 0.0103985 0.879381 0.769579 58 43707 40 1.94302e+07 1.04401e+07 2.56250e+06 3515.09 30.03 6.12799 5.35774 70962 641579 -1 39096 15 12972 27255 2047572 465723 4.33936 4.33936 -5074.48 -4.33936 0 0 3.20690e+06 4399.04 1.03 0.97 0.54 -1 -1 1.03 0.481698 0.432193 3346 3346 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_48.v common 35.08 vpr 103.61 MiB 0.33 21048 -1 -1 8 2.71 -1 -1 46328 -1 -1 448 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 106092 22 19 6055 5666 1 3405 502 27 27 729 clb auto 58.2 MiB 0.99 28392 148058 39235 102453 6370 95.6 MiB 2.28 0.03 4.45956 -4906.6 -4.45956 4.45956 1.95 0.0117326 0.0103707 0.944955 0.824164 64 46997 30 1.94302e+07 1.05486e+07 2.78336e+06 3818.06 18.00 4.8915 4.2766 73874 704979 -1 41682 14 12369 26229 2151260 462177 4.57976 4.57976 -4997.66 -4.57976 0 0 3.48985e+06 4787.17 1.14 1.03 0.58 -1 -1 1.14 0.500871 0.45281 3385 3385 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_49.v common 31.23 vpr 106.02 MiB 0.34 21580 -1 -1 8 2.77 -1 -1 46504 -1 -1 465 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 108568 22 19 6324 5918 1 3526 520 27 27 729 clb auto 59.6 MiB 1.03 27539 146820 39871 101893 5056 97.0 MiB 2.26 0.03 4.51871 -5067.03 -4.51871 4.51871 1.97 0.0111348 0.00979228 0.923282 0.803508 62 48996 33 1.94302e+07 1.11496e+07 2.69830e+06 3701.37 13.96 4.39056 3.82676 72418 672039 -1 40575 14 13065 26868 2025427 456199 4.45956 4.45956 -5190.18 -4.45956 0 0 3.33509e+06 4574.88 1.08 1.00 0.62 -1 -1 1.08 0.507719 0.455172 3527 3527 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_50.v common 29.64 vpr 105.54 MiB 0.34 21732 -1 -1 8 2.92 -1 -1 47164 -1 -1 466 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 108072 22 19 6382 5976 1 3558 521 27 27 729 clb auto 59.9 MiB 1.12 25659 153456 41191 105710 6555 97.2 MiB 2.39 0.03 4.33936 -5054.62 -4.33936 4.33936 1.89 0.011886 0.0105131 0.962151 0.839696 64 44598 31 1.94302e+07 1.11616e+07 2.78336e+06 3818.06 11.66 4.12979 3.59776 73874 704979 -1 39527 15 12801 26550 2060792 459471 4.33936 4.33936 -5205.06 -4.33936 0 0 3.48985e+06 4787.17 1.27 1.11 0.60 -1 -1 1.27 0.584242 0.534985 3566 3566 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_51.v common 34.32 vpr 109.84 MiB 0.39 22120 -1 -1 8 2.98 -1 -1 47696 -1 -1 479 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 112476 22 19 6542 6119 1 3674 534 28 28 784 clb auto 60.7 MiB 1.10 28922 154249 40163 108774 5312 98.2 MiB 2.48 0.03 4.3928 -5224.73 -4.3928 4.3928 2.18 0.0130927 0.0115431 1.00045 0.873341 62 50690 46 2.18512e+07 1.13183e+07 2.87318e+06 3664.77 15.65 4.81908 4.21244 77276 713722 -1 43234 15 13791 29069 2049597 458131 4.33936 4.33936 -5578.87 -4.33936 0 0 3.55346e+06 4532.48 1.17 1.12 0.59 -1 -1 1.17 0.584391 0.521053 3653 3653 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_pipe_52.v common 45.40 vpr 129.40 MiB 0.37 22404 -1 -1 8 3.18 -1 -1 47348 -1 -1 485 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 132504 22 19 6600 6177 1 3704 540 28 28 784 clb auto 61.2 MiB 1.11 29887 163192 43894 113647 5651 98.5 MiB 2.51 0.03 4.45956 -5273.35 -4.45956 4.45956 2.19 0.0131739 0.0114938 1.01498 0.889057 68 47406 27 2.18512e+07 1.13907e+07 3.12359e+06 3984.17 26.82 7.31251 6.40015 80408 782754 -1 43526 15 12631 27337 1955079 425942 4.45956 4.45956 -5862.66 -4.45956 0 0 3.88747e+06 4958.51 1.25 1.01 0.66 -1 -1 1.25 0.518284 0.464813 3692 3692 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_14.v common 12.28 vpr 67.25 MiB 0.06 9112 -1 -1 10 0.50 -1 -1 35248 -1 -1 93 22 0 4 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 68864 22 19 1149 1049 1 787 138 16 16 256 mult_36 auto 29.3 MiB 0.23 5353 14734 2612 11022 1100 67.2 MiB 0.27 0.01 12.8728 -438.233 -12.8728 12.8728 0.60 0.00301233 0.0027457 0.141779 0.129371 58 10212 29 6.2557e+06 2.70512e+06 820238. 3204.05 8.07 1.40181 1.23568 24072 200857 -1 9272 20 4271 8887 665232 152260 12.1591 12.1591 -509.624 -12.1591 0 0 1.02849e+06 4017.54 0.27 0.28 0.18 -1 -1 0.27 0.129279 0.115798 715 715 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_15.v common 9.05 vpr 67.98 MiB 0.11 9572 -1 -1 11 0.61 -1 -1 36132 -1 -1 106 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69616 22 19 1261 1144 1 879 152 16 16 256 mult_36 auto 30.0 MiB 0.26 6117 19592 3623 14422 1547 68.0 MiB 0.32 0.01 14.5477 -493.671 -14.5477 14.5477 0.55 0.00309411 0.00282507 0.163552 0.149287 54 12367 50 6.2557e+06 3.25783e+06 784202. 3063.29 4.63 1.20431 1.06182 23308 185586 -1 10124 18 4323 8914 630252 151025 13.4182 13.4182 -560.234 -13.4182 0 0 965591. 3771.84 0.24 0.28 0.17 -1 -1 0.24 0.130681 0.11733 790 790 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_16.v common 16.23 vpr 68.39 MiB 0.10 9704 -1 -1 11 0.58 -1 -1 35728 -1 -1 112 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70036 22 19 1336 1219 1 929 158 16 16 256 mult_36 auto 30.8 MiB 0.29 6058 21935 4380 15799 1756 68.4 MiB 0.36 0.01 14.3257 -498.361 -14.3257 14.3257 0.55 0.00320002 0.00292482 0.182397 0.166289 50 12213 32 6.2557e+06 3.33016e+06 744679. 2908.90 11.56 1.45214 1.27851 22544 170752 -1 10704 21 5105 10269 775532 182286 13.2272 13.2272 -586.513 -13.2272 0 0 891356. 3481.86 0.23 0.35 0.15 -1 -1 0.23 0.159312 0.142769 846 846 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_17.v common 11.29 vpr 69.07 MiB 0.14 9944 -1 -1 11 0.67 -1 -1 36120 -1 -1 121 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70728 22 19 1446 1312 1 989 167 16 16 256 mult_36 auto 31.3 MiB 0.28 6832 19904 3494 14748 1662 69.1 MiB 0.35 0.01 14.4741 -506.161 -14.4741 14.4741 0.58 0.00352182 0.00321176 0.178495 0.16295 56 12964 25 6.2557e+06 3.43866e+06 803869. 3140.11 6.34 1.32683 1.16978 23564 190428 -1 11746 19 5311 11233 903927 210792 13.4085 13.4085 -603.047 -13.4085 0 0 987003. 3855.48 0.25 0.35 0.17 -1 -1 0.25 0.163275 0.147148 919 919 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_18.v common 10.10 vpr 69.41 MiB 0.08 10084 -1 -1 11 0.67 -1 -1 36048 -1 -1 128 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71072 22 19 1507 1373 1 1035 174 16 16 256 mult_36 auto 32.0 MiB 0.28 7464 21029 3707 15454 1868 69.4 MiB 0.36 0.01 14.9867 -537.872 -14.9867 14.9867 0.59 0.00395163 0.00358045 0.179772 0.163435 58 13697 35 6.2557e+06 3.52304e+06 820238. 3204.05 5.18 1.10905 0.982387 24072 200857 -1 12092 18 5182 10900 801705 187365 13.6413 13.6413 -622.575 -13.6413 0 0 1.02849e+06 4017.54 0.26 0.36 0.18 -1 -1 0.26 0.160493 0.144356 961 961 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_19.v common 9.66 vpr 70.07 MiB 0.10 10332 -1 -1 11 0.71 -1 -1 36144 -1 -1 135 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71748 22 19 1596 1445 1 1100 182 16 16 256 clb mult_36 auto 32.6 MiB 0.28 7815 21297 3392 16393 1512 70.1 MiB 0.38 0.01 14.7981 -567.745 -14.7981 14.7981 0.57 0.00384762 0.00349311 0.187979 0.171004 56 15000 37 6.2557e+06 4.00342e+06 803869. 3140.11 4.70 1.20261 1.06324 23564 190428 -1 13198 19 5867 12427 977161 232477 13.6952 13.6952 -693.57 -13.6952 0 0 987003. 3855.48 0.26 0.43 0.18 -1 -1 0.26 0.177795 0.160712 1013 1013 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_20.v common 11.89 vpr 70.29 MiB 0.14 10576 -1 -1 11 0.68 -1 -1 36936 -1 -1 137 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71980 22 19 1656 1505 1 1146 184 16 16 256 clb mult_36 auto 32.7 MiB 0.30 8226 19535 3061 14927 1547 70.3 MiB 0.35 0.01 14.4967 -584.138 -14.4967 14.4967 0.57 0.00393457 0.00358032 0.168607 0.15344 58 15564 50 6.2557e+06 4.02754e+06 820238. 3204.05 6.98 1.3782 1.22146 24072 200857 -1 13060 20 5925 12416 924193 221803 13.4156 13.4156 -768.957 -13.4156 0 0 1.02849e+06 4017.54 0.28 0.34 0.19 -1 -1 0.28 0.16696 0.149639 1054 1054 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_21.v common 15.54 vpr 70.82 MiB 0.09 10748 -1 -1 12 0.81 -1 -1 37008 -1 -1 145 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72520 22 19 1754 1586 1 1213 192 17 17 289 clb auto 33.6 MiB 0.30 9436 23971 4257 18177 1537 70.8 MiB 0.45 0.01 15.1206 -613.533 -15.1206 15.1206 0.65 0.00447903 0.00407881 0.226797 0.206229 60 17512 49 6.55708e+06 4.12398e+06 958460. 3316.47 10.01 1.45888 1.29374 27358 235245 -1 14560 18 6447 13271 1064829 240334 14.1746 14.1746 -764.795 -14.1746 0 0 1.19711e+06 4142.24 0.31 0.42 0.20 -1 -1 0.31 0.173969 0.156345 1115 1115 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_22.v common 11.30 vpr 71.59 MiB 0.15 10996 -1 -1 11 0.85 -1 -1 37792 -1 -1 154 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73308 22 19 1827 1659 1 1262 201 17 17 289 clb auto 34.2 MiB 0.33 9095 29013 5239 21338 2436 71.6 MiB 0.47 0.01 14.6828 -638.764 -14.6828 14.6828 0.64 0.00429262 0.00389892 0.233123 0.211587 64 16634 32 6.55708e+06 4.23247e+06 1.01866e+06 3524.77 5.32 1.32124 1.16817 28222 252754 -1 14512 23 6357 13024 1029780 236641 13.8083 13.8083 -765.715 -13.8083 0 0 1.27888e+06 4425.19 0.33 0.57 0.25 -1 -1 0.33 0.267912 0.242576 1169 1169 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_23.v common 15.76 vpr 71.86 MiB 0.14 11232 -1 -1 12 0.87 -1 -1 38128 -1 -1 157 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73580 22 19 1905 1720 1 1323 205 18 18 324 mult_36 auto 34.4 MiB 0.34 9808 34633 7458 24783 2392 71.9 MiB 0.59 0.01 14.9939 -659.479 -14.9939 14.9939 0.75 0.00453045 0.00412462 0.291424 0.264208 58 19445 41 7.67456e+06 4.66464e+06 1.07356e+06 3313.45 9.40 1.57466 1.39573 30840 265148 -1 16122 22 7808 16540 1310721 294165 14.0003 14.0003 -877.662 -14.0003 0 0 1.34501e+06 4151.27 0.37 0.54 0.24 -1 -1 0.37 0.228984 0.204045 1210 1210 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_24.v common 16.84 vpr 72.42 MiB 0.13 11360 -1 -1 12 0.93 -1 -1 36812 -1 -1 163 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74156 22 19 1979 1794 1 1362 211 18 18 324 mult_36 auto 35.0 MiB 0.36 10247 30307 5737 22712 1858 72.4 MiB 0.53 0.01 15.5582 -672.236 -15.5582 15.5582 0.77 0.00485803 0.00441306 0.256813 0.232741 64 18408 28 7.67456e+06 4.73696e+06 1.16663e+06 3600.72 10.39 2.12101 1.87481 32132 291232 -1 16259 20 7082 14613 1290097 280950 14.0222 14.0222 -882.314 -14.0222 0 0 1.46385e+06 4518.05 0.40 0.54 0.27 -1 -1 0.40 0.22467 0.202927 1265 1265 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_25.v common 15.82 vpr 73.32 MiB 0.17 11668 -1 -1 12 0.98 -1 -1 37456 -1 -1 174 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75084 22 19 2073 1871 1 1415 222 18 18 324 clb mult_36 auto 35.8 MiB 0.36 10262 31759 5655 24329 1775 73.3 MiB 0.54 0.01 15.2851 -698.101 -15.2851 15.2851 0.74 0.00493404 0.00448269 0.2635 0.238323 62 19471 45 7.67456e+06 4.86957e+06 1.13028e+06 3488.51 9.42 2.10207 1.85772 31488 277500 -1 15897 19 7242 15053 992914 233872 13.8751 13.8751 -842.351 -13.8751 0 0 1.39838e+06 4315.99 0.40 0.38 0.24 -1 -1 0.40 0.19889 0.1808 1322 1322 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_26.v common 17.70 vpr 73.64 MiB 0.16 11832 -1 -1 12 1.09 -1 -1 37448 -1 -1 180 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75408 22 19 2130 1928 1 1466 228 18 18 324 clb mult_36 auto 36.0 MiB 0.39 10652 35724 6736 26248 2740 73.6 MiB 0.62 0.01 15.3608 -721.142 -15.3608 15.3608 0.75 0.00597821 0.00546213 0.299863 0.271939 64 19028 28 7.67456e+06 4.9419e+06 1.16663e+06 3600.72 10.86 2.2653 1.99637 32132 291232 -1 16939 19 7400 15347 1200851 276434 14.0936 14.0936 -926.755 -14.0936 0 0 1.46385e+06 4518.05 0.39 0.51 0.26 -1 -1 0.39 0.222111 0.198927 1360 1360 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_27.v common 17.11 vpr 74.02 MiB 0.12 12140 -1 -1 12 1.13 -1 -1 37940 -1 -1 187 22 0 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75796 22 19 2238 2019 1 1561 236 18 18 324 clb mult_36 auto 36.7 MiB 0.43 11693 33041 6232 24708 2101 74.0 MiB 0.55 0.01 15.2709 -741.067 -15.2709 15.2709 0.76 0.00543054 0.00493306 0.255016 0.23037 66 20738 30 7.67456e+06 5.42228e+06 1.20206e+06 3710.05 10.34 2.15425 1.89758 32456 298936 -1 18181 22 7826 16091 1236799 278644 14.0029 14.0029 -926.281 -14.0029 0 0 1.50024e+06 4630.37 0.41 0.58 0.27 -1 -1 0.41 0.259477 0.235156 1431 1431 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_28.v common 19.01 vpr 74.54 MiB 0.16 12144 -1 -1 12 1.11 -1 -1 38164 -1 -1 195 22 0 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76324 22 19 2299 2080 1 1608 244 19 19 361 clb auto 37.1 MiB 0.41 11301 36058 6609 27104 2345 74.5 MiB 0.65 0.01 14.923 -735.308 -14.923 14.923 0.86 0.00534793 0.00485661 0.303911 0.274206 64 20937 44 8.02416e+06 5.51872e+06 1.31179e+06 3633.76 11.74 2.67315 2.36662 35678 328177 -1 18669 18 8044 16895 1241523 284464 14.0172 14.0172 -952.614 -14.0172 0 0 1.64578e+06 4558.95 0.44 0.59 0.30 -1 -1 0.44 0.24627 0.222618 1473 1473 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_29.v common 22.76 vpr 75.90 MiB 0.16 12548 -1 -1 12 1.19 -1 -1 38552 -1 -1 198 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77720 22 19 2400 2164 1 1689 248 22 22 484 mult_36 auto 37.7 MiB 0.40 12158 39926 7813 29522 2591 75.0 MiB 0.70 0.01 14.8648 -767.523 -14.8648 14.8648 1.17 0.00572308 0.00520244 0.335179 0.302059 60 23104 32 1.25085e+07 5.95089e+06 1.69059e+06 3492.95 14.33 2.65821 2.35306 47054 420411 -1 20299 21 9082 18938 1454657 337588 13.6423 13.6423 -1032.35 -13.6423 0 0 2.10969e+06 4358.87 0.58 0.59 0.35 -1 -1 0.58 0.261257 0.233815 1537 1537 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_30.v common 21.29 vpr 75.84 MiB 0.13 12620 -1 -1 12 1.25 -1 -1 38124 -1 -1 209 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77656 22 19 2474 2238 1 1711 259 22 22 484 mult_36 auto 38.5 MiB 0.44 12757 40684 7873 30286 2525 75.8 MiB 0.68 0.01 15.4392 -839.852 -15.4392 15.4392 1.27 0.00601882 0.00546276 0.326232 0.294085 58 23933 30 1.25085e+07 6.0835e+06 1.65337e+06 3416.05 12.55 2.34271 2.06868 46570 411141 -1 21207 19 8638 17916 1389140 314739 14.0518 14.0518 -1051.2 -14.0518 0 0 2.07026e+06 4277.39 0.59 0.67 0.39 -1 -1 0.59 0.276064 0.248582 1592 1592 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_31.v common 22.33 vpr 77.34 MiB 0.19 12884 -1 -1 12 1.38 -1 -1 39724 -1 -1 218 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79200 22 19 2603 2350 1 1810 268 22 22 484 mult_36 auto 39.0 MiB 0.46 13186 50322 10743 36523 3056 76.3 MiB 0.88 0.01 15.5518 -816.83 -15.5518 15.5518 1.23 0.00662617 0.00604503 0.414396 0.372724 62 24588 33 1.25085e+07 6.19199e+06 1.74100e+06 3597.11 13.22 2.60743 2.31056 47538 430501 -1 20805 18 8957 18800 1243406 292540 14.4664 14.4664 -1027.29 -14.4664 0 0 2.15309e+06 4448.52 0.62 0.58 0.38 -1 -1 0.62 0.271163 0.244697 1684 1684 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_32.v common 20.59 vpr 77.16 MiB 0.15 13112 -1 -1 12 1.49 -1 -1 38740 -1 -1 235 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79008 22 19 2694 2441 1 1869 285 22 22 484 mult_36 auto 39.9 MiB 0.47 13404 55568 12221 40738 2609 77.2 MiB 0.89 0.01 15.7845 -884.885 -15.7845 15.7845 1.14 0.00621063 0.00561554 0.400472 0.360813 58 25898 47 1.25085e+07 6.39692e+06 1.65337e+06 3416.05 11.28 2.49862 2.20652 46570 411141 -1 22415 18 9638 20303 1557871 353329 14.6258 14.6258 -1228.12 -14.6258 0 0 2.07026e+06 4277.39 0.62 0.67 0.37 -1 -1 0.62 0.283736 0.254041 1756 1756 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_33.v common 18.06 vpr 77.56 MiB 0.12 13536 -1 -1 13 1.45 -1 -1 39852 -1 -1 238 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79424 22 19 2787 2517 1 1950 289 22 22 484 mult_36 auto 40.4 MiB 0.47 14193 55679 12103 40411 3165 77.6 MiB 0.87 0.01 15.8535 -890.497 -15.8535 15.8535 1.16 0.00613052 0.00552923 0.398065 0.358796 64 25879 44 1.25085e+07 6.82909e+06 1.79645e+06 3711.66 8.59 2.23041 1.9775 48502 451691 -1 23340 20 10026 21566 1667227 372669 14.8148 14.8148 -1264.23 -14.8148 0 0 2.25323e+06 4655.43 0.66 0.73 0.39 -1 -1 0.66 0.321437 0.288951 1812 1812 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_34.v common 18.87 vpr 77.76 MiB 0.17 13732 -1 -1 13 1.43 -1 -1 39000 -1 -1 240 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79624 22 19 2834 2564 1 1962 291 22 22 484 mult_36 auto 40.8 MiB 0.49 13536 57167 12483 41925 2759 77.8 MiB 0.93 0.01 16.4686 -958.47 -16.4686 16.4686 1.19 0.00655799 0.00594363 0.434681 0.391476 56 26290 37 1.25085e+07 6.8532e+06 1.62053e+06 3348.21 9.69 2.424 2.14289 45606 389969 -1 23558 19 10115 20843 1765620 396726 15.2737 15.2737 -1309.09 -15.2737 0 0 1.98725e+06 4105.89 0.55 0.71 0.33 -1 -1 0.55 0.295054 0.264891 1840 1840 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_35.v common 21.81 vpr 78.48 MiB 0.21 14128 -1 -1 13 1.46 -1 -1 40480 -1 -1 248 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80368 22 19 2941 2654 1 2054 299 22 22 484 mult_36 auto 41.8 MiB 0.51 15246 57242 12170 41953 3119 78.5 MiB 0.96 0.02 16.027 -991.235 -16.027 16.027 1.20 0.00693133 0.00619463 0.44169 0.395443 64 27503 49 1.25085e+07 6.94964e+06 1.79645e+06 3711.66 12.00 3.04662 2.69559 48502 451691 -1 24694 20 10978 22860 1875926 410091 14.825 14.825 -1244.93 -14.825 0 0 2.25323e+06 4655.43 0.66 0.81 0.40 -1 -1 0.66 0.345171 0.309672 1910 1910 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_36.v common 26.06 vpr 79.26 MiB 0.23 14188 -1 -1 13 1.66 -1 -1 40648 -1 -1 255 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81164 22 19 3011 2724 1 2092 306 22 22 484 mult_36 auto 42.2 MiB 0.53 16035 54896 10037 41826 3033 79.3 MiB 0.92 0.02 16.2145 -949.212 -16.2145 16.2145 1.22 0.00679453 0.00609077 0.419241 0.375634 66 28782 30 1.25085e+07 7.03402e+06 1.84972e+06 3821.73 16.09 3.41353 3.01579 48986 463441 -1 25047 19 10139 20834 1587245 346930 15.0236 15.0236 -1294.7 -15.0236 0 0 2.30827e+06 4769.15 0.70 0.72 0.42 -1 -1 0.70 0.322831 0.290393 1961 1961 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_37.v common 30.63 vpr 86.89 MiB 0.26 14340 -1 -1 13 1.81 -1 -1 39700 -1 -1 267 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88976 22 19 3132 2828 1 2184 319 24 24 576 mult_36 auto 42.8 MiB 0.46 17547 68926 15068 50266 3592 80.1 MiB 1.09 0.02 16.8989 -1003.53 -16.8989 16.8989 1.38 0.0076356 0.00683407 0.50224 0.45132 66 30889 32 1.51154e+07 7.57468e+06 2.19797e+06 3815.93 19.70 3.69156 3.2406 57990 550195 -1 27250 20 11460 23617 1872163 409781 15.6176 15.6176 -1299.07 -15.6176 0 0 2.74415e+06 4764.15 0.79 0.78 0.46 -1 -1 0.79 0.338042 0.301913 2045 2045 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_38.v common 29.41 vpr 88.37 MiB 0.16 14584 -1 -1 13 1.70 -1 -1 41148 -1 -1 265 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 90488 22 19 3159 2855 1 2196 317 24 24 576 mult_36 auto 42.9 MiB 0.55 16932 61877 13446 44918 3513 79.7 MiB 1.04 0.02 16.2457 -960.976 -16.2457 16.2457 1.49 0.00735925 0.00666055 0.481595 0.429858 62 30869 44 1.51154e+07 7.55058e+06 2.06880e+06 3591.66 18.42 3.66596 3.22449 56266 511197 -1 25725 21 11770 24419 1784410 399616 14.9844 14.9844 -1490.21 -14.9844 0 0 2.55996e+06 4444.37 0.70 0.87 0.42 -1 -1 0.70 0.370543 0.329245 2053 2053 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_39.v common 22.63 vpr 80.83 MiB 0.22 14808 -1 -1 13 1.79 -1 -1 39864 -1 -1 277 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82768 22 19 3284 2963 1 2301 329 24 24 576 mult_36 auto 44.0 MiB 0.55 17200 72969 16865 52707 3397 80.8 MiB 1.22 0.02 16.8292 -1045.83 -16.8292 16.8292 1.48 0.00764088 0.00693267 0.552933 0.493389 64 30780 34 1.51154e+07 7.69524e+06 2.13454e+06 3705.80 11.52 2.60006 2.30588 57414 536310 -1 27176 18 11318 23326 1797827 402950 15.3939 15.3939 -1471.53 -15.3939 0 0 2.67880e+06 4650.70 0.74 0.74 0.45 -1 -1 0.74 0.322609 0.290396 2141 2141 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_40.v common 29.11 vpr 90.50 MiB 0.21 14876 -1 -1 13 1.88 -1 -1 40088 -1 -1 285 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 92668 22 19 3343 3022 1 2312 337 24 24 576 mult_36 auto 44.0 MiB 0.60 17655 65969 14340 48135 3494 81.4 MiB 1.08 0.02 16.0196 -1055.59 -16.0196 16.0196 1.41 0.00754334 0.00682824 0.470638 0.422086 66 31825 29 1.51154e+07 7.79168e+06 2.19797e+06 3815.93 17.70 3.29781 2.9011 57990 550195 -1 28310 20 11782 25469 2081748 441572 14.6238 14.6238 -1372.08 -14.6238 0 0 2.74415e+06 4764.15 0.81 0.88 0.48 -1 -1 0.81 0.369709 0.3323 2181 2181 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_41.v common 22.46 vpr 81.66 MiB 0.20 15404 -1 -1 13 1.92 -1 -1 41980 -1 -1 297 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83620 22 19 3448 3110 1 2410 350 24 24 576 mult_36 auto 44.9 MiB 0.61 18216 74330 15465 55165 3700 81.7 MiB 1.24 0.02 16.5983 -1183.91 -16.5983 16.5983 1.44 0.00827837 0.0074879 0.558665 0.497978 64 32294 34 1.51154e+07 8.33234e+06 2.13454e+06 3705.80 10.63 2.63585 2.32134 57414 536310 -1 29011 22 12502 26791 2090340 466191 15.183 15.183 -1610.9 -15.183 0 0 2.67880e+06 4650.70 0.80 0.91 0.47 -1 -1 0.80 0.397758 0.352946 2249 2249 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_42.v common 24.24 vpr 82.30 MiB 0.19 15344 -1 -1 13 2.14 -1 -1 40576 -1 -1 296 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84272 22 19 3510 3172 1 2428 349 24 24 576 mult_36 auto 45.2 MiB 0.62 19038 77713 18285 55615 3813 82.3 MiB 1.34 0.02 16.0787 -1112.26 -16.0787 16.0787 1.52 0.00828642 0.00751549 0.593279 0.52989 64 34097 44 1.51154e+07 8.32028e+06 2.13454e+06 3705.80 11.86 2.84035 2.50456 57414 536310 -1 29913 21 11980 24610 1957821 434197 14.7048 14.7048 -1462.97 -14.7048 0 0 2.67880e+06 4650.70 0.80 1.05 0.46 -1 -1 0.80 0.482128 0.439249 2292 2292 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_43.v common 23.32 vpr 82.90 MiB 0.17 15596 -1 -1 13 2.09 -1 -1 38484 -1 -1 307 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84888 22 19 3598 3243 1 2500 360 24 24 576 mult_36 auto 45.9 MiB 0.62 18531 73320 15951 53487 3882 82.9 MiB 1.19 0.02 16.0487 -1173.77 -16.0487 16.0487 1.42 0.00816838 0.00728489 0.535999 0.476096 66 32263 26 1.51154e+07 8.45288e+06 2.19797e+06 3815.93 11.10 2.8846 2.54183 57990 550195 -1 28777 20 12049 25629 1817976 407819 14.7608 14.7608 -1782.48 -14.7608 0 0 2.74415e+06 4764.15 0.81 0.97 0.49 -1 -1 0.81 0.447761 0.405938 2343 2343 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_44.v common 24.96 vpr 83.20 MiB 0.27 15676 -1 -1 13 1.99 -1 -1 42564 -1 -1 317 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85196 22 19 3689 3334 1 2572 370 24 24 576 mult_36 auto 46.4 MiB 0.65 18865 83971 19794 59912 4265 83.2 MiB 1.39 0.02 15.5441 -1198.02 -15.5441 15.5441 1.44 0.00874975 0.00795207 0.616877 0.549789 64 34373 50 1.51154e+07 8.57344e+06 2.13454e+06 3705.80 12.90 2.98074 2.63968 57414 536310 -1 30131 18 12902 26588 2258286 492592 14.6142 14.6142 -1654.43 -14.6142 0 0 2.67880e+06 4650.70 0.79 0.87 0.46 -1 -1 0.79 0.358025 0.321617 2415 2415 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_45.v common 32.60 vpr 91.75 MiB 0.28 16060 -1 -1 13 2.25 -1 -1 38912 -1 -1 321 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 93956 22 19 3763 3391 1 2638 375 24 24 576 mult_36 auto 46.9 MiB 0.49 20344 82786 19366 58713 4707 84.0 MiB 1.38 0.02 15.9362 -1227.43 -15.9362 15.9362 1.43 0.00867811 0.00784556 0.597045 0.531765 64 36339 43 1.51154e+07 9.01766e+06 2.13454e+06 3705.80 20.22 4.12437 3.64181 57414 536310 -1 32095 22 13539 28548 2332538 514330 14.744 14.744 -1781.1 -14.744 0 0 2.67880e+06 4650.70 0.80 1.00 0.45 -1 -1 0.80 0.435504 0.389871 2452 2452 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_46.v common 63.22 vpr 84.43 MiB 0.27 16216 -1 -1 13 2.29 -1 -1 42476 -1 -1 323 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86456 22 19 3845 3473 1 2666 377 24 24 576 mult_36 auto 47.4 MiB 0.64 19870 79315 17108 58557 3650 84.4 MiB 1.35 0.02 15.8291 -1159.73 -15.8291 15.8291 1.48 0.00874928 0.00791373 0.589366 0.523036 58 37156 41 1.51154e+07 9.04176e+06 1.96475e+06 3411.02 50.72 4.39914 3.86705 55114 488114 -1 31826 21 13682 28559 2181283 495303 14.7048 14.7048 -1619.73 -14.7048 0 0 2.46106e+06 4272.68 0.71 0.97 0.39 -1 -1 0.71 0.432828 0.388718 2515 2515 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_47.v common 34.19 vpr 95.70 MiB 0.30 16696 -1 -1 13 2.35 -1 -1 42724 -1 -1 337 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 98000 22 19 3983 3594 1 2790 391 24 24 576 clb mult_36 auto 48.3 MiB 0.70 20826 97563 23505 69067 4991 85.4 MiB 1.57 0.02 16.1383 -1250.84 -16.1383 16.1383 1.41 0.00962343 0.00858643 0.672502 0.597474 68 35894 26 1.51154e+07 9.21054e+06 2.25030e+06 3906.77 21.08 4.40596 3.90419 58566 560801 -1 32368 22 13885 29969 2157797 487394 14.8224 14.8224 -1676.6 -14.8224 0 0 2.80126e+06 4863.30 0.78 0.98 0.47 -1 -1 0.78 0.459592 0.412945 2616 2616 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_48.v common 24.05 vpr 87.84 MiB 0.15 16744 -1 -1 13 2.49 -1 -1 38852 -1 -1 341 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89944 22 19 4025 3636 1 2807 395 24 24 576 clb mult_36 auto 49.0 MiB 0.65 20555 85827 18761 62689 4377 85.9 MiB 1.41 0.02 15.9366 -1257.71 -15.9366 15.9366 1.41 0.00929673 0.00841654 0.600275 0.534894 66 36074 31 1.51154e+07 9.25876e+06 2.19797e+06 3815.93 11.41 3.11841 2.75444 57990 550195 -1 32231 18 13521 28658 2093839 472895 14.6727 14.6727 -1673.74 -14.6727 0 0 2.74415e+06 4764.15 0.78 0.72 0.50 -1 -1 0.78 0.332776 0.301428 2639 2639 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_49.v common 37.25 vpr 99.59 MiB 0.28 17008 -1 -1 13 2.57 -1 -1 39368 -1 -1 355 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 101976 22 19 4164 3758 1 2908 410 25 25 625 clb auto 49.9 MiB 0.78 24013 87164 19079 63957 4128 86.7 MiB 1.53 0.03 16.6034 -1378.21 -16.6034 16.6034 1.65 0.0113847 0.0102893 0.659189 0.587169 74 38864 29 1.55855e+07 9.82352e+06 2.63203e+06 4211.25 23.48 4.53826 4.00027 65828 666824 -1 36038 21 13775 28917 2595162 541555 15.5436 15.5436 -1942.02 -15.5436 0 0 3.27126e+06 5234.01 0.97 1.01 0.54 -1 -1 0.97 0.381898 0.347421 2741 2741 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_50.v common 27.11 vpr 87.12 MiB 0.21 17160 -1 -1 13 2.59 -1 -1 39248 -1 -1 356 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89212 22 19 4190 3784 1 2926 411 25 25 625 clb auto 49.7 MiB 0.76 22437 93558 20689 67553 5316 86.7 MiB 1.50 0.02 16.4936 -1315.59 -16.4936 16.4936 1.59 0.00547894 0.00498528 0.640403 0.568865 66 39166 37 1.55855e+07 9.83558e+06 2.39749e+06 3835.99 12.82 3.14878 2.7644 62708 601000 -1 34785 23 14166 29888 2365680 520343 15.4749 15.4749 -1830.59 -15.4749 0 0 2.99279e+06 4788.46 0.94 1.16 0.55 -1 -1 0.94 0.542515 0.485758 2748 2748 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_51.v common 25.89 vpr 88.01 MiB 0.30 17380 -1 -1 13 2.75 -1 -1 43640 -1 -1 366 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 90120 22 19 4305 3882 1 2980 421 25 25 625 clb auto 50.8 MiB 0.74 22535 99772 22908 71362 5502 87.8 MiB 1.63 0.03 16.3966 -1337.54 -16.3966 16.3966 1.58 0.0106801 0.00931618 0.693838 0.614797 66 38966 35 1.55855e+07 9.95613e+06 2.39749e+06 3835.99 11.41 3.27514 2.88885 62708 601000 -1 34679 18 14178 29765 2227761 499078 15.1266 15.1266 -2035.35 -15.1266 0 0 2.99279e+06 4788.46 0.89 0.97 0.52 -1 -1 0.89 0.436174 0.392121 2826 2826 -1 -1 -1 -1 +k6_N8_gate_boost_0.2V_22nm.xml fir_nopipe_52.v common 27.64 vpr 92.35 MiB 0.20 17548 -1 -1 13 2.75 -1 -1 39780 -1 -1 370 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94564 22 19 4363 3940 1 3039 425 25 25 625 clb auto 50.9 MiB 0.79 23857 97842 22331 71351 4160 87.9 MiB 1.71 0.02 16.7981 -1392.86 -16.7981 16.7981 1.62 0.00937252 0.0084418 0.734853 0.652986 70 40949 38 1.55855e+07 1.00044e+07 2.52006e+06 4032.10 12.89 3.29691 2.90817 64580 638411 -1 36845 20 14992 31313 2738027 581899 15.2222 15.2222 -1993.63 -15.2222 0 0 3.16512e+06 5064.19 0.94 1.13 0.54 -1 -1 0.94 0.475349 0.426546 2865 2865 -1 -1 -1 -1 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_14.v common 7.17 vpr 71.81 MiB 0.07 10472 -1 -1 1 0.25 -1 -1 35508 -1 -1 125 22 0 4 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73532 22 19 1974 1653 1 1039 170 16 16 256 mult_36 auto 34.2 MiB 0.37 6283 25550 5428 17285 2837 71.8 MiB 0.45 0.01 4.18011 -1206.26 -4.18011 4.18011 0.57 0.00350846 0.00313293 0.213571 0.191347 44 12375 36 6.32612e+06 3.15375e+06 649498. 2537.10 2.89 0.908391 0.79608 22336 155612 -1 8982 15 3271 4074 387555 98826 4.36136 4.36136 -1211.82 -4.36136 0 0 820238. 3204.05 0.21 0.22 0.14 -1 -1 0.21 0.128601 0.11497 955 708 247 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_15.v common 9.37 vpr 72.36 MiB 0.08 10772 -1 -1 1 0.26 -1 -1 36860 -1 -1 134 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74096 22 19 2144 1789 1 1138 180 16 16 256 clb mult_36 auto 35.1 MiB 0.36 6909 28120 5467 19449 3204 72.4 MiB 0.33 0.01 4.19358 -1335.76 -4.19358 4.19358 0.57 0.0037113 0.00333884 0.133605 0.11961 46 11544 32 6.32612e+06 3.66277e+06 684529. 2673.94 5.06 1.22954 1.06767 22592 160355 -1 9200 15 3275 3934 333576 89258 4.24116 4.24116 -1301.9 -4.24116 0 0 838722. 3276.26 0.23 0.23 0.14 -1 -1 0.23 0.139646 0.124395 1035 769 266 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_16.v common 10.35 vpr 73.17 MiB 0.07 10912 -1 -1 1 0.23 -1 -1 36864 -1 -1 139 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74924 22 19 2218 1846 1 1177 185 16 16 256 clb mult_36 auto 35.7 MiB 0.41 6963 25959 4805 17669 3485 73.2 MiB 0.45 0.01 4.07338 -1365.88 -4.07338 4.07338 0.56 0.00388045 0.00348674 0.208146 0.187017 46 13890 41 6.32612e+06 3.72556e+06 684529. 2673.94 5.69 1.29537 1.13495 22592 160355 -1 10116 19 3779 4592 448481 113412 4.24116 4.24116 -1370.82 -4.24116 0 0 838722. 3276.26 0.23 0.27 0.15 -1 -1 0.23 0.169377 0.15002 1073 788 285 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_17.v common 8.34 vpr 74.82 MiB 0.14 11732 -1 -1 1 0.25 -1 -1 36588 -1 -1 159 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76620 22 19 2536 2130 1 1298 205 17 17 289 clb auto 37.6 MiB 0.46 7620 37049 7684 25247 4118 74.8 MiB 0.62 0.01 4.42051 -1540.01 -4.42051 4.42051 0.65 0.00423609 0.00378899 0.282318 0.252374 46 13764 27 6.64007e+06 3.97672e+06 782063. 2706.10 3.04 1.04231 0.91148 25426 183746 -1 11043 17 4001 4900 453425 123152 4.24116 4.24116 -1541.83 -4.24116 0 0 958460. 3316.47 0.26 0.29 0.16 -1 -1 0.26 0.177466 0.157705 1228 924 304 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_18.v common 8.78 vpr 75.02 MiB 0.10 11952 -1 -1 1 0.31 -1 -1 37072 -1 -1 165 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76816 22 19 2610 2187 1 1336 211 17 17 289 clb auto 37.7 MiB 0.48 8349 34696 7275 23014 4407 75.0 MiB 0.58 0.01 4.13813 -1586.39 -4.13813 4.13813 0.66 0.00439442 0.00392502 0.267351 0.239362 48 14562 33 6.64007e+06 4.05207e+06 816265. 2824.45 3.48 1.13466 0.990693 25714 189529 -1 11938 15 4344 5163 568179 146907 4.36136 4.36136 -1641.57 -4.36136 0 0 986792. 3414.50 0.26 0.33 0.17 -1 -1 0.26 0.173087 0.154333 1266 943 323 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_19.v common 9.22 vpr 76.04 MiB 0.12 12208 -1 -1 1 0.32 -1 -1 36792 -1 -1 174 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77860 22 19 2778 2321 1 1434 221 18 18 324 clb auto 38.8 MiB 0.56 8435 36906 7335 26151 3420 76.0 MiB 0.62 0.01 4.18011 -1706.23 -4.18011 4.18011 0.77 0.00463437 0.00415387 0.27846 0.249498 44 15275 31 7.77114e+06 4.56109e+06 850563. 2625.19 3.39 1.13425 0.990832 28700 205432 -1 11863 18 4157 5289 458211 127186 4.36136 4.36136 -1720.9 -4.36136 0 0 1.07356e+06 3313.45 0.29 0.31 0.17 -1 -1 0.29 0.197713 0.175468 1344 1002 342 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_20.v common 10.57 vpr 76.70 MiB 0.11 12456 -1 -1 1 0.33 -1 -1 36984 -1 -1 178 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78536 22 19 2852 2378 1 1479 225 18 18 324 clb auto 39.2 MiB 0.58 8723 40581 8381 28372 3828 76.7 MiB 0.68 0.01 4.13813 -1771.41 -4.13813 4.13813 0.77 0.00494821 0.00443889 0.30125 0.269261 46 14626 20 7.77114e+06 4.61132e+06 895831. 2764.91 4.55 1.42369 1.24659 29024 211752 -1 12101 15 4346 5256 526214 143468 4.24116 4.24116 -1780.8 -4.24116 0 0 1.09776e+06 3388.15 0.30 0.31 0.19 -1 -1 0.30 0.17954 0.16092 1382 1021 361 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_21.v common 10.05 vpr 77.91 MiB 0.15 12852 -1 -1 1 0.36 -1 -1 37596 -1 -1 190 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79784 22 19 3057 2549 1 1586 237 18 18 324 clb auto 40.7 MiB 0.63 10000 39086 7340 28690 3056 77.9 MiB 0.81 0.01 4.36136 -1893.99 -4.36136 4.36136 0.82 0.005902 0.00531029 0.341896 0.304488 46 17097 24 7.77114e+06 4.76202e+06 895831. 2764.91 3.74 1.26578 1.10779 29024 211752 -1 13601 15 4515 5613 518271 136937 4.36136 4.36136 -1963.24 -4.36136 0 0 1.09776e+06 3388.15 0.29 0.31 0.18 -1 -1 0.29 0.186915 0.166708 1479 1099 380 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_22.v common 13.34 vpr 77.94 MiB 0.11 13080 -1 -1 1 0.25 -1 -1 38084 -1 -1 196 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79812 22 19 3131 2606 1 1626 243 19 19 361 clb auto 40.8 MiB 0.63 10581 47239 9889 33869 3481 77.9 MiB 0.87 0.01 4.48156 -1979.61 -4.48156 4.48156 0.90 0.00552736 0.00497025 0.378449 0.337682 48 18758 47 8.13532e+06 4.83737e+06 1.05176e+06 2913.46 6.65 1.84109 1.60475 32602 246183 -1 15477 18 5270 6461 700019 166552 4.36136 4.36136 -2014.15 -4.36136 0 0 1.27108e+06 3521.00 0.35 0.38 0.21 -1 -1 0.35 0.216509 0.191988 1517 1118 399 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_23.v common 11.22 vpr 79.36 MiB 0.16 13248 -1 -1 1 0.36 -1 -1 37868 -1 -1 206 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81260 22 19 3301 2742 1 1720 254 19 19 361 clb auto 42.2 MiB 0.60 10777 53318 12123 37751 3444 79.4 MiB 0.92 0.01 4.30038 -2073.95 -4.30038 4.30038 0.85 0.00592401 0.00523054 0.407801 0.364218 54 17563 25 8.13532e+06 5.35895e+06 1.15452e+06 3198.10 4.34 1.72645 1.50918 34042 276675 -1 14742 16 4950 6056 567418 143713 4.36136 4.36136 -2093.48 -4.36136 0 0 1.41983e+06 3933.05 0.38 0.34 0.24 -1 -1 0.38 0.205811 0.183214 1597 1179 418 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_24.v common 14.30 vpr 79.62 MiB 0.10 13340 -1 -1 1 0.40 -1 -1 38116 -1 -1 211 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81536 22 19 3375 2799 1 1765 259 19 19 361 clb auto 42.4 MiB 0.63 10899 49759 10089 35200 4470 79.6 MiB 0.90 0.01 4.1744 -2128.46 -4.1744 4.1744 0.85 0.00584197 0.00523281 0.386809 0.345018 50 19096 43 8.13532e+06 5.42174e+06 1.09718e+06 3039.29 7.48 1.92929 1.68397 32962 254619 -1 15151 18 5361 6834 673396 163361 4.24116 4.24116 -2239.44 -4.24116 0 0 1.31179e+06 3633.76 0.36 0.38 0.22 -1 -1 0.36 0.230151 0.204306 1635 1198 437 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_25.v common 14.37 vpr 80.69 MiB 0.15 13984 -1 -1 1 0.30 -1 -1 38104 -1 -1 225 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82628 22 19 3615 3005 1 1878 273 20 20 400 clb auto 43.8 MiB 0.73 12783 60453 13305 42245 4903 80.7 MiB 1.08 0.01 4.29513 -2284.67 -4.29513 4.29513 0.94 0.00615409 0.00550465 0.468509 0.418359 50 22427 38 1.10386e+07 5.59755e+06 1.21483e+06 3037.08 6.84 2.14736 1.8751 36870 282114 -1 18002 16 6329 7668 826615 201907 4.48156 4.48156 -2405 -4.48156 0 0 1.45344e+06 3633.59 0.46 0.44 0.26 -1 -1 0.46 0.240524 0.214471 1749 1293 456 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_26.v common 27.65 vpr 81.20 MiB 0.21 14084 -1 -1 1 0.44 -1 -1 38468 -1 -1 230 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83144 22 19 3689 3062 1 1918 278 20 20 400 clb auto 44.4 MiB 0.67 12259 59233 12310 41511 5412 81.2 MiB 1.01 0.01 4.13813 -2292.86 -4.13813 4.13813 0.97 0.0059514 0.00531072 0.419469 0.371454 46 22560 47 1.10386e+07 5.66034e+06 1.11552e+06 2788.80 19.94 2.92269 2.53164 36070 264401 -1 16932 14 5898 7281 710408 180437 4.36136 4.36136 -2399.27 -4.36136 0 0 1.36764e+06 3419.10 0.38 0.46 0.24 -1 -1 0.38 0.266686 0.241179 1787 1312 475 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_27.v common 38.14 vpr 82.61 MiB 0.14 14440 -1 -1 1 0.47 -1 -1 38408 -1 -1 242 22 0 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84596 22 19 3871 3210 1 2023 291 21 21 441 clb auto 45.6 MiB 0.77 12969 62951 13572 44045 5334 82.6 MiB 1.11 0.01 4.36136 -2529.89 -4.36136 4.36136 1.08 0.00661824 0.0059161 0.478655 0.426406 48 24732 39 1.14404e+07 6.20704e+06 1.29409e+06 2934.45 29.79 3.13754 2.72999 40046 303487 -1 19419 15 6942 8722 1093050 248022 4.48156 4.48156 -2651.69 -4.48156 0 0 1.56480e+06 3548.29 0.44 0.48 0.21 -1 -1 0.44 0.242647 0.21615 1879 1385 494 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_28.v common 14.38 vpr 82.73 MiB 0.19 14620 -1 -1 1 0.54 -1 -1 38548 -1 -1 247 22 0 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84716 22 19 3945 3267 1 2070 296 21 21 441 clb auto 45.8 MiB 0.77 13605 63400 13597 45154 4649 82.7 MiB 1.18 0.02 4.24116 -2495.55 -4.24116 4.24116 1.09 0.00697535 0.00626872 0.499185 0.445723 52 23436 41 1.14404e+07 6.26983e+06 1.38344e+06 3137.06 5.84 2.26323 1.98047 41366 331634 -1 18697 14 6169 7747 801288 198953 4.36136 4.36136 -2569.18 -4.36136 0 0 1.70223e+06 3859.94 0.46 0.38 0.28 -1 -1 0.46 0.213995 0.190374 1917 1404 513 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_29.v common 18.09 vpr 84.27 MiB 0.15 14936 -1 -1 1 0.52 -1 -1 39648 -1 -1 260 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86288 22 19 4159 3447 1 2186 310 22 22 484 mult_36 auto 47.3 MiB 0.79 14251 75766 16916 53468 5382 84.3 MiB 1.32 0.02 4.30038 -2650.53 -4.30038 4.30038 1.21 0.006988 0.00623253 0.5503 0.488282 48 24770 32 1.26594e+07 6.82908e+06 1.44011e+06 2975.42 9.09 2.32987 2.03802 44390 338934 -1 20456 14 6939 8707 972163 230644 4.48156 4.48156 -2836.1 -4.48156 0 0 1.74100e+06 3597.11 0.51 0.46 0.24 -1 -1 0.51 0.2421 0.216208 2023 1491 532 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_30.v common 21.30 vpr 84.31 MiB 0.19 15188 -1 -1 1 0.53 -1 -1 40780 -1 -1 265 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86336 22 19 4233 3504 1 2225 315 22 22 484 mult_36 auto 47.5 MiB 0.83 14490 83853 20335 56854 6664 84.3 MiB 1.46 0.02 4.24116 -2618.51 -4.24116 4.24116 1.24 0.00714772 0.00637711 0.605622 0.537951 50 25164 32 1.26594e+07 6.89187e+06 1.50222e+06 3103.76 11.74 2.89467 2.5294 44874 350400 -1 20610 14 7194 8993 921636 226843 4.36136 4.36136 -2766.51 -4.36136 0 0 1.79645e+06 3711.66 0.50 0.49 0.28 -1 -1 0.50 0.274395 0.24729 2061 1510 551 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_31.v common 19.45 vpr 85.30 MiB 0.14 15440 -1 -1 1 0.52 -1 -1 40928 -1 -1 276 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87344 22 19 4410 3647 1 2335 326 22 22 484 clb mult_36 auto 48.5 MiB 0.78 16122 77675 17613 54161 5901 85.3 MiB 1.36 0.02 4.36136 -2880.63 -4.36136 4.36136 1.23 0.0075266 0.00673816 0.559591 0.497527 50 27001 29 1.26594e+07 7.03001e+06 1.50222e+06 3103.76 9.88 2.41232 2.1093 44874 350400 -1 22573 15 7610 9869 1093468 253767 4.48156 4.48156 -2966.78 -4.48156 0 0 1.79645e+06 3711.66 0.58 0.52 0.31 -1 -1 0.58 0.262899 0.235664 2148 1578 570 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_32.v common 30.33 vpr 85.77 MiB 0.20 15712 -1 -1 1 0.44 -1 -1 40580 -1 -1 280 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87824 22 19 4484 3704 1 2374 330 22 22 484 clb mult_36 auto 49.0 MiB 0.81 15256 78921 17235 55630 6056 85.8 MiB 1.46 0.02 4.13813 -2844.59 -4.13813 4.13813 1.25 0.0081841 0.00731784 0.588572 0.522393 50 25963 31 1.26594e+07 7.08024e+06 1.50222e+06 3103.76 20.78 3.18512 2.77056 44874 350400 -1 21895 15 7623 9321 1001861 240765 4.36136 4.36136 -3062 -4.36136 0 0 1.79645e+06 3711.66 0.51 0.53 0.29 -1 -1 0.51 0.29392 0.263688 2186 1597 589 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_33.v common 44.09 vpr 87.23 MiB 0.23 16680 -1 -1 1 0.60 -1 -1 41588 -1 -1 304 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89324 22 19 4843 4029 1 2501 355 23 23 529 clb auto 50.5 MiB 0.80 17265 89531 21627 62738 5166 87.2 MiB 1.55 0.02 4.36136 -3132.51 -4.36136 4.36136 1.33 0.00822953 0.00735424 0.631432 0.56104 50 30212 44 1.31115e+07 7.77763e+06 1.65241e+06 3123.66 33.77 3.95648 3.4406 48882 385791 -1 23998 15 7697 10016 1012708 239734 4.48156 4.48156 -3211.65 -4.48156 0 0 1.97533e+06 3734.07 0.57 0.54 0.32 -1 -1 0.57 0.296085 0.263436 2364 1756 608 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_34.v common 16.82 vpr 88.21 MiB 0.18 16652 -1 -1 1 0.72 -1 -1 41604 -1 -1 309 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 90328 22 19 4917 4086 1 2542 360 23 23 529 clb auto 51.3 MiB 0.85 16883 87400 19509 61991 5900 88.2 MiB 1.45 0.02 4.2946 -3132.19 -4.2946 4.2946 1.29 0.00788218 0.006887 0.570903 0.502905 48 29983 34 1.31115e+07 7.84042e+06 1.58369e+06 2993.75 6.73 2.19272 1.90211 48354 373213 -1 24232 15 8519 10539 1178068 279978 4.36136 4.36136 -3239.06 -4.36136 0 0 1.91452e+06 3619.14 0.54 0.55 0.30 -1 -1 0.54 0.289307 0.25688 2402 1775 627 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_35.v common 18.89 vpr 88.98 MiB 0.23 17056 -1 -1 1 0.65 -1 -1 41752 -1 -1 320 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 91120 22 19 5093 4228 1 2643 371 23 23 529 clb auto 52.3 MiB 0.97 16361 88283 19281 62146 6856 89.0 MiB 1.56 0.02 4.18011 -3243.72 -4.18011 4.18011 1.43 0.0101303 0.009037 0.622098 0.552535 54 27381 34 1.31115e+07 7.97856e+06 1.73850e+06 3286.39 8.20 2.81154 2.4584 50466 419205 -1 22379 15 7580 9662 963966 246031 4.36136 4.36136 -3289.45 -4.36136 0 0 2.13727e+06 4040.20 0.64 0.58 0.34 -1 -1 0.64 0.341484 0.306495 2488 1842 646 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_36.v common 29.16 vpr 89.19 MiB 0.26 17120 -1 -1 1 0.71 -1 -1 41720 -1 -1 324 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 91328 22 19 5167 4285 1 2691 375 23 23 529 clb auto 52.7 MiB 0.95 18019 98998 23016 68009 7973 89.2 MiB 1.69 0.02 4.25463 -3294.79 -4.25463 4.25463 1.31 0.00840097 0.00747584 0.671425 0.595096 56 29248 46 1.31115e+07 8.02879e+06 1.78215e+06 3368.90 18.21 4.18849 3.64695 50994 430361 -1 25192 17 8520 10780 1168967 288965 4.24116 4.24116 -3384.13 -4.24116 0 0 2.18505e+06 4130.54 0.60 0.66 0.38 -1 -1 0.60 0.36118 0.320109 2526 1861 665 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_37.v common 26.20 vpr 91.57 MiB 0.23 17756 -1 -1 1 0.69 -1 -1 40880 -1 -1 337 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 93768 22 19 5380 4464 1 2808 389 24 24 576 clb mult_36 auto 53.9 MiB 1.06 18769 112490 27337 77347 7806 90.5 MiB 2.04 0.02 4.24116 -3467.58 -4.24116 4.24116 1.46 0.00907631 0.00809949 0.782821 0.686432 50 31438 37 1.52924e+07 8.58805e+06 1.78400e+06 3097.22 14.29 3.93921 3.43732 53074 415989 -1 26089 15 8677 10964 1154625 282675 4.36136 4.36136 -3530.32 -4.36136 0 0 2.13454e+06 3705.80 0.73 0.62 0.36 -1 -1 0.73 0.345649 0.311132 2631 1947 684 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_38.v common 22.31 vpr 91.45 MiB 0.17 17708 -1 -1 1 0.73 -1 -1 42384 -1 -1 343 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 93644 22 19 5454 4521 1 2849 395 24 24 576 clb mult_36 auto 55.0 MiB 0.90 19940 116235 27981 79411 8843 91.4 MiB 2.02 0.02 4.36136 -3489.43 -4.36136 4.36136 1.56 0.00865726 0.0076673 0.789594 0.698073 50 33618 45 1.52924e+07 8.66339e+06 1.78400e+06 3097.22 10.80 3.19398 2.7774 53074 415989 -1 27632 15 9105 11562 1231630 291884 4.48156 4.48156 -3625.47 -4.48156 0 0 2.13454e+06 3705.80 0.60 0.62 0.28 -1 -1 0.60 0.337085 0.300387 2669 1966 703 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_39.v common 25.88 vpr 91.90 MiB 0.28 18160 -1 -1 1 0.76 -1 -1 40224 -1 -1 353 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94108 22 19 5629 4662 1 2951 405 25 25 625 clb auto 55.4 MiB 1.14 19953 114177 27339 77982 8856 91.9 MiB 1.99 0.02 4.36136 -3656.12 -4.36136 4.36136 1.69 0.0096819 0.00860995 0.788368 0.696843 50 35626 42 1.57822e+07 8.78897e+06 1.94653e+06 3114.45 13.53 3.34528 2.91404 57408 454416 -1 28298 13 9542 11975 1300975 310972 4.48156 4.48156 -3801.9 -4.48156 0 0 2.32897e+06 3726.35 0.78 0.61 0.33 -1 -1 0.78 0.323378 0.290166 2754 2032 722 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_40.v common 26.67 vpr 92.66 MiB 0.30 18280 -1 -1 1 0.77 -1 -1 42276 -1 -1 358 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94880 22 19 5703 4719 1 2994 410 25 25 625 clb auto 56.3 MiB 1.08 21027 114560 27826 78845 7889 92.7 MiB 2.12 0.02 4.24116 -3663.98 -4.24116 4.24116 1.63 0.00961592 0.0085823 0.754727 0.666265 54 36082 37 1.57822e+07 8.85176e+06 2.04878e+06 3278.05 13.97 3.29258 2.87627 59280 493784 -1 28451 13 8976 11375 1210126 295638 4.60176 4.60176 -3737.01 -4.60176 0 0 2.52006e+06 4032.10 0.74 0.60 0.40 -1 -1 0.74 0.322934 0.288973 2792 2051 741 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_41.v common 20.61 vpr 94.05 MiB 0.26 18812 -1 -1 1 0.79 -1 -1 41700 -1 -1 374 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 96312 22 19 5950 4932 1 3111 427 25 25 625 clb auto 57.5 MiB 1.20 20818 125773 30837 85286 9650 94.1 MiB 2.17 0.03 4.42051 -3821.28 -4.42051 4.42051 1.63 0.00988404 0.0088336 0.857002 0.754623 52 33687 24 1.57822e+07 9.44869e+06 1.99531e+06 3192.49 6.87 2.69468 2.36476 58656 480125 -1 27916 13 8776 11804 1123040 278330 4.60176 4.60176 -3900.78 -4.60176 0 0 2.45448e+06 3927.17 0.96 0.67 0.44 -1 -1 0.96 0.380177 0.346074 2913 2153 760 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_42.v common 21.94 vpr 94.25 MiB 0.28 18964 -1 -1 1 0.87 -1 -1 42876 -1 -1 377 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 96512 22 19 6024 4989 1 3151 430 25 25 625 clb auto 57.6 MiB 1.16 21903 126946 30063 87199 9684 94.2 MiB 2.26 0.03 4.36136 -3905.46 -4.36136 4.36136 1.66 0.0103375 0.00920788 0.868049 0.767092 54 34451 19 1.57822e+07 9.48637e+06 2.04878e+06 3278.05 8.66 3.34036 2.92748 59280 493784 -1 29343 13 9076 11896 1099829 264107 4.48156 4.48156 -4076.71 -4.48156 0 0 2.52006e+06 4032.10 0.77 0.60 0.42 -1 -1 0.77 0.340296 0.305387 2951 2172 779 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_43.v common 23.19 vpr 95.80 MiB 0.31 19404 -1 -1 1 0.89 -1 -1 43328 -1 -1 389 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 98104 22 19 6198 5129 1 3252 442 25 25 625 clb auto 59.1 MiB 1.21 22747 131716 31686 89081 10949 95.8 MiB 2.33 0.03 4.37853 -4053.38 -4.37853 4.37853 1.84 0.0104232 0.00928277 0.894311 0.790737 54 35002 18 1.57822e+07 9.63706e+06 2.04878e+06 3278.05 9.67 3.27438 2.86698 59280 493784 -1 30125 13 9358 11890 1222233 297297 4.72196 4.72196 -4139.78 -4.72196 0 0 2.52006e+06 4032.10 0.78 0.65 0.45 -1 -1 0.78 0.381448 0.343189 3035 2237 798 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_44.v common 26.78 vpr 96.68 MiB 0.28 19404 -1 -1 1 0.87 -1 -1 43512 -1 -1 394 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 98996 22 19 6272 5186 1 3297 447 26 26 676 clb auto 59.4 MiB 1.17 22908 135379 33028 93129 9222 96.0 MiB 2.36 0.03 4.48156 -4060.31 -4.48156 4.48156 1.84 0.011658 0.0103368 0.907215 0.803283 52 39179 38 1.91291e+07 9.69985e+06 2.20423e+06 3260.69 12.48 3.41455 2.99416 65116 533202 -1 30144 13 9605 12391 1252390 296389 4.48156 4.48156 -4398.9 -4.48156 0 0 2.70930e+06 4007.84 0.83 0.64 0.45 -1 -1 0.83 0.357413 0.31977 3073 2256 817 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_45.v common 28.04 vpr 96.83 MiB 0.32 19964 -1 -1 1 0.91 -1 -1 43712 -1 -1 407 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 99156 22 19 6485 5365 1 3415 461 26 26 676 clb auto 60.4 MiB 1.17 21937 142861 34619 98677 9565 96.8 MiB 2.51 0.03 4.37853 -4161.26 -4.37853 4.37853 1.72 0.0108605 0.00967532 0.949021 0.832038 54 35587 27 1.91291e+07 1.02591e+07 2.26288e+06 3347.46 13.68 3.78755 3.32727 65792 548382 -1 29674 14 9521 12541 1199994 291317 4.60176 4.60176 -4732.88 -4.60176 0 0 2.78165e+06 4114.86 0.80 0.67 0.46 -1 -1 0.80 0.40794 0.367144 3178 2342 836 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_46.v common 50.52 vpr 97.72 MiB 0.22 20072 -1 -1 1 0.91 -1 -1 44016 -1 -1 412 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 100068 22 19 6559 5422 1 3449 466 26 26 676 clb auto 60.7 MiB 1.21 23538 148558 36858 101207 10493 97.3 MiB 2.54 0.03 4.36136 -4211.81 -4.36136 4.36136 1.74 0.012603 0.01142 0.948557 0.83767 50 37784 24 1.91291e+07 1.03219e+07 2.15046e+06 3181.16 36.51 5.75007 5.01756 63768 504694 -1 31931 15 10220 12587 1272284 312759 4.48156 4.48156 -4493.44 -4.48156 0 0 2.57128e+06 3803.68 0.75 0.74 0.39 -1 -1 0.75 0.42784 0.384383 3216 2361 855 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_47.v common 23.60 vpr 99.03 MiB 0.22 20368 -1 -1 1 0.93 -1 -1 44564 -1 -1 422 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 101408 22 19 6735 5564 1 3561 476 26 26 676 clb auto 62.5 MiB 1.21 24114 145322 35443 99736 10143 99.0 MiB 2.73 0.03 4.36136 -4363.73 -4.36136 4.36136 1.76 0.0129397 0.011653 1.1003 0.97872 52 40909 29 1.91291e+07 1.04475e+07 2.20423e+06 3260.69 8.77 3.41046 3.00851 65116 533202 -1 32715 14 10296 12618 1300621 315598 4.60176 4.60176 -4478.39 -4.60176 0 0 2.70930e+06 4007.84 0.98 0.71 0.46 -1 -1 0.98 0.408648 0.366685 3302 2428 874 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_48.v common 27.73 vpr 100.63 MiB 0.30 20524 -1 -1 1 0.97 -1 -1 44032 -1 -1 428 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 103044 22 19 6809 5621 1 3598 482 26 26 676 clb auto 63.0 MiB 1.28 25457 151602 37795 102913 10894 98.7 MiB 2.57 0.03 4.36136 -4421.6 -4.36136 4.36136 1.76 0.0110835 0.0098763 0.963183 0.849135 54 40678 40 1.91291e+07 1.05228e+07 2.26288e+06 3347.46 13.20 4.51534 3.96596 65792 548382 -1 33773 15 10421 12979 1342589 331991 4.48156 4.48156 -4589.32 -4.48156 0 0 2.78165e+06 4114.86 0.79 0.71 0.44 -1 -1 0.79 0.406414 0.361218 3340 2447 893 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_49.v common 28.81 vpr 101.54 MiB 0.32 21104 -1 -1 1 1.05 -1 -1 44376 -1 -1 444 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 103976 22 19 7094 5872 1 3718 499 27 27 729 clb auto 64.4 MiB 1.35 27242 166651 41903 114568 10180 100.2 MiB 3.09 0.03 4.48156 -4645.19 -4.48156 4.48156 1.93 0.0137483 0.0124058 1.21856 1.07489 54 44469 28 1.9669e+07 1.11198e+07 2.44988e+06 3360.60 12.93 4.26154 3.72779 70678 594165 -1 36864 15 11534 14523 1551802 366884 4.60176 4.60176 -5029.95 -4.60176 0 0 3.01106e+06 4130.40 0.86 0.80 0.49 -1 -1 0.86 0.436947 0.390212 3481 2569 912 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_50.v common 38.24 vpr 104.04 MiB 0.22 21184 -1 -1 1 0.99 -1 -1 44140 -1 -1 449 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 106532 22 19 7168 5929 1 3755 504 27 27 729 clb auto 65.1 MiB 1.38 27900 166919 41558 115070 10291 101.0 MiB 3.07 0.03 4.42058 -4700.51 -4.42058 4.42058 1.95 0.0133138 0.0119708 1.19493 1.0588 54 46623 41 1.9669e+07 1.11825e+07 2.44988e+06 3360.60 22.19 5.22553 4.55891 70678 594165 -1 37253 16 11580 14881 1507663 361077 4.48156 4.48156 -4833.63 -4.48156 0 0 3.01106e+06 4130.40 0.95 0.82 0.47 -1 -1 0.95 0.462516 0.412714 3519 2588 931 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_51.v common 59.87 vpr 106.14 MiB 0.31 21572 -1 -1 1 1.08 -1 -1 44824 -1 -1 460 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 108688 22 19 7344 6071 1 3863 515 27 27 729 clb auto 65.7 MiB 1.37 26191 173807 44357 119669 9781 101.5 MiB 3.15 0.04 4.4148 -4780.65 -4.4148 4.4148 1.97 0.0143687 0.0128847 1.21421 1.07263 54 42070 24 1.9669e+07 1.13207e+07 2.44988e+06 3360.60 43.33 5.82771 5.07827 70678 594165 -1 35404 13 11033 14165 1456223 354857 4.72196 4.72196 -5030.57 -4.72196 0 0 3.01106e+06 4130.40 0.98 0.78 0.49 -1 -1 0.98 0.425101 0.38117 3605 2655 950 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_52.v common 28.61 vpr 106.45 MiB 0.25 21884 -1 -1 1 1.15 -1 -1 45220 -1 -1 465 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 109004 22 19 7418 6128 1 3909 520 27 27 729 clb auto 66.5 MiB 1.34 28280 178170 45981 119497 12692 102.4 MiB 3.22 0.04 4.37853 -4830.08 -4.37853 4.37853 1.95 0.0141499 0.0123272 1.23818 1.08169 54 45707 28 1.9669e+07 1.13835e+07 2.44988e+06 3360.60 12.27 4.30066 3.76467 70678 594165 -1 38034 16 11980 15124 1623681 386703 4.48156 4.48156 -5051.95 -4.48156 0 0 3.01106e+06 4130.40 0.84 0.80 0.46 -1 -1 0.84 0.496756 0.440935 3643 2674 969 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_14.v common 9.41 vpr 67.30 MiB 0.06 9328 -1 -1 1 0.16 -1 -1 34656 -1 -1 81 22 0 4 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 68916 22 19 1246 925 1 736 126 16 16 256 mult_36 auto 29.6 MiB 0.40 4254 18396 4205 11555 2636 67.3 MiB 0.34 0.01 8.36318 -383.367 -8.36318 8.36318 0.56 0.00278544 0.00258491 0.159571 0.146202 38 8861 34 6.32612e+06 2.6012e+06 558663. 2182.28 5.53 1.07474 0.945186 21316 135884 -1 6561 22 4832 5445 582149 154526 7.80999 7.80999 -388.43 -7.80999 0 0 744679. 2908.90 0.19 0.26 0.12 -1 -1 0.19 0.118783 0.105935 591 344 247 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_15.v common 7.62 vpr 67.93 MiB 0.07 9716 -1 -1 1 0.16 -1 -1 35136 -1 -1 86 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69556 22 19 1344 989 1 796 132 16 16 256 mult_36 auto 30.3 MiB 0.37 4680 18892 4302 11939 2651 67.9 MiB 0.37 0.01 8.43996 -390.118 -8.43996 8.43996 0.57 0.00280472 0.00258568 0.168314 0.15441 40 9059 33 6.32612e+06 3.05999e+06 583096. 2277.72 3.69 0.787018 0.698129 21572 140635 -1 7624 21 5398 6282 743093 192604 7.99439 7.99439 -467.887 -7.99439 0 0 763333. 2981.77 0.19 0.28 0.13 -1 -1 0.19 0.117461 0.104846 635 369 266 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_16.v common 22.21 vpr 68.30 MiB 0.07 9588 -1 -1 1 0.20 -1 -1 35172 -1 -1 91 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69944 22 19 1418 1046 1 833 137 16 16 256 mult_36 auto 30.8 MiB 0.46 5124 23788 5451 15273 3064 68.3 MiB 0.47 0.01 8.48338 -427.318 -8.48338 8.48338 0.59 0.00324841 0.00298687 0.205054 0.187831 40 9542 34 6.32612e+06 3.12278e+06 583096. 2277.72 17.80 1.58883 1.40324 21572 140635 -1 7989 24 5937 6919 778879 198407 8.18279 8.18279 -520.319 -8.18279 0 0 763333. 2981.77 0.19 0.33 0.13 -1 -1 0.19 0.146991 0.131238 673 388 285 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_17.v common 11.74 vpr 69.05 MiB 0.12 10252 -1 -1 1 0.22 -1 -1 35376 -1 -1 97 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70708 22 19 1518 1112 1 899 143 16 16 256 mult_36 auto 31.4 MiB 0.43 5605 24761 5724 15848 3189 69.1 MiB 0.50 0.01 9.23404 -471.583 -9.23404 9.23404 0.57 0.00299432 0.00271579 0.215328 0.196431 42 12302 48 6.32612e+06 3.19813e+06 613404. 2396.11 7.17 1.52838 1.35187 21828 146600 -1 8704 23 6699 7694 985071 246811 9.15065 9.15065 -572.903 -9.15065 0 0 784202. 3063.29 0.27 0.40 0.13 -1 -1 0.27 0.157069 0.140898 719 415 304 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_18.v common 14.27 vpr 69.80 MiB 0.10 10300 -1 -1 1 0.23 -1 -1 34916 -1 -1 102 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71472 22 19 1592 1169 1 937 148 16 16 256 mult_36 auto 32.0 MiB 0.48 5411 25954 5761 17040 3153 69.8 MiB 0.50 0.01 9.11384 -492.872 -9.11384 9.11384 0.57 0.00308504 0.00279575 0.215571 0.196214 40 10608 35 6.32612e+06 3.26092e+06 583096. 2277.72 9.65 1.42462 1.25955 21572 140635 -1 9003 23 6783 7936 948207 245104 8.48265 8.48265 -629.25 -8.48265 0 0 763333. 2981.77 0.22 0.37 0.14 -1 -1 0.22 0.155053 0.138515 757 434 323 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_19.v common 11.00 vpr 70.22 MiB 0.11 10544 -1 -1 1 0.21 -1 -1 35336 -1 -1 107 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71904 22 19 1688 1231 1 998 154 16 16 256 mult_36 auto 32.6 MiB 0.51 5851 22814 4729 13760 4325 70.2 MiB 0.46 0.01 9.12484 -496.487 -9.12484 9.12484 0.56 0.00337278 0.00308981 0.204978 0.187705 46 11198 40 6.32612e+06 3.71971e+06 684529. 2673.94 6.64 1.44049 1.27621 22592 160355 -1 8482 21 5296 6099 654272 170198 8.26205 8.26205 -572.735 -8.26205 0 0 838722. 3276.26 0.21 0.29 0.11 -1 -1 0.21 0.143728 0.128598 799 457 342 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_20.v common 12.00 vpr 70.56 MiB 0.08 10640 -1 -1 1 0.25 -1 -1 35548 -1 -1 112 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72256 22 19 1762 1288 1 1033 159 16 16 256 mult_36 auto 32.8 MiB 0.48 6825 22089 4646 13915 3528 70.6 MiB 0.47 0.01 9.16401 -519.117 -9.16401 9.16401 0.56 0.00360731 0.00330817 0.190943 0.174072 50 11241 25 6.32612e+06 3.7825e+06 744679. 2908.90 7.42 1.37001 1.20992 23104 171162 -1 9261 21 5709 6587 736555 189282 8.39745 8.39745 -613.624 -8.39745 0 0 891356. 3481.86 0.24 0.34 0.17 -1 -1 0.24 0.158795 0.142393 837 476 361 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_21.v common 10.24 vpr 70.94 MiB 0.09 10924 -1 -1 1 0.23 -1 -1 35780 -1 -1 119 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72640 22 19 1859 1351 1 1097 166 16 16 256 mult_36 auto 33.3 MiB 0.47 6666 26158 5203 16523 4432 70.9 MiB 0.50 0.01 9.03763 -508.506 -9.03763 9.03763 0.56 0.00365336 0.00334877 0.220005 0.200745 48 12141 45 6.32612e+06 3.8704e+06 714410. 2790.66 5.70 1.21186 1.07324 22848 165380 -1 9960 23 6766 7896 953019 239000 8.21605 8.21605 -705.722 -8.21605 0 0 863353. 3372.47 0.22 0.38 0.16 -1 -1 0.22 0.175403 0.156387 880 500 380 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_22.v common 8.72 vpr 71.55 MiB 0.14 11048 -1 -1 1 0.26 -1 -1 35832 -1 -1 123 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73272 22 19 1933 1408 1 1134 170 16 16 256 mult_36 auto 33.8 MiB 0.52 7313 28370 5828 17736 4806 71.6 MiB 0.56 0.01 9.17501 -549.932 -9.17501 9.17501 0.56 0.00368249 0.0033307 0.236244 0.214884 48 12035 28 6.32612e+06 3.92063e+06 714410. 2790.66 3.90 0.984652 0.872973 22848 165380 -1 10062 23 6419 7390 836835 213069 8.51065 8.51065 -667.103 -8.51065 0 0 863353. 3372.47 0.23 0.38 0.16 -1 -1 0.23 0.181923 0.162592 918 519 399 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_23.v common 13.10 vpr 71.78 MiB 0.12 11476 -1 -1 1 0.26 -1 -1 36084 -1 -1 131 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73504 22 19 2031 1472 1 1198 179 18 18 324 mult_36 auto 34.2 MiB 0.61 7550 30419 6455 19369 4595 71.8 MiB 0.62 0.01 9.12001 -583.855 -9.12001 9.12001 0.73 0.00393783 0.00359825 0.259055 0.235968 48 12630 26 7.77114e+06 4.4171e+06 935225. 2886.50 7.41 1.66175 1.4664 29348 218440 -1 10831 21 6820 7945 915173 231648 8.49665 8.49665 -783.026 -8.49665 0 0 1.13028e+06 3488.51 0.31 0.42 0.21 -1 -1 0.31 0.196924 0.173911 962 544 418 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_24.v common 14.69 vpr 72.13 MiB 0.09 11404 -1 -1 1 0.26 -1 -1 36260 -1 -1 136 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73860 22 19 2105 1529 1 1235 184 18 18 324 mult_36 auto 34.9 MiB 0.58 7661 37317 8501 24959 3857 72.1 MiB 0.69 0.01 9.10913 -586.392 -9.10913 9.10913 0.75 0.00385424 0.00348189 0.294439 0.266977 48 13133 26 7.77114e+06 4.47989e+06 935225. 2886.50 8.93 1.94041 1.70952 29348 218440 -1 10908 23 7434 8576 948645 234568 8.58465 8.58465 -791.233 -8.58465 0 0 1.13028e+06 3488.51 0.30 0.42 0.19 -1 -1 0.30 0.198405 0.177356 1000 563 437 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_25.v common 10.98 vpr 72.92 MiB 0.13 11880 -1 -1 1 0.24 -1 -1 36524 -1 -1 141 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74672 22 19 2201 1591 1 1295 189 18 18 324 mult_36 auto 35.6 MiB 0.65 7882 35419 7795 23110 4514 72.9 MiB 0.75 0.01 9.0476 -626.573 -9.0476 9.0476 0.76 0.00401564 0.00365488 0.307124 0.279188 46 14895 28 7.77114e+06 4.54268e+06 895831. 2764.91 5.23 1.29314 1.14623 29024 211752 -1 11428 21 6952 8164 847241 222680 8.28945 8.28945 -792.599 -8.28945 0 0 1.09776e+06 3388.15 0.29 0.38 0.19 -1 -1 0.29 0.187225 0.167354 1042 586 456 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_26.v common 14.27 vpr 73.07 MiB 0.16 11928 -1 -1 1 0.33 -1 -1 37424 -1 -1 145 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74820 22 19 2275 1648 1 1331 193 18 18 324 mult_36 auto 35.9 MiB 0.64 8270 37512 8174 25127 4211 73.1 MiB 0.74 0.01 9.15301 -640.754 -9.15301 9.15301 0.75 0.00418134 0.00380681 0.302948 0.275287 48 14431 26 7.77114e+06 4.59291e+06 935225. 2886.50 8.14 1.80477 1.59081 29348 218440 -1 12124 23 9127 10596 1176912 285820 8.54065 8.54065 -814.155 -8.54065 0 0 1.13028e+06 3488.51 0.34 0.52 0.20 -1 -1 0.34 0.226656 0.202872 1080 605 475 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_27.v common 16.96 vpr 73.94 MiB 0.16 12168 -1 -1 1 0.33 -1 -1 36860 -1 -1 153 22 0 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75712 22 19 2385 1724 1 1408 202 18 18 324 mult_36 auto 36.6 MiB 0.62 9475 39274 8633 24027 6614 73.9 MiB 0.80 0.01 9.16401 -680.51 -9.16401 9.16401 0.79 0.00432941 0.00393962 0.337033 0.306189 54 16614 36 7.77114e+06 5.08937e+06 1.02660e+06 3168.53 10.75 2.19661 1.93908 30640 245540 -1 13208 20 7860 9445 1117978 264377 8.41125 8.41125 -880.793 -8.41125 0 0 1.26286e+06 3897.71 0.33 0.42 0.21 -1 -1 0.33 0.191053 0.170746 1136 642 494 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_28.v common 11.57 vpr 74.54 MiB 0.18 12280 -1 -1 1 0.26 -1 -1 36736 -1 -1 158 22 0 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76324 22 19 2459 1781 1 1444 207 18 18 324 mult_36 auto 37.0 MiB 0.76 8909 41211 9001 25741 6469 74.5 MiB 0.81 0.01 9.14684 -663.352 -9.14684 9.14684 0.79 0.00460207 0.00411187 0.323378 0.293345 46 16563 50 7.77114e+06 5.15216e+06 895831. 2764.91 5.19 1.42025 1.25683 29024 211752 -1 12815 21 8674 9947 1180543 313346 8.80125 8.80125 -858.702 -8.80125 0 0 1.09776e+06 3388.15 0.29 0.48 0.18 -1 -1 0.29 0.209869 0.187449 1174 661 513 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_29.v common 19.37 vpr 74.96 MiB 0.18 12660 -1 -1 1 0.34 -1 -1 37108 -1 -1 165 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76756 22 19 2565 1853 1 1517 215 22 22 484 mult_36 auto 37.6 MiB 0.76 9695 50369 11832 33775 4762 75.0 MiB 1.05 0.01 9.39824 -758.644 -9.39824 9.39824 1.22 0.0048153 0.00437802 0.403953 0.3667 44 19021 30 1.26594e+07 5.63607e+06 1.30964e+06 2705.88 11.40 2.24831 1.98778 43422 318546 -1 14146 23 8551 9980 1131104 280459 8.63965 8.63965 -1048.26 -8.63965 0 0 1.65337e+06 3416.05 0.47 0.53 0.27 -1 -1 0.47 0.25129 0.224571 1226 694 532 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_30.v common 46.46 vpr 75.68 MiB 0.13 12644 -1 -1 1 0.25 -1 -1 37348 -1 -1 170 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77492 22 19 2639 1910 1 1554 220 22 22 484 mult_36 auto 38.2 MiB 0.83 9525 45967 10375 31456 4136 75.7 MiB 0.98 0.01 9.332 -761.848 -9.332 9.332 1.27 0.00495473 0.00451634 0.392015 0.355908 40 18870 42 1.26594e+07 5.69886e+06 1.17677e+06 2431.33 38.65 2.72081 2.40169 41974 287914 -1 15646 19 10618 12587 1630390 401109 8.82305 8.82305 -1060.29 -8.82305 0 0 1.53957e+06 3180.94 0.43 0.56 0.18 -1 -1 0.43 0.20758 0.185629 1264 713 551 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_31.v common 14.59 vpr 75.85 MiB 0.10 12888 -1 -1 1 0.39 -1 -1 37480 -1 -1 177 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77668 22 19 2744 1981 1 1626 227 22 22 484 mult_36 auto 38.5 MiB 0.79 10029 50743 11223 34192 5328 75.8 MiB 1.02 0.01 9.332 -743.867 -9.332 9.332 1.29 0.00285428 0.00261476 0.411716 0.373589 44 19607 46 1.26594e+07 5.78677e+06 1.30964e+06 2705.88 6.46 1.62768 1.44317 43422 318546 -1 14760 21 8812 10635 1193110 306240 8.51565 8.51565 -997.056 -8.51565 0 0 1.65337e+06 3416.05 0.47 0.51 0.28 -1 -1 0.47 0.239315 0.214108 1315 745 570 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_32.v common 20.57 vpr 76.41 MiB 0.20 13016 -1 -1 1 0.37 -1 -1 37008 -1 -1 181 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78240 22 19 2818 2038 1 1662 231 22 22 484 mult_36 auto 39.1 MiB 0.84 10896 62535 16168 40587 5780 76.4 MiB 1.32 0.02 9.51844 -833.689 -9.51844 9.51844 1.17 0.00567558 0.0051011 0.507219 0.459742 46 19729 33 1.26594e+07 5.837e+06 1.37878e+06 2848.72 12.02 2.45886 2.17829 43906 328446 -1 15857 23 10062 11624 1282729 313572 8.31125 8.31125 -1223.57 -8.31125 0 0 1.69059e+06 3492.95 0.48 0.55 0.30 -1 -1 0.48 0.256887 0.228971 1353 764 589 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_33.v common 42.72 vpr 76.81 MiB 0.20 13632 -1 -1 1 0.28 -1 -1 37428 -1 -1 189 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78656 22 19 2923 2109 1 1730 240 22 22 484 mult_36 auto 39.7 MiB 0.84 11006 63565 15479 41766 6320 76.8 MiB 1.25 0.01 10.0899 -813.568 -10.0899 10.0899 1.21 0.00518259 0.00469824 0.489613 0.442392 44 22012 50 1.26594e+07 6.33346e+06 1.30964e+06 2705.88 34.19 2.93242 2.58393 43422 318546 -1 16383 23 12263 14060 1788436 435492 9.31331 9.31331 -1098.11 -9.31331 0 0 1.65337e+06 3416.05 0.48 0.67 0.28 -1 -1 0.48 0.271858 0.242511 1404 796 608 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_34.v common 23.80 vpr 77.41 MiB 0.20 13712 -1 -1 1 0.40 -1 -1 37740 -1 -1 194 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79264 22 19 2997 2166 1 1769 245 22 22 484 mult_36 auto 40.1 MiB 1.12 11467 56929 13204 37063 6662 77.4 MiB 1.16 0.01 9.84947 -801.897 -9.84947 9.84947 1.23 0.00550201 0.00500599 0.449134 0.405926 46 23369 48 1.26594e+07 6.39625e+06 1.37878e+06 2848.72 14.79 2.70665 2.3907 43906 328446 -1 16588 23 11553 13716 1515832 373082 9.23591 9.23591 -1123.07 -9.23591 0 0 1.69059e+06 3492.95 0.48 0.73 0.29 -1 -1 0.48 0.297688 0.267246 1442 815 627 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_35.v common 18.97 vpr 78.42 MiB 0.19 14032 -1 -1 1 0.42 -1 -1 37924 -1 -1 200 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80300 22 19 3101 2236 1 1838 251 22 22 484 mult_36 auto 41.0 MiB 1.06 11980 57994 13001 38956 6037 78.4 MiB 1.22 0.02 10.4246 -898.797 -10.4246 10.4246 1.48 0.0061833 0.00566496 0.467701 0.424377 46 22305 40 1.26594e+07 6.4716e+06 1.37878e+06 2848.72 9.73 1.90829 1.69402 43906 328446 -1 17462 19 9824 11939 1348912 334590 9.59651 9.59651 -1262.04 -9.59651 0 0 1.69059e+06 3492.95 0.46 0.53 0.29 -1 -1 0.46 0.230592 0.206289 1492 846 646 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_36.v common 17.38 vpr 78.79 MiB 0.22 14132 -1 -1 1 0.41 -1 -1 37988 -1 -1 204 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80684 22 19 3175 2293 1 1872 255 22 22 484 mult_36 auto 41.3 MiB 1.17 11366 60855 13639 40637 6579 78.8 MiB 1.21 0.02 10.2398 -852.171 -10.2398 10.2398 1.18 0.00553478 0.00500054 0.457669 0.413833 48 20735 33 1.26594e+07 6.52183e+06 1.44011e+06 2975.42 8.52 2.04069 1.81415 44390 338934 -1 16863 23 10639 12310 1484249 366742 9.42731 9.42731 -1124.46 -9.42731 0 0 1.74100e+06 3597.11 0.48 0.58 0.29 -1 -1 0.48 0.268926 0.2395 1530 865 665 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_37.v common 25.75 vpr 79.31 MiB 0.25 14440 -1 -1 1 0.47 -1 -1 37420 -1 -1 211 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81216 22 19 3280 2364 1 1945 263 24 24 576 mult_36 auto 42.3 MiB 1.15 12736 63413 14509 42506 6398 79.3 MiB 1.40 0.02 10.3609 -909.644 -10.3609 10.3609 1.63 0.00777899 0.00697982 0.548709 0.497288 48 22784 34 1.52924e+07 7.00574e+06 1.71014e+06 2969.00 15.49 2.97976 2.63549 52498 402441 -1 18388 22 10953 12996 1615157 387443 9.53551 9.53551 -1204.08 -9.53551 0 0 2.06880e+06 3591.66 0.62 0.65 0.35 -1 -1 0.62 0.284875 0.25441 1581 897 684 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_38.v common 21.35 vpr 79.64 MiB 0.16 14468 -1 -1 1 0.48 -1 -1 37924 -1 -1 216 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81556 22 19 3354 2421 1 1981 268 24 24 576 mult_36 auto 42.8 MiB 1.30 13069 66719 15235 45868 5616 79.6 MiB 1.39 0.02 9.9525 -910.496 -9.9525 9.9525 1.46 0.00636589 0.00580294 0.514272 0.463865 44 26849 47 1.52924e+07 7.06853e+06 1.55518e+06 2699.97 11.22 2.20563 1.95256 51346 378163 -1 19312 24 12866 15131 1925109 470482 9.60091 9.60091 -1238.65 -9.60091 0 0 1.96475e+06 3411.02 0.55 0.70 0.30 -1 -1 0.55 0.295828 0.263378 1619 916 703 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_39.v common 16.77 vpr 80.21 MiB 0.21 14716 -1 -1 1 0.49 -1 -1 38280 -1 -1 223 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82140 22 19 3457 2490 1 2052 275 24 24 576 mult_36 auto 43.2 MiB 1.22 13656 73501 17416 50143 5942 80.2 MiB 1.62 0.02 10.0727 -966.849 -10.0727 10.0727 1.44 0.00654031 0.00595441 0.621855 0.561075 46 23538 32 1.52924e+07 7.15643e+06 1.63708e+06 2842.15 6.70 1.88873 1.67432 51922 389946 -1 18838 23 10601 12759 1435807 370600 8.95151 8.95151 -1160.49 -8.95151 0 0 2.00908e+06 3487.99 0.57 0.69 0.23 -1 -1 0.57 0.331688 0.297995 1668 946 722 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_40.v common 21.71 vpr 80.70 MiB 0.17 14852 -1 -1 1 0.46 -1 -1 38748 -1 -1 228 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82636 22 19 3531 2547 1 2089 280 24 24 576 mult_36 auto 43.6 MiB 1.40 13045 78055 20225 49115 8715 80.7 MiB 1.53 0.02 9.95249 -1011.72 -9.95249 9.95249 1.45 0.0065844 0.00598886 0.59874 0.538194 46 24015 38 1.52924e+07 7.21922e+06 1.63708e+06 2842.15 11.30 2.16095 1.91139 51922 389946 -1 18582 26 11805 14295 1481227 365944 8.90771 8.90771 -1456.6 -8.90771 0 0 2.00908e+06 3487.99 0.59 0.71 0.29 -1 -1 0.59 0.349879 0.311755 1706 965 741 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_41.v common 22.34 vpr 81.34 MiB 0.25 15324 -1 -1 1 0.59 -1 -1 37992 -1 -1 234 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83292 22 19 3634 2616 1 2155 287 24 24 576 mult_36 auto 44.4 MiB 1.34 13626 81643 18980 54154 8509 81.3 MiB 1.76 0.02 10.2807 -1100.54 -10.2807 10.2807 1.64 0.00589193 0.00531161 0.641657 0.582472 48 24099 30 1.52924e+07 7.69057e+06 1.71014e+06 2969.00 11.28 2.30878 2.05025 52498 402441 -1 19745 21 10698 12698 1556800 373550 9.35911 9.35911 -1273.87 -9.35911 0 0 2.06880e+06 3591.66 0.58 0.64 0.34 -1 -1 0.58 0.296748 0.265201 1755 995 760 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_42.v common 26.53 vpr 81.88 MiB 0.19 15376 -1 -1 1 0.51 -1 -1 38272 -1 -1 239 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83848 22 19 3708 2673 1 2193 292 24 24 576 mult_36 auto 44.8 MiB 1.41 14431 72892 16198 51073 5621 81.9 MiB 1.77 0.02 10.1929 -992.819 -10.1929 10.1929 1.57 0.00635968 0.00581533 0.574831 0.514396 48 25902 39 1.52924e+07 7.75336e+06 1.71014e+06 2969.00 15.17 3.18975 2.81988 52498 402441 -1 20831 21 12944 15314 1869342 457103 9.58971 9.58971 -1252.11 -9.58971 0 0 2.06880e+06 3591.66 0.64 0.79 0.37 -1 -1 0.64 0.333755 0.299406 1793 1014 779 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_43.v common 20.91 vpr 82.54 MiB 0.14 15612 -1 -1 1 0.53 -1 -1 38816 -1 -1 245 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84520 22 19 3810 2741 1 2260 298 24 24 576 mult_36 auto 45.3 MiB 1.35 14165 81888 20044 54601 7243 82.5 MiB 1.81 0.03 10.1328 -1049.12 -10.1328 10.1328 1.56 0.00741441 0.00659365 0.662329 0.59364 46 27674 49 1.52924e+07 7.82871e+06 1.63708e+06 2842.15 9.61 2.43495 2.15978 51922 389946 -1 20484 24 13292 15374 1707658 435292 9.19011 9.19011 -1651.37 -9.19011 0 0 2.00908e+06 3487.99 0.58 0.79 0.29 -1 -1 0.58 0.365312 0.326451 1841 1043 798 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_44.v common 71.92 vpr 82.65 MiB 0.22 15704 -1 -1 1 0.56 -1 -1 38420 -1 -1 250 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84636 22 19 3884 2798 1 2296 303 24 24 576 mult_36 auto 45.4 MiB 1.53 14946 80646 18903 52810 8933 82.7 MiB 1.73 0.02 9.99493 -1033.19 -9.99493 9.99493 1.55 0.00737401 0.00661175 0.630908 0.568308 48 27278 40 1.52924e+07 7.8915e+06 1.71014e+06 2969.00 60.53 4.224 3.7203 52498 402441 -1 22061 23 14612 17263 2051107 497730 9.31511 9.31511 -1517.68 -9.31511 0 0 2.06880e+06 3591.66 0.60 0.83 0.34 -1 -1 0.60 0.353811 0.314744 1879 1062 817 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_45.v common 19.49 vpr 83.04 MiB 0.26 15944 -1 -1 1 0.60 -1 -1 40472 -1 -1 257 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85032 22 19 3989 2869 1 2368 311 24 24 576 mult_36 auto 46.0 MiB 1.40 16964 75074 16987 50636 7451 83.0 MiB 1.59 0.02 10.3131 -1048.02 -10.3131 10.3131 1.52 0.00784933 0.00716328 0.580129 0.52297 48 28860 31 1.52924e+07 8.37541e+06 1.71014e+06 2969.00 8.09 2.10725 1.8649 52498 402441 -1 23894 23 12966 15711 2070445 493094 9.73871 9.73871 -1579.52 -9.73871 0 0 2.06880e+06 3591.66 0.58 0.76 0.37 -1 -1 0.58 0.33325 0.296675 1930 1094 836 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_46.v common 22.02 vpr 83.42 MiB 0.27 16056 -1 -1 1 0.58 -1 -1 40536 -1 -1 261 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85424 22 19 4063 2926 1 2404 315 24 24 576 mult_36 auto 46.3 MiB 1.67 15692 88137 21521 56647 9969 83.4 MiB 1.75 0.02 9.95249 -1107.23 -9.95249 9.95249 1.49 0.00859715 0.00777619 0.658305 0.593526 54 26619 49 1.52924e+07 8.42564e+06 1.87785e+06 3260.16 10.01 2.74176 2.43271 54798 452027 -1 21115 25 12793 15079 1570956 397175 9.08891 9.08891 -1436.28 -9.08891 0 0 2.31032e+06 4010.97 0.65 0.77 0.42 -1 -1 0.65 0.388572 0.345487 1968 1113 855 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_47.v common 24.10 vpr 84.30 MiB 0.26 16620 -1 -1 1 0.44 -1 -1 40800 -1 -1 268 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86324 22 19 4167 2996 1 2473 322 24 24 576 mult_36 auto 47.3 MiB 1.15 15910 88562 20878 57457 10227 84.3 MiB 1.83 0.02 10.0899 -1142.01 -10.0899 10.0899 1.50 0.00778185 0.0070779 0.652391 0.587128 50 27180 34 1.52924e+07 8.51354e+06 1.78400e+06 3097.22 12.92 2.60385 2.30211 53074 415989 -1 22519 23 12297 14952 1649666 414573 9.24691 9.24691 -1519.04 -9.24691 0 0 2.13454e+06 3705.80 0.61 0.78 0.35 -1 -1 0.61 0.379489 0.338212 2018 1144 874 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_48.v common 19.62 vpr 84.32 MiB 0.24 16492 -1 -1 1 0.62 -1 -1 40916 -1 -1 273 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86348 22 19 4241 3053 1 2509 327 24 24 576 mult_36 auto 47.4 MiB 1.38 16487 93785 22388 64524 6873 84.3 MiB 1.86 0.02 10.5535 -1144.3 -10.5535 10.5535 1.46 0.00701064 0.0063265 0.618906 0.556033 48 28818 32 1.52924e+07 8.57633e+06 1.71014e+06 2969.00 8.35 2.29073 2.04076 52498 402441 -1 24059 23 12093 14580 1751508 427964 10.3207 10.3207 -1752.01 -10.3207 0 0 2.06880e+06 3591.66 0.70 0.70 0.33 -1 -1 0.70 0.318799 0.289487 2056 1163 893 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_49.v common 23.58 vpr 84.68 MiB 0.33 16980 -1 -1 1 0.61 -1 -1 41100 -1 -1 279 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86712 22 19 4346 3124 1 2580 334 24 24 576 mult_36 auto 47.9 MiB 1.53 16418 98764 23499 65407 9858 84.7 MiB 2.11 0.02 10.0121 -1103.23 -10.0121 10.0121 1.51 0.00801433 0.0072699 0.739201 0.661626 48 28351 48 1.52924e+07 9.04768e+06 1.71014e+06 2969.00 11.34 2.93392 2.59947 52498 402441 -1 24128 20 15119 18240 2121135 532072 9.54451 9.54451 -1898.86 -9.54451 0 0 2.06880e+06 3591.66 0.62 0.85 0.34 -1 -1 0.62 0.358724 0.321338 2107 1195 912 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_50.v common 21.90 vpr 85.40 MiB 0.17 17136 -1 -1 1 0.64 -1 -1 40976 -1 -1 284 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87452 22 19 4420 3181 1 2615 339 24 24 576 mult_36 auto 48.5 MiB 1.60 17962 88914 19616 60588 8710 85.4 MiB 1.92 0.03 10.2463 -1217.9 -10.2463 10.2463 1.43 0.00802952 0.00727944 0.649197 0.583734 52 30590 30 1.52924e+07 9.11047e+06 1.82869e+06 3174.81 9.79 2.66483 2.36444 54222 439550 -1 24692 22 14714 17386 2038106 506700 9.42751 9.42751 -1884.23 -9.42751 0 0 2.25030e+06 3906.77 0.74 0.91 0.41 -1 -1 0.74 0.403763 0.368433 2145 1214 931 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_51.v common 30.19 vpr 85.87 MiB 0.20 17368 -1 -1 1 0.65 -1 -1 41140 -1 -1 292 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87932 22 19 4524 3251 1 2687 347 24 24 576 mult_36 auto 48.9 MiB 1.71 17584 90479 20112 60343 10024 85.9 MiB 1.88 0.03 10.1323 -1257.51 -10.1323 10.1323 1.41 0.00828558 0.00749981 0.650201 0.58338 54 30742 41 1.52924e+07 9.21094e+06 1.87785e+06 3260.16 17.90 3.45437 3.05274 54798 452027 -1 24323 24 12811 15116 1754918 426147 9.61671 9.61671 -2019.82 -9.61671 0 0 2.31032e+06 4010.97 0.76 0.86 0.38 -1 -1 0.76 0.434004 0.388012 2195 1245 950 19 0 0 +k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_52.v common 24.08 vpr 86.49 MiB 0.29 17524 -1 -1 1 0.59 -1 -1 39328 -1 -1 296 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88564 22 19 4598 3308 1 2721 351 24 24 576 mult_36 auto 49.6 MiB 1.38 17233 94363 21503 64446 8414 86.5 MiB 1.99 0.03 10.4246 -1286.45 -10.4246 10.4246 1.46 0.00842922 0.00765206 0.674663 0.606068 50 29595 50 1.52924e+07 9.26117e+06 1.78400e+06 3097.22 11.90 3.04331 2.69276 53074 415989 -1 24350 23 14468 16947 2000437 496448 9.61971 9.61971 -1721.97 -9.61971 0 0 2.13454e+06 3705.80 0.89 0.81 0.41 -1 -1 0.89 0.393047 0.353185 2233 1264 969 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_14.v common 13.99 vpr 71.68 MiB 0.06 10360 -1 -1 1 0.26 -1 -1 35432 -1 -1 123 22 0 4 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73404 22 19 1974 1653 1 1039 168 16 16 256 mult_36 auto 34.2 MiB 1.71 6084 26559 5485 17904 3170 71.7 MiB 0.45 0.01 4.07137 -1184.46 -4.07137 4.07137 0.56 0.00386419 0.0035194 0.214571 0.193058 40 11804 49 6.34292e+06 3.14339e+06 583096. 2277.72 8.15 1.68742 1.4728 21572 140635 -1 9984 21 4134 4929 581328 151853 4.48156 4.48156 -1220.21 -4.48156 0 0 763333. 2981.77 0.21 0.33 0.14 -1 -1 0.21 0.188958 0.168721 953 708 247 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_15.v common 13.35 vpr 72.60 MiB 0.08 10804 -1 -1 1 0.24 -1 -1 36924 -1 -1 132 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74340 22 19 2144 1789 1 1138 178 16 16 256 clb mult_36 auto 35.2 MiB 1.79 6845 29178 5734 19784 3660 72.6 MiB 0.50 0.01 4.13443 -1312.79 -4.13443 4.13443 0.56 0.00395181 0.00358259 0.243092 0.21955 44 12842 28 6.34292e+06 3.6535e+06 649498. 2537.10 7.35 1.51796 1.33002 22336 155612 -1 9870 14 3634 4364 464801 122306 4.24116 4.24116 -1341.45 -4.24116 0 0 820238. 3204.05 0.22 0.25 0.12 -1 -1 0.22 0.143265 0.129136 1033 769 266 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_16.v common 8.94 vpr 72.88 MiB 0.12 10984 -1 -1 1 0.25 -1 -1 36852 -1 -1 137 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74632 22 19 2218 1846 1 1177 183 16 16 256 clb mult_36 auto 35.6 MiB 2.08 7131 32361 6636 21461 4264 72.9 MiB 0.55 0.01 4.24116 -1381.33 -4.24116 4.24116 0.58 0.00386192 0.00347919 0.254067 0.228151 46 12387 24 6.34292e+06 3.71689e+06 684529. 2673.94 2.56 0.873502 0.767796 22592 160355 -1 9850 14 3563 4257 399452 105344 4.24116 4.24116 -1382.06 -4.24116 0 0 838722. 3276.26 0.21 0.23 0.15 -1 -1 0.21 0.133813 0.119563 1071 788 285 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_17.v common 10.12 vpr 75.05 MiB 0.10 11836 -1 -1 1 0.30 -1 -1 36744 -1 -1 157 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76848 22 19 2536 2130 1 1298 203 17 17 289 clb auto 37.7 MiB 2.30 7990 29407 5457 21306 2644 75.0 MiB 0.50 0.01 4.48156 -1537.29 -4.48156 4.48156 0.64 0.00430613 0.00385143 0.230555 0.20626 46 15105 26 6.65987e+06 3.97045e+06 782063. 2706.10 3.11 1.02124 0.89176 25426 183746 -1 11140 13 4183 5041 445642 117624 4.36136 4.36136 -1531.19 -4.36136 0 0 958460. 3316.47 0.25 0.31 0.16 -1 -1 0.25 0.181249 0.165655 1226 924 304 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_18.v common 10.00 vpr 75.36 MiB 0.12 11868 -1 -1 1 0.31 -1 -1 37216 -1 -1 163 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77172 22 19 2610 2187 1 1336 209 17 17 289 clb auto 37.9 MiB 2.21 8155 36789 7305 26033 3451 75.4 MiB 0.50 0.01 4.05473 -1593.4 -4.05473 4.05473 0.64 0.00204187 0.00181336 0.205703 0.183114 48 15307 35 6.65987e+06 4.04651e+06 816265. 2824.45 3.10 0.995261 0.867823 25714 189529 -1 12228 16 4558 5382 598643 148707 4.24116 4.24116 -1683.87 -4.24116 0 0 986792. 3414.50 0.26 0.30 0.17 -1 -1 0.26 0.169811 0.15093 1264 943 323 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_19.v common 19.99 vpr 76.09 MiB 0.10 12172 -1 -1 1 0.34 -1 -1 36796 -1 -1 172 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77916 22 19 2778 2321 1 1434 219 18 18 324 clb auto 39.2 MiB 2.49 8731 36464 7395 26087 2982 76.1 MiB 0.61 0.01 4.24116 -1720.94 -4.24116 4.24116 0.73 0.00509493 0.00450297 0.279768 0.250014 44 16662 42 7.79418e+06 4.55662e+06 850563. 2625.19 12.37 2.27729 1.98592 28700 205432 -1 12706 14 4544 5587 531680 141034 4.24116 4.24116 -1760.33 -4.24116 0 0 1.07356e+06 3313.45 0.30 0.31 0.18 -1 -1 0.30 0.173921 0.155689 1342 1002 342 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_20.v common 12.38 vpr 76.71 MiB 0.17 12368 -1 -1 1 0.34 -1 -1 36952 -1 -1 176 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78552 22 19 2852 2378 1 1479 223 18 18 324 clb auto 39.8 MiB 2.45 9149 36727 6960 26660 3107 76.7 MiB 0.64 0.01 4.17493 -1790.89 -4.17493 4.17493 0.77 0.00476988 0.00427466 0.281251 0.25121 46 15963 21 7.79418e+06 4.60733e+06 895831. 2764.91 4.53 1.36531 1.18775 29024 211752 -1 13130 14 4664 5572 585274 152661 4.36136 4.36136 -1839.76 -4.36136 0 0 1.09776e+06 3388.15 0.29 0.31 0.18 -1 -1 0.29 0.16464 0.147225 1380 1021 361 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_21.v common 13.46 vpr 77.67 MiB 0.13 12896 -1 -1 1 0.35 -1 -1 38016 -1 -1 188 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79536 22 19 3057 2549 1 1586 235 18 18 324 clb auto 40.8 MiB 2.76 9903 45123 9529 32094 3500 77.7 MiB 0.76 0.01 4.25463 -1905.93 -4.25463 4.25463 0.75 0.00498986 0.0044505 0.338263 0.301731 46 17948 30 7.79418e+06 4.75946e+06 895831. 2764.91 5.01 1.49883 1.31763 29024 211752 -1 13855 14 5092 6144 628537 161536 4.36136 4.36136 -2028.43 -4.36136 0 0 1.09776e+06 3388.15 0.29 0.32 0.17 -1 -1 0.29 0.179308 0.160203 1477 1099 380 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_22.v common 18.07 vpr 78.16 MiB 0.13 12828 -1 -1 1 0.35 -1 -1 37944 -1 -1 194 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80032 22 19 3131 2606 1 1626 241 19 19 361 clb auto 41.4 MiB 2.84 10286 47428 9839 33939 3650 78.2 MiB 0.84 0.01 4.24116 -1964.7 -4.24116 4.24116 0.84 0.00515519 0.00460612 0.374874 0.334519 48 18602 34 8.16184e+06 4.83553e+06 1.05176e+06 2913.46 9.15 2.16239 1.89086 32602 246183 -1 15049 16 5468 6655 767404 181797 4.24116 4.24116 -1987.18 -4.24116 0 0 1.27108e+06 3521.00 0.34 0.37 0.21 -1 -1 0.34 0.197316 0.175297 1515 1118 399 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_23.v common 14.48 vpr 79.21 MiB 0.16 13236 -1 -1 1 0.36 -1 -1 37880 -1 -1 204 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81112 22 19 3301 2742 1 1720 252 19 19 361 clb auto 42.1 MiB 2.94 11043 52722 11417 37077 4228 79.2 MiB 0.96 0.01 4.12096 -2024.58 -4.12096 4.12096 0.84 0.00592097 0.00532352 0.426861 0.380863 50 18333 39 8.16184e+06 5.35831e+06 1.09718e+06 3039.29 5.13 1.91612 1.67794 32962 254619 -1 15633 15 5503 6537 715495 175652 4.36136 4.36136 -2095.67 -4.36136 0 0 1.31179e+06 3633.76 0.43 0.44 0.21 -1 -1 0.43 0.258958 0.236943 1595 1179 418 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_24.v common 17.69 vpr 79.93 MiB 0.18 13436 -1 -1 1 0.38 -1 -1 38112 -1 -1 209 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81848 22 19 3375 2799 1 1765 257 19 19 361 clb auto 42.7 MiB 3.14 10750 45953 8990 33234 3729 79.9 MiB 0.78 0.01 4.17493 -2082.77 -4.17493 4.17493 0.83 0.00572618 0.00512497 0.333878 0.297631 50 19942 42 8.16184e+06 5.4217e+06 1.09718e+06 3039.29 8.20 1.98948 1.74691 32962 254619 -1 15531 18 5893 7110 826640 196272 4.48156 4.48156 -2097.91 -4.48156 0 0 1.31179e+06 3633.76 0.35 0.41 0.23 -1 -1 0.35 0.232604 0.206131 1633 1198 437 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_25.v common 19.32 vpr 80.93 MiB 0.09 13904 -1 -1 1 0.41 -1 -1 38040 -1 -1 223 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82876 22 19 3615 3005 1 1878 271 20 20 400 clb auto 43.8 MiB 3.29 11843 54583 11378 38149 5056 80.9 MiB 0.91 0.01 4.18011 -2275.57 -4.18011 4.18011 0.99 0.0059378 0.00528452 0.392642 0.348871 50 19676 18 1.10667e+07 5.59919e+06 1.21483e+06 3037.08 9.37 2.3373 2.05364 36870 282114 -1 16952 16 6065 7149 736369 184136 4.36136 4.36136 -2393.56 -4.36136 0 0 1.45344e+06 3633.59 0.39 0.38 0.24 -1 -1 0.39 0.221589 0.196726 1747 1293 456 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_26.v common 15.55 vpr 81.50 MiB 0.10 14064 -1 -1 1 0.42 -1 -1 38312 -1 -1 228 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83456 22 19 3689 3062 1 1918 276 20 20 400 clb auto 44.8 MiB 3.39 12415 59544 13159 41333 5052 81.5 MiB 1.03 0.02 4.13813 -2248.17 -4.13813 4.13813 0.94 0.00636596 0.00571336 0.441584 0.393961 48 22522 44 1.10667e+07 5.66258e+06 1.16517e+06 2912.92 5.28 1.89176 1.66089 36470 272802 -1 17889 14 6502 7743 857384 212074 4.36136 4.36136 -2389.08 -4.36136 0 0 1.40818e+06 3520.44 0.42 0.40 0.25 -1 -1 0.42 0.215312 0.194032 1785 1312 475 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_27.v common 22.10 vpr 82.62 MiB 0.14 14320 -1 -1 1 0.43 -1 -1 38328 -1 -1 240 22 0 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84604 22 19 3871 3210 1 2023 289 21 21 441 clb auto 45.5 MiB 3.59 13091 69049 15421 48905 4723 82.6 MiB 1.17 0.02 4.25833 -2439.76 -4.25833 4.25833 1.04 0.00662048 0.00586304 0.484025 0.429075 50 22955 23 1.14723e+07 6.21072e+06 1.34972e+06 3060.59 10.90 2.78183 2.45578 40486 313801 -1 19085 17 6693 8122 872684 214863 4.36136 4.36136 -2497.47 -4.36136 0 0 1.61476e+06 3661.58 0.44 0.45 0.25 -1 -1 0.44 0.256917 0.228658 1877 1385 494 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_28.v common 18.55 vpr 83.02 MiB 0.18 14580 -1 -1 1 0.52 -1 -1 38388 -1 -1 245 22 0 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85016 22 19 3945 3267 1 2070 294 21 21 441 clb auto 46.1 MiB 3.68 13787 70638 15611 48908 6119 83.0 MiB 1.24 0.02 4.18011 -2457.52 -4.18011 4.18011 1.06 0.0074756 0.006569 0.530694 0.471761 50 23792 26 1.14723e+07 6.27411e+06 1.34972e+06 3060.59 7.01 2.15928 1.89132 40486 313801 -1 19707 15 6833 8556 909227 220592 4.36136 4.36136 -2566.1 -4.36136 0 0 1.61476e+06 3661.58 0.45 0.42 0.25 -1 -1 0.45 0.231815 0.206025 1915 1404 513 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_29.v common 31.29 vpr 84.27 MiB 0.19 15128 -1 -1 1 0.54 -1 -1 39544 -1 -1 258 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86292 22 19 4159 3447 1 2186 308 22 22 484 mult_36 auto 47.4 MiB 3.84 14540 75116 16849 52375 5892 84.3 MiB 1.25 0.02 4.48156 -2570.01 -4.48156 4.48156 1.17 0.00688567 0.00616168 0.52709 0.468722 50 23434 22 1.26954e+07 6.83492e+06 1.50222e+06 3103.76 19.22 3.03941 2.64267 44874 350400 -1 20303 14 6789 8219 816835 204141 4.48156 4.48156 -2692.11 -4.48156 0 0 1.79645e+06 3711.66 0.51 0.43 0.30 -1 -1 0.51 0.249086 0.222942 2021 1491 532 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_30.v common 19.90 vpr 84.84 MiB 0.20 15240 -1 -1 1 0.52 -1 -1 40812 -1 -1 263 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86880 22 19 4233 3504 1 2225 313 22 22 484 mult_36 auto 48.0 MiB 3.96 14345 72529 15646 51039 5844 84.8 MiB 1.22 0.02 4.29513 -2641.58 -4.29513 4.29513 1.15 0.00705696 0.00626798 0.507139 0.45077 48 25057 33 1.26954e+07 6.89831e+06 1.44011e+06 2975.42 7.55 2.3246 2.02616 44390 338934 -1 20617 16 7249 9020 909338 222155 4.48156 4.48156 -2910.31 -4.48156 0 0 1.74100e+06 3597.11 0.56 0.49 0.29 -1 -1 0.56 0.277592 0.247925 2059 1510 551 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_31.v common 26.91 vpr 85.89 MiB 0.17 15576 -1 -1 1 0.57 -1 -1 40948 -1 -1 274 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87948 22 19 4410 3647 1 2335 324 22 22 484 clb mult_36 auto 49.0 MiB 4.10 14627 81500 18211 56732 6557 85.9 MiB 1.36 0.02 4.48156 -2763.28 -4.48156 4.48156 1.17 0.00738142 0.0064759 0.546542 0.485598 54 24724 32 1.26954e+07 7.03777e+06 1.58090e+06 3266.32 13.87 3.49276 3.07371 46322 380746 -1 20211 16 6937 8304 881095 215583 4.48156 4.48156 -2824.86 -4.48156 0 0 1.94386e+06 4016.24 0.75 0.50 0.38 -1 -1 0.75 0.291696 0.260883 2146 1578 570 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_32.v common 18.88 vpr 86.39 MiB 0.21 15748 -1 -1 1 0.57 -1 -1 40676 -1 -1 278 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88460 22 19 4484 3704 1 2374 328 22 22 484 clb mult_36 auto 49.4 MiB 4.21 15540 78298 18108 54278 5912 86.4 MiB 1.37 0.02 4.24116 -2782.8 -4.24116 4.24116 1.18 0.00850778 0.00767123 0.580402 0.51799 48 26921 28 1.26954e+07 7.08848e+06 1.44011e+06 2975.42 6.06 2.09126 1.83654 44390 338934 -1 22311 13 7902 9623 980518 241405 4.48156 4.48156 -2896.93 -4.48156 0 0 1.74100e+06 3597.11 0.50 0.47 0.31 -1 -1 0.50 0.244366 0.218501 2184 1597 589 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_33.v common 20.43 vpr 87.84 MiB 0.18 16488 -1 -1 1 0.61 -1 -1 41520 -1 -1 302 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89948 22 19 4843 4029 1 2501 353 23 23 529 clb auto 51.3 MiB 4.44 17435 87643 19607 61599 6437 87.8 MiB 1.47 0.01 4.24116 -3073.8 -4.24116 4.24116 1.40 0.00437909 0.00392859 0.602393 0.533154 50 29482 39 1.31518e+07 7.78876e+06 1.65241e+06 3123.66 6.51 2.45162 2.13701 48882 385791 -1 24265 14 8069 9691 993548 240146 4.36136 4.36136 -3116.31 -4.36136 0 0 1.97533e+06 3734.07 0.60 0.53 0.37 -1 -1 0.60 0.293733 0.261277 2362 1756 608 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_34.v common 23.61 vpr 88.46 MiB 0.12 16748 -1 -1 1 0.62 -1 -1 41616 -1 -1 308 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 90580 22 19 4917 4086 1 2542 359 23 23 529 clb auto 51.8 MiB 4.42 16896 87059 18935 61744 6380 88.5 MiB 1.56 0.02 4.48156 -3114.12 -4.48156 4.48156 1.32 0.00762155 0.00676444 0.636308 0.56748 50 30043 27 1.31518e+07 7.86482e+06 1.65241e+06 3123.66 9.44 2.60169 2.26752 48882 385791 -1 24344 14 8758 10802 1224972 286268 4.60176 4.60176 -3387.39 -4.60176 0 0 1.97533e+06 3734.07 0.56 0.56 0.37 -1 -1 0.56 0.286044 0.255012 2401 1775 627 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_35.v common 42.49 vpr 89.30 MiB 0.25 17244 -1 -1 1 0.65 -1 -1 41768 -1 -1 319 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 91440 22 19 5093 4228 1 2643 370 23 23 529 clb auto 52.6 MiB 4.59 18051 89279 20131 63728 5420 89.3 MiB 1.53 0.03 4.37483 -3218.94 -4.37483 4.37483 1.28 0.0115723 0.0106977 0.611601 0.540946 50 30668 35 1.31518e+07 8.00428e+06 1.65241e+06 3123.66 28.07 3.81148 3.33209 48882 385791 -1 25188 17 8575 10282 1105084 272137 4.48156 4.48156 -3354.12 -4.48156 0 0 1.97533e+06 3734.07 0.57 0.64 0.31 -1 -1 0.57 0.36502 0.32385 2487 1842 646 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_36.v common 42.13 vpr 89.86 MiB 0.24 17224 -1 -1 1 0.58 -1 -1 41708 -1 -1 323 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 92020 22 19 5167 4285 1 2691 374 23 23 529 clb auto 53.3 MiB 4.79 17780 96011 21980 67780 6251 89.9 MiB 1.63 0.02 4.48156 -3272.89 -4.48156 4.48156 1.27 0.00902501 0.00810883 0.636019 0.564686 50 31361 46 1.31518e+07 8.05499e+06 1.65241e+06 3123.66 27.54 4.02566 3.48344 48882 385791 -1 25174 17 9093 11307 1257811 296331 4.36136 4.36136 -3536.95 -4.36136 0 0 1.97533e+06 3734.07 0.65 0.70 0.32 -1 -1 0.65 0.394101 0.352154 2525 1861 665 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_37.v common 22.69 vpr 91.00 MiB 0.28 17624 -1 -1 1 0.67 -1 -1 40876 -1 -1 336 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 93188 22 19 5380 4464 1 2808 388 24 24 576 mult_36 auto 54.4 MiB 4.95 18000 106438 25977 73150 7311 91.0 MiB 1.93 0.02 4.36136 -3470.71 -4.36136 4.36136 1.62 0.00921082 0.00823912 0.767144 0.678016 48 30066 22 1.53347e+07 8.61581e+06 1.71014e+06 2969.00 6.75 2.50437 2.1985 52498 402441 -1 25768 15 8689 10479 1086200 257350 4.60176 4.60176 -3539.87 -4.60176 0 0 2.06880e+06 3591.66 0.59 0.57 0.34 -1 -1 0.59 0.325227 0.290089 2630 1947 684 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_38.v common 29.23 vpr 91.32 MiB 0.27 17876 -1 -1 1 0.76 -1 -1 42228 -1 -1 342 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 93512 22 19 5454 4521 1 2849 394 24 24 576 clb mult_36 auto 55.5 MiB 4.99 18144 115834 28131 77060 10643 91.3 MiB 1.97 0.02 4.24116 -3379.88 -4.24116 4.24116 1.45 0.00923439 0.00823115 0.799143 0.708981 50 29652 34 1.53347e+07 8.69188e+06 1.78400e+06 3097.22 13.48 3.83727 3.35876 53074 415989 -1 25288 17 8636 10670 1032084 260041 4.36136 4.36136 -3563.7 -4.36136 0 0 2.13454e+06 3705.80 0.60 0.62 0.34 -1 -1 0.60 0.370192 0.325926 2668 1966 703 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_39.v common 23.74 vpr 92.36 MiB 0.22 18152 -1 -1 1 0.66 -1 -1 40208 -1 -1 352 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94576 22 19 5629 4662 1 2951 404 24 24 576 clb mult_36 auto 56.4 MiB 5.14 21626 118272 28657 79200 10415 92.4 MiB 2.06 0.02 4.48156 -3617.12 -4.48156 4.48156 1.45 0.0096086 0.00860047 0.824292 0.731809 52 37764 38 1.53347e+07 8.81866e+06 1.82869e+06 3174.81 7.59 2.73664 2.40506 54222 439550 -1 29338 14 9216 11739 1241818 290722 4.72196 4.72196 -3919.7 -4.72196 0 0 2.25030e+06 3906.77 0.67 0.65 0.37 -1 -1 0.67 0.353944 0.318368 2753 2032 722 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_40.v common 26.05 vpr 92.76 MiB 0.19 18376 -1 -1 1 0.67 -1 -1 42312 -1 -1 357 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94988 22 19 5703 4719 1 2994 409 25 25 625 clb auto 57.0 MiB 5.29 20955 115701 27338 79764 8599 92.8 MiB 1.92 0.02 4.30038 -3680.46 -4.30038 4.30038 1.49 0.00891788 0.00790718 0.732142 0.646044 52 36068 32 1.58291e+07 8.88205e+06 1.99531e+06 3192.49 9.71 2.88506 2.51628 58656 480125 -1 28247 15 9057 11231 1191506 271016 4.48156 4.48156 -3899.12 -4.48156 0 0 2.45448e+06 3927.17 0.73 0.61 0.38 -1 -1 0.73 0.343601 0.306286 2791 2051 741 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_41.v common 35.27 vpr 101.03 MiB 0.26 18820 -1 -1 1 0.88 -1 -1 41464 -1 -1 373 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 103456 22 19 5950 4932 1 3111 426 25 25 625 clb auto 58.4 MiB 5.35 22868 125382 30342 84914 10126 94.5 MiB 2.17 0.03 4.36136 -3900.3 -4.36136 4.36136 1.74 0.010111 0.00896462 0.855855 0.758941 58 35761 44 1.58291e+07 9.48089e+06 2.14341e+06 3429.45 17.71 4.20562 3.67432 61152 534357 -1 30542 13 9396 11438 1360367 304092 4.36136 4.36136 -4147.24 -4.36136 0 0 2.68463e+06 4295.40 0.82 0.64 0.38 -1 -1 0.82 0.334472 0.299137 2912 2153 760 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_42.v common 28.04 vpr 94.77 MiB 0.19 18916 -1 -1 1 0.81 -1 -1 42788 -1 -1 376 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 97040 22 19 6024 4989 1 3151 429 25 25 625 clb auto 58.8 MiB 5.61 22338 129789 31817 87521 10451 94.8 MiB 2.26 0.02 4.48156 -3879.56 -4.48156 4.48156 1.62 0.0100564 0.00897238 0.888357 0.786949 52 37600 39 1.58291e+07 9.51893e+06 1.99531e+06 3192.49 10.69 3.58221 3.12509 58656 480125 -1 30047 14 9557 11787 1160075 277147 4.60176 4.60176 -3969.48 -4.60176 0 0 2.45448e+06 3927.17 0.72 0.63 0.28 -1 -1 0.72 0.364161 0.324891 2950 2172 779 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_43.v common 52.56 vpr 95.76 MiB 0.17 19248 -1 -1 1 0.84 -1 -1 43268 -1 -1 388 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 98060 22 19 6198 5129 1 3252 441 25 25 625 clb auto 59.7 MiB 5.69 22292 124613 28130 84188 12295 95.8 MiB 2.25 0.03 4.48156 -3906.86 -4.48156 4.48156 1.57 0.0119826 0.0108248 0.915972 0.811748 52 39721 49 1.58291e+07 9.67106e+06 1.99531e+06 3192.49 35.29 5.54653 4.84612 58656 480125 -1 30201 14 9788 12101 1217348 300045 4.48156 4.48156 -4076.88 -4.48156 0 0 2.45448e+06 3927.17 0.72 0.64 0.45 -1 -1 0.72 0.362311 0.324278 3034 2237 798 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_44.v common 38.21 vpr 104.12 MiB 0.23 19452 -1 -1 1 0.85 -1 -1 43464 -1 -1 393 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 106616 22 19 6272 5186 1 3297 446 26 26 676 clb auto 60.2 MiB 5.83 21355 129874 31660 89304 8910 96.5 MiB 2.36 0.03 4.29513 -3951.34 -4.29513 4.29513 1.81 0.0122421 0.0106007 0.908054 0.794565 52 38819 39 1.91809e+07 9.73445e+06 2.20423e+06 3260.69 19.62 4.72492 4.12636 65116 533202 -1 29530 15 9717 12154 1180163 283797 4.60176 4.60176 -4317.78 -4.60176 0 0 2.70930e+06 4007.84 0.83 0.68 0.45 -1 -1 0.83 0.396535 0.354423 3072 2256 817 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_45.v common 54.27 vpr 97.45 MiB 0.29 19848 -1 -1 1 0.86 -1 -1 43752 -1 -1 406 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 99784 22 19 6485 5365 1 3415 460 26 26 676 clb auto 61.4 MiB 5.72 22624 140685 34814 96882 8989 97.4 MiB 2.38 0.03 4.48156 -4103.24 -4.48156 4.48156 1.75 0.0108887 0.00973389 0.910155 0.806291 50 36300 23 1.91809e+07 1.02953e+07 2.15046e+06 3181.16 35.78 4.8435 4.21885 63768 504694 -1 31167 13 10359 13165 1307358 324247 4.60176 4.60176 -4375.92 -4.60176 0 0 2.57128e+06 3803.68 0.81 0.74 0.42 -1 -1 0.81 0.405213 0.364765 3177 2342 836 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_46.v common 32.21 vpr 97.84 MiB 0.19 20024 -1 -1 1 0.91 -1 -1 43916 -1 -1 411 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 100184 22 19 6559 5422 1 3449 465 26 26 676 clb auto 61.9 MiB 6.60 25506 149865 38664 101092 10109 97.8 MiB 2.67 0.03 4.48156 -4212.37 -4.48156 4.48156 1.84 0.01155 0.0100428 0.99278 0.873518 54 41203 26 1.91809e+07 1.03587e+07 2.26288e+06 3347.46 12.00 3.68277 3.22084 65792 548382 -1 34168 15 10921 13370 1528099 357175 4.60176 4.60176 -4476.26 -4.60176 0 0 2.78165e+06 4114.86 0.79 0.72 0.45 -1 -1 0.79 0.406959 0.362956 3215 2361 855 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_47.v common 31.14 vpr 99.51 MiB 0.29 20428 -1 -1 1 0.95 -1 -1 44560 -1 -1 421 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 101896 22 19 6735 5564 1 3561 475 26 26 676 clb auto 63.1 MiB 6.24 25310 154191 38459 104957 10775 99.0 MiB 2.64 0.03 4.42058 -4395.65 -4.42058 4.42058 1.77 0.0114443 0.0102196 0.993177 0.874618 54 40333 20 1.91809e+07 1.04854e+07 2.26288e+06 3347.46 11.75 3.82 3.32185 65792 548382 -1 34143 14 10999 13415 1399252 324545 4.48156 4.48156 -4534.97 -4.48156 0 0 2.78165e+06 4114.86 0.84 0.73 0.44 -1 -1 0.84 0.402783 0.361236 3301 2428 874 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_48.v common 31.29 vpr 99.37 MiB 0.17 20476 -1 -1 1 1.03 -1 -1 44148 -1 -1 427 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 101756 22 19 6809 5621 1 3598 481 26 26 676 clb auto 63.5 MiB 6.29 25005 160536 40351 110386 9799 99.4 MiB 2.77 0.03 4.48156 -4491.6 -4.48156 4.48156 1.74 0.0111671 0.00995686 1.02469 0.906026 56 38290 31 1.91809e+07 1.05615e+07 2.31971e+06 3431.53 11.86 3.84741 3.37679 66468 563034 -1 34042 15 10589 12939 1484526 349460 4.60176 4.60176 -4789.55 -4.60176 0 0 2.84390e+06 4206.95 0.80 0.72 0.46 -1 -1 0.80 0.40184 0.356501 3339 2447 893 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_49.v common 31.00 vpr 102.99 MiB 0.31 21084 -1 -1 1 0.94 -1 -1 44412 -1 -1 443 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 105464 22 19 7094 5872 1 3718 498 27 27 729 clb auto 65.0 MiB 6.56 24179 152419 37669 105372 9378 101.0 MiB 2.65 0.03 4.19728 -4586.35 -4.19728 4.19728 1.87 0.0111429 0.00990221 0.979898 0.856498 52 42399 36 1.9726e+07 1.11604e+07 2.38665e+06 3273.86 10.51 3.42089 2.98719 69950 577685 -1 33223 16 11342 13977 1432247 338328 4.48156 4.48156 -4941.55 -4.48156 0 0 2.93284e+06 4023.09 0.88 0.90 0.47 -1 -1 0.88 0.524157 0.472249 3480 2569 912 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_50.v common 36.75 vpr 105.16 MiB 0.33 21384 -1 -1 1 1.16 -1 -1 44104 -1 -1 448 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 107684 22 19 7168 5929 1 3755 503 27 27 729 clb auto 65.2 MiB 6.69 28000 166420 40751 114741 10928 101.5 MiB 2.94 0.03 4.48156 -4578.26 -4.48156 4.48156 1.90 0.0129669 0.0115651 1.12572 0.993242 56 43916 39 1.9726e+07 1.12237e+07 2.51142e+06 3445.02 15.40 4.33648 3.78899 71406 610069 -1 38950 16 12222 15384 1884834 440341 4.60176 4.60176 -4998.93 -4.60176 0 0 3.07846e+06 4222.85 0.95 0.92 0.50 -1 -1 0.95 0.483905 0.433524 3518 2588 931 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_51.v common 40.38 vpr 105.87 MiB 0.36 21596 -1 -1 1 1.05 -1 -1 44764 -1 -1 459 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 108412 22 19 7344 6071 1 3863 514 27 27 729 clb auto 66.9 MiB 6.64 28678 169270 42388 115337 11545 102.6 MiB 2.80 0.03 4.41533 -4778.21 -4.41533 4.41533 1.83 0.0117034 0.0103951 1.02012 0.897826 54 46382 43 1.9726e+07 1.13632e+07 2.44988e+06 3360.60 19.23 4.86679 4.23664 70678 594165 -1 38295 15 12029 14450 1626312 380742 4.48156 4.48156 -5141.25 -4.48156 0 0 3.01106e+06 4130.40 1.00 0.82 0.46 -1 -1 1.00 0.446907 0.396647 3604 2655 950 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_pipe_52.v common 37.70 vpr 104.27 MiB 0.36 21756 -1 -1 1 1.12 -1 -1 45316 -1 -1 464 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 106772 22 19 7418 6128 1 3909 519 27 27 729 clb auto 67.1 MiB 6.88 26143 167239 39832 117509 9898 102.7 MiB 2.94 0.03 4.30031 -4799.25 -4.30031 4.30031 1.86 0.0122554 0.0109024 1.03923 0.915693 54 43532 47 1.9726e+07 1.14266e+07 2.44988e+06 3360.60 16.00 4.83717 4.20334 70678 594165 -1 35636 17 11690 14277 1452572 355720 4.36136 4.36136 -5218.21 -4.36136 0 0 3.01106e+06 4130.40 0.94 0.86 0.53 -1 -1 0.94 0.509977 0.45505 3642 2674 969 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_14.v common 11.24 vpr 67.37 MiB 0.06 9432 -1 -1 1 0.12 -1 -1 34808 -1 -1 79 22 0 4 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 68984 22 19 1246 925 1 736 124 16 16 256 mult_36 auto 29.5 MiB 1.24 4241 18355 4196 11625 2534 67.4 MiB 0.38 0.01 8.07311 -393.21 -8.07311 8.07311 0.57 0.00311988 0.00285625 0.168593 0.154108 38 9033 43 6.34292e+06 2.58556e+06 558663. 2182.28 6.60 0.809765 0.716733 21316 135884 -1 6718 20 5024 5685 595728 162068 8.13448 8.13448 -417.392 -8.13448 0 0 744679. 2908.90 0.19 0.24 0.09 -1 -1 0.19 0.106176 0.0947645 589 344 247 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_15.v common 20.61 vpr 68.05 MiB 0.07 9540 -1 -1 1 0.15 -1 -1 35248 -1 -1 84 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69684 22 19 1344 989 1 796 130 16 16 256 mult_36 auto 30.6 MiB 1.51 4753 18225 3749 10940 3536 68.1 MiB 0.34 0.01 8.46137 -399.963 -8.46137 8.46137 0.59 0.00267077 0.00244665 0.164538 0.150832 40 9325 41 6.34292e+06 3.04495e+06 583096. 2277.72 15.54 1.45096 1.27986 21572 140635 -1 7587 24 6351 7155 819730 219125 8.06128 8.06128 -488.017 -8.06128 0 0 763333. 2981.77 0.20 0.33 0.13 -1 -1 0.20 0.137446 0.122756 633 369 266 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_16.v common 10.49 vpr 68.47 MiB 0.10 9628 -1 -1 1 0.17 -1 -1 35048 -1 -1 89 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70116 22 19 1418 1046 1 833 135 16 16 256 mult_36 auto 30.9 MiB 1.59 4903 22971 5326 13381 4264 68.5 MiB 0.42 0.01 8.1423 -435.818 -8.1423 8.1423 0.58 0.00275106 0.00252177 0.197817 0.181108 44 8716 37 6.34292e+06 3.10834e+06 649498. 2537.10 5.33 1.17548 1.03474 22336 155612 -1 7030 22 4906 5497 598759 157899 7.39308 7.39308 -479.139 -7.39308 0 0 820238. 3204.05 0.21 0.25 0.09 -1 -1 0.21 0.124865 0.111257 671 388 285 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_17.v common 8.65 vpr 69.00 MiB 0.08 10204 -1 -1 1 0.19 -1 -1 35396 -1 -1 95 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70660 22 19 1518 1112 1 899 141 16 16 256 mult_36 auto 31.5 MiB 1.46 5556 17709 3644 11642 2423 69.0 MiB 0.35 0.01 8.90161 -437.56 -8.90161 8.90161 0.55 0.00293275 0.00267956 0.158421 0.144964 46 9741 26 6.34292e+06 3.18441e+06 684529. 2673.94 3.47 0.839932 0.745992 22592 160355 -1 7950 22 5670 6223 725059 195443 8.13305 8.13305 -481.209 -8.13305 0 0 838722. 3276.26 0.21 0.30 0.15 -1 -1 0.21 0.14019 0.125408 717 415 304 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_18.v common 13.78 vpr 69.55 MiB 0.07 10252 -1 -1 1 0.15 -1 -1 34892 -1 -1 100 22 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71216 22 19 1592 1169 1 937 146 16 16 256 mult_36 auto 31.9 MiB 1.64 5565 22034 5042 13956 3036 69.5 MiB 0.42 0.01 8.87973 -457.467 -8.87973 8.87973 0.62 0.00310544 0.00284191 0.193774 0.177316 42 11318 39 6.34292e+06 3.2478e+06 613404. 2396.11 8.14 1.38438 1.21964 21828 146600 -1 8699 22 6205 6918 797479 216264 8.34213 8.34213 -594.881 -8.34213 0 0 784202. 3063.29 0.25 0.33 0.12 -1 -1 0.25 0.146706 0.131004 755 434 323 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_19.v common 11.33 vpr 69.94 MiB 0.11 10548 -1 -1 1 0.22 -1 -1 35336 -1 -1 105 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71616 22 19 1688 1231 1 998 152 16 16 256 mult_36 auto 32.5 MiB 1.86 5757 22427 4578 13882 3967 69.9 MiB 0.44 0.01 8.92361 -471.887 -8.92361 8.92361 0.56 0.00324852 0.00295972 0.195619 0.178395 48 9652 27 6.34292e+06 3.70719e+06 714410. 2790.66 5.63 1.35638 1.19582 22848 165380 -1 8651 22 5351 6026 732157 188713 8.18805 8.18805 -546.947 -8.18805 0 0 863353. 3372.47 0.22 0.30 0.10 -1 -1 0.22 0.147667 0.131721 797 457 342 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_20.v common 12.61 vpr 70.42 MiB 0.13 10708 -1 -1 1 0.22 -1 -1 35620 -1 -1 110 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72112 22 19 1762 1288 1 1033 157 16 16 256 mult_36 auto 32.8 MiB 1.88 5909 26383 5594 16039 4750 70.4 MiB 0.51 0.01 8.83537 -533.405 -8.83537 8.83537 0.56 0.00334843 0.00305355 0.229503 0.208935 46 10553 28 6.34292e+06 3.77058e+06 684529. 2673.94 6.59 1.4927 1.31724 22592 160355 -1 8432 21 5501 6184 629963 165433 8.19799 8.19799 -535.068 -8.19799 0 0 838722. 3276.26 0.21 0.29 0.14 -1 -1 0.21 0.14789 0.13221 835 476 361 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_21.v common 19.27 vpr 71.07 MiB 0.14 11088 -1 -1 1 0.26 -1 -1 35780 -1 -1 117 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72772 22 19 1859 1351 1 1097 164 16 16 256 mult_36 auto 33.3 MiB 2.10 6877 26148 4845 17989 3314 71.1 MiB 0.52 0.01 9.10283 -530.329 -9.10283 9.10283 0.55 0.00350904 0.00319379 0.219292 0.199579 46 12941 28 6.34292e+06 3.85933e+06 684529. 2673.94 12.86 1.68486 1.48673 22592 160355 -1 9640 20 5382 6297 642924 169839 8.50765 8.50765 -651.006 -8.50765 0 0 838722. 3276.26 0.24 0.30 0.14 -1 -1 0.24 0.158102 0.141691 878 500 380 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_22.v common 12.47 vpr 71.47 MiB 0.09 11048 -1 -1 1 0.24 -1 -1 35836 -1 -1 121 22 0 6 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73184 22 19 1933 1408 1 1134 168 16 16 256 mult_36 auto 33.9 MiB 2.14 7422 25170 4911 15658 4601 71.5 MiB 0.48 0.01 9.01458 -573.662 -9.01458 9.01458 0.57 0.00366039 0.00333703 0.217225 0.1982 48 13367 46 6.34292e+06 3.91004e+06 714410. 2790.66 5.95 1.20201 1.06296 22848 165380 -1 10834 24 6813 8030 1002292 248924 8.32694 8.32694 -795.331 -8.32694 0 0 863353. 3372.47 0.22 0.40 0.15 -1 -1 0.22 0.183735 0.163565 916 519 399 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_23.v common 11.86 vpr 72.08 MiB 0.09 11388 -1 -1 1 0.27 -1 -1 36152 -1 -1 129 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73808 22 19 2031 1472 1 1198 177 18 18 324 mult_36 auto 34.6 MiB 2.24 7275 31425 6625 21832 2968 72.1 MiB 0.66 0.01 9.00463 -548.336 -9.00463 9.00463 0.74 0.00390493 0.00356234 0.258931 0.235866 46 14196 45 7.79418e+06 4.40746e+06 895831. 2764.91 4.56 1.12575 0.997804 29024 211752 -1 10934 25 6882 7848 880826 223229 8.43839 8.43839 -703.752 -8.43839 0 0 1.09776e+06 3388.15 0.29 0.39 0.17 -1 -1 0.29 0.19905 0.177408 960 544 418 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_24.v common 12.36 vpr 72.46 MiB 0.09 11464 -1 -1 1 0.25 -1 -1 36348 -1 -1 134 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74196 22 19 2105 1529 1 1235 182 18 18 324 mult_36 auto 35.0 MiB 2.48 7801 30567 6031 22002 2534 72.5 MiB 0.61 0.01 8.93461 -590.946 -8.93461 8.93461 0.74 0.00432734 0.00392692 0.248296 0.225855 44 15786 47 7.79418e+06 4.47085e+06 850563. 2625.19 4.97 1.26592 1.11687 28700 205432 -1 11441 21 7563 8584 1010699 259800 8.45525 8.45525 -751.332 -8.45525 0 0 1.07356e+06 3313.45 0.29 0.41 0.17 -1 -1 0.29 0.184476 0.164299 998 563 437 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_25.v common 15.88 vpr 73.18 MiB 0.16 11912 -1 -1 1 0.26 -1 -1 36644 -1 -1 139 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74940 22 19 2201 1591 1 1295 187 18 18 324 mult_36 auto 35.6 MiB 2.58 7794 35431 8008 24050 3373 73.2 MiB 0.75 0.01 8.99805 -627.204 -8.99805 8.99805 0.76 0.00409877 0.00373479 0.29492 0.268298 48 14419 25 7.79418e+06 4.53424e+06 935225. 2886.50 7.93 1.6909 1.49346 29348 218440 -1 11847 24 9376 10639 1260323 308837 8.19914 8.19914 -859.595 -8.19914 0 0 1.13028e+06 3488.51 0.31 0.46 0.19 -1 -1 0.31 0.202649 0.180363 1040 586 456 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_26.v common 15.96 vpr 73.44 MiB 0.16 11904 -1 -1 1 0.27 -1 -1 37360 -1 -1 143 22 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75200 22 19 2275 1648 1 1331 191 18 18 324 mult_36 auto 36.1 MiB 2.25 8212 29837 6030 19775 4032 73.4 MiB 0.58 0.01 9.02558 -646.811 -9.02558 9.02558 0.75 0.00428548 0.00390516 0.253584 0.230771 46 15122 38 7.79418e+06 4.58495e+06 895831. 2764.91 8.59 1.9133 1.68997 29024 211752 -1 11958 22 7098 8090 861622 220837 8.17599 8.17599 -727.5 -8.17599 0 0 1.09776e+06 3388.15 0.29 0.38 0.19 -1 -1 0.29 0.193184 0.173255 1078 605 475 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_27.v common 17.03 vpr 74.23 MiB 0.11 12160 -1 -1 1 0.30 -1 -1 36788 -1 -1 151 22 0 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76008 22 19 2385 1724 1 1408 200 18 18 324 mult_36 auto 36.7 MiB 2.60 8727 36992 8286 24092 4614 74.2 MiB 0.76 0.01 8.93461 -662.978 -8.93461 8.93461 0.76 0.00472339 0.00425073 0.301533 0.274021 48 15283 36 7.79418e+06 5.08238e+06 935225. 2886.50 8.89 2.08068 1.8344 29348 218440 -1 12726 23 9179 10508 1335353 324369 8.28419 8.28419 -946.068 -8.28419 0 0 1.13028e+06 3488.51 0.30 0.49 0.19 -1 -1 0.30 0.205865 0.184459 1134 642 494 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_28.v common 16.72 vpr 74.45 MiB 0.17 12356 -1 -1 1 0.31 -1 -1 36712 -1 -1 156 22 0 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76232 22 19 2459 1781 1 1444 205 18 18 324 mult_36 auto 37.1 MiB 2.68 8451 39465 8337 25107 6021 74.4 MiB 0.76 0.01 9.16641 -691.339 -9.16641 9.16641 0.74 0.00462481 0.00422355 0.316536 0.287465 48 14904 25 7.79418e+06 5.14577e+06 935225. 2886.50 8.55 2.04169 1.80553 29348 218440 -1 12614 21 8926 10211 1159620 293360 8.50739 8.50739 -823.07 -8.50739 0 0 1.13028e+06 3488.51 0.30 0.45 0.19 -1 -1 0.30 0.203297 0.181535 1172 661 513 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_29.v common 47.46 vpr 75.10 MiB 0.11 12536 -1 -1 1 0.33 -1 -1 37136 -1 -1 163 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76900 22 19 2565 1853 1 1517 213 22 22 484 mult_36 auto 37.8 MiB 2.97 9736 37678 8527 25986 3165 75.1 MiB 0.75 0.01 8.92046 -697.22 -8.92046 8.92046 1.15 0.00455768 0.00415114 0.297373 0.26977 44 19381 44 1.26954e+07 5.63051e+06 1.30964e+06 2705.88 37.68 2.69823 2.37585 43422 318546 -1 14570 23 9535 10931 1293369 324951 8.36113 8.36113 -893.601 -8.36113 0 0 1.65337e+06 3416.05 0.47 0.54 0.29 -1 -1 0.47 0.243977 0.218617 1224 694 532 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_30.v common 21.61 vpr 75.55 MiB 0.15 12620 -1 -1 1 0.35 -1 -1 37288 -1 -1 168 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77368 22 19 2639 1910 1 1554 218 22 22 484 mult_36 auto 38.7 MiB 2.93 9704 46068 10050 31278 4740 75.6 MiB 0.90 0.01 9.05578 -707.338 -9.05578 9.05578 1.22 0.00505393 0.00458653 0.362219 0.32803 46 18565 36 1.26954e+07 5.6939e+06 1.37878e+06 2848.72 11.65 2.2504 1.98663 43906 328446 -1 14231 21 9207 10549 1182524 287358 8.44828 8.44828 -1021.22 -8.44828 0 0 1.69059e+06 3492.95 0.48 0.49 0.29 -1 -1 0.48 0.22278 0.199444 1262 713 551 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_31.v common 18.40 vpr 76.16 MiB 0.19 12948 -1 -1 1 0.36 -1 -1 37572 -1 -1 175 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77984 22 19 2744 1981 1 1626 225 22 22 484 mult_36 auto 39.1 MiB 3.06 10429 54261 13323 35940 4998 76.2 MiB 1.06 0.01 9.21706 -731.706 -9.21706 9.21706 1.19 0.00506592 0.00460699 0.417543 0.377769 46 19383 40 1.26954e+07 5.78265e+06 1.37878e+06 2848.72 7.99 1.79479 1.59544 43906 328446 -1 15283 22 9077 10419 1338103 316338 8.27705 8.27705 -922.434 -8.27705 0 0 1.69059e+06 3492.95 0.47 0.57 0.28 -1 -1 0.47 0.263815 0.237002 1313 745 570 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_32.v common 22.02 vpr 76.43 MiB 0.11 13016 -1 -1 1 0.39 -1 -1 36920 -1 -1 179 22 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78268 22 19 2818 2038 1 1662 229 22 22 484 mult_36 auto 39.4 MiB 3.20 10391 57629 14299 38067 5263 76.4 MiB 1.16 0.01 8.90432 -796.741 -8.90432 8.90432 1.23 0.00509439 0.00460665 0.45302 0.409964 50 17124 25 1.26954e+07 5.83336e+06 1.50222e+06 3103.76 11.39 2.40958 2.13136 44874 350400 -1 15076 25 10335 11812 1322909 330631 8.19693 8.19693 -1070.7 -8.19693 0 0 1.79645e+06 3711.66 0.51 0.57 0.25 -1 -1 0.51 0.26958 0.240498 1351 764 589 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_33.v common 16.88 vpr 77.11 MiB 0.21 13780 -1 -1 1 0.39 -1 -1 37408 -1 -1 187 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78956 22 19 2923 2109 1 1730 238 22 22 484 mult_36 auto 40.1 MiB 3.20 10842 55513 13255 35231 7027 77.1 MiB 1.05 0.01 9.95249 -834.822 -9.95249 9.95249 1.18 0.00253764 0.00230185 0.418184 0.377872 46 19712 40 1.26954e+07 6.33079e+06 1.37878e+06 2848.72 6.36 1.65683 1.4737 43906 328446 -1 15703 22 9397 10976 1237626 310640 9.04671 9.04671 -1200.39 -9.04671 0 0 1.69059e+06 3492.95 0.48 0.56 0.28 -1 -1 0.48 0.263107 0.234827 1402 796 608 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_34.v common 18.96 vpr 77.73 MiB 0.20 13840 -1 -1 1 0.39 -1 -1 37884 -1 -1 193 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79600 22 19 2997 2166 1 1769 244 22 22 484 mult_36 auto 40.5 MiB 3.32 11512 55870 12803 38332 4735 77.7 MiB 1.10 0.01 9.71104 -846.569 -9.71104 9.71104 1.18 0.00548715 0.00499123 0.421909 0.382237 44 24353 49 1.26954e+07 6.40685e+06 1.30964e+06 2705.88 8.01 1.83971 1.62943 43422 318546 -1 17171 26 12960 14652 1853547 452272 9.15799 9.15799 -1105.75 -9.15799 0 0 1.65337e+06 3416.05 0.48 0.73 0.27 -1 -1 0.48 0.310143 0.276139 1441 815 627 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_35.v common 23.39 vpr 78.45 MiB 0.21 14108 -1 -1 1 0.41 -1 -1 37808 -1 -1 199 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80332 22 19 3101 2236 1 1838 250 22 22 484 mult_36 auto 41.3 MiB 3.53 11883 59275 13898 40462 4915 78.4 MiB 1.24 0.02 10.0716 -839.08 -10.0716 10.0716 1.19 0.00572678 0.00520149 0.474643 0.430492 46 21331 31 1.26954e+07 6.48292e+06 1.37878e+06 2848.72 12.12 2.66162 2.35294 43906 328446 -1 17287 21 10101 11468 1346054 329306 9.20985 9.20985 -1049.74 -9.20985 0 0 1.69059e+06 3492.95 0.47 0.54 0.27 -1 -1 0.47 0.254172 0.227458 1491 846 646 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_36.v common 25.66 vpr 78.64 MiB 0.13 14164 -1 -1 1 0.42 -1 -1 38088 -1 -1 203 22 0 10 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80532 22 19 3175 2293 1 1872 254 22 22 484 mult_36 auto 41.7 MiB 3.56 11856 67790 16050 43614 8126 78.6 MiB 1.29 0.02 9.90636 -831.865 -9.90636 9.90636 1.19 0.00662127 0.00604468 0.524372 0.473455 54 21529 32 1.26954e+07 6.53363e+06 1.58090e+06 3266.32 14.12 2.96853 2.62142 46322 380746 -1 17295 23 11004 12534 1557630 362961 9.12974 9.12974 -1084.55 -9.12974 0 0 1.94386e+06 4016.24 0.53 0.63 0.32 -1 -1 0.53 0.290461 0.259255 1529 865 665 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_37.v common 19.81 vpr 79.66 MiB 0.23 14416 -1 -1 1 0.46 -1 -1 37332 -1 -1 210 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81568 22 19 3280 2364 1 1945 262 24 24 576 mult_36 auto 42.6 MiB 3.74 12905 66464 15575 45332 5557 79.7 MiB 1.27 0.02 9.83124 -880.704 -9.83124 9.83124 1.40 0.00603509 0.00549171 0.504005 0.455538 48 21363 28 1.53347e+07 7.01838e+06 1.71014e+06 2969.00 7.28 1.93213 1.71412 52498 402441 -1 18615 23 12028 13808 1684960 424814 9.19385 9.19385 -1337.54 -9.19385 0 0 2.06880e+06 3591.66 0.58 0.78 0.34 -1 -1 0.58 0.328649 0.295426 1580 897 684 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_38.v common 69.36 vpr 80.14 MiB 0.23 14656 -1 -1 1 0.41 -1 -1 37968 -1 -1 215 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82060 22 19 3354 2421 1 1981 267 24 24 576 mult_36 auto 43.1 MiB 3.86 12584 74141 17788 50501 5852 80.1 MiB 1.41 0.02 9.72821 -969.824 -9.72821 9.72821 1.39 0.00594382 0.00529495 0.540475 0.488201 44 25091 38 1.53347e+07 7.08177e+06 1.55518e+06 2699.97 57.15 3.62897 3.19515 51346 378163 -1 18503 24 11604 13453 1544750 383740 8.89139 8.89139 -1322.03 -8.89139 0 0 1.96475e+06 3411.02 0.56 0.65 0.23 -1 -1 0.56 0.305679 0.272189 1618 916 703 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_39.v common 22.83 vpr 80.43 MiB 0.12 14768 -1 -1 1 0.50 -1 -1 38276 -1 -1 222 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82360 22 19 3457 2490 1 2052 274 24 24 576 mult_36 auto 43.5 MiB 4.09 13365 71394 16730 45953 8711 80.4 MiB 1.43 0.02 9.83229 -957.063 -9.83229 9.83229 1.39 0.006343 0.00576384 0.530651 0.478897 48 23590 43 1.53347e+07 7.17052e+06 1.71014e+06 2969.00 9.92 1.97074 1.74118 52498 402441 -1 19554 23 13372 15109 1988690 466121 9.34814 9.34814 -1275.09 -9.34814 0 0 2.06880e+06 3591.66 0.59 0.74 0.33 -1 -1 0.59 0.310627 0.277318 1667 946 722 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_40.v common 23.40 vpr 80.74 MiB 0.24 14872 -1 -1 1 0.38 -1 -1 38804 -1 -1 227 22 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82676 22 19 3531 2547 1 2089 279 24 24 576 mult_36 auto 43.9 MiB 4.04 13649 81358 20240 53084 8034 80.7 MiB 1.55 0.02 9.76447 -1012.02 -9.76447 9.76447 1.44 0.00627344 0.00568308 0.596184 0.538567 46 24498 47 1.53347e+07 7.23391e+06 1.63708e+06 2842.15 10.31 2.32309 2.0508 51922 389946 -1 19547 23 11831 13375 1622364 412860 8.89731 8.89731 -1325.41 -8.89731 0 0 2.00908e+06 3487.99 0.56 0.69 0.34 -1 -1 0.56 0.32088 0.286395 1705 965 741 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_41.v common 23.80 vpr 81.44 MiB 0.24 15120 -1 -1 1 0.63 -1 -1 38080 -1 -1 233 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83396 22 19 3634 2616 1 2155 286 24 24 576 mult_36 auto 44.5 MiB 5.19 13461 71802 17518 48500 5784 81.4 MiB 1.44 0.02 9.84473 -990.415 -9.84473 9.84473 1.49 0.00682155 0.00620547 0.551807 0.496406 46 24068 31 1.53347e+07 7.70597e+06 1.63708e+06 2842.15 9.20 2.20878 1.9572 51922 389946 -1 19383 21 10783 12491 1296656 334801 9.01371 9.01371 -1397.76 -9.01371 0 0 2.00908e+06 3487.99 0.56 0.58 0.31 -1 -1 0.56 0.291691 0.25952 1754 995 760 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_42.v common 26.35 vpr 81.95 MiB 0.23 15460 -1 -1 1 0.54 -1 -1 38248 -1 -1 238 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83920 22 19 3708 2673 1 2193 291 24 24 576 mult_36 auto 45.0 MiB 4.33 13774 73555 16192 46647 10716 82.0 MiB 1.46 0.02 9.6448 -1052.98 -9.6448 9.6448 1.52 0.00687889 0.00625267 0.576273 0.519917 46 26820 34 1.53347e+07 7.76936e+06 1.63708e+06 2842.15 12.57 2.22723 1.97058 51922 389946 -1 19910 22 11722 13342 1538729 394957 8.92065 8.92065 -1217.74 -8.92065 0 0 2.00908e+06 3487.99 0.58 0.68 0.34 -1 -1 0.58 0.322809 0.287497 1792 1014 779 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_43.v common 75.37 vpr 82.31 MiB 0.25 15500 -1 -1 1 0.55 -1 -1 39040 -1 -1 244 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84284 22 19 3810 2741 1 2260 297 24 24 576 mult_36 auto 45.3 MiB 4.36 15294 72567 16999 48927 6641 82.3 MiB 1.48 0.02 9.95249 -1072.69 -9.95249 9.95249 1.35 0.00618323 0.00557959 0.504221 0.454675 50 27136 38 1.53347e+07 7.84543e+06 1.78400e+06 3097.22 61.55 4.21398 3.72757 53074 415989 -1 21583 25 13148 15539 1852620 442221 9.20791 9.20791 -1298.24 -9.20791 0 0 2.13454e+06 3705.80 0.59 0.79 0.35 -1 -1 0.59 0.361183 0.320661 1840 1043 798 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_44.v common 79.78 vpr 82.90 MiB 0.25 15664 -1 -1 1 0.57 -1 -1 38352 -1 -1 249 22 0 12 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84892 22 19 3884 2798 1 2296 302 24 24 576 mult_36 auto 45.8 MiB 4.45 15221 82274 19194 54089 8991 82.9 MiB 1.67 0.03 9.8158 -1110.51 -9.8158 9.8158 1.51 0.0104062 0.00925367 0.634658 0.572543 50 26086 35 1.53347e+07 7.90882e+06 1.78400e+06 3097.22 65.58 4.08599 3.60983 53074 415989 -1 21306 22 12457 14331 1700869 411393 9.06854 9.06854 -1533.06 -9.06854 0 0 2.13454e+06 3705.80 0.59 0.68 0.35 -1 -1 0.59 0.315896 0.281763 1878 1062 817 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_45.v common 22.00 vpr 83.36 MiB 0.27 16076 -1 -1 1 0.66 -1 -1 40428 -1 -1 256 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85360 22 19 3989 2869 1 2368 310 24 24 576 mult_36 auto 46.3 MiB 4.47 16170 76814 16744 54012 6058 83.4 MiB 1.63 0.02 9.69686 -1053.48 -9.69686 9.69686 1.51 0.00733892 0.00667215 0.584672 0.525516 48 27771 33 1.53347e+07 8.39357e+06 1.71014e+06 2969.00 7.65 2.13518 1.89576 52498 402441 -1 23267 23 14444 16589 2052278 495094 9.46445 9.46445 -1673.39 -9.46445 0 0 2.06880e+06 3591.66 0.60 0.85 0.29 -1 -1 0.60 0.365172 0.325707 1929 1094 836 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_46.v common 23.54 vpr 84.10 MiB 0.26 16096 -1 -1 1 0.61 -1 -1 40696 -1 -1 260 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86116 22 19 4063 2926 1 2404 314 24 24 576 mult_36 auto 47.2 MiB 4.78 15339 80264 18599 54196 7469 84.1 MiB 1.70 0.02 10.1503 -1097.92 -10.1503 10.1503 1.37 0.0080052 0.0071957 0.606251 0.544168 48 26539 34 1.53347e+07 8.44428e+06 1.71014e+06 2969.00 8.51 2.26702 2.00623 52498 402441 -1 22415 22 12869 14913 1883761 456417 9.18285 9.18285 -1669.24 -9.18285 0 0 2.06880e+06 3591.66 0.59 0.79 0.34 -1 -1 0.59 0.345793 0.309364 1967 1113 855 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_47.v common 26.53 vpr 84.31 MiB 0.29 16492 -1 -1 1 0.68 -1 -1 40776 -1 -1 267 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86336 22 19 4167 2996 1 2473 321 24 24 576 mult_36 auto 47.5 MiB 5.05 15911 94749 24093 55772 14884 84.3 MiB 1.98 0.02 9.84328 -1100.98 -9.84328 9.84328 1.68 0.00765987 0.00694488 0.760369 0.680609 52 27975 40 1.53347e+07 8.53303e+06 1.82869e+06 3174.81 10.22 2.77005 2.44505 54222 439550 -1 21924 24 13845 15738 1880408 458130 8.78434 8.78434 -1662.3 -8.78434 0 0 2.25030e+06 3906.77 0.65 0.81 0.38 -1 -1 0.65 0.378633 0.337232 2017 1144 874 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_48.v common 25.99 vpr 84.62 MiB 0.29 16564 -1 -1 1 0.63 -1 -1 40944 -1 -1 272 22 0 13 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86648 22 19 4241 3053 1 2509 326 24 24 576 mult_36 auto 47.7 MiB 6.23 15944 93369 22969 60571 9829 84.6 MiB 1.86 0.02 9.94149 -1112.36 -9.94149 9.94149 1.50 0.00790326 0.00716165 0.704684 0.633056 50 26180 41 1.53347e+07 8.59642e+06 1.78400e+06 3097.22 9.35 2.73074 2.41335 53074 415989 -1 22294 22 12263 14109 1550803 400013 9.21811 9.21811 -1447.05 -9.21811 0 0 2.13454e+06 3705.80 0.63 0.76 0.34 -1 -1 0.63 0.376921 0.336261 2055 1163 893 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_49.v common 92.37 vpr 85.45 MiB 0.30 17076 -1 -1 1 0.68 -1 -1 41244 -1 -1 278 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87500 22 19 4346 3124 1 2580 333 24 24 576 mult_36 auto 48.5 MiB 5.26 18639 82196 17887 55028 9281 85.4 MiB 1.80 0.03 10.1199 -1094.39 -10.1199 10.1199 1.48 0.00810252 0.00735418 0.615338 0.551741 54 32315 41 1.53347e+07 9.06848e+06 1.87785e+06 3260.16 76.74 4.47045 3.92869 54798 452027 -1 25408 23 16681 18924 2499757 584710 9.44433 9.44433 -1646.09 -9.44433 0 0 2.31032e+06 4010.97 0.64 0.81 0.37 -1 -1 0.64 0.310612 0.278159 2106 1195 912 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_50.v common 44.38 vpr 85.66 MiB 0.28 16984 -1 -1 1 0.69 -1 -1 41024 -1 -1 283 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87716 22 19 4420 3181 1 2615 338 24 24 576 mult_36 auto 48.7 MiB 5.13 16819 90890 20456 61609 8825 85.7 MiB 1.91 0.02 9.83124 -1136.37 -9.83124 9.83124 1.48 0.00820024 0.00746465 0.69337 0.62291 50 29302 34 1.53347e+07 9.13187e+06 1.78400e+06 3097.22 28.50 3.77803 3.32315 53074 415989 -1 24032 23 14858 17059 1869577 469952 9.23208 9.23208 -1987.04 -9.23208 0 0 2.13454e+06 3705.80 0.60 0.84 0.33 -1 -1 0.60 0.39261 0.347239 2144 1214 931 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_51.v common 28.49 vpr 86.68 MiB 0.31 17460 -1 -1 1 0.66 -1 -1 41080 -1 -1 291 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88764 22 19 4524 3251 1 2687 346 24 24 576 mult_36 auto 49.9 MiB 5.31 17860 96252 23037 63427 9788 86.7 MiB 2.08 0.04 9.89212 -1219.82 -9.89212 9.89212 1.49 0.0112647 0.010345 0.704374 0.633733 50 30437 43 1.53347e+07 9.2333e+06 1.78400e+06 3097.22 12.36 2.86336 2.52904 53074 415989 -1 24870 23 13651 16114 1898625 469043 8.91645 8.91645 -1976.59 -8.91645 0 0 2.13454e+06 3705.80 0.60 0.68 0.36 -1 -1 0.60 0.341573 0.304629 2194 1245 950 19 0 0 +k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml fir_nopipe_52.v common 51.59 vpr 86.66 MiB 0.31 17436 -1 -1 1 0.76 -1 -1 39432 -1 -1 295 22 0 14 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88740 22 19 4598 3308 1 2721 350 24 24 576 mult_36 auto 49.9 MiB 5.50 17189 98990 22861 62622 13507 86.7 MiB 1.92 0.02 9.76536 -1203.1 -9.76536 9.76536 1.43 0.00744143 0.00671723 0.647346 0.580014 50 31153 48 1.53347e+07 9.28401e+06 1.78400e+06 3097.22 34.97 4.03022 3.53737 53074 415989 -1 24769 26 16106 18580 2257536 556719 9.168 9.168 -1995.91 -9.168 0 0 2.13454e+06 3705.80 0.58 0.93 0.34 -1 -1 0.58 0.431785 0.383795 2232 1264 969 19 0 0 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/FIR_filters_frac/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/FIR_filters_frac/config/golden_results.txt index 26941add41a..3b5b7fa0f97 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/FIR_filters_frac/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/FIR_filters_frac/config/golden_results.txt @@ -1,391 +1,391 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length -k6_frac_2ripple_N8_22nm.xml fir_pipe_14.v common 9.62 vpr 71.48 MiB 0.09 10584 -1 -1 1 0.22 -1 -1 35488 -1 -1 65 22 0 4 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73196 22 19 1974 1653 1 1013 110 16 16 256 mult_36 auto 33.8 MiB 0.68 5272 15101 3393 9968 1740 71.5 MiB 0.56 0.01 4.0831 -1115.98 -4.0831 4.0831 0.71 0.00367671 0.00328075 0.228291 0.20457 64 9828 23 6.59459e+06 2.52492e+06 943753. 3686.54 4.32 1.12173 0.990389 27892 240595 -1 8477 16 3926 4549 486168 112677 4.27196 4.27196 -1212.54 -4.27196 0 0 1.19033e+06 4649.74 0.36 0.25 0.24 -1 -1 0.36 0.144501 0.132256 481 649 247 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_15.v common 14.66 vpr 72.48 MiB 0.11 10808 -1 -1 1 0.25 -1 -1 36920 -1 -1 72 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74216 22 19 2144 1789 1 1110 118 16 16 256 mult_36 auto 34.8 MiB 0.96 6136 19192 4400 11965 2827 72.5 MiB 0.71 0.01 4.07762 -1246.61 -4.07762 4.07762 0.72 0.00398223 0.00355085 0.288623 0.258218 68 11309 29 6.59459e+06 3.02225e+06 1.00038e+06 3907.74 8.71 1.81488 1.60176 28404 252462 -1 9516 17 4344 4959 564949 131023 4.27196 4.27196 -1329.64 -4.27196 0 0 1.24648e+06 4869.04 0.36 0.30 0.25 -1 -1 0.36 0.174617 0.158265 521 704 266 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_16.v common 11.88 vpr 72.92 MiB 0.11 10964 -1 -1 1 0.25 -1 -1 36948 -1 -1 74 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74668 22 19 2218 1846 1 1154 120 16 16 256 mult_36 auto 35.3 MiB 0.86 6159 16935 3952 11063 1920 72.9 MiB 0.68 0.01 4.14666 -1298.68 -4.14666 4.14666 0.71 0.00422731 0.00378432 0.268154 0.240667 64 13073 22 6.59459e+06 3.0512e+06 943753. 3686.54 5.96 1.25543 1.11023 27892 240595 -1 10191 20 4784 5574 648344 144961 4.39726 4.39726 -1411.91 -4.39726 0 0 1.19033e+06 4649.74 0.36 0.37 0.26 -1 -1 0.36 0.208838 0.188178 540 723 285 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_17.v common 14.96 vpr 74.27 MiB 0.13 11780 -1 -1 1 0.28 -1 -1 36604 -1 -1 83 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76056 22 19 2536 2130 1 1256 129 16 16 256 mult_36 auto 36.9 MiB 1.08 6865 15729 3064 11003 1662 74.3 MiB 0.67 0.01 4.27196 -1448.46 -4.27196 4.27196 0.68 0.00457632 0.00407959 0.264176 0.237013 68 12800 19 6.59459e+06 3.18149e+06 1.00038e+06 3907.74 8.43 2.02598 1.78349 28404 252462 -1 10503 19 4671 5430 563206 129904 4.27196 4.27196 -1537.77 -4.27196 0 0 1.24648e+06 4869.04 0.44 0.39 0.27 -1 -1 0.44 0.234765 0.212242 617 851 304 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_18.v common 16.11 vpr 74.91 MiB 0.12 11796 -1 -1 1 0.29 -1 -1 37120 -1 -1 86 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76708 22 19 2610 2187 1 1305 132 16 16 256 mult_36 auto 37.6 MiB 1.11 6869 16212 3205 10695 2312 74.9 MiB 0.65 0.01 4.03926 -1468.2 -4.03926 4.03926 0.69 0.004926 0.00440501 0.258598 0.231473 70 12353 27 6.59459e+06 3.22491e+06 1.02522e+06 4004.78 9.33 2.07207 1.82471 28912 262511 -1 10716 20 5011 5723 704649 159235 4.27196 4.27196 -1543.19 -4.27196 0 0 1.29210e+06 5047.26 0.49 0.40 0.27 -1 -1 0.49 0.234524 0.211076 636 870 323 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_19.v common 16.60 vpr 75.56 MiB 0.11 12256 -1 -1 1 0.27 -1 -1 36900 -1 -1 91 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77376 22 19 2778 2321 1 1401 138 16 16 256 mult_36 auto 38.1 MiB 0.98 7751 20074 4172 13462 2440 75.6 MiB 0.81 0.01 4.20832 -1614.09 -4.20832 4.20832 0.70 0.00511316 0.0045461 0.319026 0.285017 70 14091 32 6.59459e+06 3.69329e+06 1.02522e+06 4004.78 9.94 2.45739 2.16583 28912 262511 -1 11597 19 5221 6080 670296 155538 4.27196 4.27196 -1747.26 -4.27196 0 0 1.29210e+06 5047.26 0.39 0.41 0.29 -1 -1 0.39 0.244725 0.221408 676 925 342 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_20.v common 29.98 vpr 76.14 MiB 0.15 12496 -1 -1 1 0.34 -1 -1 37092 -1 -1 93 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77968 22 19 2852 2378 1 1441 140 16 16 256 mult_36 auto 38.9 MiB 1.14 7701 24098 5487 15382 3229 76.1 MiB 0.97 0.01 4.14666 -1615.69 -4.14666 4.14666 0.75 0.00532442 0.00473561 0.381949 0.340888 68 15216 40 6.59459e+06 3.72224e+06 1.00038e+06 3907.74 22.96 3.14997 2.75883 28404 252462 -1 12039 17 5419 6476 661435 153008 4.27196 4.27196 -1732.55 -4.27196 0 0 1.24648e+06 4869.04 0.38 0.36 0.24 -1 -1 0.38 0.214779 0.19311 695 944 361 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_21.v common 17.72 vpr 77.16 MiB 0.16 12832 -1 -1 1 0.34 -1 -1 37864 -1 -1 97 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79008 22 19 3057 2549 1 1544 144 16 16 256 mult_36 auto 40.0 MiB 1.29 9367 24272 5008 16124 3140 77.2 MiB 1.04 0.02 4.39726 -1835.45 -4.39726 4.39726 0.69 0.00564672 0.00501964 0.393635 0.351028 78 15648 32 6.59459e+06 3.78015e+06 1.11577e+06 4358.47 10.28 2.62793 2.31367 30188 289496 -1 13380 17 5537 6378 789386 168362 4.39726 4.39726 -1915.7 -4.39726 0 0 1.40012e+06 5469.22 0.42 0.43 0.29 -1 -1 0.42 0.252449 0.22663 742 1017 380 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_22.v common 18.22 vpr 77.21 MiB 0.21 12976 -1 -1 1 0.36 -1 -1 37932 -1 -1 100 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79064 22 19 3131 2606 1 1587 147 16 16 256 mult_36 auto 40.2 MiB 1.13 8900 25689 5397 16690 3602 77.2 MiB 1.07 0.02 4.27196 -1832.45 -4.27196 4.27196 0.69 0.00589896 0.00525559 0.420518 0.375668 74 16546 36 6.59459e+06 3.82357e+06 1.07073e+06 4182.55 10.87 2.67856 2.36428 29424 273870 -1 13593 21 6218 7124 883830 200504 4.27196 4.27196 -1953.42 -4.27196 0 0 1.33358e+06 5209.30 0.41 0.50 0.29 -1 -1 0.41 0.288344 0.260546 762 1036 399 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_23.v common 21.48 vpr 78.19 MiB 0.16 13284 -1 -1 1 0.41 -1 -1 37880 -1 -1 107 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 80064 22 19 3301 2742 1 1685 155 18 18 324 mult_36 auto 41.0 MiB 1.05 9550 28859 6368 19463 3028 78.2 MiB 1.22 0.02 4.27196 -1973.15 -4.27196 4.27196 0.92 0.00622034 0.00552944 0.468708 0.418993 68 18693 46 8.13932e+06 4.3209e+06 1.31159e+06 4048.11 13.18 3.03449 2.67889 36620 334356 -1 14822 18 6572 7617 914655 195234 4.39726 4.39726 -2060.9 -4.39726 0 0 1.63345e+06 5041.52 0.55 0.48 0.32 -1 -1 0.55 0.277403 0.250261 802 1091 418 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_24.v common 15.80 vpr 78.57 MiB 0.16 13476 -1 -1 1 0.39 -1 -1 38184 -1 -1 109 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 80460 22 19 3375 2799 1 1732 157 18 18 324 mult_36 auto 41.5 MiB 0.89 10056 25960 5726 17532 2702 78.6 MiB 1.11 0.02 4.27196 -2004.23 -4.27196 4.27196 0.91 0.00644854 0.00576784 0.41873 0.374342 76 17719 30 8.13932e+06 4.34985e+06 1.43297e+06 4422.75 7.76 2.29838 2.02776 38232 369828 -1 14833 17 6600 7437 899992 195667 4.39726 4.39726 -2169.68 -4.39726 0 0 1.77541e+06 5479.65 0.55 0.47 0.35 -1 -1 0.55 0.266696 0.240784 821 1110 437 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_25.v common 22.45 vpr 79.93 MiB 0.12 13876 -1 -1 1 0.42 -1 -1 38112 -1 -1 116 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81848 22 19 3615 3005 1 1836 164 18 18 324 mult_36 auto 42.9 MiB 1.04 10729 33764 7877 22457 3430 79.9 MiB 1.43 0.02 4.39726 -2180.78 -4.39726 4.39726 0.99 0.0071867 0.00645814 0.561676 0.501753 76 19342 24 8.13932e+06 4.45118e+06 1.43297e+06 4422.75 13.52 3.2092 2.82983 38232 369828 -1 16315 17 6932 7862 1003575 222232 4.39726 4.39726 -2258.25 -4.39726 0 0 1.77541e+06 5479.65 0.57 0.51 0.35 -1 -1 0.57 0.289479 0.261721 877 1201 456 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_26.v common 23.77 vpr 80.55 MiB 0.19 14104 -1 -1 1 0.43 -1 -1 38436 -1 -1 118 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 82484 22 19 3689 3062 1 1874 166 18 18 324 mult_36 auto 43.4 MiB 1.17 10442 30262 6705 20097 3460 80.6 MiB 1.37 0.02 4.27196 -2184.83 -4.27196 4.27196 0.93 0.00703116 0.00637461 0.51184 0.458429 72 20476 50 8.13932e+06 4.48013e+06 1.37338e+06 4238.83 14.98 3.81344 3.36587 37588 355536 -1 16153 20 7464 8416 998033 217072 4.14666 4.14666 -2311.78 -4.14666 0 0 1.72054e+06 5310.31 0.59 0.57 0.34 -1 -1 0.59 0.337364 0.305471 896 1220 475 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_27.v common 41.26 vpr 81.77 MiB 0.17 14444 -1 -1 1 0.46 -1 -1 38408 -1 -1 126 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83732 22 19 3871 3210 1 1982 175 18 18 324 mult_36 auto 44.7 MiB 1.39 11174 29515 6552 19982 2981 81.8 MiB 1.27 0.02 4.27196 -2274.04 -4.27196 4.27196 0.97 0.00715393 0.00639726 0.481405 0.429638 68 21260 31 8.13932e+06 4.99193e+06 1.31159e+06 4048.11 32.28 4.73501 4.15419 36620 334356 -1 17367 17 7795 9201 990857 222794 4.39726 4.39726 -2515.29 -4.39726 0 0 1.63345e+06 5041.52 0.53 0.57 0.31 -1 -1 0.53 0.326031 0.29563 944 1275 494 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_28.v common 16.61 vpr 81.71 MiB 0.14 14556 -1 -1 1 0.50 -1 -1 38488 -1 -1 128 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83668 22 19 3945 3267 1 2025 177 18 18 324 mult_36 auto 44.8 MiB 1.16 11734 34897 7640 23359 3898 81.7 MiB 1.52 0.02 4.27196 -2285.03 -4.27196 4.27196 0.94 0.00752032 0.00671136 0.566186 0.505839 72 22190 34 8.13932e+06 5.02088e+06 1.37338e+06 4238.83 7.46 2.48846 2.20141 37588 355536 -1 17870 17 7943 9223 1126928 247605 4.39726 4.39726 -2508.33 -4.39726 0 0 1.72054e+06 5310.31 0.56 0.59 0.34 -1 -1 0.56 0.326073 0.295641 962 1294 513 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_29.v common 21.33 vpr 82.97 MiB 0.18 14932 -1 -1 1 0.52 -1 -1 39664 -1 -1 135 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84960 22 19 4159 3447 1 2141 185 22 22 484 mult_36 auto 46.0 MiB 1.55 13174 35953 8427 24187 3339 83.0 MiB 1.61 0.02 4.22237 -2488.49 -4.22237 4.22237 1.48 0.00787947 0.00702852 0.572824 0.509806 72 25377 43 1.32347e+07 5.5182e+06 2.11301e+06 4365.72 9.71 2.74748 2.43321 56918 551676 -1 20346 15 8444 9848 1257155 262005 4.39726 4.39726 -2750.66 -4.39726 0 0 2.64603e+06 5467.00 0.94 0.59 0.54 -1 -1 0.94 0.306769 0.277592 1015 1367 532 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_30.v common 81.48 vpr 82.83 MiB 0.19 15068 -1 -1 1 0.60 -1 -1 40908 -1 -1 137 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84816 22 19 4233 3504 1 2181 187 22 22 484 mult_36 auto 46.0 MiB 1.46 13110 38635 8392 26373 3870 82.8 MiB 1.70 0.02 4.08302 -2563.57 -4.08302 4.08302 1.60 0.0079044 0.00704707 0.6191 0.551599 68 25874 37 1.32347e+07 5.54715e+06 2.01763e+06 4168.66 69.73 5.20592 4.5528 55470 518816 -1 20145 22 8858 10316 1212837 260181 4.14666 4.14666 -2787.95 -4.14666 0 0 2.51205e+06 5190.18 0.82 0.63 0.53 -1 -1 0.82 0.374354 0.334319 1034 1386 551 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_31.v common 33.95 vpr 92.03 MiB 0.21 15536 -1 -1 1 0.54 -1 -1 40968 -1 -1 143 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 94240 22 19 4410 3647 1 2284 193 22 22 484 mult_36 auto 47.3 MiB 1.64 14030 46981 10944 31495 4542 85.1 MiB 2.05 0.02 4.39726 -2691.53 -4.39726 4.39726 1.69 0.00826396 0.00735181 0.750864 0.669867 76 25587 29 1.32347e+07 5.63401e+06 2.20457e+06 4554.90 21.39 4.37181 3.86185 57882 574062 -1 21637 17 8701 9904 1360390 269571 4.64786 4.64786 -2958.16 -4.64786 0 0 2.73077e+06 5642.09 0.95 0.66 0.53 -1 -1 0.95 0.359117 0.325289 1077 1441 570 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_32.v common 34.65 vpr 91.80 MiB 0.21 15584 -1 -1 1 0.56 -1 -1 40596 -1 -1 145 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 94008 22 19 4484 3704 1 2331 195 22 22 484 mult_36 auto 47.7 MiB 1.41 14336 39180 9212 26344 3624 84.7 MiB 1.77 0.03 4.27196 -2750.64 -4.27196 4.27196 1.62 0.00858636 0.00767632 0.634309 0.56725 74 27846 43 1.32347e+07 5.66296e+06 2.15943e+06 4461.62 22.41 4.32683 3.82383 57402 562966 -1 21950 17 9362 10872 1422997 286951 4.52256 4.52256 -3005.56 -4.52256 0 0 2.68771e+06 5553.12 0.94 0.68 0.52 -1 -1 0.94 0.362014 0.327545 1096 1460 589 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_33.v common 33.46 vpr 95.49 MiB 0.23 16652 -1 -1 1 0.60 -1 -1 41676 -1 -1 157 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 97780 22 19 4843 4029 1 2441 208 22 22 484 mult_36 auto 49.4 MiB 1.72 14676 47024 10400 32136 4488 86.0 MiB 2.05 0.03 4.39726 -2845.68 -4.39726 4.39726 1.55 0.00893022 0.00792876 0.739729 0.658447 78 24684 29 1.32347e+07 6.23266e+06 2.25108e+06 4650.99 20.38 4.30357 3.80095 58850 595650 -1 21723 14 8860 10340 1224784 254736 4.39726 4.39726 -3004.01 -4.39726 0 0 2.82299e+06 5832.63 1.10 0.62 0.56 -1 -1 1.10 0.350478 0.318813 1185 1606 608 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_34.v common 35.27 vpr 92.53 MiB 0.24 16792 -1 -1 1 0.64 -1 -1 41540 -1 -1 160 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 94748 22 19 4917 4086 1 2486 211 22 22 484 mult_36 auto 50.2 MiB 1.74 14916 46609 10188 31704 4717 86.8 MiB 2.06 0.03 4.27196 -2997.24 -4.27196 4.27196 1.65 0.00935006 0.00833923 0.745256 0.663758 80 25429 32 1.32347e+07 6.27609e+06 2.29262e+06 4736.82 22.13 4.82122 4.25478 59334 607116 -1 22295 17 9208 10622 1372836 273552 4.27196 4.27196 -3123.26 -4.27196 0 0 2.87723e+06 5944.70 1.03 0.70 0.59 -1 -1 1.03 0.39724 0.359123 1205 1625 627 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_35.v common 23.91 vpr 87.37 MiB 0.25 17148 -1 -1 1 0.68 -1 -1 41872 -1 -1 163 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 89464 22 19 5093 4228 1 2588 214 22 22 484 mult_36 auto 51.0 MiB 1.72 15536 45583 9917 31556 4110 87.4 MiB 2.02 0.03 4.27196 -3005.45 -4.27196 4.27196 1.52 0.00816537 0.00720526 0.721311 0.642068 76 28352 31 1.32347e+07 6.31951e+06 2.20457e+06 4554.90 10.72 3.1787 2.81406 57882 574062 -1 23607 17 9965 11831 1457758 304984 4.39726 4.39726 -3480.44 -4.39726 0 0 2.73077e+06 5642.09 1.09 0.77 0.58 -1 -1 1.09 0.434285 0.393955 1248 1680 646 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_36.v common 34.24 vpr 97.46 MiB 0.24 17400 -1 -1 1 0.66 -1 -1 41956 -1 -1 165 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 99800 22 19 5167 4285 1 2632 216 22 22 484 mult_36 auto 51.2 MiB 1.70 15667 41624 8267 29885 3472 87.8 MiB 1.96 0.03 4.33362 -3152.9 -4.33362 4.33362 1.77 0.00950253 0.00843866 0.677369 0.598666 78 26435 27 1.32347e+07 6.34846e+06 2.25108e+06 4650.99 21.05 4.39077 3.8778 58850 595650 -1 23212 16 9749 11083 1295204 265440 4.39726 4.39726 -3388.18 -4.39726 0 0 2.82299e+06 5832.63 1.05 0.69 0.58 -1 -1 1.05 0.401206 0.363134 1267 1699 665 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_37.v common 27.21 vpr 89.38 MiB 0.20 17716 -1 -1 1 0.72 -1 -1 40804 -1 -1 173 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 91528 22 19 5380 4464 1 2743 225 24 24 576 mult_36 auto 53.0 MiB 1.89 17323 51525 11897 34432 5196 89.4 MiB 2.23 0.03 4.28601 -3284.49 -4.28601 4.28601 1.90 0.00966654 0.00858012 0.810665 0.716744 74 30303 40 1.59675e+07 6.86027e+06 2.56259e+06 4448.94 12.46 3.54689 3.1294 67906 667765 -1 25244 18 10317 12089 1522453 322878 4.39726 4.39726 -3731.23 -4.39726 0 0 3.19068e+06 5539.38 1.23 0.83 0.61 -1 -1 1.23 0.469646 0.425703 1321 1772 684 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_38.v common 28.01 vpr 89.96 MiB 0.26 17920 -1 -1 1 0.72 -1 -1 42312 -1 -1 176 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 92120 22 19 5454 4521 1 2787 228 24 24 576 mult_36 auto 53.0 MiB 2.00 17173 57996 13827 39781 4388 89.4 MiB 2.56 0.03 4.52256 -3242.13 -4.52256 4.52256 1.85 0.0104984 0.00938227 0.915907 0.814242 74 29865 34 1.59675e+07 6.90369e+06 2.56259e+06 4448.94 12.90 3.62968 3.2077 67906 667765 -1 25656 15 10421 12099 1547300 316808 4.64786 4.64786 -3606.77 -4.64786 0 0 3.19068e+06 5539.38 1.17 0.75 0.61 -1 -1 1.17 0.407995 0.370024 1340 1791 703 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_39.v common 31.09 vpr 90.31 MiB 0.20 18316 -1 -1 1 0.75 -1 -1 40148 -1 -1 180 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 92480 22 19 5629 4662 1 2884 232 24 24 576 mult_36 auto 53.5 MiB 2.13 18624 55768 13035 37822 4911 90.0 MiB 2.54 0.03 4.39726 -3391.54 -4.39726 4.39726 1.79 0.010358 0.00921556 0.894479 0.795788 76 33253 33 1.59675e+07 6.9616e+06 2.61600e+06 4541.67 15.82 4.23232 3.73812 68478 680951 -1 27050 17 10922 12570 1623278 339627 4.52256 4.52256 -3618.17 -4.52256 0 0 3.24203e+06 5628.53 1.17 0.85 0.66 -1 -1 1.17 0.466246 0.422387 1381 1846 722 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_40.v common 39.33 vpr 108.11 MiB 0.18 18376 -1 -1 1 0.75 -1 -1 42372 -1 -1 182 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 110700 22 19 5703 4719 1 2932 234 24 24 576 mult_36 auto 54.0 MiB 2.17 17761 53514 12161 36873 4480 90.4 MiB 2.44 0.03 4.3337 -3472.19 -4.3337 4.3337 1.79 0.010727 0.0095841 0.844577 0.750354 78 29081 31 1.59675e+07 6.99055e+06 2.67122e+06 4637.53 23.83 4.74573 4.18894 69630 706637 -1 25751 15 10304 11709 1422578 300730 4.52256 4.52256 -3658.69 -4.52256 0 0 3.35110e+06 5817.88 1.41 0.79 0.73 -1 -1 1.41 0.443078 0.403159 1400 1865 741 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_41.v common 39.74 vpr 108.50 MiB 0.27 18820 -1 -1 1 0.84 -1 -1 41520 -1 -1 190 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 111108 22 19 5950 4932 1 3040 243 24 24 576 mult_36 auto 55.4 MiB 2.28 19478 54819 12176 38018 4625 91.5 MiB 2.49 0.03 4.41131 -3650.22 -4.41131 4.41131 1.86 0.0108045 0.00967977 0.884909 0.781199 80 31276 23 1.59675e+07 7.50235e+06 2.72095e+06 4723.87 23.96 4.93786 4.35749 70206 720185 -1 27478 16 10740 12213 1485213 299160 4.52256 4.52256 -3708.57 -4.52256 0 0 3.41546e+06 5929.62 1.25 0.80 0.67 -1 -1 1.25 0.468096 0.424175 1461 1956 760 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_42.v common 31.03 vpr 92.28 MiB 0.34 19000 -1 -1 1 0.82 -1 -1 42796 -1 -1 193 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 94496 22 19 6024 4989 1 3083 246 24 24 576 mult_36 auto 55.8 MiB 2.16 19232 63386 14561 42862 5963 92.1 MiB 2.85 0.03 4.64786 -3641.46 -4.64786 4.64786 1.79 0.0109499 0.00972621 0.976979 0.866865 76 33762 25 1.59675e+07 7.54578e+06 2.61600e+06 4541.67 14.93 4.37764 3.86802 68478 680951 -1 28522 16 11374 13382 1767274 362795 4.77316 4.77316 -3938.14 -4.77316 0 0 3.24203e+06 5628.53 1.18 0.86 0.61 -1 -1 1.18 0.47005 0.425792 1480 1975 779 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_43.v common 44.44 vpr 110.86 MiB 0.25 19420 -1 -1 1 0.81 -1 -1 43432 -1 -1 199 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 113516 22 19 6198 5129 1 3182 252 24 24 576 mult_36 auto 56.8 MiB 2.22 20650 59877 13155 41281 5441 93.0 MiB 2.69 0.03 4.39726 -3811.72 -4.39726 4.39726 1.80 0.0113989 0.0101425 0.93249 0.82293 78 35628 33 1.59675e+07 7.63263e+06 2.67122e+06 4637.53 28.08 6.09299 5.36447 69630 706637 -1 29571 16 11494 13119 1806404 359043 4.64786 4.64786 -3950.34 -4.64786 0 0 3.35110e+06 5817.88 1.62 0.88 0.64 -1 -1 1.62 0.485586 0.439574 1523 2030 798 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_44.v common 41.47 vpr 119.62 MiB 0.29 19552 -1 -1 1 0.86 -1 -1 43288 -1 -1 200 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 122492 22 19 6272 5186 1 3228 253 24 24 576 mult_36 auto 57.2 MiB 2.37 21041 60977 14663 40942 5372 93.3 MiB 2.90 0.04 4.39726 -3882.95 -4.39726 4.39726 1.83 0.0120339 0.0107479 0.965688 0.853539 88 32563 34 1.59675e+07 7.64711e+06 2.98162e+06 5176.42 24.81 5.68218 5.00279 73078 787199 -1 29194 16 11469 13191 1649656 338458 4.52256 4.52256 -4202.34 -4.52256 0 0 3.70823e+06 6437.90 1.37 0.86 0.74 -1 -1 1.37 0.490463 0.443956 1542 2049 817 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_45.v common 31.63 vpr 96.93 MiB 0.31 19788 -1 -1 1 0.96 -1 -1 43684 -1 -1 208 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 99256 22 19 6485 5365 1 3341 262 24 24 576 mult_36 auto 58.2 MiB 2.18 21508 64788 14398 44765 5625 94.3 MiB 2.96 0.04 4.39726 -3920.4 -4.39726 4.39726 1.82 0.0120655 0.0107353 1.00404 0.891916 80 36519 26 1.59675e+07 8.15891e+06 2.72095e+06 4723.87 14.95 4.18603 3.70344 70206 720185 -1 30728 17 12367 14306 1778984 366147 4.52256 4.52256 -4282.82 -4.52256 0 0 3.41546e+06 5929.62 1.23 0.96 0.66 -1 -1 1.23 0.563856 0.512964 1593 2122 836 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_46.v common 43.60 vpr 113.10 MiB 0.31 20108 -1 -1 1 0.96 -1 -1 43992 -1 -1 210 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 115812 22 19 6559 5422 1 3381 264 24 24 576 mult_36 auto 58.8 MiB 2.29 20947 70482 16577 47310 6595 94.9 MiB 3.17 0.04 4.14666 -3968.32 -4.14666 4.14666 1.85 0.012008 0.01068 1.09312 0.969505 78 35129 34 1.59675e+07 8.18786e+06 2.67122e+06 4637.53 26.58 6.53109 5.74824 69630 706637 -1 30447 20 12649 14767 1718007 358511 4.39726 4.39726 -4098.93 -4.39726 0 0 3.35110e+06 5817.88 1.22 1.01 0.66 -1 -1 1.22 0.600636 0.541695 1613 2141 855 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_47.v common 47.16 vpr 122.21 MiB 0.31 20408 -1 -1 1 0.96 -1 -1 44568 -1 -1 216 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 125140 22 19 6735 5564 1 3478 270 24 24 576 mult_36 auto 59.6 MiB 2.53 22209 70030 15451 47782 6797 95.8 MiB 3.27 0.04 4.41516 -4128.21 -4.41516 4.41516 1.90 0.012367 0.0110883 1.07519 0.950715 84 37671 32 1.59675e+07 8.27472e+06 2.84938e+06 4946.85 29.46 6.41562 5.64855 71930 760447 -1 31070 17 12543 14162 1836210 367421 4.52256 4.52256 -4366.36 -4.52256 0 0 3.60864e+06 6265.01 1.28 0.95 0.71 -1 -1 1.28 0.546066 0.493656 1656 2196 874 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_48.v common 33.64 vpr 100.38 MiB 0.29 20636 -1 -1 1 1.00 -1 -1 44136 -1 -1 218 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 102784 22 19 6809 5621 1 3528 272 24 24 576 mult_36 auto 60.0 MiB 2.57 22399 68109 15563 46856 5690 96.1 MiB 3.22 0.04 4.28601 -4165.16 -4.28601 4.28601 1.83 0.0127296 0.011338 1.05848 0.937827 84 37990 31 1.59675e+07 8.30367e+06 2.84938e+06 4946.85 15.89 4.85017 4.28337 71930 760447 -1 31425 16 12475 14355 1676213 339117 4.64786 4.64786 -4427.09 -4.64786 0 0 3.60864e+06 6265.01 1.31 0.90 0.69 -1 -1 1.31 0.528691 0.478665 1674 2215 893 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_49.v common 91.19 vpr 100.55 MiB 0.26 21136 -1 -1 1 1.07 -1 -1 44496 -1 -1 228 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 102960 22 19 7094 5872 1 3643 283 24 24 576 mult_36 auto 61.5 MiB 2.56 22044 72667 16155 50381 6131 97.7 MiB 3.44 0.05 4.16456 -4302.53 -4.16456 4.16456 1.96 0.0139971 0.0126181 1.13535 0.99667 78 36952 26 1.59675e+07 8.84444e+06 2.67122e+06 4637.53 73.01 8.13038 7.12655 69630 706637 -1 31678 15 13251 15339 1784571 373556 4.39726 4.39726 -4573.37 -4.39726 0 0 3.35110e+06 5817.88 1.22 0.95 0.65 -1 -1 1.22 0.53672 0.486946 1745 2324 912 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_50.v common 47.51 vpr 124.69 MiB 0.33 21372 -1 -1 1 1.05 -1 -1 44172 -1 -1 230 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 127684 22 19 7168 5929 1 3677 285 24 24 576 mult_36 auto 62.2 MiB 2.58 23518 76182 17449 52130 6603 98.2 MiB 3.52 0.04 4.39726 -4337.05 -4.39726 4.39726 1.95 0.013027 0.0115988 1.15545 1.02334 80 39367 34 1.59675e+07 8.87339e+06 2.72095e+06 4723.87 29.16 6.8551 6.04215 70206 720185 -1 33218 16 13686 16071 1927329 395418 4.39726 4.39726 -4628.99 -4.39726 0 0 3.41546e+06 5929.62 1.23 1.02 0.66 -1 -1 1.23 0.569225 0.516719 1764 2343 931 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_51.v common 37.21 vpr 104.31 MiB 0.34 21684 -1 -1 1 1.07 -1 -1 44784 -1 -1 235 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 106812 22 19 7344 6071 1 3784 290 24 24 576 mult_36 auto 62.9 MiB 2.60 23160 75092 17160 51061 6871 98.9 MiB 3.59 0.05 4.28601 -4423.35 -4.28601 4.28601 1.86 0.0133835 0.0120262 1.17155 1.0373 80 39279 28 1.59675e+07 8.94577e+06 2.72095e+06 4723.87 19.00 5.43037 4.78029 70206 720185 -1 33312 15 13811 15847 1871805 392568 4.52256 4.52256 -4830.06 -4.52256 0 0 3.41546e+06 5929.62 1.23 0.98 0.66 -1 -1 1.23 0.557587 0.504951 1808 2398 950 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_52.v common 47.22 vpr 126.42 MiB 0.31 21888 -1 -1 1 1.09 -1 -1 45120 -1 -1 237 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 129456 22 19 7418 6128 1 3829 292 24 24 576 mult_36 auto 63.2 MiB 2.64 24388 75796 17173 51253 7370 99.2 MiB 3.56 0.05 4.39726 -4541.6 -4.39726 4.39726 1.80 0.0126601 0.011379 1.16188 1.02792 82 40166 40 1.59675e+07 8.97472e+06 2.78508e+06 4835.20 28.67 7.23256 6.3758 70778 734779 -1 34142 16 13821 15840 1861707 392582 4.52256 4.52256 -4916.53 -4.52256 0 0 3.48632e+06 6052.64 1.23 1.01 0.67 -1 -1 1.23 0.581493 0.525221 1827 2417 969 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_14.v common 13.47 vpr 67.50 MiB 0.07 9492 -1 -1 1 0.16 -1 -1 34716 -1 -1 43 22 0 4 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69120 22 19 1246 925 1 719 88 16 16 256 mult_36 auto 29.6 MiB 1.09 3708 12178 3140 7111 1927 67.5 MiB 0.44 0.01 7.85627 -369.053 -7.85627 7.85627 0.72 0.00258406 0.0023508 0.173232 0.157969 56 7704 42 6.59459e+06 2.20645e+06 849745. 3319.32 8.06 1.27986 1.14263 26364 208198 -1 6616 32 8380 9269 1473487 377056 8.18784 8.18784 -442.129 -8.18784 0 0 1.04740e+06 4091.43 0.32 0.52 0.20 -1 -1 0.32 0.183807 0.166157 299 285 247 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_15.v common 9.95 vpr 68.09 MiB 0.10 9632 -1 -1 1 0.16 -1 -1 35108 -1 -1 46 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69728 22 19 1344 989 1 778 92 16 16 256 mult_36 auto 30.5 MiB 1.08 4253 11891 2718 7916 1257 68.1 MiB 0.45 0.01 8.06786 -397.609 -8.06786 8.06786 0.69 0.00279181 0.00254478 0.172785 0.157679 54 9006 35 6.59459e+06 2.64588e+06 829453. 3240.05 4.65 0.906662 0.813326 26108 202796 -1 7077 27 6857 7815 969928 231501 8.88753 8.88753 -500.255 -8.88753 0 0 1.02522e+06 4004.78 0.31 0.38 0.19 -1 -1 0.31 0.162094 0.146534 321 304 266 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_16.v common 14.64 vpr 68.57 MiB 0.09 9792 -1 -1 1 0.17 -1 -1 35092 -1 -1 48 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70216 22 19 1418 1046 1 822 94 16 16 256 mult_36 auto 30.8 MiB 1.12 4528 13087 3331 8118 1638 68.6 MiB 0.49 0.01 7.80064 -415.87 -7.80064 7.80064 0.68 0.0029328 0.00267154 0.191162 0.173985 60 8307 44 6.59459e+06 2.67484e+06 890343. 3477.90 9.18 1.52543 1.36184 27128 224764 -1 7269 23 7299 8032 994162 223606 8.50533 8.50533 -467.681 -8.50533 0 0 1.11577e+06 4358.47 0.33 0.38 0.21 -1 -1 0.33 0.153916 0.139574 340 323 285 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_17.v common 11.89 vpr 69.04 MiB 0.12 10252 -1 -1 1 0.18 -1 -1 35440 -1 -1 52 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70692 22 19 1518 1112 1 879 98 16 16 256 mult_36 auto 31.3 MiB 1.06 4723 16523 4141 9979 2403 69.0 MiB 0.63 0.01 8.49449 -420.557 -8.49449 8.49449 0.73 0.00312711 0.00281815 0.24095 0.218853 56 9780 47 6.59459e+06 2.73274e+06 849745. 3319.32 6.06 1.22168 1.09344 26364 208198 -1 8101 27 9367 10451 1358860 310210 9.29868 9.29868 -518.713 -9.29868 0 0 1.04740e+06 4091.43 0.35 0.48 0.20 -1 -1 0.35 0.184547 0.16676 365 342 304 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_18.v common 12.83 vpr 69.46 MiB 0.09 10440 -1 -1 1 0.21 -1 -1 34912 -1 -1 55 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 71132 22 19 1592 1169 1 918 101 16 16 256 mult_36 auto 31.8 MiB 1.37 5255 15846 3816 10145 1885 69.5 MiB 0.63 0.01 8.73075 -474.97 -8.73075 8.73075 0.68 0.0032004 0.00290607 0.232108 0.210858 58 9951 50 6.59459e+06 2.77617e+06 871168. 3403.00 6.75 1.30445 1.16503 26872 219187 -1 8328 26 8188 9162 1100395 244875 8.96668 8.96668 -544.981 -8.96668 0 0 1.09288e+06 4269.05 0.33 0.43 0.21 -1 -1 0.33 0.185688 0.167834 383 361 323 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_19.v common 33.22 vpr 69.91 MiB 0.39 10476 -1 -1 1 0.19 -1 -1 35380 -1 -1 58 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 71588 22 19 1688 1231 1 975 105 16 16 256 mult_36 auto 32.3 MiB 1.26 5522 18136 4926 9933 3277 69.9 MiB 0.66 0.01 8.61576 -458.576 -8.61576 8.61576 0.94 0.00294088 0.00264858 0.263798 0.240651 58 11561 41 6.59459e+06 3.21559e+06 871168. 3403.00 26.17 2.03831 1.82425 26872 219187 -1 8681 26 8638 9740 1126779 262997 9.32648 9.32648 -596.474 -9.32648 0 0 1.09288e+06 4269.05 0.35 0.52 0.23 -1 -1 0.35 0.221009 0.20158 404 380 342 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_20.v common 17.23 vpr 70.36 MiB 0.07 10684 -1 -1 1 0.22 -1 -1 35604 -1 -1 59 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72044 22 19 1762 1288 1 1013 106 16 16 256 mult_36 auto 32.8 MiB 1.47 5934 14856 3578 9339 1939 70.4 MiB 0.75 0.01 8.51815 -499.89 -8.51815 8.51815 0.72 0.00346063 0.00318757 0.224912 0.203368 70 10400 29 6.59459e+06 3.23007e+06 1.02522e+06 4004.78 10.76 1.83565 1.6389 28912 262511 -1 9026 25 8234 9301 1245461 261737 8.78618 8.78618 -561.652 -8.78618 0 0 1.29210e+06 5047.26 0.39 0.47 0.26 -1 -1 0.39 0.197869 0.179098 423 399 361 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_21.v common 17.02 vpr 71.02 MiB 0.13 11072 -1 -1 1 0.23 -1 -1 35820 -1 -1 62 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72720 22 19 1859 1351 1 1072 109 16 16 256 mult_36 auto 33.4 MiB 1.34 6071 17789 4553 10762 2474 71.0 MiB 0.75 0.01 8.64699 -503.256 -8.64699 8.64699 0.71 0.00463067 0.00432019 0.275507 0.250627 70 10334 32 6.59459e+06 3.2735e+06 1.02522e+06 4004.78 10.49 2.02782 1.81459 28912 262511 -1 9048 24 8163 9276 1068033 251456 8.68598 8.68598 -630.827 -8.68598 0 0 1.29210e+06 5047.26 0.44 0.47 0.26 -1 -1 0.44 0.217339 0.196573 445 418 380 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_22.v common 14.95 vpr 71.12 MiB 0.13 11072 -1 -1 1 0.24 -1 -1 35876 -1 -1 66 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72824 22 19 1933 1408 1 1112 113 16 16 256 mult_36 auto 33.6 MiB 1.62 6284 16766 3772 10688 2306 71.1 MiB 0.74 0.01 8.66433 -531.367 -8.66433 8.66433 0.68 0.00368851 0.00333019 0.265203 0.240262 64 12202 40 6.59459e+06 3.3314e+06 943753. 3686.54 8.18 1.60171 1.43542 27892 240595 -1 9937 26 8773 9855 1261410 275837 8.85048 8.85048 -653.969 -8.85048 0 0 1.19033e+06 4649.74 0.36 0.51 0.24 -1 -1 0.36 0.222544 0.20077 464 437 399 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_23.v common 14.83 vpr 71.54 MiB 0.12 11532 -1 -1 1 0.27 -1 -1 36092 -1 -1 68 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73260 22 19 2031 1472 1 1172 116 18 18 324 mult_36 auto 33.9 MiB 1.81 6825 18164 4253 11642 2269 71.5 MiB 0.79 0.01 8.63545 -565.294 -8.63545 8.63545 0.91 0.00421301 0.00383285 0.283864 0.257445 64 12993 44 8.13932e+06 3.75635e+06 1.23838e+06 3822.15 6.98 1.43978 1.29215 35972 318676 -1 10932 27 9839 11273 1504542 329887 9.41448 9.41448 -741.79 -9.41448 0 0 1.56068e+06 4816.91 0.51 0.58 0.35 -1 -1 0.51 0.242034 0.218526 486 456 418 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_24.v common 42.09 vpr 72.06 MiB 0.15 11512 -1 -1 1 0.27 -1 -1 36288 -1 -1 71 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73788 22 19 2105 1529 1 1210 119 18 18 324 mult_36 auto 34.3 MiB 1.82 7123 25231 6335 15708 3188 72.1 MiB 1.10 0.01 8.55031 -569.619 -8.55031 8.55031 0.91 0.00443936 0.00399423 0.389871 0.353056 60 14337 47 8.13932e+06 3.79978e+06 1.16833e+06 3605.96 33.87 2.57253 2.29241 35004 297736 -1 11588 24 11181 12858 1586113 344104 8.96778 8.96778 -766.812 -8.96778 0 0 1.46313e+06 4515.82 0.46 0.60 0.31 -1 -1 0.46 0.233833 0.2119 505 475 437 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_25.v common 51.46 vpr 72.31 MiB 0.16 11872 -1 -1 1 0.30 -1 -1 36508 -1 -1 73 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74048 22 19 2201 1591 1 1267 121 18 18 324 mult_36 auto 35.0 MiB 1.71 7919 21948 5452 13185 3311 72.3 MiB 0.99 0.01 8.66171 -618.683 -8.66171 8.66171 0.99 0.00453531 0.004069 0.356443 0.322407 60 16508 37 8.13932e+06 3.82873e+06 1.16833e+06 3605.96 43.11 2.77267 2.47002 35004 297736 -1 12761 25 12967 14678 2069285 453276 9.40498 9.40498 -864.999 -9.40498 0 0 1.46313e+06 4515.82 0.51 0.74 0.31 -1 -1 0.51 0.256249 0.232151 526 494 456 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_26.v common 15.02 vpr 73.08 MiB 0.15 11972 -1 -1 1 0.28 -1 -1 37336 -1 -1 76 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74832 22 19 2275 1648 1 1304 124 18 18 324 mult_36 auto 35.6 MiB 1.88 8331 21445 5256 13853 2336 73.1 MiB 0.99 0.01 8.87612 -625.532 -8.87612 8.87612 0.94 0.00465293 0.00422627 0.345585 0.312888 68 14555 27 8.13932e+06 3.87216e+06 1.31159e+06 4048.11 6.67 1.46 1.30432 36620 334356 -1 12285 27 11023 12770 1526505 337406 8.79728 8.79728 -914.308 -8.79728 0 0 1.63345e+06 5041.52 0.51 0.62 0.33 -1 -1 0.51 0.27222 0.245931 546 513 475 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_27.v common 19.14 vpr 73.50 MiB 0.15 12220 -1 -1 1 0.32 -1 -1 36708 -1 -1 82 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75264 22 19 2385 1724 1 1377 131 18 18 324 mult_36 auto 36.1 MiB 1.83 8472 26027 6274 16532 3221 73.5 MiB 1.13 0.01 8.72365 -592.733 -8.72365 8.72365 0.92 0.00481193 0.00436938 0.406245 0.368109 58 17784 50 8.13932e+06 4.35501e+06 1.14310e+06 3528.09 10.50 2.00245 1.78959 34680 290288 -1 14148 29 14549 16458 2410411 525176 9.27518 9.27518 -913.009 -9.27518 0 0 1.43297e+06 4422.75 0.50 0.77 0.28 -1 -1 0.50 0.282901 0.255 575 532 494 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_28.v common 21.96 vpr 74.06 MiB 0.17 12284 -1 -1 1 0.32 -1 -1 36784 -1 -1 83 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75840 22 19 2459 1781 1 1418 132 18 18 324 mult_36 auto 36.7 MiB 1.98 8415 20232 4376 13738 2118 74.1 MiB 0.91 0.02 8.74245 -615.172 -8.74245 8.74245 0.91 0.00496277 0.00449133 0.33096 0.299663 68 14718 31 8.13932e+06 4.36948e+06 1.31159e+06 4048.11 13.59 2.46318 2.19044 36620 334356 -1 12434 24 10798 12644 1438060 323636 8.84138 8.84138 -805.552 -8.84138 0 0 1.63345e+06 5041.52 0.50 0.60 0.32 -1 -1 0.50 0.267251 0.241829 594 551 513 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_29.v common 20.32 vpr 74.46 MiB 0.16 12520 -1 -1 1 0.33 -1 -1 37132 -1 -1 85 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76252 22 19 2565 1853 1 1483 135 22 22 484 mult_36 auto 37.1 MiB 2.35 8830 25047 6081 16121 2845 74.5 MiB 1.19 0.02 8.91879 -700.843 -8.91879 8.91879 1.50 0.00530016 0.00482398 0.40549 0.367647 62 17709 48 1.32347e+07 4.79443e+06 1.85176e+06 3825.95 9.46 1.85364 1.6594 53538 472186 -1 13797 24 12694 14750 1732893 386603 9.08828 9.08828 -955.656 -9.08828 0 0 2.29262e+06 4736.82 0.75 0.68 0.43 -1 -1 0.75 0.28444 0.257296 619 570 532 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_30.v common 31.37 vpr 82.55 MiB 0.18 12716 -1 -1 1 0.33 -1 -1 37284 -1 -1 89 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84532 22 19 2639 1910 1 1523 139 22 22 484 mult_36 auto 37.8 MiB 2.36 9348 24192 5766 15227 3199 75.0 MiB 1.09 0.02 8.94231 -671.912 -8.94231 8.94231 1.47 0.00553517 0.00502224 0.386505 0.350359 72 16803 30 1.32347e+07 4.85233e+06 2.11301e+06 4365.72 19.96 2.95833 2.63835 56918 551676 -1 14084 25 12303 13644 1958815 410079 9.25628 9.25628 -846.537 -9.25628 0 0 2.64603e+06 5467.00 1.12 0.80 0.59 -1 -1 1.12 0.305967 0.277995 639 589 551 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_31.v common 68.48 vpr 75.51 MiB 0.16 12984 -1 -1 1 0.35 -1 -1 37416 -1 -1 93 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77324 22 19 2744 1981 1 1589 143 22 22 484 mult_36 auto 38.3 MiB 2.25 10398 27745 6556 18229 2960 75.5 MiB 1.33 0.02 8.84777 -733.653 -8.84777 8.84777 1.48 0.00563605 0.00512436 0.453526 0.409742 66 19015 48 1.32347e+07 4.91023e+06 1.96511e+06 4060.15 57.27 3.54831 3.16135 54986 507526 -1 15704 25 13107 15387 2042442 427316 9.33938 9.33938 -1025.78 -9.33938 0 0 2.45963e+06 5081.88 0.84 0.81 0.46 -1 -1 0.84 0.32621 0.29639 665 608 570 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_32.v common 65.53 vpr 75.58 MiB 0.19 13036 -1 -1 1 0.34 -1 -1 36932 -1 -1 96 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77392 22 19 2818 2038 1 1626 146 22 22 484 mult_36 auto 38.4 MiB 2.67 10138 32786 8279 20912 3595 75.6 MiB 1.52 0.02 8.84685 -737.429 -8.84685 8.84685 1.54 0.00586955 0.00533458 0.520564 0.470392 66 19171 39 1.32347e+07 4.95366e+06 1.96511e+06 4060.15 53.63 3.58634 3.19575 54986 507526 -1 15563 25 13541 16004 2089577 446360 8.79458 8.79458 -1157.81 -8.79458 0 0 2.45963e+06 5081.88 0.88 0.83 0.47 -1 -1 0.88 0.329431 0.298828 684 627 589 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_33.v common 32.92 vpr 82.66 MiB 0.20 13708 -1 -1 1 0.41 -1 -1 37484 -1 -1 100 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84648 22 19 2923 2109 1 1697 151 22 22 484 mult_36 auto 39.3 MiB 2.61 10339 29825 6892 19522 3411 76.5 MiB 1.50 0.02 9.50859 -774.184 -9.50859 9.50859 1.70 0.00601725 0.00547101 0.473221 0.430001 70 17933 28 1.32347e+07 5.40755e+06 2.06816e+06 4273.05 20.43 3.13313 2.7995 56434 539830 -1 15780 25 14300 16269 2262443 466889 9.80182 9.80182 -1112.67 -9.80182 0 0 2.60483e+06 5381.88 0.89 0.84 0.52 -1 -1 0.89 0.332473 0.300837 710 646 608 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_34.v common 33.98 vpr 82.27 MiB 0.16 13812 -1 -1 1 0.40 -1 -1 37836 -1 -1 101 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84244 22 19 2997 2166 1 1733 152 22 22 484 mult_36 auto 39.4 MiB 3.66 11393 32957 7932 21559 3466 76.7 MiB 1.54 0.02 9.96699 -781.499 -9.96699 9.96699 1.47 0.00619522 0.00553741 0.530832 0.479876 74 20099 33 1.32347e+07 5.42203e+06 2.15943e+06 4461.62 20.71 3.1816 2.84071 57402 562966 -1 17098 27 14084 16238 2342761 480686 10.2744 10.2744 -1145.98 -10.2744 0 0 2.68771e+06 5553.12 0.94 0.94 0.52 -1 -1 0.94 0.377366 0.342241 729 665 627 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_35.v common 26.49 vpr 77.30 MiB 0.18 14160 -1 -1 1 0.44 -1 -1 37884 -1 -1 106 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79156 22 19 3101 2236 1 1798 157 22 22 484 mult_36 auto 39.9 MiB 3.17 11076 33151 7719 21806 3626 77.3 MiB 1.64 0.04 9.46565 -787.471 -9.46565 9.46565 1.49 0.00617733 0.00569105 0.525675 0.475764 68 20627 48 1.32347e+07 5.49441e+06 2.01763e+06 4168.66 13.68 2.34622 2.10248 55470 518816 -1 16941 23 14184 16448 2056200 451208 9.46312 9.46312 -1330.53 -9.46312 0 0 2.51205e+06 5190.18 0.85 0.81 0.48 -1 -1 0.85 0.336439 0.305002 755 684 646 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_36.v common 25.59 vpr 77.69 MiB 0.22 14152 -1 -1 1 0.42 -1 -1 38064 -1 -1 107 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79556 22 19 3175 2293 1 1835 158 22 22 484 mult_36 auto 40.6 MiB 3.81 11333 30475 6946 20367 3162 77.7 MiB 1.43 0.02 9.75629 -817.637 -9.75629 9.75629 1.48 0.00649147 0.00590146 0.493745 0.447768 72 20591 43 1.32347e+07 5.50888e+06 2.11301e+06 4365.72 12.20 2.40662 2.16213 56918 551676 -1 17175 24 14921 17420 2216072 475647 9.56212 9.56212 -1266.13 -9.56212 0 0 2.64603e+06 5467.00 0.92 0.87 0.51 -1 -1 0.92 0.353933 0.318575 773 703 665 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_37.v common 46.09 vpr 93.44 MiB 0.16 14484 -1 -1 1 0.45 -1 -1 37564 -1 -1 111 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 95680 22 19 3280 2364 1 1905 163 24 24 576 mult_36 auto 41.2 MiB 3.80 12992 37988 9582 24747 3659 78.2 MiB 1.85 0.02 9.59371 -904.981 -9.59371 9.59371 1.81 0.00671007 0.0061004 0.60633 0.547181 72 23175 47 1.59675e+07 5.96278e+06 2.50747e+06 4353.24 31.07 4.22254 3.76282 67330 654343 -1 18905 25 16599 18922 2890425 575861 10.1337 10.1337 -1166.9 -10.1337 0 0 3.14081e+06 5452.80 1.09 1.02 0.60 -1 -1 1.09 0.370976 0.335353 798 722 684 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_38.v common 30.55 vpr 79.25 MiB 0.27 14552 -1 -1 1 0.47 -1 -1 37992 -1 -1 113 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81156 22 19 3354 2421 1 1940 165 24 24 576 mult_36 auto 41.6 MiB 4.09 12402 35873 8875 23165 3833 78.7 MiB 1.70 0.02 9.44139 -985.249 -9.44139 9.44139 1.84 0.00683413 0.00620033 0.581529 0.522968 78 19594 28 1.59675e+07 5.99174e+06 2.67122e+06 4637.53 15.24 2.76789 2.48397 69630 706637 -1 17513 23 14127 16340 2018929 414501 9.66552 9.66552 -1278.49 -9.66552 0 0 3.35110e+06 5817.88 1.21 0.82 0.65 -1 -1 1.21 0.353132 0.31993 818 741 703 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_39.v common 38.96 vpr 95.54 MiB 0.19 14952 -1 -1 1 0.49 -1 -1 38264 -1 -1 117 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 97832 22 19 3457 2490 1 2006 169 24 24 576 mult_36 auto 42.2 MiB 4.23 13614 27255 5416 19238 2601 79.4 MiB 1.33 0.02 9.69926 -906.242 -9.69926 9.69926 1.86 0.00706968 0.00642164 0.444678 0.402447 84 20933 31 1.59675e+07 6.04964e+06 2.84938e+06 4946.85 23.85 3.54978 3.17031 71930 760447 -1 18580 22 13085 14994 1871344 387873 9.79872 9.79872 -1115.89 -9.79872 0 0 3.60864e+06 6265.01 1.26 0.80 0.72 -1 -1 1.26 0.357236 0.324121 842 760 722 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_40.v common 31.46 vpr 79.49 MiB 0.28 15000 -1 -1 1 0.53 -1 -1 38816 -1 -1 120 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81396 22 19 3531 2547 1 2046 172 24 24 576 mult_36 auto 42.6 MiB 4.52 12855 39846 9122 26150 4574 79.5 MiB 1.98 0.02 9.60743 -951.577 -9.60743 9.60743 1.83 0.00715563 0.00648843 0.646643 0.583276 70 22646 29 1.59675e+07 6.09306e+06 2.45377e+06 4260.01 15.29 2.80319 2.5069 66754 640332 -1 19155 26 16387 18725 2648043 543957 9.41322 9.41322 -1230.64 -9.41322 0 0 3.09179e+06 5367.68 1.11 1.03 0.59 -1 -1 1.11 0.413521 0.373105 862 779 741 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_41.v common 43.29 vpr 93.64 MiB 0.26 15364 -1 -1 1 0.52 -1 -1 38008 -1 -1 122 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 95888 22 19 3634 2616 1 2109 175 24 24 576 mult_36 auto 43.1 MiB 4.19 13732 39784 9257 26530 3997 80.0 MiB 1.90 0.01 9.77499 -937.901 -9.77499 9.77499 1.91 0.00364268 0.00326392 0.632842 0.570919 70 23378 41 1.59675e+07 6.51802e+06 2.45377e+06 4260.01 27.42 4.58091 4.09563 66754 640332 -1 19768 25 16507 18827 2418548 524828 9.67842 9.67842 -1441.57 -9.67842 0 0 3.09179e+06 5367.68 1.08 1.01 0.59 -1 -1 1.08 0.418007 0.378816 886 798 760 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_42.v common 44.73 vpr 97.15 MiB 0.29 15304 -1 -1 1 0.49 -1 -1 38376 -1 -1 125 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 99480 22 19 3708 2673 1 2146 178 24 24 576 mult_36 auto 43.4 MiB 4.79 14252 40678 9580 27421 3677 80.7 MiB 2.00 0.02 9.70673 -1014.41 -9.70673 9.70673 1.96 0.00748921 0.006782 0.655664 0.587736 76 23229 30 1.59675e+07 6.56144e+06 2.61600e+06 4541.67 27.63 4.31102 3.84789 68478 680951 -1 20019 25 15618 18078 2466250 501398 9.74542 9.74542 -1430.37 -9.74542 0 0 3.24203e+06 5628.53 1.20 1.00 0.69 -1 -1 1.20 0.424869 0.384398 906 817 779 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_43.v common 31.93 vpr 81.47 MiB 0.13 15600 -1 -1 1 0.54 -1 -1 38888 -1 -1 129 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83428 22 19 3810 2741 1 2211 182 24 24 576 mult_36 auto 43.7 MiB 4.77 14383 37777 8939 25288 3550 80.9 MiB 1.84 0.03 9.56815 -970.936 -9.56815 9.56815 2.11 0.00794176 0.0072101 0.62453 0.562609 70 25146 43 1.59675e+07 6.61934e+06 2.45377e+06 4260.01 14.69 3.04493 2.72148 66754 640332 -1 20927 25 18462 21016 2744808 580983 9.95542 9.95542 -1312.26 -9.95542 0 0 3.09179e+06 5367.68 1.20 1.11 0.63 -1 -1 1.20 0.448634 0.404801 930 836 798 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_44.v common 43.58 vpr 93.62 MiB 0.18 15792 -1 -1 1 0.55 -1 -1 38428 -1 -1 132 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 95864 22 19 3884 2798 1 2252 185 24 24 576 mult_36 auto 44.2 MiB 4.82 14460 39635 8934 27519 3182 81.3 MiB 2.04 0.03 9.61645 -992.888 -9.61645 9.61645 1.93 0.00776654 0.00703702 0.638645 0.572582 74 24935 34 1.59675e+07 6.66277e+06 2.56259e+06 4448.94 25.96 4.28464 3.81525 67906 667765 -1 21311 26 17785 20500 2693830 566652 10.0696 10.0696 -1333.67 -10.0696 0 0 3.19068e+06 5539.38 1.15 1.13 0.69 -1 -1 1.15 0.46633 0.420578 949 855 817 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_45.v common 43.31 vpr 98.71 MiB 0.23 15972 -1 -1 1 0.60 -1 -1 40540 -1 -1 135 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 101080 22 19 3989 2869 1 2317 189 24 24 576 mult_36 auto 44.8 MiB 4.97 14618 41381 9719 27735 3927 81.9 MiB 2.03 0.03 9.77027 -1011.74 -9.77027 9.77027 1.76 0.00837097 0.00763983 0.656671 0.592194 78 23011 26 1.59675e+07 7.1022e+06 2.67122e+06 4637.53 26.34 4.14805 3.71301 69630 706637 -1 20474 24 15067 17561 2112975 457095 9.55112 9.55112 -1317.87 -9.55112 0 0 3.35110e+06 5817.88 1.24 0.97 0.68 -1 -1 1.24 0.451627 0.408853 975 874 836 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_46.v common 45.09 vpr 98.08 MiB 0.22 16236 -1 -1 1 0.64 -1 -1 40460 -1 -1 136 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 100436 22 19 4063 2926 1 2354 190 24 24 576 mult_36 auto 44.8 MiB 5.30 16350 37864 7792 26746 3326 81.8 MiB 1.93 0.03 9.83665 -1114.77 -9.83665 9.83665 1.79 0.00838578 0.00746845 0.6195 0.552372 82 25929 47 1.59675e+07 7.11667e+06 2.78508e+06 4835.20 27.62 4.54267 4.04585 70778 734779 -1 22200 23 15637 18321 2342525 476667 9.76082 9.76082 -1542.32 -9.76082 0 0 3.48632e+06 6052.64 1.34 1.02 0.69 -1 -1 1.34 0.437433 0.397511 993 893 855 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_47.v common 46.44 vpr 98.12 MiB 0.24 16664 -1 -1 1 0.72 -1 -1 40796 -1 -1 141 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 100476 22 19 4167 2996 1 2420 195 24 24 576 mult_36 auto 45.5 MiB 5.15 16260 49350 11375 33104 4871 82.6 MiB 2.46 0.03 9.79725 -1090.73 -9.79725 9.79725 1.78 0.00859969 0.00767609 0.784526 0.704854 76 27046 30 1.59675e+07 7.18905e+06 2.61600e+06 4541.67 28.05 4.84586 4.32708 68478 680951 -1 22864 26 18735 21708 2814560 591545 10.3465 10.3465 -1365.53 -10.3465 0 0 3.24203e+06 5628.53 1.28 1.26 0.67 -1 -1 1.28 0.515085 0.464694 1019 912 874 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_48.v common 37.18 vpr 82.97 MiB 0.23 16724 -1 -1 1 0.73 -1 -1 40952 -1 -1 144 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84960 22 19 4241 3053 1 2458 198 24 24 576 mult_36 auto 46.0 MiB 5.89 15592 42822 9203 28894 4725 83.0 MiB 2.05 0.03 9.79149 -1061.63 -9.79149 9.79149 1.85 0.00860221 0.00780729 0.67235 0.608023 68 28638 50 1.59675e+07 7.23248e+06 2.39371e+06 4155.74 18.46 3.81537 3.40882 65606 615345 -1 22680 27 19526 22864 2812735 612091 10.3416 10.3416 -1585.91 -10.3416 0 0 2.98162e+06 5176.42 1.38 1.29 0.64 -1 -1 1.38 0.574749 0.519624 1038 931 893 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_49.v common 49.47 vpr 98.13 MiB 0.30 17048 -1 -1 1 0.65 -1 -1 41184 -1 -1 145 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 100484 22 19 4346 3124 1 2527 200 24 24 576 mult_36 auto 46.9 MiB 6.45 16724 42832 9460 29682 3690 83.5 MiB 2.25 0.03 10.0387 -1078.78 -10.0387 10.0387 1.77 0.00873391 0.00792061 0.70171 0.633138 76 27160 30 1.59675e+07 7.64295e+06 2.61600e+06 4541.67 29.55 5.00556 4.47073 68478 680951 -1 23572 25 18876 21876 2791246 590608 10.4455 10.4455 -1489.69 -10.4455 0 0 3.24203e+06 5628.53 1.30 1.18 0.65 -1 -1 1.30 0.513756 0.465738 1062 950 912 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_50.v common 52.31 vpr 98.34 MiB 0.24 17068 -1 -1 1 0.73 -1 -1 41188 -1 -1 148 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 100700 22 19 4420 3181 1 2563 203 24 24 576 mult_36 auto 47.2 MiB 6.89 17398 44307 10226 29911 4170 84.0 MiB 2.30 0.04 9.9037 -1079.02 -9.9037 9.9037 1.81 0.0120094 0.0106863 0.7585 0.681719 74 29993 39 1.59675e+07 7.68637e+06 2.56259e+06 4448.94 32.01 5.3123 4.72228 67906 667765 -1 25064 27 22957 25885 3706669 745505 9.89712 9.89712 -1512.67 -9.89712 0 0 3.19068e+06 5539.38 1.26 1.45 0.66 -1 -1 1.26 0.552055 0.499442 1082 969 931 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_51.v common 52.83 vpr 100.36 MiB 0.23 17364 -1 -1 1 0.68 -1 -1 41072 -1 -1 152 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 102768 22 19 4524 3251 1 2633 207 24 24 576 mult_36 auto 47.5 MiB 6.50 17274 43047 9353 29279 4415 84.4 MiB 2.18 0.03 9.72425 -1170.65 -9.72425 9.72425 2.09 0.00925345 0.00820721 0.717702 0.643242 76 29407 46 1.59675e+07 7.74428e+06 2.61600e+06 4541.67 32.35 5.51574 4.91647 68478 680951 -1 24555 25 19224 22166 3043731 614947 10.2548 10.2548 -1642.4 -10.2548 0 0 3.24203e+06 5628.53 1.36 1.26 0.67 -1 -1 1.36 0.531197 0.479962 1107 988 950 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_52.v common 37.57 vpr 84.71 MiB 0.29 17564 -1 -1 1 0.71 -1 -1 39692 -1 -1 155 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 86740 22 19 4598 3308 1 2667 210 24 24 576 mult_36 auto 47.9 MiB 7.27 17604 46386 10173 32285 3928 84.7 MiB 2.49 0.03 9.68009 -1080.95 -9.68009 9.68009 2.07 0.00912963 0.00810555 0.736098 0.656102 72 30917 38 1.59675e+07 7.7877e+06 2.50747e+06 4353.24 16.27 3.67596 3.27995 67330 654343 -1 25360 25 21418 25117 3240485 694413 10.206 10.206 -1662.84 -10.206 0 0 3.14081e+06 5452.80 1.16 1.32 0.60 -1 -1 1.16 0.536879 0.486697 1127 1007 969 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_14.v common 12.54 vpr 71.41 MiB 0.38 10492 -1 -1 1 0.26 -1 -1 35596 -1 -1 65 22 0 4 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73120 22 19 1974 1653 1 1013 110 16 16 256 mult_36 auto 33.5 MiB 0.47 5297 17205 4342 10377 2486 71.4 MiB 0.65 0.01 4.14666 -1129.87 -4.14666 4.14666 0.77 0.00389449 0.003499 0.274996 0.247356 56 11347 43 6.62819e+06 2.54052e+06 849745. 3319.32 6.67 1.53833 1.38262 26364 208198 -1 9317 19 4256 4818 612410 141530 4.39726 4.39726 -1244.22 -4.39726 0 0 1.04740e+06 4091.43 0.41 0.37 0.23 -1 -1 0.41 0.201028 0.185088 481 649 247 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_15.v common 13.09 vpr 72.32 MiB 0.11 10828 -1 -1 1 0.35 -1 -1 36872 -1 -1 72 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74052 22 19 2144 1789 1 1107 118 16 16 256 mult_36 auto 34.5 MiB 0.66 5790 18036 4123 11366 2547 72.3 MiB 0.73 0.01 4.11968 -1267.13 -4.11968 4.11968 0.83 0.00408083 0.0036654 0.284678 0.253937 58 11809 27 6.62819e+06 3.03953e+06 871168. 3403.00 6.44 1.37992 1.23826 26872 219187 -1 9868 19 4677 5264 620916 144337 4.14666 4.14666 -1356.44 -4.14666 0 0 1.09288e+06 4269.05 0.50 0.35 0.26 -1 -1 0.50 0.200813 0.183769 521 704 266 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_16.v common 16.61 vpr 72.57 MiB 0.12 10912 -1 -1 1 0.29 -1 -1 36952 -1 -1 74 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74308 22 19 2218 1846 1 1153 120 16 16 256 mult_36 auto 34.8 MiB 0.81 5931 16640 3652 10868 2120 72.6 MiB 0.64 0.02 4.14666 -1288.47 -4.14666 4.14666 0.82 0.00565532 0.00517099 0.249613 0.225053 70 10951 32 6.62819e+06 3.06896e+06 1.02522e+06 4004.78 10.00 2.1249 1.89063 28912 262511 -1 9237 17 4015 4580 517449 115293 4.27196 4.27196 -1349.99 -4.27196 0 0 1.29210e+06 5047.26 0.55 0.37 0.35 -1 -1 0.55 0.210278 0.192783 540 723 285 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_17.v common 16.80 vpr 74.08 MiB 0.13 11724 -1 -1 1 0.33 -1 -1 36600 -1 -1 83 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75856 22 19 2536 2130 1 1255 129 16 16 256 mult_36 auto 36.6 MiB 0.88 7206 19304 4115 12842 2347 74.1 MiB 0.80 0.01 4.27196 -1488.47 -4.27196 4.27196 0.85 0.00360836 0.00321784 0.304144 0.273611 68 13179 24 6.62819e+06 3.20141e+06 1.00038e+06 3907.74 9.96 2.39198 2.12367 28404 252462 -1 10979 16 4588 5239 608954 134222 4.27196 4.27196 -1564.42 -4.27196 0 0 1.24648e+06 4869.04 0.56 0.44 0.30 -1 -1 0.56 0.253209 0.236336 617 851 304 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_18.v common 14.11 vpr 74.47 MiB 0.10 11880 -1 -1 1 0.35 -1 -1 37056 -1 -1 86 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76256 22 19 2610 2187 1 1302 132 16 16 256 mult_36 auto 37.0 MiB 0.86 7013 22242 5431 13535 3276 74.5 MiB 0.96 0.01 4.14666 -1468.71 -4.14666 4.14666 0.89 0.00508327 0.00460341 0.374456 0.335463 66 13234 41 6.62819e+06 3.24555e+06 974584. 3806.97 7.32 2.22086 1.98172 28148 247068 -1 10694 15 4618 5355 589723 135547 4.27196 4.27196 -1523.57 -4.27196 0 0 1.22072e+06 4768.46 0.44 0.34 0.25 -1 -1 0.44 0.204024 0.185415 636 870 323 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_19.v common 17.26 vpr 75.59 MiB 0.14 12196 -1 -1 1 0.37 -1 -1 36900 -1 -1 91 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77404 22 19 2778 2321 1 1398 138 16 16 256 mult_36 auto 38.3 MiB 0.86 7745 26482 5909 16658 3915 75.6 MiB 1.07 0.01 4.32767 -1601.95 -4.32767 4.32767 0.84 0.00522459 0.00465641 0.408514 0.367358 68 13647 22 6.62819e+06 3.71513e+06 1.00038e+06 3907.74 9.93 2.41161 2.14709 28404 252462 -1 11177 18 4911 5677 568054 138793 4.14666 4.14666 -1691.92 -4.14666 0 0 1.24648e+06 4869.04 0.51 0.40 0.33 -1 -1 0.51 0.246327 0.224012 676 925 342 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_20.v common 15.18 vpr 75.70 MiB 0.12 12484 -1 -1 1 0.39 -1 -1 36984 -1 -1 93 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77512 22 19 2852 2378 1 1440 140 16 16 256 mult_36 auto 38.4 MiB 1.02 8294 22646 5123 14901 2622 75.7 MiB 0.96 0.02 4.2084 -1649.58 -4.2084 4.2084 0.84 0.00493415 0.00439635 0.350784 0.314349 68 16097 38 6.62819e+06 3.74456e+06 1.00038e+06 3907.74 7.73 1.79391 1.60061 28404 252462 -1 12428 32 5526 6490 1025857 306320 4.39726 4.39726 -1796.73 -4.39726 0 0 1.24648e+06 4869.04 0.40 0.69 0.28 -1 -1 0.40 0.389664 0.35196 695 944 361 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_21.v common 18.86 vpr 76.87 MiB 0.15 12820 -1 -1 1 0.33 -1 -1 37840 -1 -1 97 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78716 22 19 3057 2549 1 1542 144 16 16 256 mult_36 auto 39.7 MiB 0.90 8673 23895 5161 15228 3506 76.9 MiB 1.04 0.02 4.52256 -1743.09 -4.52256 4.52256 0.79 0.00591072 0.00528056 0.388672 0.348748 74 15361 35 6.62819e+06 3.80343e+06 1.07073e+06 4182.55 11.59 2.76893 2.4746 29424 273870 -1 12772 16 5516 6283 721984 162116 4.39726 4.39726 -1867.34 -4.39726 0 0 1.33358e+06 5209.30 0.53 0.50 0.28 -1 -1 0.53 0.282664 0.262231 742 1017 380 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_22.v common 14.02 vpr 76.99 MiB 0.16 12984 -1 -1 1 0.42 -1 -1 37960 -1 -1 100 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78840 22 19 3131 2606 1 1585 147 16 16 256 mult_36 auto 39.6 MiB 0.88 8566 16401 3002 11439 1960 77.0 MiB 0.77 0.02 4.20292 -1804.73 -4.20292 4.20292 0.72 0.00639425 0.00561843 0.29417 0.262989 70 15569 27 6.62819e+06 3.84757e+06 1.02522e+06 4004.78 6.63 2.05093 1.83607 28912 262511 -1 12915 18 5834 6628 735961 170375 4.27196 4.27196 -1954.66 -4.27196 0 0 1.29210e+06 5047.26 0.42 0.51 0.30 -1 -1 0.42 0.306462 0.283626 762 1036 399 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_23.v common 23.59 vpr 78.30 MiB 0.11 13308 -1 -1 1 0.39 -1 -1 38008 -1 -1 107 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 80184 22 19 3301 2742 1 1683 155 18 18 324 mult_36 auto 41.0 MiB 0.85 9538 29691 6508 19815 3368 78.3 MiB 1.37 0.02 4.16456 -1929.44 -4.16456 4.16456 1.01 0.00651902 0.00564099 0.505468 0.449721 74 17207 25 8.18539e+06 4.34658e+06 1.40368e+06 4332.34 14.86 3.10953 2.78383 37912 362744 -1 14522 15 6182 7157 877389 187757 4.39726 4.39726 -2097.58 -4.39726 0 0 1.74764e+06 5393.95 0.64 0.48 0.47 -1 -1 0.64 0.285741 0.262587 802 1091 418 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_24.v common 20.35 vpr 78.35 MiB 0.12 13472 -1 -1 1 0.39 -1 -1 38144 -1 -1 109 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 80228 22 19 3375 2799 1 1730 157 18 18 324 mult_36 auto 41.1 MiB 0.83 9993 25960 5685 17809 2466 78.3 MiB 1.14 0.02 4.14666 -1987.87 -4.14666 4.14666 0.92 0.00583762 0.00527699 0.424406 0.380724 66 20196 47 8.18539e+06 4.37601e+06 1.27759e+06 3943.17 12.21 2.93061 2.60958 36296 327148 -1 15425 16 6577 7667 933401 201564 4.27196 4.27196 -2140.03 -4.27196 0 0 1.59950e+06 4936.74 0.55 0.54 0.33 -1 -1 0.55 0.28953 0.264468 821 1110 437 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_25.v common 25.41 vpr 79.34 MiB 0.17 13948 -1 -1 1 0.41 -1 -1 38112 -1 -1 116 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81240 22 19 3615 3005 1 1835 164 18 18 324 mult_36 auto 41.9 MiB 0.87 11154 29284 6310 19654 3320 79.3 MiB 1.33 0.02 4.14666 -2148.01 -4.14666 4.14666 0.96 0.00663514 0.00589264 0.493038 0.436759 74 20993 41 8.18539e+06 4.47902e+06 1.40368e+06 4332.34 16.48 3.47207 3.08394 37912 362744 -1 16756 18 7134 8004 1128968 235536 4.39726 4.39726 -2385.21 -4.39726 0 0 1.74764e+06 5393.95 0.72 0.64 0.41 -1 -1 0.72 0.357518 0.329767 877 1201 456 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_26.v common 22.82 vpr 80.09 MiB 0.12 14064 -1 -1 1 0.45 -1 -1 38404 -1 -1 118 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 82012 22 19 3689 3062 1 1872 166 18 18 324 mult_36 auto 43.0 MiB 0.81 10890 31630 7268 20957 3405 80.1 MiB 1.44 0.02 4.27196 -2181.76 -4.27196 4.27196 1.00 0.00695031 0.00619136 0.552019 0.492722 70 19335 31 8.18539e+06 4.50845e+06 1.34436e+06 4149.26 13.65 3.30762 2.93629 37264 347768 -1 16326 14 6732 7802 873866 193746 4.64786 4.64786 -2351.91 -4.64786 0 0 1.69344e+06 5226.66 0.65 0.51 0.40 -1 -1 0.65 0.290478 0.265202 896 1220 475 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_27.v common 24.53 vpr 81.17 MiB 0.20 14552 -1 -1 1 0.47 -1 -1 38420 -1 -1 126 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83120 22 19 3871 3210 1 1979 175 18 18 324 mult_36 auto 43.9 MiB 1.01 11935 36361 8458 24158 3745 81.2 MiB 1.67 0.02 4.27196 -2285.74 -4.27196 4.27196 1.13 0.00737938 0.00658958 0.619487 0.55111 74 21341 43 8.18539e+06 5.02217e+06 1.40368e+06 4332.34 14.03 3.65868 3.22889 37912 362744 -1 17442 28 7329 8264 1322461 328195 4.39726 4.39726 -2440.95 -4.39726 0 0 1.74764e+06 5393.95 0.58 0.84 0.42 -1 -1 0.58 0.457725 0.41824 944 1275 494 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_28.v common 19.02 vpr 81.30 MiB 0.19 14744 -1 -1 1 0.49 -1 -1 38380 -1 -1 128 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83248 22 19 3945 3267 1 2024 177 18 18 324 mult_36 auto 44.0 MiB 0.99 12138 33905 7358 22743 3804 81.3 MiB 1.60 0.05 4.2084 -2321.46 -4.2084 4.2084 1.04 0.00887878 0.00772164 0.611826 0.54221 70 21577 28 8.18539e+06 5.0516e+06 1.34436e+06 4149.26 9.25 2.96519 2.62851 37264 347768 -1 17740 16 7557 8666 1010701 226948 4.39726 4.39726 -2498.89 -4.39726 0 0 1.69344e+06 5226.66 0.54 0.59 0.31 -1 -1 0.54 0.33897 0.310704 962 1294 513 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_29.v common 21.70 vpr 82.27 MiB 0.15 14980 -1 -1 1 0.52 -1 -1 39588 -1 -1 135 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84244 22 19 4159 3447 1 2140 185 22 22 484 mult_36 auto 45.0 MiB 0.92 12922 36479 8016 24715 3748 82.3 MiB 1.59 0.02 4.27196 -2537.11 -4.27196 4.27196 1.57 0.00929844 0.0084066 0.576506 0.51597 72 24568 26 1.33067e+07 5.5506e+06 2.11301e+06 4365.72 10.31 2.49471 2.21037 56918 551676 -1 19622 18 7762 9120 1147231 234160 4.52256 4.52256 -2684.21 -4.52256 0 0 2.64603e+06 5467.00 0.94 0.67 0.55 -1 -1 0.94 0.381883 0.348702 1015 1367 532 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_30.v common 24.06 vpr 82.65 MiB 0.24 15148 -1 -1 1 0.53 -1 -1 40864 -1 -1 137 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84632 22 19 4233 3504 1 2179 187 22 22 484 mult_36 auto 45.5 MiB 1.14 12963 38101 8862 25522 3717 82.6 MiB 1.71 0.02 4.16456 -2491.22 -4.16456 4.16456 1.60 0.0083631 0.00737349 0.626872 0.553373 68 24170 26 1.33067e+07 5.58003e+06 2.01763e+06 4168.66 12.10 3.02798 2.6734 55470 518816 -1 19865 19 8475 9594 1119874 244580 4.27196 4.27196 -2605.99 -4.27196 0 0 2.51205e+06 5190.18 0.94 0.67 0.52 -1 -1 0.94 0.388266 0.350862 1034 1386 551 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_31.v common 23.73 vpr 84.73 MiB 0.18 15488 -1 -1 1 0.55 -1 -1 40880 -1 -1 143 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 86760 22 19 4410 3647 1 2283 193 22 22 484 mult_36 auto 46.6 MiB 1.13 13261 42525 9859 28389 4277 84.7 MiB 1.83 0.02 4.20292 -2606.72 -4.20292 4.20292 1.51 0.00917471 0.00830888 0.687912 0.611902 68 26796 45 1.33067e+07 5.66832e+06 2.01763e+06 4168.66 11.70 3.03794 2.68558 55470 518816 -1 20620 18 9122 10596 1262791 274069 4.27196 4.27196 -2850.79 -4.27196 0 0 2.51205e+06 5190.18 0.92 0.70 0.52 -1 -1 0.92 0.387914 0.352007 1077 1441 570 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_32.v common 31.29 vpr 90.83 MiB 0.20 15756 -1 -1 1 0.57 -1 -1 40668 -1 -1 145 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 93012 22 19 4484 3704 1 2328 195 22 22 484 mult_36 auto 47.1 MiB 1.12 14086 42570 10140 28365 4065 84.2 MiB 1.91 0.02 4.27196 -2656.53 -4.27196 4.27196 1.70 0.00810111 0.00718083 0.694282 0.617216 76 25174 22 1.33067e+07 5.69776e+06 2.20457e+06 4554.90 18.17 3.83211 3.38819 57882 574062 -1 21201 17 8736 10203 1208112 256654 4.52256 4.52256 -2899.81 -4.52256 0 0 2.73077e+06 5642.09 1.01 0.66 0.60 -1 -1 1.01 0.381544 0.345727 1096 1460 589 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_33.v common 24.22 vpr 86.46 MiB 0.23 16772 -1 -1 1 0.66 -1 -1 41604 -1 -1 157 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 88532 22 19 4843 4029 1 2439 208 22 22 484 mult_36 auto 48.9 MiB 1.10 14930 47640 11114 32188 4338 86.5 MiB 2.14 0.03 4.39726 -2986.1 -4.39726 4.39726 1.52 0.00897482 0.00798636 0.751531 0.666893 72 28519 46 1.33067e+07 6.27034e+06 2.11301e+06 4365.72 11.08 3.35728 2.96296 56918 551676 -1 22603 18 8941 10278 1322426 274519 4.52256 4.52256 -3196.98 -4.52256 0 0 2.64603e+06 5467.00 0.97 0.75 0.61 -1 -1 0.97 0.437831 0.395824 1185 1606 608 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_34.v common 25.12 vpr 86.08 MiB 0.20 16740 -1 -1 1 0.69 -1 -1 41528 -1 -1 160 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 88148 22 19 4917 4086 1 2483 211 22 22 484 mult_36 auto 49.3 MiB 1.13 15547 44101 10019 30168 3914 86.1 MiB 2.02 0.03 4.52256 -2910.9 -4.52256 4.52256 1.60 0.0103958 0.00935693 0.718325 0.639228 72 28972 45 1.33067e+07 6.31449e+06 2.11301e+06 4365.72 12.11 3.61535 3.1925 56918 551676 -1 23425 15 9029 10536 1317654 275619 4.77316 4.77316 -3227.02 -4.77316 0 0 2.64603e+06 5467.00 0.96 0.68 0.53 -1 -1 0.96 0.363173 0.330082 1205 1625 627 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_35.v common 24.49 vpr 86.95 MiB 0.16 17092 -1 -1 1 0.67 -1 -1 41836 -1 -1 163 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 89036 22 19 5093 4228 1 2586 214 22 22 484 mult_36 auto 50.4 MiB 1.15 14368 50056 10737 34290 5029 86.9 MiB 2.25 0.03 4.0831 -3007.04 -4.0831 4.0831 1.55 0.00933172 0.00830807 0.807604 0.717283 70 26841 32 1.33067e+07 6.35863e+06 2.06816e+06 4273.05 11.63 3.73121 3.28917 56434 539830 -1 22266 17 9508 10903 1285918 285062 4.27196 4.27196 -3253.37 -4.27196 0 0 2.60483e+06 5381.88 0.90 0.72 0.57 -1 -1 0.90 0.421414 0.380492 1248 1680 646 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_36.v common 37.56 vpr 94.38 MiB 0.21 17288 -1 -1 1 0.70 -1 -1 41812 -1 -1 165 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 96640 22 19 5167 4285 1 2630 216 22 22 484 mult_36 auto 50.8 MiB 1.20 17033 50682 11615 34548 4519 87.3 MiB 2.36 0.03 4.41516 -3107.93 -4.41516 4.41516 1.63 0.00977843 0.00869045 0.814758 0.724528 78 30105 32 1.33067e+07 6.38806e+06 2.25108e+06 4650.99 24.11 5.06672 4.46215 58850 595650 -1 24920 16 9692 11251 1483545 305489 4.52256 4.52256 -3425.17 -4.52256 0 0 2.82299e+06 5832.63 1.01 0.75 0.58 -1 -1 1.01 0.400748 0.36351 1267 1699 665 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_37.v common 101.50 vpr 88.41 MiB 0.20 17848 -1 -1 1 0.70 -1 -1 40804 -1 -1 173 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 90528 22 19 5380 4464 1 2739 225 24 24 576 mult_36 auto 52.0 MiB 1.25 16600 56313 12680 38864 4769 88.4 MiB 2.54 0.03 4.39726 -3260.8 -4.39726 4.39726 1.97 0.00987506 0.00878209 0.902503 0.800047 70 30941 28 1.60519e+07 6.90179e+06 2.45377e+06 4260.01 87.12 7.07916 6.22511 66754 640332 -1 25189 16 10124 11953 1441066 304403 4.52256 4.52256 -3510.18 -4.52256 0 0 3.09179e+06 5367.68 1.11 0.73 0.69 -1 -1 1.11 0.409232 0.370167 1321 1772 684 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_38.v common 28.61 vpr 89.55 MiB 0.21 17968 -1 -1 1 0.73 -1 -1 42288 -1 -1 176 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 91696 22 19 5454 4521 1 2784 228 24 24 576 mult_36 auto 52.2 MiB 1.25 17686 58692 14006 39560 5126 88.5 MiB 2.51 0.04 4.20237 -3287.95 -4.20237 4.20237 1.97 0.01024 0.00902885 0.887185 0.784212 80 27661 18 1.60519e+07 6.94594e+06 2.72095e+06 4723.87 13.92 4.29471 3.79093 70206 720185 -1 25044 17 9392 10797 1238597 262408 4.39726 4.39726 -3387.93 -4.39726 0 0 3.41546e+06 5929.62 1.23 0.76 0.72 -1 -1 1.23 0.450298 0.406773 1340 1791 703 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_39.v common 27.69 vpr 89.64 MiB 0.20 18276 -1 -1 1 0.70 -1 -1 40140 -1 -1 180 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 91796 22 19 5629 4662 1 2882 232 24 24 576 mult_36 auto 52.8 MiB 1.29 17139 55056 12561 37747 4748 89.3 MiB 2.49 0.03 4.39726 -3372.5 -4.39726 4.39726 1.85 0.0108606 0.00970924 0.891074 0.789521 72 32360 40 1.60519e+07 7.0048e+06 2.50747e+06 4353.24 13.18 3.90568 3.44738 67330 654343 -1 26063 15 10213 11721 1450566 306425 4.52256 4.52256 -3562.16 -4.52256 0 0 3.14081e+06 5452.80 1.18 0.75 0.64 -1 -1 1.18 0.445679 0.406454 1381 1846 722 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_40.v common 40.28 vpr 107.68 MiB 0.21 18368 -1 -1 1 0.80 -1 -1 42324 -1 -1 182 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 110264 22 19 5703 4719 1 2929 234 24 24 576 mult_36 auto 53.3 MiB 1.37 17730 54234 12385 37329 4520 89.9 MiB 2.51 0.03 4.27196 -3426.27 -4.27196 4.27196 2.00 0.0104797 0.00930317 0.895116 0.795585 78 29812 34 1.60519e+07 7.03423e+06 2.67122e+06 4637.53 25.14 5.50059 4.85463 69630 706637 -1 25782 16 10020 11318 1368457 290534 4.39726 4.39726 -3587.86 -4.39726 0 0 3.35110e+06 5817.88 1.34 0.76 0.71 -1 -1 1.34 0.464696 0.41961 1400 1865 741 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_41.v common 30.87 vpr 91.25 MiB 0.25 18948 -1 -1 1 0.82 -1 -1 41464 -1 -1 190 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 93440 22 19 5950 4932 1 3039 243 24 24 576 mult_36 auto 54.8 MiB 1.44 18494 48755 10232 33831 4692 91.0 MiB 2.35 0.03 4.14666 -3593.15 -4.14666 4.14666 1.92 0.0110588 0.00984351 0.805861 0.712483 78 30524 25 1.60519e+07 7.54795e+06 2.67122e+06 4637.53 15.12 4.70536 4.1482 69630 706637 -1 26409 17 10464 12149 1422734 303195 4.27196 4.27196 -3758.11 -4.27196 0 0 3.35110e+06 5817.88 1.28 0.83 0.70 -1 -1 1.28 0.476775 0.432353 1461 1956 760 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_42.v common 31.12 vpr 98.07 MiB 0.32 19004 -1 -1 1 0.88 -1 -1 42740 -1 -1 193 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 100420 22 19 6024 4989 1 3082 246 24 24 576 mult_36 auto 55.0 MiB 1.41 20030 64926 14885 44112 5929 91.3 MiB 2.96 0.03 4.39726 -3645.71 -4.39726 4.39726 1.89 0.0109592 0.00974474 1.02112 0.912004 80 32802 29 1.60519e+07 7.5921e+06 2.72095e+06 4723.87 14.72 4.60746 4.06648 70206 720185 -1 28669 20 10800 12748 1500228 308279 4.39726 4.39726 -3926.07 -4.39726 0 0 3.41546e+06 5929.62 1.29 0.95 0.75 -1 -1 1.29 0.588277 0.534231 1480 1975 779 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_43.v common 28.37 vpr 96.73 MiB 0.38 19424 -1 -1 1 0.91 -1 -1 43432 -1 -1 199 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 99052 22 19 6198 5129 1 3181 252 24 24 576 mult_36 auto 56.6 MiB 1.46 20168 59082 13911 39065 6106 92.8 MiB 2.72 0.03 4.64786 -3811.84 -4.64786 4.64786 1.95 0.0114629 0.0102076 0.953552 0.847742 74 34701 31 1.60519e+07 7.68039e+06 2.56259e+06 4448.94 12.02 4.02337 3.55353 67906 667765 -1 29515 15 11276 13062 1613817 335267 4.64786 4.64786 -4088.62 -4.64786 0 0 3.19068e+06 5539.38 1.25 0.85 0.62 -1 -1 1.25 0.475859 0.429991 1523 2030 798 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_44.v common 113.91 vpr 95.87 MiB 0.33 19440 -1 -1 1 0.89 -1 -1 43252 -1 -1 200 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 98168 22 19 6272 5186 1 3226 253 24 24 576 mult_36 auto 56.9 MiB 1.45 20928 66570 15265 44565 6740 93.0 MiB 3.06 0.04 4.52256 -3840.7 -4.52256 4.52256 1.97 0.0128759 0.0109156 1.05074 0.930047 78 34552 50 1.60519e+07 7.69511e+06 2.67122e+06 4637.53 97.33 8.98357 7.93897 69630 706637 -1 28997 15 11195 13019 1576795 325150 4.64786 4.64786 -4270.29 -4.64786 0 0 3.35110e+06 5817.88 1.57 0.84 0.70 -1 -1 1.57 0.4793 0.434718 1542 2049 817 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_45.v common 31.84 vpr 96.03 MiB 0.27 19976 -1 -1 1 1.00 -1 -1 43796 -1 -1 208 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 98336 22 19 6485 5365 1 3338 262 24 24 576 mult_36 auto 57.4 MiB 1.50 21050 68140 15742 46206 6192 93.5 MiB 3.14 0.04 4.3337 -3866.62 -4.3337 4.3337 1.99 0.0130606 0.0113546 1.09593 0.970136 76 37388 40 1.60519e+07 8.20883e+06 2.61600e+06 4541.67 14.55 4.54669 4.02546 68478 680951 -1 29833 26 12212 14243 1891537 439336 4.39726 4.39726 -4071.65 -4.39726 0 0 3.24203e+06 5628.53 1.33 1.21 0.72 -1 -1 1.33 0.71891 0.646488 1593 2122 836 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_46.v common 29.49 vpr 96.26 MiB 0.30 20068 -1 -1 1 0.95 -1 -1 43852 -1 -1 210 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 98572 22 19 6559 5422 1 3380 264 24 24 576 mult_36 auto 58.3 MiB 1.55 20986 65406 14272 45368 5766 94.3 MiB 3.10 0.04 4.41516 -3851.32 -4.41516 4.41516 2.05 0.0130388 0.0114636 1.06093 0.941705 76 35918 33 1.60519e+07 8.23826e+06 2.61600e+06 4541.67 12.15 4.3779 3.86721 68478 680951 -1 30049 16 12176 14229 1658356 357526 4.39726 4.39726 -4137.94 -4.39726 0 0 3.24203e+06 5628.53 1.33 0.97 0.78 -1 -1 1.33 0.545743 0.495124 1613 2141 855 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_47.v common 49.54 vpr 125.25 MiB 0.34 20316 -1 -1 1 0.95 -1 -1 44640 -1 -1 216 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 128256 22 19 6735 5564 1 3477 270 24 24 576 mult_36 auto 59.6 MiB 1.59 24055 64798 13570 44576 6652 95.6 MiB 3.04 0.04 4.39726 -4157.74 -4.39726 4.39726 1.90 0.0137508 0.0123888 1.02747 0.912426 92 37176 29 1.60519e+07 8.32656e+06 3.09179e+06 5367.68 32.29 6.62638 5.85002 74806 826289 -1 32144 16 12332 14007 1800258 356940 4.52256 4.52256 -4381.37 -4.52256 0 0 3.85454e+06 6691.90 1.45 0.92 0.80 -1 -1 1.45 0.549788 0.499017 1656 2196 874 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_48.v common 37.03 vpr 100.81 MiB 0.32 20688 -1 -1 1 1.08 -1 -1 44064 -1 -1 218 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 103228 22 19 6809 5621 1 3526 272 24 24 576 mult_36 auto 59.3 MiB 1.56 22900 73395 16707 49770 6918 95.4 MiB 3.59 0.05 4.39726 -4153.76 -4.39726 4.39726 2.10 0.0129588 0.0113879 1.18609 1.05599 80 37824 42 1.60519e+07 8.35599e+06 2.72095e+06 4723.87 19.07 5.68243 5.01049 70206 720185 -1 31870 17 12170 14127 1643072 340205 4.52256 4.52256 -4448.16 -4.52256 0 0 3.41546e+06 5929.62 1.32 0.99 0.71 -1 -1 1.32 0.567825 0.514553 1674 2215 893 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_49.v common 33.01 vpr 104.45 MiB 0.33 21128 -1 -1 1 1.05 -1 -1 44392 -1 -1 228 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 106952 22 19 7094 5872 1 3640 283 24 24 576 mult_36 auto 60.5 MiB 1.68 22621 68027 14330 47033 6664 96.7 MiB 3.23 0.04 4.32767 -4362.09 -4.32767 4.32767 1.94 0.0128609 0.0114328 1.08657 0.963957 78 38472 32 1.60519e+07 8.89916e+06 2.67122e+06 4637.53 15.11 5.00365 4.42283 69630 706637 -1 32337 18 12793 14786 1774390 369345 4.39726 4.39726 -4662.48 -4.39726 0 0 3.35110e+06 5817.88 1.35 1.04 0.72 -1 -1 1.35 0.612111 0.552232 1745 2324 912 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_50.v common 157.29 vpr 101.54 MiB 0.32 21220 -1 -1 1 1.07 -1 -1 44184 -1 -1 230 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 103976 22 19 7168 5929 1 3676 285 24 24 576 mult_36 auto 61.1 MiB 1.66 23567 73371 16206 50485 6680 97.1 MiB 3.52 0.04 4.52256 -4404.95 -4.52256 4.52256 2.00 0.0141077 0.0123453 1.1561 1.02358 80 39688 35 1.60519e+07 8.92859e+06 2.72095e+06 4723.87 139.76 9.44688 8.30922 70206 720185 -1 33305 16 12887 14936 1843889 377237 4.64786 4.64786 -4684.92 -4.64786 0 0 3.41546e+06 5929.62 1.26 0.99 0.69 -1 -1 1.26 0.568974 0.515978 1764 2343 931 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_51.v common 117.05 vpr 107.18 MiB 0.23 21648 -1 -1 1 1.13 -1 -1 44780 -1 -1 235 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 109756 22 19 7344 6071 1 3782 290 24 24 576 mult_36 auto 61.9 MiB 1.71 23722 73174 15715 50579 6880 97.9 MiB 3.45 0.04 4.459 -4442.21 -4.459 4.459 1.87 0.0138071 0.0123339 1.15639 1.01923 78 40381 49 1.60519e+07 9.00217e+06 2.67122e+06 4637.53 98.64 9.78332 8.59395 69630 706637 -1 33812 17 13492 15556 1913676 402938 4.39726 4.39726 -4781.62 -4.39726 0 0 3.35110e+06 5817.88 1.35 1.11 0.58 -1 -1 1.35 0.664036 0.604729 1808 2398 950 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_52.v common 45.50 vpr 125.78 MiB 0.36 21776 -1 -1 1 1.23 -1 -1 45176 -1 -1 237 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 128800 22 19 7418 6128 1 3828 292 24 24 576 mult_36 auto 62.3 MiB 1.76 25005 78700 18301 52935 7464 98.5 MiB 3.78 0.05 4.3337 -4441.83 -4.3337 4.3337 1.89 0.0176361 0.0157764 1.25232 1.10714 86 38742 27 1.60519e+07 9.0316e+06 2.91907e+06 5067.82 25.97 6.71917 5.94313 72506 773887 -1 34151 16 12823 14818 1803598 380692 4.52256 4.52256 -4797.16 -4.52256 0 0 3.65856e+06 6351.67 1.33 1.04 0.77 -1 -1 1.33 0.59238 0.538835 1827 2417 969 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_14.v common 9.67 vpr 67.56 MiB 0.10 9368 -1 -1 1 0.16 -1 -1 34732 -1 -1 43 22 0 4 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69180 22 19 1246 925 1 718 88 16 16 256 mult_36 auto 29.6 MiB 0.39 3890 12373 3373 7466 1534 67.6 MiB 0.46 0.01 7.60941 -361.611 -7.60941 7.60941 0.79 0.00261471 0.00237564 0.194267 0.178168 48 8671 44 6.62819e+06 2.21677e+06 755748. 2952.14 4.89 0.915644 0.822046 25088 180500 -1 6645 23 6937 7779 935577 227413 8.26573 8.26573 -437.931 -8.26573 0 0 916467. 3579.95 0.31 0.36 0.21 -1 -1 0.31 0.142476 0.129056 299 285 247 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_15.v common 9.57 vpr 67.92 MiB 0.09 9524 -1 -1 1 0.19 -1 -1 35320 -1 -1 46 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69552 22 19 1344 989 1 778 92 16 16 256 mult_36 auto 30.2 MiB 0.39 4185 14168 4013 8552 1603 67.9 MiB 0.54 0.01 7.6175 -392.139 -7.6175 7.6175 0.73 0.0028462 0.00259262 0.217393 0.198321 60 7437 28 6.62819e+06 2.65692e+06 890343. 3477.90 4.63 0.921047 0.82795 27128 224764 -1 6562 26 6006 6790 825899 214119 7.65538 7.65538 -446.805 -7.65538 0 0 1.11577e+06 4358.47 0.38 0.37 0.26 -1 -1 0.38 0.162518 0.147299 321 304 266 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_16.v common 10.04 vpr 68.29 MiB 0.11 9700 -1 -1 1 0.17 -1 -1 35144 -1 -1 48 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69924 22 19 1418 1046 1 821 94 16 16 256 mult_36 auto 30.7 MiB 0.44 4487 13513 3432 8383 1698 68.3 MiB 0.53 0.01 7.60494 -393.597 -7.60494 7.60494 0.73 0.0029823 0.0027163 0.204296 0.18634 56 8390 28 6.62819e+06 2.68636e+06 849745. 3319.32 5.13 1.11286 0.995627 26364 208198 -1 7216 25 7078 7963 962371 230897 7.99013 7.99013 -460.438 -7.99013 0 0 1.04740e+06 4091.43 0.33 0.34 0.20 -1 -1 0.33 0.153525 0.139031 340 323 285 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_17.v common 32.76 vpr 68.87 MiB 0.13 10236 -1 -1 1 0.20 -1 -1 35460 -1 -1 52 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70524 22 19 1518 1112 1 879 98 16 16 256 mult_36 auto 31.0 MiB 0.44 4625 16298 4224 8851 3223 68.9 MiB 0.62 0.01 8.32683 -417.873 -8.32683 8.32683 0.72 0.00273634 0.00243712 0.245622 0.222867 58 9112 39 6.62819e+06 2.74522e+06 871168. 3403.00 27.31 1.85282 1.65446 26872 219187 -1 7252 25 7366 7878 922895 225342 9.12512 9.12512 -480.323 -9.12512 0 0 1.09288e+06 4269.05 0.39 0.41 0.25 -1 -1 0.39 0.180534 0.163745 365 342 304 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_18.v common 12.82 vpr 69.13 MiB 0.08 10304 -1 -1 1 0.20 -1 -1 34976 -1 -1 55 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70788 22 19 1592 1169 1 918 101 16 16 256 mult_36 auto 31.3 MiB 0.49 5347 16316 4097 10275 1944 69.1 MiB 0.68 0.01 8.4422 -469.823 -8.4422 8.4422 0.72 0.00349253 0.00318724 0.256082 0.233279 56 10897 47 6.62819e+06 2.78937e+06 849745. 3319.32 7.49 1.20637 1.08242 26364 208198 -1 9026 32 9275 10182 1519161 349464 9.30818 9.30818 -562.145 -9.30818 0 0 1.04740e+06 4091.43 0.32 0.50 0.21 -1 -1 0.32 0.188159 0.170267 383 361 323 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_19.v common 11.40 vpr 69.65 MiB 0.08 10692 -1 -1 1 0.20 -1 -1 35340 -1 -1 58 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 71324 22 19 1688 1231 1 976 105 16 16 256 mult_36 auto 31.9 MiB 0.52 5523 17642 4653 10328 2661 69.7 MiB 0.69 0.01 8.2901 -468.025 -8.2901 8.2901 0.78 0.00344518 0.00313659 0.272717 0.248458 58 10958 42 6.62819e+06 3.22951e+06 871168. 3403.00 5.88 1.33451 1.19718 26872 219187 -1 8881 23 8148 9336 1045786 240112 9.19702 9.19702 -670.638 -9.19702 0 0 1.09288e+06 4269.05 0.34 0.49 0.22 -1 -1 0.34 0.196 0.177358 404 380 342 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_20.v common 12.75 vpr 70.02 MiB 0.09 10620 -1 -1 1 0.23 -1 -1 35572 -1 -1 59 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 71696 22 19 1762 1288 1 1014 106 16 16 256 mult_36 auto 32.3 MiB 0.54 5650 16606 4202 10324 2080 70.0 MiB 0.68 0.01 8.4978 -488.18 -8.4978 8.4978 0.71 0.00363795 0.00329333 0.25968 0.235472 56 11507 38 6.62819e+06 3.24423e+06 849745. 3319.32 7.21 1.45135 1.29756 26364 208198 -1 9516 27 10307 11396 1607507 371242 9.22112 9.22112 -579.067 -9.22112 0 0 1.04740e+06 4091.43 0.32 0.60 0.20 -1 -1 0.32 0.220759 0.199861 423 399 361 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_21.v common 12.08 vpr 70.55 MiB 0.08 10952 -1 -1 1 0.24 -1 -1 35744 -1 -1 62 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72240 22 19 1859 1351 1 1072 109 16 16 256 mult_36 auto 32.9 MiB 0.55 6035 17789 4471 10978 2340 70.5 MiB 0.79 0.01 8.38109 -487.093 -8.38109 8.38109 0.73 0.00386091 0.00351001 0.286585 0.260311 60 12117 48 6.62819e+06 3.28838e+06 890343. 3477.90 6.36 1.56018 1.39804 27128 224764 -1 9393 23 8484 9643 1075611 255217 9.04658 9.04658 -638.837 -9.04658 0 0 1.11577e+06 4358.47 0.34 0.50 0.22 -1 -1 0.34 0.220157 0.198716 445 418 380 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_22.v common 15.91 vpr 70.72 MiB 0.09 11084 -1 -1 1 0.25 -1 -1 35856 -1 -1 66 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72420 22 19 1933 1408 1 1111 113 16 16 256 mult_36 auto 33.1 MiB 0.68 6447 14582 3335 9243 2004 70.7 MiB 0.66 0.01 8.38225 -539.049 -8.38225 8.38225 0.75 0.00400764 0.00363649 0.233289 0.212174 66 12032 36 6.62819e+06 3.34724e+06 974584. 3806.97 9.84 1.89993 1.69786 28148 247068 -1 9826 24 8221 9433 1042848 236369 8.80852 8.80852 -690.661 -8.80852 0 0 1.22072e+06 4768.46 0.38 0.48 0.27 -1 -1 0.38 0.222918 0.202043 464 437 399 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_23.v common 15.61 vpr 71.14 MiB 0.11 11420 -1 -1 1 0.27 -1 -1 36052 -1 -1 68 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72848 22 19 2031 1472 1 1174 116 18 18 324 mult_36 auto 33.4 MiB 0.66 6930 17882 4089 11335 2458 71.1 MiB 0.83 0.01 8.41364 -547.214 -8.41364 8.41364 1.10 0.0043955 0.00390949 0.299819 0.270806 60 13146 46 8.18539e+06 3.77267e+06 1.16833e+06 3605.96 8.65 1.72912 1.5446 35004 297736 -1 10629 25 9789 11037 1322884 293485 8.79022 8.79022 -667.882 -8.79022 0 0 1.46313e+06 4515.82 0.54 0.55 0.32 -1 -1 0.54 0.246313 0.223302 486 456 418 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_24.v common 18.45 vpr 71.89 MiB 0.10 11496 -1 -1 1 0.27 -1 -1 36192 -1 -1 71 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73612 22 19 2105 1529 1 1210 119 18 18 324 mult_36 auto 34.2 MiB 0.73 6947 19099 4545 12489 2065 71.9 MiB 0.91 0.01 8.54591 -592.304 -8.54591 8.54591 1.19 0.00382875 0.00351188 0.344286 0.312246 64 12283 30 8.18539e+06 3.81682e+06 1.23838e+06 3822.15 11.10 1.96687 1.75296 35972 318676 -1 10910 23 9010 10282 1251347 277592 8.77098 8.77098 -740.46 -8.77098 0 0 1.56068e+06 4816.91 0.51 0.53 0.32 -1 -1 0.51 0.229116 0.207372 505 475 437 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_25.v common 21.58 vpr 72.43 MiB 0.15 11852 -1 -1 1 0.29 -1 -1 36504 -1 -1 73 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74164 22 19 2201 1591 1 1268 121 18 18 324 mult_36 auto 35.0 MiB 0.66 7634 22247 5441 14246 2560 72.4 MiB 0.99 0.01 8.41835 -567.959 -8.41835 8.41835 0.95 0.00454859 0.00411811 0.365239 0.331367 64 14202 44 8.18539e+06 3.84625e+06 1.23838e+06 3822.15 14.43 2.59332 2.32568 35972 318676 -1 11820 29 12088 13740 1940094 442042 8.68898 8.68898 -781.144 -8.68898 0 0 1.56068e+06 4816.91 0.50 0.76 0.31 -1 -1 0.50 0.29344 0.264595 526 494 456 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_26.v common 34.47 vpr 72.49 MiB 0.15 12036 -1 -1 1 0.28 -1 -1 37380 -1 -1 76 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74232 22 19 2275 1648 1 1306 124 18 18 324 mult_36 auto 34.9 MiB 0.76 7751 20827 4662 13516 2649 72.5 MiB 0.94 0.01 8.56929 -568.623 -8.56929 8.56929 0.93 0.00469695 0.00426902 0.34576 0.313758 60 14701 32 8.18539e+06 3.8904e+06 1.16833e+06 3605.96 27.29 2.60289 2.31615 35004 297736 -1 12032 25 10795 12330 1483067 336752 8.81798 8.81798 -886.816 -8.81798 0 0 1.46313e+06 4515.82 0.47 0.62 0.31 -1 -1 0.47 0.26334 0.238218 546 513 475 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_27.v common 22.48 vpr 73.10 MiB 0.13 12156 -1 -1 1 0.35 -1 -1 36708 -1 -1 82 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74852 22 19 2385 1724 1 1378 131 18 18 324 mult_36 auto 35.8 MiB 0.82 8283 20383 4936 13018 2429 73.1 MiB 0.91 0.01 8.5461 -628.049 -8.5461 8.5461 0.98 0.00495476 0.00449128 0.318675 0.288941 68 14535 41 8.18539e+06 4.37469e+06 1.31159e+06 4048.11 14.60 2.79931 2.5047 36620 334356 -1 12409 26 10631 12441 1427422 320553 8.58227 8.58227 -875.158 -8.58227 0 0 1.63345e+06 5041.52 0.70 0.66 0.34 -1 -1 0.70 0.288528 0.262612 575 532 494 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_28.v common 42.85 vpr 73.40 MiB 0.12 12320 -1 -1 1 0.31 -1 -1 36944 -1 -1 83 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75160 22 19 2459 1781 1 1417 132 18 18 324 mult_36 auto 36.1 MiB 0.73 8787 24252 5813 15988 2451 73.4 MiB 1.14 0.02 8.59036 -640.13 -8.59036 8.59036 1.03 0.00508918 0.00462357 0.409063 0.370585 58 18144 50 8.18539e+06 4.3894e+06 1.14310e+06 3528.09 35.21 3.25559 2.9017 34680 290288 -1 13981 22 13072 15000 1915715 426043 9.02382 9.02382 -822.024 -9.02382 0 0 1.43297e+06 4422.75 0.46 0.71 0.29 -1 -1 0.46 0.263123 0.238689 594 551 513 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_29.v common 23.26 vpr 74.05 MiB 0.17 12576 -1 -1 1 0.33 -1 -1 37128 -1 -1 85 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75824 22 19 2565 1853 1 1485 135 22 22 484 mult_36 auto 36.8 MiB 0.76 9693 25047 5824 16462 2761 74.0 MiB 1.18 0.02 8.56824 -658.817 -8.56824 8.56824 1.51 0.00519537 0.00471804 0.405552 0.368346 64 18425 33 1.33067e+07 4.81483e+06 1.90554e+06 3937.06 13.36 2.09161 1.87606 54502 494576 -1 15063 28 14458 16832 2340289 516030 8.76628 8.76628 -928.497 -8.76628 0 0 2.40101e+06 4960.76 1.07 0.97 0.49 -1 -1 1.07 0.347947 0.317749 619 570 532 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_30.v common 18.04 vpr 74.70 MiB 0.13 12844 -1 -1 1 0.27 -1 -1 37316 -1 -1 89 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76492 22 19 2639 1910 1 1523 139 22 22 484 mult_36 auto 37.2 MiB 0.80 9384 25628 5988 16697 2943 74.7 MiB 1.19 0.02 8.44238 -674.317 -8.44238 8.44238 1.47 0.00497115 0.00451422 0.411582 0.372177 70 15871 29 1.33067e+07 4.87369e+06 2.06816e+06 4273.05 8.61 1.7569 1.57544 56434 539830 -1 14145 24 11726 13596 1807233 398151 9.10687 9.10687 -826.57 -9.10687 0 0 2.60483e+06 5381.88 0.91 0.72 0.52 -1 -1 0.91 0.295643 0.267847 639 589 551 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_31.v common 82.38 vpr 74.93 MiB 0.13 12928 -1 -1 1 0.37 -1 -1 37440 -1 -1 93 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76724 22 19 2744 1981 1 1590 143 22 22 484 mult_36 auto 37.6 MiB 0.81 9784 30356 7187 19530 3639 74.9 MiB 1.42 0.02 8.38567 -675.978 -8.38567 8.38567 1.51 0.00566731 0.00506787 0.483612 0.435548 64 18972 47 1.33067e+07 4.93255e+06 1.90554e+06 3937.06 72.43 3.88184 3.46103 54502 494576 -1 15109 27 13335 15415 2075489 440624 9.05667 9.05667 -930.353 -9.05667 0 0 2.40101e+06 4960.76 0.86 0.87 0.50 -1 -1 0.86 0.349833 0.316353 665 608 570 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_32.v common 28.51 vpr 81.35 MiB 0.18 13056 -1 -1 1 0.36 -1 -1 36832 -1 -1 96 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83304 22 19 2818 2038 1 1627 146 22 22 484 mult_36 auto 37.9 MiB 0.93 9765 27794 6626 18138 3030 75.2 MiB 1.31 0.02 8.43423 -706.833 -8.43423 8.43423 1.76 0.00583259 0.00529427 0.429465 0.387814 74 16569 27 1.33067e+07 4.9767e+06 2.15943e+06 4461.62 18.06 2.89002 2.57685 57402 562966 -1 14339 27 12280 14513 1864875 390039 8.48327 8.48327 -1035.16 -8.48327 0 0 2.68771e+06 5553.12 0.94 0.77 0.54 -1 -1 0.94 0.336831 0.304035 684 627 589 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_33.v common 30.01 vpr 81.04 MiB 0.20 13848 -1 -1 1 0.38 -1 -1 37424 -1 -1 100 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 82980 22 19 2923 2109 1 1695 151 22 22 484 mult_36 auto 38.5 MiB 0.82 10394 32632 7799 20384 4449 75.9 MiB 1.60 0.02 9.15948 -780.094 -9.15948 9.15948 1.46 0.00602493 0.00538381 0.526779 0.475321 68 19006 40 1.33067e+07 5.43155e+06 2.01763e+06 4168.66 20.05 3.23323 2.88588 55470 518816 -1 15474 24 12536 14090 1741858 383228 9.73142 9.73142 -1174.71 -9.73142 0 0 2.51205e+06 5190.18 0.85 0.73 0.47 -1 -1 0.85 0.318534 0.288235 710 646 608 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_34.v common 19.76 vpr 76.07 MiB 0.20 13800 -1 -1 1 0.38 -1 -1 37816 -1 -1 101 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77896 22 19 2997 2166 1 1734 152 22 22 484 mult_36 auto 38.9 MiB 1.14 10711 29717 6877 19660 3180 76.1 MiB 1.34 0.02 9.29828 -782.067 -9.29828 9.29828 1.47 0.00610806 0.0055429 0.476263 0.430823 68 19336 39 1.33067e+07 5.44627e+06 2.01763e+06 4168.66 9.52 2.06781 1.85135 55470 518816 -1 15822 25 13222 15017 1923830 410698 9.61867 9.61867 -1083.26 -9.61867 0 0 2.51205e+06 5190.18 0.88 0.81 0.48 -1 -1 0.88 0.346646 0.313197 729 665 627 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_35.v common 24.64 vpr 76.66 MiB 0.20 14004 -1 -1 1 0.42 -1 -1 37680 -1 -1 106 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78496 22 19 3101 2236 1 1801 157 22 22 484 mult_36 auto 39.4 MiB 1.13 11402 28075 6295 18501 3279 76.7 MiB 1.37 0.02 9.47066 -829.471 -9.47066 9.47066 1.46 0.00794496 0.00731606 0.453256 0.411137 70 19800 47 1.33067e+07 5.51985e+06 2.06816e+06 4273.05 14.08 2.57784 2.30452 56434 539830 -1 16867 24 13697 15802 2138431 452706 9.74781 9.74781 -1050.32 -9.74781 0 0 2.60483e+06 5381.88 0.89 0.83 0.50 -1 -1 0.89 0.342171 0.309771 755 684 646 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_36.v common 70.01 vpr 76.95 MiB 0.21 14152 -1 -1 1 0.44 -1 -1 38012 -1 -1 107 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78800 22 19 3175 2293 1 1836 158 22 22 484 mult_36 auto 39.8 MiB 1.27 11170 30902 7166 20385 3351 77.0 MiB 1.45 0.02 9.18378 -834.69 -9.18378 9.18378 1.45 0.0064923 0.00589708 0.503411 0.454593 60 23060 49 1.33067e+07 5.53456e+06 1.79840e+06 3715.71 59.31 4.24917 3.7809 53054 462096 -1 17670 24 14840 17527 2134269 458631 9.53001 9.53001 -1214.3 -9.53001 0 0 2.25108e+06 4650.99 0.83 0.88 0.45 -1 -1 0.83 0.358272 0.324648 773 703 665 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_37.v common 26.00 vpr 77.64 MiB 0.19 14584 -1 -1 1 0.48 -1 -1 37508 -1 -1 111 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79508 22 19 3280 2364 1 1904 163 24 24 576 mult_36 auto 40.5 MiB 1.23 11916 36653 8512 22659 5482 77.6 MiB 1.67 0.02 9.503 -813.596 -9.503 9.503 1.77 0.00690126 0.00617172 0.6011 0.542808 68 21847 36 1.60519e+07 5.98942e+06 2.39371e+06 4155.74 13.97 2.39342 2.14552 65606 615345 -1 17297 31 13826 16479 2281397 551091 9.31947 9.31947 -1215.55 -9.31947 0 0 2.98162e+06 5176.42 1.02 1.01 0.56 -1 -1 1.02 0.437939 0.395008 798 722 684 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_38.v common 88.72 vpr 78.41 MiB 0.21 14552 -1 -1 1 0.47 -1 -1 37980 -1 -1 113 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 80292 22 19 3354 2421 1 1941 165 24 24 576 mult_36 auto 41.2 MiB 1.42 13091 35421 8629 23184 3608 78.4 MiB 1.72 0.02 9.56954 -911.791 -9.56954 9.56954 1.78 0.00697025 0.00631218 0.579032 0.522049 70 22176 36 1.60519e+07 6.01886e+06 2.45377e+06 4260.01 76.64 4.59468 4.08424 66754 640332 -1 18678 23 12610 14627 1802919 388775 9.66152 9.66152 -1189.17 -9.66152 0 0 3.09179e+06 5367.68 1.10 0.78 0.62 -1 -1 1.10 0.344841 0.311865 818 741 703 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_39.v common 34.90 vpr 91.68 MiB 0.19 14756 -1 -1 1 0.48 -1 -1 38208 -1 -1 117 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 93884 22 19 3457 2490 1 2007 169 24 24 576 mult_36 auto 41.2 MiB 1.40 13257 37062 8849 24893 3320 78.4 MiB 1.79 0.02 9.53513 -973.946 -9.53513 9.53513 1.79 0.00685254 0.00620387 0.597007 0.539319 66 24364 31 1.60519e+07 6.07772e+06 2.33135e+06 4047.49 22.52 3.63919 3.25047 65030 601923 -1 19382 25 15180 17874 2138458 453487 9.76651 9.76651 -1308.99 -9.76651 0 0 2.91907e+06 5067.82 1.00 0.89 0.58 -1 -1 1.00 0.386807 0.349718 842 760 722 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_40.v common 27.28 vpr 79.18 MiB 0.21 14852 -1 -1 1 0.49 -1 -1 38840 -1 -1 120 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81076 22 19 3531 2547 1 2046 172 24 24 576 mult_36 auto 41.8 MiB 1.48 13416 38890 9004 25965 3921 79.2 MiB 1.95 0.02 9.43624 -981.01 -9.43624 9.43624 1.88 0.00718784 0.00650653 0.621154 0.558695 70 23523 44 1.60519e+07 6.12186e+06 2.45377e+06 4260.01 14.18 2.64483 2.36847 66754 640332 -1 19563 25 14474 17290 2278221 477004 9.83772 9.83772 -1353.33 -9.83772 0 0 3.09179e+06 5367.68 1.09 0.92 0.59 -1 -1 1.09 0.396605 0.358328 862 779 741 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_41.v common 40.04 vpr 93.46 MiB 0.52 15160 -1 -1 1 0.50 -1 -1 38168 -1 -1 122 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 95708 22 19 3634 2616 1 2113 175 24 24 576 mult_36 auto 42.1 MiB 1.40 14260 37339 8299 25744 3296 79.4 MiB 1.88 0.02 9.48942 -936.304 -9.48942 9.48942 2.09 0.00743325 0.00675433 0.604351 0.543811 76 24101 46 1.60519e+07 6.5473e+06 2.61600e+06 4541.67 26.53 4.35322 3.87931 68478 680951 -1 20450 26 13980 16375 2275565 472356 10.0482 10.0482 -1255.71 -10.0482 0 0 3.24203e+06 5628.53 1.12 0.96 0.62 -1 -1 1.12 0.420655 0.380318 886 798 760 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_42.v common 93.56 vpr 79.95 MiB 0.25 15420 -1 -1 1 0.50 -1 -1 38220 -1 -1 125 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81872 22 19 3708 2673 1 2147 178 24 24 576 mult_36 auto 42.8 MiB 1.54 13247 38178 8698 26287 3193 80.0 MiB 1.85 0.02 9.34555 -911.748 -9.34555 9.34555 1.77 0.00767632 0.00697167 0.623997 0.565842 68 24266 46 1.60519e+07 6.59144e+06 2.39371e+06 4155.74 80.53 4.95262 4.41691 65606 615345 -1 19305 25 14215 16917 2027268 431068 9.41247 9.41247 -1370.03 -9.41247 0 0 2.98162e+06 5176.42 1.13 0.95 0.67 -1 -1 1.13 0.433534 0.391567 906 817 779 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_43.v common 43.81 vpr 94.00 MiB 0.18 15620 -1 -1 1 0.54 -1 -1 38864 -1 -1 129 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 96256 22 19 3810 2741 1 2214 182 24 24 576 mult_36 auto 43.1 MiB 1.49 14854 39322 8760 27092 3470 80.4 MiB 1.99 0.03 9.43515 -973.044 -9.43515 9.43515 1.75 0.00787505 0.00715575 0.625663 0.566841 70 26179 39 1.60519e+07 6.6503e+06 2.45377e+06 4260.01 30.63 4.92335 4.38951 66754 640332 -1 21790 27 16236 19013 2690277 570799 10.0622 10.0622 -1353.82 -10.0622 0 0 3.09179e+06 5367.68 1.05 1.08 0.59 -1 -1 1.05 0.454425 0.410612 930 836 798 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_44.v common 88.49 vpr 80.56 MiB 0.24 15812 -1 -1 1 0.53 -1 -1 38408 -1 -1 132 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 82496 22 19 3884 2798 1 2251 185 24 24 576 mult_36 auto 43.5 MiB 1.80 14264 43317 10157 28920 4240 80.6 MiB 2.13 0.03 9.54931 -1049.89 -9.54931 9.54931 1.87 0.00790514 0.00716399 0.718464 0.649499 70 23866 43 1.60519e+07 6.69445e+06 2.45377e+06 4260.01 74.78 5.42895 4.8407 66754 640332 -1 20739 24 16345 18902 2422633 514103 9.94026 9.94026 -1346.73 -9.94026 0 0 3.09179e+06 5367.68 1.06 0.99 0.62 -1 -1 1.06 0.419403 0.379951 949 855 817 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_45.v common 39.66 vpr 95.97 MiB 0.25 15992 -1 -1 1 0.66 -1 -1 40432 -1 -1 135 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 98276 22 19 3989 2869 1 2318 189 24 24 576 mult_36 auto 43.8 MiB 1.61 15002 45717 10664 29972 5081 81.0 MiB 2.20 0.03 9.30374 -1001.57 -9.30374 9.30374 1.90 0.00815237 0.00740455 0.728317 0.657914 74 24106 34 1.60519e+07 7.1346e+06 2.56259e+06 4448.94 25.66 4.84108 4.33028 67906 667765 -1 21115 26 15678 18406 2326491 502931 9.44027 9.44027 -1425.49 -9.44027 0 0 3.19068e+06 5539.38 1.17 1.05 0.67 -1 -1 1.17 0.475369 0.431321 975 874 836 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_46.v common 101.08 vpr 81.41 MiB 0.27 16132 -1 -1 1 0.61 -1 -1 40492 -1 -1 136 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83364 22 19 4063 2926 1 2357 190 24 24 576 mult_36 auto 44.4 MiB 1.72 15384 39502 8716 27417 3369 81.4 MiB 2.00 0.03 9.25444 -1065.06 -9.25444 9.25444 1.82 0.00835579 0.00743201 0.651622 0.58416 68 28280 44 1.60519e+07 7.14931e+06 2.39371e+06 4155.74 87.13 5.4443 4.84378 65606 615345 -1 22363 25 16582 19483 2454716 510839 9.51877 9.51877 -1579.55 -9.51877 0 0 2.98162e+06 5176.42 1.45 1.08 0.59 -1 -1 1.45 0.477189 0.433645 993 893 855 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_47.v common 90.83 vpr 82.05 MiB 0.27 16448 -1 -1 1 0.63 -1 -1 40736 -1 -1 141 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84016 22 19 4167 2996 1 2421 195 24 24 576 mult_36 auto 45.1 MiB 1.69 15434 47655 11175 32212 4268 82.0 MiB 2.45 0.03 9.32624 -1067.91 -9.32624 9.32624 1.85 0.00941871 0.00803498 0.786575 0.702128 68 26939 44 1.60519e+07 7.22289e+06 2.39371e+06 4155.74 76.54 5.49501 4.88447 65606 615345 -1 22408 22 17205 20128 2344851 525433 9.69172 9.69172 -1531.77 -9.69172 0 0 2.98162e+06 5176.42 1.04 0.99 0.56 -1 -1 1.04 0.42772 0.387547 1019 912 874 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_48.v common 40.00 vpr 95.11 MiB 0.18 16676 -1 -1 1 0.68 -1 -1 40812 -1 -1 144 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 97396 22 19 4241 3053 1 2459 198 24 24 576 mult_36 auto 45.1 MiB 1.86 16101 43398 9885 28969 4544 82.4 MiB 2.28 0.03 9.15276 -1137.39 -9.15276 9.15276 1.87 0.00881582 0.00791312 0.704404 0.629925 80 24936 26 1.60519e+07 7.26704e+06 2.72095e+06 4723.87 25.59 4.61135 4.10248 70206 720185 -1 22062 25 17374 20305 2655222 541042 9.25847 9.25847 -1663.82 -9.25847 0 0 3.41546e+06 5929.62 1.26 1.13 0.68 -1 -1 1.26 0.487181 0.440914 1038 931 893 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_49.v common 39.41 vpr 96.69 MiB 0.29 16992 -1 -1 1 0.63 -1 -1 41068 -1 -1 145 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 99008 22 19 4346 3124 1 2527 200 24 24 576 mult_36 auto 46.3 MiB 1.76 16303 42248 9563 28218 4467 82.9 MiB 2.07 0.03 9.38798 -1053.9 -9.38798 9.38798 1.95 0.00885662 0.00806096 0.669442 0.602751 76 26459 35 1.60519e+07 7.67775e+06 2.61600e+06 4541.67 24.98 4.63327 4.13696 68478 680951 -1 22900 23 17127 19789 2450260 525170 9.49071 9.49071 -1363.71 -9.49071 0 0 3.24203e+06 5628.53 1.26 1.05 0.62 -1 -1 1.26 0.460657 0.416961 1062 950 912 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_50.v common 29.29 vpr 82.96 MiB 0.30 17112 -1 -1 1 0.64 -1 -1 41064 -1 -1 148 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84952 22 19 4420 3181 1 2564 203 24 24 576 mult_36 auto 46.3 MiB 1.90 16495 43711 9469 30201 4041 83.0 MiB 2.20 0.03 9.43609 -1064.71 -9.43609 9.43609 1.87 0.00883368 0.00800404 0.714975 0.643276 74 29023 44 1.60519e+07 7.72189e+06 2.56259e+06 4448.94 14.67 3.18161 2.84407 67906 667765 -1 23678 25 18523 22416 2877968 597216 9.48707 9.48707 -1821.24 -9.48707 0 0 3.19068e+06 5539.38 1.11 1.16 0.64 -1 -1 1.11 0.497174 0.449343 1082 969 931 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_51.v common 43.59 vpr 97.60 MiB 0.31 17444 -1 -1 1 0.65 -1 -1 41052 -1 -1 152 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 99940 22 19 4524 3251 1 2634 207 24 24 576 mult_36 auto 46.6 MiB 1.83 16985 41823 9101 28954 3768 83.4 MiB 2.17 0.03 9.734 -1168.67 -9.734 9.734 1.92 0.00969234 0.0088337 0.69198 0.623676 72 29204 35 1.60519e+07 7.78076e+06 2.50747e+06 4353.24 28.62 5.15664 4.59556 67330 654343 -1 24180 25 18625 21935 2835680 592310 9.95301 9.95301 -1799.32 -9.95301 0 0 3.14081e+06 5452.80 1.35 1.22 0.65 -1 -1 1.35 0.529839 0.48122 1107 988 950 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_52.v common 30.02 vpr 87.61 MiB 0.17 17568 -1 -1 1 0.66 -1 -1 39608 -1 -1 155 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 89708 22 19 4598 3308 1 2668 210 24 24 576 mult_36 auto 47.1 MiB 1.89 17259 43266 9678 28409 5179 83.8 MiB 2.20 0.03 9.7565 -1135.89 -9.7565 9.7565 1.86 0.00981061 0.00904252 0.711602 0.642606 72 30374 50 1.60519e+07 7.8249e+06 2.50747e+06 4353.24 15.55 3.60691 3.22262 67330 654343 -1 24994 25 20197 24076 3112218 653789 9.59001 9.59001 -1667.66 -9.59001 0 0 3.14081e+06 5452.80 1.15 1.30 0.62 -1 -1 1.15 0.535474 0.484882 1127 1007 969 19 0 0 -k6_frac_N8_22nm.xml fir_pipe_14.v common 13.91 vpr 70.14 MiB 0.11 10572 -1 -1 8 0.49 -1 -1 34476 -1 -1 79 22 0 4 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 71824 22 19 1764 1664 1 1014 124 16 16 256 mult_36 auto 32.2 MiB 0.61 6309 13720 2598 9792 1330 70.1 MiB 0.46 0.01 4.27196 -1341.5 -4.27196 4.27196 0.69 0.0038812 0.00344392 0.192745 0.171982 68 11233 36 6.45408e+06 2.64829e+06 1.00038e+06 3907.74 8.42 1.76019 1.55223 27844 252052 -1 9748 14 3990 6751 507713 116006 4.27196 4.27196 -1332.2 -4.27196 0 0 1.24648e+06 4869.04 0.38 0.28 0.26 -1 -1 0.38 0.151528 0.137444 599 909 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_15.v common 10.39 vpr 71.35 MiB 0.11 10832 -1 -1 8 0.50 -1 -1 36248 -1 -1 85 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73060 22 19 1918 1801 1 1104 131 16 16 256 mult_36 auto 33.0 MiB 0.62 6626 16731 3359 11755 1617 71.3 MiB 0.56 0.01 4.52256 -1452.91 -4.52256 4.52256 0.69 0.00433904 0.00386186 0.238118 0.212623 64 12736 29 6.45408e+06 3.12512e+06 943753. 3686.54 4.51 1.32466 1.17132 27332 240185 -1 10846 16 4390 7653 589954 137377 4.39726 4.39726 -1545.05 -4.39726 0 0 1.19033e+06 4649.74 0.43 0.34 0.24 -1 -1 0.43 0.183887 0.166897 651 984 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_16.v common 10.52 vpr 71.75 MiB 0.11 10916 -1 -1 8 0.56 -1 -1 37480 -1 -1 87 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73468 22 19 1976 1859 1 1141 133 16 16 256 mult_36 auto 33.5 MiB 0.68 7164 16066 3216 11368 1482 71.7 MiB 0.56 0.01 4.28601 -1479.04 -4.28601 4.28601 0.74 0.00444475 0.00396314 0.233166 0.207601 66 14097 31 6.45408e+06 3.15206e+06 974584. 3806.97 4.58 1.35173 1.19255 27588 246658 -1 11314 14 4644 8048 628529 143762 4.39726 4.39726 -1506.32 -4.39726 0 0 1.22072e+06 4768.46 0.41 0.32 0.24 -1 -1 0.41 0.170003 0.154253 679 1023 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_17.v common 13.38 vpr 72.70 MiB 0.10 11732 -1 -1 8 0.66 -1 -1 37128 -1 -1 102 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74444 22 19 2278 2144 1 1269 148 16 16 256 mult_36 auto 34.7 MiB 0.72 8095 16961 3169 12034 1758 72.7 MiB 0.60 0.01 4.27196 -1685.47 -4.27196 4.27196 0.75 0.00487339 0.00431926 0.243786 0.217106 66 15895 38 6.45408e+06 3.35414e+06 974584. 3806.97 7.03 1.83049 1.60994 27588 246658 -1 12871 17 5512 9156 773452 182436 4.14666 4.14666 -1714.79 -4.14666 0 0 1.22072e+06 4768.46 0.41 0.42 0.25 -1 -1 0.41 0.211945 0.192146 768 1171 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_18.v common 15.90 vpr 73.00 MiB 0.09 11940 -1 -1 8 0.66 -1 -1 37804 -1 -1 105 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74752 22 19 2336 2202 1 1299 151 16 16 256 mult_36 auto 35.1 MiB 0.78 8142 19800 3855 14118 1827 73.0 MiB 0.69 0.01 4.27196 -1743.36 -4.27196 4.27196 0.69 0.0052703 0.00471752 0.279445 0.249324 66 16357 31 6.45408e+06 3.39456e+06 974584. 3806.97 9.32 2.19485 1.933 27588 246658 -1 13041 16 5315 9387 790244 175589 4.27196 4.27196 -1778.91 -4.27196 0 0 1.22072e+06 4768.46 0.36 0.41 0.27 -1 -1 0.36 0.216098 0.195239 794 1210 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_19.v common 13.12 vpr 74.31 MiB 0.10 12260 -1 -1 8 0.68 -1 -1 37452 -1 -1 111 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76096 22 19 2488 2337 1 1399 158 16 16 256 mult_36 auto 36.4 MiB 0.82 9188 20654 3849 14830 1975 74.3 MiB 0.73 0.01 4.52256 -1895.49 -4.52256 4.52256 0.71 0.00546577 0.00499219 0.296915 0.264545 74 16375 28 6.45408e+06 3.87139e+06 1.07073e+06 4182.55 6.35 1.92056 1.69565 28864 273460 -1 14011 14 5529 9825 855293 187374 4.52256 4.52256 -1963.81 -4.52256 0 0 1.33358e+06 5209.30 0.40 0.43 0.28 -1 -1 0.40 0.224165 0.203803 837 1285 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_20.v common 13.40 vpr 74.62 MiB 0.14 12396 -1 -1 8 0.75 -1 -1 37528 -1 -1 114 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76412 22 19 2546 2395 1 1440 161 16 16 256 mult_36 auto 36.6 MiB 0.85 9425 20700 4100 14535 2065 74.6 MiB 0.76 0.02 4.32767 -1936.05 -4.32767 4.32767 0.69 0.00561857 0.00499322 0.301521 0.266358 70 17071 27 6.45408e+06 3.91181e+06 1.02522e+06 4004.78 6.41 1.7617 1.55734 28352 262101 -1 14775 14 5841 10666 895010 199961 4.39726 4.39726 -1935.26 -4.39726 0 0 1.29210e+06 5047.26 0.38 0.39 0.26 -1 -1 0.38 0.190323 0.173294 867 1324 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_21.v common 15.44 vpr 75.64 MiB 0.16 13040 -1 -1 8 0.87 -1 -1 37688 -1 -1 122 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77460 22 19 2735 2567 1 1547 169 16 16 256 mult_36 auto 37.6 MiB 0.87 10400 22118 4046 16008 2064 75.6 MiB 0.83 0.02 4.52256 -2137.28 -4.52256 4.52256 0.69 0.00574318 0.00520623 0.329986 0.292518 70 19515 48 6.45408e+06 4.01958e+06 1.02522e+06 4004.78 8.11 2.36955 2.09122 28352 262101 -1 15796 16 6443 11250 987187 224359 4.39726 4.39726 -2218.61 -4.39726 0 0 1.29210e+06 5047.26 0.41 0.49 0.26 -1 -1 0.41 0.2525 0.228038 931 1417 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_22.v common 16.54 vpr 75.61 MiB 0.11 13128 -1 -1 8 0.90 -1 -1 38104 -1 -1 126 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77420 22 19 2793 2625 1 1580 173 16 16 256 mult_36 auto 38.0 MiB 0.99 10482 25185 5093 17461 2631 75.6 MiB 0.89 0.02 4.39726 -2104.19 -4.39726 4.39726 0.69 0.00616876 0.00547718 0.353888 0.314132 72 20575 41 6.45408e+06 4.07347e+06 1.04740e+06 4091.43 8.93 2.61702 2.30942 28608 268066 -1 16169 16 6398 11556 979161 224597 4.39726 4.39726 -2198.12 -4.39726 0 0 1.31294e+06 5128.69 0.42 0.51 0.29 -1 -1 0.42 0.2639 0.23883 962 1456 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_23.v common 18.58 vpr 76.29 MiB 0.12 13396 -1 -1 8 0.91 -1 -1 38444 -1 -1 131 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78120 22 19 2947 2762 1 1693 179 18 18 324 mult_36 auto 38.7 MiB 0.98 10552 29411 6189 20863 2359 76.3 MiB 1.09 0.02 4.33362 -2228.91 -4.33362 4.33362 1.20 0.00652333 0.00579445 0.431017 0.38086 68 20948 46 7.94662e+06 4.53683e+06 1.31159e+06 4048.11 9.56 2.85032 2.50962 35852 333792 -1 17072 17 7143 12403 1006005 225429 4.27196 4.27196 -2354.78 -4.27196 0 0 1.63345e+06 5041.52 0.54 0.56 0.32 -1 -1 0.54 0.305952 0.277964 1008 1531 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_24.v common 16.77 vpr 76.65 MiB 0.14 13568 -1 -1 8 0.92 -1 -1 38716 -1 -1 135 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78492 22 19 3005 2820 1 1720 183 18 18 324 mult_36 auto 39.1 MiB 0.99 11450 28728 5932 20637 2159 76.7 MiB 1.07 0.02 4.52256 -2356.78 -4.52256 4.52256 1.00 0.00664037 0.00601447 0.405939 0.362916 72 21726 43 7.94662e+06 4.59072e+06 1.37338e+06 4238.83 8.12 2.31324 2.044 36820 354972 -1 17934 15 7047 12424 1077888 233656 4.52256 4.52256 -2526.88 -4.52256 0 0 1.72054e+06 5310.31 0.54 0.54 0.35 -1 -1 0.54 0.275691 0.250224 1039 1570 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_25.v common 24.91 vpr 77.51 MiB 0.18 14088 -1 -1 8 1.02 -1 -1 40452 -1 -1 145 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79372 22 19 3229 3027 1 1824 193 18 18 324 mult_36 auto 40.1 MiB 1.04 12352 31385 6347 23011 2027 77.5 MiB 1.16 0.02 4.39726 -2511.96 -4.39726 4.39726 0.92 0.00662621 0.00595368 0.445723 0.395705 70 22936 50 7.94662e+06 4.72544e+06 1.34436e+06 4149.26 15.67 3.73281 3.28122 36496 347204 -1 19370 16 7698 13674 1225432 265565 4.39726 4.39726 -2525.78 -4.39726 0 0 1.69344e+06 5226.66 0.64 0.60 0.34 -1 -1 0.64 0.305248 0.276175 1106 1681 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_26.v common 24.35 vpr 78.10 MiB 0.12 14208 -1 -1 8 1.13 -1 -1 40620 -1 -1 151 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79976 22 19 3287 3085 1 1862 199 18 18 324 mult_36 auto 40.7 MiB 1.07 12525 30939 6097 22880 1962 78.1 MiB 1.14 0.02 4.39726 -2537.22 -4.39726 4.39726 0.93 0.00732081 0.00649204 0.429495 0.380496 78 21256 27 7.94662e+06 4.80627e+06 1.46313e+06 4515.82 15.06 3.41488 3.01438 38112 383040 -1 19362 15 7415 13494 1162678 245723 4.31116 4.31116 -2618.24 -4.31116 0 0 1.83526e+06 5664.38 0.62 0.58 0.37 -1 -1 0.62 0.299232 0.271159 1134 1720 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_27.v common 20.81 vpr 79.90 MiB 0.17 14528 -1 -1 8 1.18 -1 -1 39436 -1 -1 156 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81816 22 19 3453 3234 1 1964 205 18 18 324 mult_36 auto 41.6 MiB 1.14 13681 31613 6009 23435 2169 79.9 MiB 1.16 0.02 4.45297 -2674.52 -4.45297 4.45297 0.92 0.00764482 0.00677504 0.437188 0.387192 74 25230 39 7.94662e+06 5.26963e+06 1.40368e+06 4332.34 11.36 2.92689 2.58073 37144 362180 -1 20914 15 8108 14439 1272992 270691 4.39726 4.39726 -2705.27 -4.39726 0 0 1.74764e+06 5393.95 0.57 0.64 0.35 -1 -1 0.57 0.323341 0.294569 1189 1795 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_28.v common 18.97 vpr 80.04 MiB 0.25 14812 -1 -1 8 1.17 -1 -1 41196 -1 -1 160 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81960 22 19 3511 3292 1 2001 209 18 18 324 mult_36 auto 41.7 MiB 1.16 13533 36169 7851 25670 2648 80.0 MiB 1.31 0.02 4.27196 -2716.32 -4.27196 4.27196 0.95 0.00758634 0.00669665 0.485058 0.429344 76 24958 37 7.94662e+06 5.32352e+06 1.43297e+06 4422.75 9.15 2.63277 2.32429 37464 369264 -1 20464 15 8254 14560 1239406 267344 4.27196 4.27196 -2808.92 -4.27196 0 0 1.77541e+06 5479.65 0.57 0.62 0.35 -1 -1 0.57 0.320412 0.290428 1221 1834 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_29.v common 31.81 vpr 88.39 MiB 0.20 15132 -1 -1 8 1.32 -1 -1 39952 -1 -1 168 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 90516 22 19 3709 3473 1 2127 218 22 22 484 mult_36 auto 43.2 MiB 1.25 14602 39518 9141 27857 2520 81.4 MiB 1.43 0.02 4.64786 -2935.24 -4.64786 4.64786 1.54 0.00809922 0.0071665 0.543067 0.478884 72 26438 32 1.29336e+07 5.8273e+06 2.11301e+06 4365.72 19.90 3.56355 3.14379 55718 550791 -1 22616 14 8048 14017 1235710 262139 4.64786 4.64786 -3093.81 -4.64786 0 0 2.64603e+06 5467.00 0.93 0.63 0.50 -1 -1 0.93 0.328588 0.298688 1281 1927 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_30.v common 21.57 vpr 81.68 MiB 0.15 15380 -1 -1 8 1.26 -1 -1 40280 -1 -1 170 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83640 22 19 3767 3531 1 2168 220 22 22 484 mult_36 auto 43.4 MiB 1.17 14136 38674 7872 27997 2805 81.7 MiB 1.38 0.02 4.27196 -2917.4 -4.27196 4.27196 1.47 0.00830033 0.0073693 0.524715 0.463166 70 26124 28 1.29336e+07 5.85424e+06 2.06816e+06 4273.05 10.02 2.59867 2.28795 55234 538945 -1 23007 16 8701 15898 1397998 301821 4.52256 4.52256 -3212.81 -4.52256 0 0 2.60483e+06 5381.88 0.92 0.72 0.50 -1 -1 0.92 0.365117 0.332259 1309 1966 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_31.v common 25.48 vpr 82.59 MiB 0.21 15824 -1 -1 8 1.46 -1 -1 41872 -1 -1 177 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84576 22 19 3928 3675 1 2252 227 22 22 484 mult_36 auto 44.5 MiB 1.27 15955 41055 8830 29506 2719 82.6 MiB 1.48 0.02 4.64786 -3128.05 -4.64786 4.64786 1.48 0.00858803 0.00762101 0.559367 0.493732 70 29680 35 1.29336e+07 5.94854e+06 2.06816e+06 4273.05 13.17 3.48539 3.07095 55234 538945 -1 25230 18 9528 17282 1610949 332876 4.52256 4.52256 -3269.54 -4.52256 0 0 2.60483e+06 5381.88 0.90 0.78 0.49 -1 -1 0.90 0.393184 0.354134 1363 2041 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_32.v common 24.59 vpr 82.92 MiB 0.22 16060 -1 -1 8 1.39 -1 -1 41904 -1 -1 181 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84908 22 19 3986 3733 1 2287 231 22 22 484 mult_36 auto 44.8 MiB 1.32 15887 40587 8585 29443 2559 82.9 MiB 1.48 0.03 4.39726 -3145.72 -4.39726 4.39726 1.47 0.0087046 0.00769659 0.547152 0.483223 76 29475 26 1.29336e+07 6.00243e+06 2.20457e+06 4554.90 12.19 3.08886 2.72528 56682 573177 -1 24951 17 9277 17002 1468776 311644 4.39726 4.39726 -3289.06 -4.39726 0 0 2.73077e+06 5642.09 0.93 0.76 0.53 -1 -1 0.93 0.398667 0.360877 1391 2080 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_33.v common 33.91 vpr 95.93 MiB 0.23 16876 -1 -1 8 1.60 -1 -1 40892 -1 -1 192 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 98232 22 19 4329 4059 1 2422 243 22 22 484 mult_36 auto 46.1 MiB 1.38 16862 44965 10374 31657 2934 84.5 MiB 1.62 0.03 4.39726 -3352.56 -4.39726 4.39726 1.49 0.00925964 0.00819422 0.602206 0.529262 80 27929 33 1.29336e+07 6.54662e+06 2.29262e+06 4736.82 20.54 3.94904 3.46928 58134 606231 -1 25285 15 9077 16221 1406951 292685 4.52256 4.52256 -3440.36 -4.52256 0 0 2.87723e+06 5944.70 1.13 0.75 0.62 -1 -1 1.13 0.397335 0.360006 1494 2246 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_34.v common 24.27 vpr 84.85 MiB 0.18 17136 -1 -1 8 1.59 -1 -1 42796 -1 -1 198 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 86888 22 19 4387 4117 1 2459 249 22 22 484 mult_36 auto 46.5 MiB 1.43 17068 44097 9577 31491 3029 84.9 MiB 1.59 0.03 4.39726 -3405.93 -4.39726 4.39726 1.50 0.00928743 0.00819616 0.58332 0.513004 72 32512 35 1.29336e+07 6.62746e+06 2.11301e+06 4365.72 11.21 3.00736 2.64854 55718 550791 -1 26613 16 9838 17813 1459212 312343 4.39726 4.39726 -3610.82 -4.39726 0 0 2.64603e+06 5467.00 0.97 0.78 0.56 -1 -1 0.97 0.414285 0.374471 1521 2285 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_35.v common 27.91 vpr 85.86 MiB 0.24 17568 -1 -1 8 1.83 -1 -1 41572 -1 -1 208 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 87916 22 19 4547 4260 1 2575 259 22 22 484 mult_36 auto 47.5 MiB 1.51 17676 47284 9482 34731 3071 85.9 MiB 1.69 0.03 4.45892 -3532.9 -4.45892 4.45892 1.52 0.00994365 0.00881331 0.613052 0.539872 72 34940 49 1.29336e+07 6.76218e+06 2.11301e+06 4365.72 14.12 3.5406 3.11516 55718 550791 -1 27945 15 10572 18938 1649152 351009 4.39726 4.39726 -3764.56 -4.39726 0 0 2.64603e+06 5467.00 0.98 0.83 0.59 -1 -1 0.98 0.413577 0.375034 1571 2360 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_36.v common 28.27 vpr 86.07 MiB 0.25 17528 -1 -1 8 1.80 -1 -1 42904 -1 -1 210 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 88136 22 19 4605 4318 1 2609 261 22 22 484 mult_36 auto 47.8 MiB 1.49 19180 50241 11166 35970 3105 86.1 MiB 1.82 0.03 4.64786 -3637.14 -4.64786 4.64786 1.52 0.0100289 0.00889509 0.654987 0.577973 76 35018 33 1.29336e+07 6.78912e+06 2.20457e+06 4554.90 14.22 3.88997 3.41832 56682 573177 -1 28971 16 10574 19278 1656672 344536 4.39726 4.39726 -3778.28 -4.39726 0 0 2.73077e+06 5642.09 0.95 0.85 0.55 -1 -1 0.95 0.435181 0.393318 1597 2399 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_37.v common 38.98 vpr 104.81 MiB 0.26 18016 -1 -1 8 1.77 -1 -1 42580 -1 -1 218 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 107324 22 19 4802 4498 1 2726 270 24 24 576 mult_36 auto 49.2 MiB 1.54 18971 52590 11478 38185 2927 87.0 MiB 1.91 0.03 4.52256 -3767.52 -4.52256 4.52256 1.82 0.0104163 0.00922939 0.69226 0.610631 76 34411 31 1.56141e+07 7.2929e+06 2.61600e+06 4541.67 23.89 4.47747 3.9474 67070 679911 -1 28926 17 10727 19259 1642623 351279 4.64786 4.64786 -3877.51 -4.64786 0 0 3.24203e+06 5628.53 1.17 0.88 0.62 -1 -1 1.17 0.471435 0.426211 1661 2492 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_38.v common 29.85 vpr 89.50 MiB 0.25 18256 -1 -1 8 1.82 -1 -1 43356 -1 -1 221 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 91652 22 19 4860 4556 1 2764 273 24 24 576 mult_36 auto 49.7 MiB 1.60 19598 57798 12862 41398 3538 87.5 MiB 2.07 0.03 4.52256 -3851.3 -4.52256 4.52256 1.81 0.0103343 0.00914461 0.742776 0.652907 74 37110 40 1.56141e+07 7.33331e+06 2.56259e+06 4448.94 14.54 3.74742 3.30253 66498 666725 -1 30085 15 10985 19570 1801298 370615 4.52256 4.52256 -3958.38 -4.52256 0 0 3.19068e+06 5539.38 1.16 0.87 0.61 -1 -1 1.16 0.439199 0.397436 1689 2531 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_39.v common 34.57 vpr 91.49 MiB 0.27 18460 -1 -1 8 2.11 -1 -1 43692 -1 -1 226 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 93684 22 19 5019 4698 1 2868 278 24 24 576 mult_36 auto 50.7 MiB 1.64 20910 61047 14284 42574 4189 88.3 MiB 2.23 0.03 4.41131 -4082.11 -4.41131 4.41131 1.93 0.0107312 0.0095031 0.793499 0.697845 78 35683 29 1.56141e+07 7.40067e+06 2.67122e+06 4637.53 18.33 4.20374 3.70172 68222 705597 -1 31672 25 11561 20714 2237775 528335 4.52256 4.52256 -4301.86 -4.52256 0 0 3.35110e+06 5817.88 1.19 1.28 0.67 -1 -1 1.19 0.667975 0.601074 1735 2606 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_40.v common 43.99 vpr 107.71 MiB 0.29 18720 -1 -1 8 2.15 -1 -1 44512 -1 -1 230 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 110300 22 19 5077 4756 1 2904 282 24 24 576 mult_36 auto 50.6 MiB 1.70 20948 66810 16155 46347 4308 88.4 MiB 2.47 0.03 4.64786 -4029.87 -4.64786 4.64786 1.91 0.0110108 0.00973411 0.88098 0.775019 78 35873 43 1.56141e+07 7.45456e+06 2.67122e+06 4637.53 26.98 5.64108 4.96491 68222 705597 -1 31594 14 11574 20582 1892028 402185 4.52256 4.52256 -4297.75 -4.52256 0 0 3.35110e+06 5817.88 1.21 0.88 0.67 -1 -1 1.21 0.440004 0.399451 1765 2645 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_41.v common 44.03 vpr 109.18 MiB 0.25 19308 -1 -1 8 2.25 -1 -1 44260 -1 -1 239 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 111804 22 19 5308 4970 1 3021 292 24 24 576 mult_36 auto 52.0 MiB 1.78 22266 65148 15301 45446 4401 89.6 MiB 2.44 0.03 4.53661 -4284.69 -4.53661 4.53661 1.95 0.0112472 0.00991883 0.8567 0.750833 86 35990 33 1.56141e+07 7.97181e+06 2.91907e+06 5067.82 27.07 6.14064 5.40559 71098 772847 -1 32344 14 10765 19478 1710401 351248 4.52256 4.52256 -4544.8 -4.52256 0 0 3.65856e+06 6351.67 1.32 0.87 0.72 -1 -1 1.32 0.459024 0.41684 1838 2756 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_42.v common 44.84 vpr 109.88 MiB 0.29 19564 -1 -1 8 2.27 -1 -1 44416 -1 -1 242 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 112512 22 19 5366 5028 1 3055 295 24 24 576 mult_36 auto 52.9 MiB 1.80 22679 61117 13773 43741 3603 90.3 MiB 2.33 0.04 4.66191 -4235.07 -4.66191 4.66191 1.86 0.011637 0.010308 0.809699 0.71333 82 39997 47 1.56141e+07 8.01222e+06 2.78508e+06 4835.20 27.58 5.94477 5.23092 69370 733739 -1 33886 15 12156 22275 1970079 405149 4.64786 4.64786 -4496.94 -4.64786 0 0 3.48632e+06 6052.64 1.25 0.96 0.71 -1 -1 1.25 0.493254 0.446963 1862 2795 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_43.v common 44.43 vpr 118.62 MiB 0.36 19852 -1 -1 8 2.35 -1 -1 44716 -1 -1 255 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 121464 22 19 5524 5169 1 3162 308 24 24 576 mult_36 auto 53.3 MiB 1.84 22460 73038 16907 51210 4921 90.0 MiB 2.72 0.04 4.45892 -4390.33 -4.45892 4.45892 2.19 0.0120042 0.0106559 0.936932 0.816483 80 37054 31 1.56141e+07 8.18736e+06 2.72095e+06 4723.87 26.59 5.8605 5.16065 68798 719145 -1 33280 16 11785 21759 1790126 370269 4.64786 4.64786 -4576.22 -4.64786 0 0 3.41546e+06 5929.62 1.22 0.98 0.67 -1 -1 1.22 0.527767 0.477977 1916 2870 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_44.v common 127.54 vpr 98.89 MiB 0.31 19928 -1 -1 8 2.54 -1 -1 45280 -1 -1 254 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 101260 22 19 5582 5227 1 3204 307 24 24 576 mult_36 auto 53.7 MiB 1.89 22502 66547 15787 46972 3788 90.3 MiB 2.55 0.04 4.52256 -4486.19 -4.52256 4.52256 2.11 0.0120297 0.0106204 0.876169 0.76899 74 42787 45 1.56141e+07 8.17389e+06 2.56259e+06 4448.94 109.77 8.48534 7.43281 66498 666725 -1 35196 16 13390 24231 2184528 458821 4.39726 4.39726 -4709.92 -4.39726 0 0 3.19068e+06 5539.38 1.21 1.10 0.61 -1 -1 1.21 0.548485 0.498038 1945 2909 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_45.v common 53.10 vpr 111.36 MiB 0.21 20468 -1 -1 8 2.52 -1 -1 45788 -1 -1 262 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 114028 22 19 5779 5407 1 3306 316 24 24 576 mult_36 auto 54.8 MiB 1.87 24550 70191 16510 49767 3914 93.4 MiB 2.61 0.04 4.64786 -4625.87 -4.64786 4.64786 1.87 0.0132558 0.0118571 0.898244 0.790379 78 43496 43 1.56141e+07 8.67766e+06 2.67122e+06 4637.53 35.04 7.37805 6.49792 68222 705597 -1 36693 16 12990 23039 2177528 443029 4.64786 4.64786 -4872.93 -4.64786 0 0 3.35110e+06 5817.88 1.20 1.07 0.65 -1 -1 1.20 0.547154 0.495264 2012 3002 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_46.v common 116.90 vpr 98.17 MiB 0.25 20700 -1 -1 8 2.51 -1 -1 46176 -1 -1 267 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 100528 22 19 5837 5465 1 3341 321 24 24 576 mult_36 auto 55.4 MiB 1.90 23014 78279 19395 54249 4635 93.9 MiB 2.85 0.04 4.77316 -4717.28 -4.77316 4.77316 2.34 0.0124784 0.0110104 0.981124 0.863377 78 41329 31 1.56141e+07 8.74502e+06 2.67122e+06 4637.53 98.26 8.90644 7.81718 68222 705597 -1 35603 14 12924 23433 2097034 435832 4.89846 4.89846 -5046.66 -4.89846 0 0 3.35110e+06 5817.88 1.21 1.02 0.65 -1 -1 1.21 0.520865 0.473461 2043 3041 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_47.v common 40.17 vpr 100.37 MiB 0.32 20904 -1 -1 8 2.60 -1 -1 44612 -1 -1 275 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 102776 22 19 5997 5608 1 3446 329 24 24 576 mult_36 auto 55.8 MiB 1.97 23890 79779 19615 56036 4128 94.2 MiB 3.14 0.04 4.52256 -4753.36 -4.52256 4.52256 2.25 0.0133066 0.0118145 1.06823 0.9393 76 42922 43 1.56141e+07 8.8528e+06 2.61600e+06 4541.67 21.09 5.78383 5.09567 67070 679911 -1 36043 16 13572 24201 2071974 442460 4.39726 4.39726 -5108.91 -4.39726 0 0 3.24203e+06 5628.53 1.23 1.22 0.66 -1 -1 1.23 0.649436 0.590222 2100 3116 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_48.v common 35.58 vpr 101.09 MiB 0.35 21064 -1 -1 8 3.30 -1 -1 46332 -1 -1 279 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 103516 22 19 6055 5666 1 3477 333 24 24 576 mult_36 auto 56.2 MiB 1.99 24651 81043 20011 56340 4692 94.7 MiB 3.00 0.05 4.41131 -4877.82 -4.41131 4.41131 1.78 0.0130593 0.0111089 0.969607 0.848464 74 45227 34 1.56141e+07 8.90669e+06 2.56259e+06 4448.94 16.28 4.66617 4.11049 66498 666725 -1 37604 17 14240 25302 2246621 473431 4.39726 4.39726 -5110.14 -4.39726 0 0 3.19068e+06 5539.38 1.17 1.21 0.63 -1 -1 1.17 0.63427 0.577224 2126 3155 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_49.v common 50.13 vpr 123.61 MiB 0.33 21688 -1 -1 8 3.77 -1 -1 46484 -1 -1 285 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 126572 22 19 6324 5918 1 3577 340 24 24 576 mult_36 auto 57.5 MiB 2.03 25847 78616 18544 55831 4241 95.9 MiB 2.96 0.05 4.57827 -4988.8 -4.57827 4.57827 1.76 0.0145383 0.0131995 0.989134 0.869804 80 42456 33 1.56141e+07 9.38352e+06 2.72095e+06 4723.87 30.10 6.70513 5.91963 68798 719145 -1 37978 14 13206 24374 2114449 435929 4.64786 4.64786 -5260.94 -4.64786 0 0 3.41546e+06 5929.62 1.25 1.05 0.80 -1 -1 1.25 0.54389 0.493738 2206 3284 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_50.v common 36.93 vpr 103.39 MiB 0.34 21888 -1 -1 8 3.57 -1 -1 47228 -1 -1 292 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 105876 22 19 6382 5976 1 3610 347 24 24 576 mult_36 auto 58.3 MiB 2.03 25875 80735 19460 56548 4727 96.4 MiB 3.09 0.05 4.52256 -5008.91 -4.52256 4.52256 1.82 0.0145607 0.0132347 1.01928 0.880334 78 45028 42 1.56141e+07 9.47782e+06 2.67122e+06 4637.53 17.05 5.65431 4.97048 68222 705597 -1 39583 16 14556 26399 2333973 504210 4.39726 4.39726 -5323.83 -4.39726 0 0 3.35110e+06 5817.88 1.26 1.22 0.65 -1 -1 1.26 0.618924 0.560651 2235 3323 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_51.v common 37.41 vpr 106.48 MiB 0.22 22220 -1 -1 8 3.55 -1 -1 47756 -1 -1 297 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 109036 22 19 6542 6119 1 3736 352 24 24 576 mult_36 auto 58.9 MiB 2.11 27181 89776 22152 62375 5249 97.2 MiB 3.22 0.04 4.77316 -5190.65 -4.77316 4.77316 1.78 0.0139273 0.0123074 1.0906 0.956889 82 46642 29 1.56141e+07 9.54518e+06 2.78508e+06 4835.20 17.26 5.08309 4.4789 69370 733739 -1 39735 14 14219 25417 2265389 476034 4.64786 4.64786 -5370.32 -4.64786 0 0 3.48632e+06 6052.64 1.30 1.20 0.66 -1 -1 1.30 0.62146 0.566651 2287 3398 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_52.v common 37.75 vpr 101.44 MiB 0.34 22320 -1 -1 8 3.04 -1 -1 47404 -1 -1 301 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 103872 22 19 6600 6177 1 3777 356 24 24 576 mult_36 auto 59.2 MiB 2.42 27822 86104 20994 59845 5265 97.3 MiB 3.15 0.05 4.52256 -5230.39 -4.52256 4.52256 1.77 0.014154 0.0125213 1.0556 0.92534 78 47564 41 1.56141e+07 9.59907e+06 2.67122e+06 4637.53 17.78 5.76031 5.08374 68222 705597 -1 41368 15 15230 27813 2474674 526301 4.52256 4.52256 -5391.64 -4.52256 0 0 3.35110e+06 5817.88 1.23 1.22 0.65 -1 -1 1.23 0.612416 0.555171 2318 3437 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_14.v common 11.35 vpr 67.56 MiB 0.10 9232 -1 -1 10 0.49 -1 -1 35192 -1 -1 57 22 0 4 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69184 22 19 1149 1049 1 785 102 16 16 256 mult_36 auto 29.4 MiB 0.42 5037 10336 2127 7192 1017 67.6 MiB 0.35 0.01 13.5769 -436.724 -13.5769 13.5769 0.70 0.00309082 0.00281369 0.150324 0.136838 66 10619 38 6.45408e+06 2.3519e+06 974584. 3806.97 6.34 0.996599 0.872192 27588 246658 -1 9102 21 4960 9680 816171 175522 12.3606 12.3606 -501.162 -12.3606 0 0 1.22072e+06 4768.46 0.37 0.34 0.24 -1 -1 0.37 0.152406 0.137907 433 658 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_15.v common 11.70 vpr 68.02 MiB 0.07 9452 -1 -1 11 0.54 -1 -1 36184 -1 -1 63 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69652 22 19 1261 1144 1 857 109 16 16 256 mult_36 auto 29.9 MiB 0.39 5354 11029 1996 7826 1207 68.0 MiB 0.37 0.01 14.3075 -472.001 -14.3075 14.3075 0.70 0.00338438 0.00308636 0.159168 0.145297 60 11748 49 6.45408e+06 2.82874e+06 890343. 3477.90 6.52 1.22967 1.10669 26568 224354 -1 9547 19 5111 10092 834420 183795 13.1013 13.1013 -568.67 -13.1013 0 0 1.11577e+06 4358.47 0.36 0.39 0.26 -1 -1 0.36 0.167688 0.153945 471 727 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_16.v common 14.85 vpr 68.41 MiB 0.07 9620 -1 -1 11 0.53 -1 -1 35708 -1 -1 70 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70048 22 19 1336 1219 1 919 116 16 16 256 mult_36 auto 30.5 MiB 0.43 5988 14780 3169 10176 1435 68.4 MiB 0.50 0.01 15.4691 -502.458 -15.4691 15.4691 0.69 0.00353865 0.00321576 0.205746 0.186904 60 13547 46 6.45408e+06 2.92304e+06 890343. 3477.90 9.48 1.22961 1.10694 26568 224354 -1 10822 18 5906 11528 997034 212689 13.6285 13.6285 -588.196 -13.6285 0 0 1.11577e+06 4358.47 0.33 0.39 0.28 -1 -1 0.33 0.164213 0.150284 512 783 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_17.v common 13.94 vpr 69.07 MiB 0.08 10152 -1 -1 11 0.59 -1 -1 36216 -1 -1 77 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70732 22 19 1446 1312 1 981 123 16 16 256 mult_36 auto 31.1 MiB 0.40 6289 16593 3435 11440 1718 69.1 MiB 0.56 0.01 14.6023 -516.745 -14.6023 14.6023 0.68 0.0037926 0.00344453 0.228916 0.208255 66 12898 22 6.45408e+06 3.01734e+06 974584. 3806.97 8.51 1.60231 1.43558 27588 246658 -1 10887 20 5514 10873 825256 188929 13.1832 13.1832 -602.54 -13.1832 0 0 1.22072e+06 4768.46 0.41 0.38 0.24 -1 -1 0.41 0.179247 0.162934 558 848 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_18.v common 13.22 vpr 69.92 MiB 0.07 10292 -1 -1 11 0.62 -1 -1 35972 -1 -1 79 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 71596 22 19 1507 1373 1 1020 125 16 16 256 mult_36 auto 31.6 MiB 0.47 6726 16037 3280 11223 1534 69.9 MiB 0.56 0.01 14.4834 -543.036 -14.4834 14.4834 0.72 0.00403976 0.00366675 0.2261 0.20557 68 13928 32 6.45408e+06 3.04429e+06 1.00038e+06 3907.74 7.51 1.2378 1.10808 27844 252052 -1 11686 20 6201 12406 990131 213742 13.2267 13.2267 -690.745 -13.2267 0 0 1.24648e+06 4869.04 0.40 0.43 0.25 -1 -1 0.40 0.188951 0.171518 576 890 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_19.v common 13.62 vpr 69.93 MiB 0.13 10552 -1 -1 11 0.72 -1 -1 36080 -1 -1 80 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 71604 22 19 1596 1445 1 1103 127 16 16 256 mult_36 auto 32.1 MiB 0.49 7348 16715 3403 11508 1804 69.9 MiB 0.60 0.01 14.8867 -546.505 -14.8867 14.8867 0.68 0.00435362 0.00396239 0.242812 0.220511 74 14383 47 6.45408e+06 3.45376e+06 1.07073e+06 4182.55 7.64 1.68407 1.50836 28864 273460 -1 12301 23 6003 11963 1225113 345124 13.7425 13.7425 -634.512 -13.7425 0 0 1.33358e+06 5209.30 0.40 0.54 0.27 -1 -1 0.40 0.224944 0.20452 615 938 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_20.v common 15.61 vpr 70.28 MiB 0.07 10608 -1 -1 11 0.75 -1 -1 36944 -1 -1 86 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 71968 22 19 1656 1505 1 1131 133 16 16 256 mult_36 auto 32.4 MiB 0.53 7846 15049 2924 10833 1292 70.3 MiB 0.58 0.01 15.2396 -554.475 -15.2396 15.2396 0.68 0.00449997 0.00408259 0.229317 0.208696 78 14532 25 6.45408e+06 3.53459e+06 1.11577e+06 4358.47 9.48 1.87453 1.66874 29628 289086 -1 12993 20 6297 12615 1007204 216794 13.8209 13.8209 -719.959 -13.8209 0 0 1.40012e+06 5469.22 0.43 0.45 0.29 -1 -1 0.43 0.208675 0.189366 637 979 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_21.v common 13.18 vpr 70.94 MiB 0.14 10976 -1 -1 12 0.81 -1 -1 36964 -1 -1 91 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72644 22 19 1754 1586 1 1196 138 16 16 256 mult_36 auto 33.1 MiB 0.52 7990 15090 2622 11262 1206 70.9 MiB 0.55 0.01 15.6803 -617.052 -15.6803 15.6803 0.72 0.00477055 0.00429592 0.223226 0.202499 70 15670 41 6.45408e+06 3.60195e+06 1.02522e+06 4004.78 6.95 1.6969 1.5169 28352 262101 -1 13848 20 6781 13005 1123871 254420 14.4006 14.4006 -887.052 -14.4006 0 0 1.29210e+06 5047.26 0.39 0.49 0.26 -1 -1 0.39 0.22146 0.201158 662 1035 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_22.v common 14.80 vpr 71.18 MiB 0.10 11000 -1 -1 11 0.82 -1 -1 37816 -1 -1 97 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72888 22 19 1827 1659 1 1261 144 16 16 256 mult_36 auto 33.4 MiB 0.58 8682 12585 1999 9675 911 71.2 MiB 0.50 0.01 14.4771 -606.777 -14.4771 14.4771 0.70 0.00493102 0.00448143 0.189948 0.17233 74 17628 40 6.45408e+06 3.68278e+06 1.07073e+06 4182.55 8.47 1.86505 1.66642 28864 273460 -1 14632 18 7673 14950 1275962 280127 13.3561 13.3561 -716.782 -13.3561 0 0 1.33358e+06 5209.30 0.40 0.51 0.32 -1 -1 0.40 0.214658 0.195659 708 1089 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_23.v common 13.69 vpr 71.66 MiB 0.10 11320 -1 -1 12 0.84 -1 -1 38220 -1 -1 97 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73384 22 19 1905 1720 1 1293 145 18 18 324 mult_36 auto 33.8 MiB 0.58 9148 21425 4017 15587 1821 71.7 MiB 0.77 0.01 16.7814 -693.289 -16.7814 16.7814 0.92 0.00507533 0.00461416 0.306707 0.277423 72 18160 35 7.94662e+06 4.07878e+06 1.37338e+06 4238.83 6.48 1.57297 1.40899 36820 354972 -1 15344 17 6907 13721 1184988 258891 15.4142 15.4142 -835.99 -15.4142 0 0 1.72054e+06 5310.31 0.53 0.49 0.34 -1 -1 0.53 0.212543 0.193987 722 1124 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_24.v common 15.36 vpr 72.37 MiB 0.15 11412 -1 -1 12 0.91 -1 -1 36888 -1 -1 98 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74108 22 19 1979 1794 1 1336 146 18 18 324 mult_36 auto 34.6 MiB 0.57 8835 18962 3578 13867 1517 72.4 MiB 0.73 0.01 15.6002 -656.607 -15.6002 15.6002 0.91 0.00511339 0.00462928 0.284726 0.256526 70 16906 25 7.94662e+06 4.09226e+06 1.34436e+06 4149.26 8.09 1.89669 1.69773 36496 347204 -1 14857 18 7173 13718 1126372 251932 14.6043 14.6043 -914.656 -14.6043 0 0 1.69344e+06 5226.66 0.52 0.51 0.36 -1 -1 0.52 0.230832 0.210082 739 1179 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_25.v common 15.67 vpr 73.02 MiB 0.11 11816 -1 -1 12 0.99 -1 -1 37380 -1 -1 105 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74772 22 19 2073 1871 1 1394 153 18 18 324 mult_36 auto 35.4 MiB 0.59 9747 21012 4486 14783 1743 73.0 MiB 0.78 0.01 15.9811 -650.584 -15.9811 15.9811 0.93 0.00551704 0.00501391 0.311208 0.281529 74 19181 28 7.94662e+06 4.18656e+06 1.40368e+06 4332.34 7.86 1.77204 1.58665 37144 362180 -1 16561 25 7502 14567 1526972 396424 15.2351 15.2351 -948.371 -15.2351 0 0 1.74764e+06 5393.95 0.56 0.75 0.34 -1 -1 0.56 0.321157 0.292631 791 1232 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_26.v common 18.93 vpr 73.96 MiB 0.13 11884 -1 -1 12 1.45 -1 -1 37376 -1 -1 106 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75732 22 19 2130 1928 1 1451 154 18 18 324 mult_36 auto 36.0 MiB 0.70 10204 19518 3476 14463 1579 74.0 MiB 0.78 0.02 15.2934 -691.341 -15.2934 15.2934 0.92 0.00566394 0.00515417 0.306304 0.277137 78 18594 29 7.94662e+06 4.20003e+06 1.46313e+06 4515.82 10.15 2.17693 1.94635 38112 383040 -1 16631 19 8278 16241 1354684 288682 13.9932 13.9932 -860.935 -13.9932 0 0 1.83526e+06 5664.38 0.57 0.57 0.37 -1 -1 0.57 0.253015 0.230193 811 1270 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_27.v common 19.09 vpr 73.73 MiB 0.12 12108 -1 -1 12 1.36 -1 -1 37992 -1 -1 114 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75496 22 19 2238 2019 1 1541 163 18 18 324 mult_36 auto 36.2 MiB 0.84 11025 22858 4211 16623 2024 73.7 MiB 0.90 0.02 16.3551 -735.488 -16.3551 16.3551 1.24 0.00590853 0.00535699 0.338016 0.302593 76 21114 47 7.94662e+06 4.70381e+06 1.43297e+06 4422.75 9.85 2.20121 1.9685 37464 369264 -1 17850 18 8516 16298 1366025 295170 14.9675 14.9675 -881.208 -14.9675 0 0 1.77541e+06 5479.65 0.57 0.59 0.36 -1 -1 0.57 0.259545 0.236712 851 1323 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_28.v common 25.21 vpr 74.09 MiB 0.14 12312 -1 -1 12 1.18 -1 -1 38132 -1 -1 117 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75872 22 19 2299 2080 1 1575 166 18 18 324 mult_36 auto 36.6 MiB 0.75 10794 23422 4551 16955 1916 74.1 MiB 1.04 0.02 15.946 -732.667 -15.946 15.946 1.11 0.00564105 0.0050757 0.369585 0.331961 78 20079 29 7.94662e+06 4.74422e+06 1.46313e+06 4515.82 16.20 3.11145 2.76668 38112 383040 -1 17907 18 9336 18256 1527559 324376 14.7451 14.7451 -981.151 -14.7451 0 0 1.83526e+06 5664.38 0.58 0.71 0.37 -1 -1 0.58 0.28519 0.25903 874 1365 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_29.v common 25.19 vpr 74.97 MiB 0.10 12460 -1 -1 12 1.19 -1 -1 38848 -1 -1 121 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76768 22 19 2400 2164 1 1649 171 22 22 484 mult_36 auto 37.1 MiB 0.72 11709 28137 5812 19993 2332 75.0 MiB 1.14 0.02 15.3214 -777.403 -15.3214 15.3214 1.79 0.00599311 0.00547182 0.428911 0.384257 74 23883 36 1.29336e+07 5.19411e+06 2.15943e+06 4461.62 14.23 2.42065 2.17052 56202 562081 -1 20484 24 9805 18861 1973610 438335 14.0212 14.0212 -1043.93 -14.0212 0 0 2.68771e+06 5553.12 1.02 0.86 0.53 -1 -1 1.02 0.352613 0.320733 915 1415 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_30.v common 115.34 vpr 75.45 MiB 0.18 12724 -1 -1 12 1.26 -1 -1 38180 -1 -1 127 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77256 22 19 2474 2238 1 1692 177 22 22 484 mult_36 auto 37.5 MiB 0.68 11907 26961 5348 19369 2244 75.4 MiB 1.16 0.02 15.2789 -855.312 -15.2789 15.2789 1.65 0.00612403 0.00556829 0.450459 0.393731 70 24231 42 1.29336e+07 5.27494e+06 2.06816e+06 4273.05 104.46 4.50425 3.96954 55234 538945 -1 20580 19 11208 21825 2041793 427284 14.0646 14.0646 -1208.44 -14.0646 0 0 2.60483e+06 5381.88 0.94 0.78 0.50 -1 -1 0.94 0.298064 0.269819 947 1470 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_31.v common 25.38 vpr 76.46 MiB 0.18 12972 -1 -1 12 1.34 -1 -1 39808 -1 -1 137 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78300 22 19 2603 2350 1 1765 187 22 22 484 mult_36 auto 38.5 MiB 0.75 12262 31159 6432 22219 2508 76.5 MiB 1.30 0.02 16.1203 -785.932 -16.1203 16.1203 1.74 0.00610003 0.00545636 0.501665 0.436193 68 25196 45 1.29336e+07 5.40966e+06 2.01763e+06 4168.66 14.15 2.45032 2.18839 54270 517931 -1 20695 21 10470 20411 1826849 392287 14.5952 14.5952 -1200.15 -14.5952 0 0 2.51205e+06 5190.18 0.88 0.82 0.49 -1 -1 0.88 0.349907 0.319857 1001 1549 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_32.v common 22.96 vpr 76.41 MiB 0.19 13044 -1 -1 12 1.33 -1 -1 38744 -1 -1 141 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78240 22 19 2694 2441 1 1849 191 22 22 484 mult_36 auto 39.1 MiB 0.76 12941 28739 5515 21062 2162 76.4 MiB 1.07 0.02 16.1727 -911.506 -16.1727 16.1727 1.46 0.00709642 0.00642381 0.406837 0.366138 74 24735 34 1.29336e+07 5.46355e+06 2.15943e+06 4461.62 12.26 2.36346 2.1299 56202 562081 -1 21368 18 10183 19389 1708612 353718 14.5728 14.5728 -1178.82 -14.5728 0 0 2.68771e+06 5553.12 0.90 0.72 0.52 -1 -1 0.90 0.313403 0.286335 1040 1621 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_33.v common 28.33 vpr 76.95 MiB 0.23 13648 -1 -1 13 1.48 -1 -1 39888 -1 -1 140 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78796 22 19 2787 2517 1 1916 191 22 22 484 mult_36 auto 39.8 MiB 0.78 13465 35327 7716 24810 2801 76.9 MiB 1.34 0.02 16.2303 -861.433 -16.2303 16.2303 1.53 0.00722275 0.0066535 0.51938 0.465886 72 28617 47 1.29336e+07 5.84608e+06 2.11301e+06 4365.72 16.86 3.10452 2.7818 55718 550791 -1 22968 20 11049 21354 1933552 406347 15.1021 15.1021 -1245.64 -15.1021 0 0 2.64603e+06 5467.00 0.91 0.82 0.56 -1 -1 0.91 0.348317 0.317089 1070 1664 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_34.v common 33.88 vpr 91.44 MiB 0.13 13696 -1 -1 13 1.69 -1 -1 38848 -1 -1 142 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 93636 22 19 2834 2564 1 1944 193 22 22 484 mult_36 auto 39.5 MiB 0.82 13469 30271 5714 22234 2323 76.9 MiB 1.18 0.02 16.0453 -909.324 -16.0453 16.0453 1.51 0.00734135 0.00665643 0.448739 0.402102 88 23376 21 1.29336e+07 5.87302e+06 2.51205e+06 5190.18 21.75 3.1979 2.84793 60546 662757 -1 21447 20 10514 20484 1734987 361279 14.7408 14.7408 -1302.44 -14.7408 0 0 3.12290e+06 6452.27 1.59 0.79 0.65 -1 -1 1.59 0.357347 0.327688 1084 1692 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_35.v common 33.51 vpr 84.49 MiB 0.16 14024 -1 -1 13 1.54 -1 -1 40460 -1 -1 150 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 86520 22 19 2941 2654 1 2012 201 22 22 484 mult_36 auto 40.1 MiB 0.92 14333 34893 6946 25294 2653 77.5 MiB 1.35 0.02 16.6518 -906.845 -16.6518 16.6518 1.50 0.00771063 0.00698839 0.508414 0.456583 84 25918 26 1.29336e+07 5.9808e+06 2.40101e+06 4960.76 21.54 3.90416 3.48836 59582 640177 -1 22484 20 10291 19738 1555925 325659 15.3638 15.3638 -1059.3 -15.3638 0 0 3.03951e+06 6279.99 1.22 0.83 0.64 -1 -1 1.22 0.377625 0.346935 1131 1750 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_36.v common 104.17 vpr 78.15 MiB 0.15 14164 -1 -1 13 1.69 -1 -1 40660 -1 -1 153 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 80028 22 19 3011 2724 1 2050 204 22 22 484 mult_36 auto 40.8 MiB 0.91 14333 33204 6759 24067 2378 78.2 MiB 1.31 0.02 16.0901 -925.304 -16.0901 16.0901 1.54 0.00775424 0.00701376 0.492869 0.440859 76 28442 48 1.29336e+07 6.02122e+06 2.20457e+06 4554.90 91.77 5.49768 4.88846 56682 573177 -1 23842 28 12073 23670 2540531 638646 14.9173 14.9173 -1511.95 -14.9173 0 0 2.73077e+06 5642.09 1.00 1.19 0.55 -1 -1 1.00 0.495584 0.448092 1168 1801 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_37.v common 42.22 vpr 96.56 MiB 0.21 14428 -1 -1 13 1.67 -1 -1 39628 -1 -1 158 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 98876 22 19 3132 2828 1 2123 210 24 24 576 mult_36 auto 41.3 MiB 0.95 16072 33282 6623 24362 2297 78.5 MiB 1.28 0.02 16.4965 -1047.3 -16.4965 16.4965 1.87 0.00804989 0.00729218 0.48557 0.435192 80 28099 43 1.56141e+07 6.48458e+06 2.72095e+06 4723.87 27.98 4.4373 3.96091 68798 719145 -1 24743 19 11538 21936 2036930 411178 15.1133 15.1133 -1392.4 -15.1133 0 0 3.41546e+06 5929.62 1.78 0.96 0.90 -1 -1 1.78 0.398478 0.36252 1192 1872 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_38.v common 31.12 vpr 80.66 MiB 0.22 14704 -1 -1 13 1.78 -1 -1 41208 -1 -1 160 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 82600 22 19 3159 2855 1 2172 212 24 24 576 mult_36 auto 41.6 MiB 0.91 15400 37441 7616 27633 2192 78.7 MiB 1.49 0.02 16.6277 -1074.04 -16.6277 16.6277 2.03 0.00820937 0.00744248 0.560994 0.500915 72 31514 49 1.56141e+07 6.51152e+06 2.50747e+06 4353.24 17.65 2.89091 2.57864 65922 653303 -1 25605 20 12401 23528 2242204 463472 15.3358 15.3358 -1479.25 -15.3358 0 0 3.14081e+06 5452.80 1.12 0.96 0.64 -1 -1 1.12 0.406272 0.369537 1207 1880 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_39.v common 36.15 vpr 95.03 MiB 0.14 14880 -1 -1 13 1.86 -1 -1 39820 -1 -1 169 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 97308 22 19 3284 2963 1 2259 221 24 24 576 mult_36 auto 42.1 MiB 0.99 15993 38907 8122 28363 2422 79.4 MiB 1.58 0.02 17.5627 -1048.03 -17.5627 17.5627 1.92 0.00869342 0.00803954 0.60321 0.540584 76 30113 42 1.56141e+07 6.63277e+06 2.61600e+06 4541.67 22.65 4.21902 3.75403 67070 679911 -1 25981 19 11896 23197 1973836 423116 16.2556 16.2556 -1391.29 -16.2556 0 0 3.24203e+06 5628.53 1.15 0.89 0.62 -1 -1 1.15 0.396434 0.360051 1267 1957 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_40.v common 31.94 vpr 80.81 MiB 0.23 14976 -1 -1 13 2.01 -1 -1 40008 -1 -1 169 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 82752 22 19 3343 3022 1 2282 221 24 24 576 mult_36 auto 42.7 MiB 1.03 15990 43576 9973 30398 3205 79.9 MiB 1.78 0.03 16.4294 -969.621 -16.4294 16.4294 1.97 0.0076462 0.00687074 0.651171 0.572585 76 30952 33 1.56141e+07 6.63277e+06 2.61600e+06 4541.67 17.59 3.35284 2.97238 67070 679911 -1 26278 19 12991 25311 2114866 467584 15.2497 15.2497 -1454.29 -15.2497 0 0 3.24203e+06 5628.53 1.21 0.94 0.63 -1 -1 1.21 0.403956 0.366143 1284 1997 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_41.v common 30.61 vpr 83.10 MiB 0.20 15308 -1 -1 13 1.96 -1 -1 41996 -1 -1 175 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 85092 22 19 3448 3110 1 2364 228 24 24 576 mult_36 auto 43.2 MiB 1.00 17394 37812 7382 28088 2342 80.4 MiB 1.54 0.03 16.1075 -1051.7 -16.1075 16.1075 1.96 0.0091916 0.00816496 0.565664 0.501554 84 32424 25 1.56141e+07 7.1096e+06 2.84938e+06 4946.85 16.36 3.19596 2.84616 70522 759407 -1 27143 20 13181 25847 2232179 458376 14.6701 14.6701 -1704.48 -14.6701 0 0 3.60864e+06 6265.01 1.29 0.99 0.70 -1 -1 1.29 0.433358 0.393163 1333 2054 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_42.v common 41.54 vpr 99.73 MiB 0.25 15420 -1 -1 13 2.01 -1 -1 40536 -1 -1 179 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 102124 22 19 3510 3172 1 2403 232 24 24 576 mult_36 auto 43.9 MiB 1.00 17180 40816 8418 29993 2405 81.9 MiB 1.65 0.03 16.1912 -1016.75 -16.1912 16.1912 1.92 0.00943541 0.00811199 0.601842 0.534003 78 31825 33 1.56141e+07 7.16349e+06 2.67122e+06 4637.53 27.12 4.50062 4.01776 68222 705597 -1 28178 20 13315 25658 2235495 474011 14.82 14.82 -1393.15 -14.82 0 0 3.35110e+06 5817.88 1.20 0.99 0.69 -1 -1 1.20 0.436056 0.396785 1352 2097 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_43.v common 42.95 vpr 100.11 MiB 0.25 15636 -1 -1 13 2.06 -1 -1 38528 -1 -1 182 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 102508 22 19 3598 3243 1 2469 235 24 24 576 mult_36 auto 44.1 MiB 1.10 18304 36435 6715 27575 2145 81.2 MiB 1.44 0.03 16.7224 -1137.41 -16.7224 16.7224 1.83 0.00950788 0.00861486 0.535366 0.479578 88 30863 23 1.56141e+07 7.2039e+06 2.98162e+06 5176.42 28.48 4.58797 4.09861 71670 786159 -1 28269 19 12789 25360 2127309 449806 15.2028 15.2028 -1535.9 -15.2028 0 0 3.70823e+06 6437.90 1.38 0.98 0.73 -1 -1 1.38 0.439993 0.39998 1391 2138 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_44.v common 36.66 vpr 82.73 MiB 0.25 15820 -1 -1 13 2.37 -1 -1 42648 -1 -1 189 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84712 22 19 3689 3334 1 2527 242 24 24 576 mult_36 auto 44.7 MiB 1.02 17450 43163 8464 32497 2202 82.7 MiB 1.75 0.03 15.8215 -1053.59 -15.8215 15.8215 1.87 0.00966782 0.00877291 0.625764 0.558675 78 32864 35 1.56141e+07 7.29821e+06 2.67122e+06 4637.53 21.24 3.9983 3.56033 68222 705597 -1 29085 22 13883 27525 2405573 500719 14.7058 14.7058 -1423.85 -14.7058 0 0 3.35110e+06 5817.88 1.52 1.21 0.75 -1 -1 1.52 0.550453 0.505497 1433 2210 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_45.v common 39.42 vpr 84.47 MiB 0.26 15984 -1 -1 13 2.55 -1 -1 38912 -1 -1 191 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 86500 22 19 3763 3391 1 2591 245 24 24 576 mult_36 auto 45.2 MiB 1.38 18844 45439 9758 33174 2507 83.1 MiB 1.80 0.03 16.1092 -1223.71 -16.1092 16.1092 2.12 0.00991911 0.00879704 0.648735 0.576618 80 34440 28 1.56141e+07 7.72115e+06 2.72095e+06 4723.87 23.11 3.98395 3.54367 68798 719145 -1 29823 19 14053 27150 2539938 517717 14.6981 14.6981 -1643.43 -14.6981 0 0 3.41546e+06 5929.62 1.30 1.13 0.66 -1 -1 1.30 0.475454 0.434477 1453 2234 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_46.v common 37.03 vpr 88.12 MiB 0.19 16252 -1 -1 13 2.33 -1 -1 42536 -1 -1 195 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 90236 22 19 3845 3473 1 2635 249 24 24 576 mult_36 auto 46.0 MiB 1.28 19078 44880 9246 33148 2486 83.8 MiB 1.84 0.03 16.4066 -1156.75 -16.4066 16.4066 1.88 0.00981128 0.00888823 0.6433 0.571552 76 38277 49 1.56141e+07 7.77504e+06 2.61600e+06 4541.67 21.50 4.07744 3.62204 67070 679911 -1 31279 21 14604 28625 2614110 539811 15.1678 15.1678 -1537.76 -15.1678 0 0 3.24203e+06 5628.53 1.18 1.18 0.64 -1 -1 1.18 0.511052 0.464385 1482 2297 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_47.v common 40.44 vpr 85.01 MiB 0.26 16648 -1 -1 13 2.49 -1 -1 42600 -1 -1 206 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 87052 22 19 3983 3594 1 2724 260 24 24 576 mult_36 auto 46.7 MiB 1.29 19564 47513 9947 35207 2359 84.8 MiB 2.07 0.03 16.197 -1214.31 -16.197 16.197 1.91 0.0103002 0.00930994 0.731318 0.63829 78 35422 40 1.56141e+07 7.92323e+06 2.67122e+06 4637.53 24.08 4.49553 3.97299 68222 705597 -1 31712 20 14679 29149 2638098 545103 14.8312 14.8312 -1689.11 -14.8312 0 0 3.35110e+06 5817.88 1.25 1.19 0.69 -1 -1 1.25 0.514723 0.469525 1559 2386 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_48.v common 48.69 vpr 103.20 MiB 0.23 16920 -1 -1 13 2.70 -1 -1 38980 -1 -1 202 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 105676 22 19 4025 3636 1 2760 256 24 24 576 mult_36 auto 46.6 MiB 1.14 19865 44104 8235 32908 2961 84.7 MiB 1.82 0.03 16.5555 -1237.6 -16.5555 16.5555 1.83 0.0106454 0.00938154 0.636794 0.566158 80 34964 32 1.56141e+07 7.86934e+06 2.72095e+06 4723.87 31.70 5.58405 4.95092 68798 719145 -1 31055 19 14926 29473 2357968 493685 15.3246 15.3246 -1886.04 -15.3246 0 0 3.41546e+06 5929.62 1.39 1.15 0.82 -1 -1 1.39 0.502736 0.456104 1547 2409 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_49.v common 35.00 vpr 86.87 MiB 0.30 17224 -1 -1 13 2.67 -1 -1 39336 -1 -1 213 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 88956 22 19 4164 3758 1 2857 268 24 24 576 mult_36 auto 48.0 MiB 1.26 20771 46007 8890 34471 2646 84.7 MiB 1.89 0.03 17.0529 -1256.54 -17.0529 17.0529 2.70 0.0108775 0.0098649 0.671756 0.598882 82 37329 31 1.56141e+07 8.41354e+06 2.78508e+06 4835.20 18.38 4.38845 3.90838 69370 733739 -1 32313 17 14152 27191 2278999 483397 15.8336 15.8336 -1741.68 -15.8336 0 0 3.48632e+06 6052.64 1.29 1.04 0.68 -1 -1 1.29 0.46722 0.426463 1622 2498 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_50.v common 50.20 vpr 104.60 MiB 0.29 17200 -1 -1 13 2.63 -1 -1 39168 -1 -1 212 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 107108 22 19 4190 3784 1 2864 267 24 24 576 mult_36 auto 48.3 MiB 1.23 20719 47512 9780 35035 2697 85.9 MiB 2.01 0.03 16.5956 -1264.91 -16.5956 16.5956 2.49 0.0106191 0.0097618 0.725692 0.648399 80 37198 33 1.56141e+07 8.40006e+06 2.72095e+06 4723.87 33.09 5.93602 5.28955 68798 719145 -1 32760 21 15413 30452 2837390 559448 15.403 15.403 -1780.07 -15.403 0 0 3.41546e+06 5929.62 1.42 1.28 0.66 -1 -1 1.42 0.574448 0.524818 1618 2505 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_51.v common 46.99 vpr 107.77 MiB 0.25 17488 -1 -1 13 2.74 -1 -1 43488 -1 -1 216 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 110352 22 19 4305 3882 1 2950 271 24 24 576 mult_36 auto 48.8 MiB 1.27 21440 51079 10257 37415 3407 86.5 MiB 2.19 0.03 16.714 -1309.99 -16.714 16.714 2.60 0.0109961 0.00996674 0.730513 0.647643 84 38763 39 1.56141e+07 8.45395e+06 2.84938e+06 4946.85 29.53 5.48423 4.89653 70522 759407 -1 32428 20 15429 30918 2308593 493125 15.4073 15.4073 -1971.83 -15.4073 0 0 3.60864e+06 6265.01 1.36 1.17 0.73 -1 -1 1.36 0.553978 0.504952 1666 2571 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_52.v common 52.81 vpr 114.72 MiB 0.24 17768 -1 -1 13 2.96 -1 -1 39812 -1 -1 227 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 117476 22 19 4363 3940 1 3005 282 24 24 576 mult_36 auto 49.2 MiB 1.39 21730 54798 11168 40568 3062 86.9 MiB 2.26 0.03 17.192 -1314.04 -17.192 17.192 2.76 0.0112846 0.0102195 0.762881 0.674531 84 38697 41 1.56141e+07 8.60214e+06 2.84938e+06 4946.85 34.46 6.3173 5.58542 70522 759407 -1 33367 20 15703 30464 2340147 493397 15.7005 15.7005 -2117.86 -15.7005 0 0 3.60864e+06 6265.01 1.37 1.25 0.71 -1 -1 1.37 0.586033 0.530189 1697 2610 -1 -1 -1 -1 -k6_frac_ripple_N8_22nm.xml fir_pipe_14.v common 12.60 vpr 70.74 MiB 0.08 10500 -1 -1 1 0.23 -1 -1 35580 -1 -1 81 22 0 4 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72436 22 19 1974 1653 1 1020 126 16 16 256 mult_36 auto 32.8 MiB 0.42 5707 14616 2612 9996 2008 70.7 MiB 0.58 0.01 4.27196 -1191.29 -4.27196 4.27196 0.71 0.00362092 0.00322572 0.197333 0.177154 60 9610 24 6.52434e+06 2.71588e+06 890343. 3477.90 7.29 1.62864 1.43774 27128 224764 -1 8185 17 3699 4190 423433 108714 4.39726 4.39726 -1140.75 -4.39726 0 0 1.11577e+06 4358.47 0.35 0.28 0.33 -1 -1 0.35 0.165097 0.148489 605 649 247 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_15.v common 12.00 vpr 71.70 MiB 0.12 10852 -1 -1 1 0.21 -1 -1 36912 -1 -1 88 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73420 22 19 2144 1789 1 1119 134 16 16 256 mult_36 auto 33.6 MiB 0.43 6078 18944 3753 12931 2260 71.7 MiB 0.76 0.01 4.22492 -1354.66 -4.22492 4.22492 0.71 0.00413521 0.00370395 0.248019 0.222369 58 10904 20 6.52434e+06 3.20969e+06 871168. 3403.00 6.66 1.50331 1.32519 26872 219187 -1 9500 16 4135 4897 496261 124326 4.29396 4.29396 -1391.71 -4.29396 0 0 1.09288e+06 4269.05 0.35 0.29 0.21 -1 -1 0.35 0.165473 0.15004 654 704 266 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_16.v common 10.36 vpr 72.01 MiB 0.11 10964 -1 -1 1 0.24 -1 -1 36920 -1 -1 91 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73740 22 19 2218 1846 1 1161 137 16 16 256 mult_36 auto 34.0 MiB 0.48 6793 19199 3651 12642 2906 72.0 MiB 0.75 0.01 4.29396 -1376.37 -4.29396 4.29396 0.70 0.00430525 0.00384631 0.249823 0.22394 56 12610 23 6.52434e+06 3.25161e+06 849745. 3319.32 4.91 1.40494 1.23965 26364 208198 -1 10765 21 4657 5400 648059 162428 4.52256 4.52256 -1436.25 -4.52256 0 0 1.04740e+06 4091.43 0.32 0.38 0.21 -1 -1 0.32 0.209652 0.188251 683 723 285 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_17.v common 10.54 vpr 73.37 MiB 0.09 11904 -1 -1 1 0.28 -1 -1 36612 -1 -1 103 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75128 22 19 2536 2130 1 1274 149 16 16 256 mult_36 auto 35.4 MiB 0.55 7563 19849 3721 13396 2732 73.4 MiB 0.80 0.01 4.29396 -1555.03 -4.29396 4.29396 0.70 0.0047578 0.00424546 0.262179 0.23436 54 14934 45 6.52434e+06 3.4193e+06 829453. 3240.05 4.89 1.58307 1.39736 26108 202796 -1 11220 19 5009 5929 575456 150599 4.29396 4.29396 -1585.29 -4.29396 0 0 1.02522e+06 4004.78 0.31 0.39 0.16 -1 -1 0.31 0.22944 0.207883 770 851 304 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_18.v common 13.75 vpr 73.82 MiB 0.09 11852 -1 -1 1 0.31 -1 -1 37244 -1 -1 107 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75596 22 19 2610 2187 1 1316 153 16 16 256 mult_36 auto 35.9 MiB 0.54 7580 22648 4139 15538 2971 73.8 MiB 0.92 0.02 4.22437 -1603.12 -4.22437 4.22437 0.71 0.00487685 0.00434746 0.297399 0.266234 56 14991 32 6.52434e+06 3.47519e+06 849745. 3319.32 7.45 1.83891 1.61984 26364 208198 -1 12118 24 5442 6385 763550 186400 5.14906 5.14906 -1681.4 -5.14906 0 0 1.04740e+06 4091.43 0.32 0.47 0.20 -1 -1 0.32 0.268099 0.239276 798 870 323 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_19.v common 12.73 vpr 74.71 MiB 0.08 12220 -1 -1 1 0.36 -1 -1 36832 -1 -1 113 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76504 22 19 2778 2321 1 1410 160 16 16 256 mult_36 auto 37.0 MiB 0.61 8169 22294 4065 14927 3302 74.7 MiB 0.94 0.02 4.2304 -1681.23 -4.2304 4.2304 0.69 0.00554343 0.0049623 0.301267 0.269493 58 14770 47 6.52434e+06 3.95503e+06 871168. 3403.00 6.19 1.76212 1.55073 26872 219187 -1 12035 18 5167 5841 646056 165802 4.29396 4.29396 -1705.82 -4.29396 0 0 1.09288e+06 4269.05 0.40 0.38 0.21 -1 -1 0.40 0.221543 0.198544 846 925 342 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_20.v common 17.12 vpr 75.66 MiB 0.12 12404 -1 -1 1 0.39 -1 -1 36936 -1 -1 118 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77472 22 19 2852 2378 1 1454 165 16 16 256 mult_36 auto 37.5 MiB 0.67 8808 21861 3843 15034 2984 75.7 MiB 0.90 0.02 4.28986 -1739.48 -4.28986 4.28986 0.76 0.00537901 0.00479796 0.284204 0.254098 60 14824 27 6.52434e+06 4.0249e+06 890343. 3477.90 10.83 2.42221 2.13192 27128 224764 -1 12480 16 5276 6100 595745 151457 4.41926 4.41926 -1762.84 -4.41926 0 0 1.11577e+06 4358.47 0.36 0.36 0.22 -1 -1 0.36 0.210673 0.192991 875 944 361 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_21.v common 12.97 vpr 75.95 MiB 0.11 12808 -1 -1 1 0.37 -1 -1 37892 -1 -1 122 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77768 22 19 3057 2549 1 1559 169 16 16 256 mult_36 auto 38.1 MiB 0.70 9015 24920 4571 15619 4730 75.9 MiB 1.09 0.02 4.20237 -1905.04 -4.20237 4.20237 0.72 0.00588898 0.0052545 0.349692 0.312596 60 16024 44 6.52434e+06 4.0808e+06 890343. 3477.90 6.34 1.92285 1.69391 27128 224764 -1 13134 16 5600 6594 636756 160290 4.29396 4.29396 -1928.97 -4.29396 0 0 1.11577e+06 4358.47 0.34 0.38 0.22 -1 -1 0.34 0.226866 0.204383 932 1017 380 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_22.v common 19.05 vpr 76.38 MiB 0.16 13088 -1 -1 1 0.35 -1 -1 38088 -1 -1 125 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78208 22 19 3131 2606 1 1599 172 16 16 256 mult_36 auto 38.6 MiB 0.60 9644 27896 4964 18195 4737 76.4 MiB 1.23 0.02 4.09962 -1964.96 -4.09962 4.09962 0.80 0.00611473 0.00542615 0.379087 0.335614 66 17711 35 6.52434e+06 4.12272e+06 974584. 3806.97 11.96 2.80697 2.46794 28148 247068 -1 13707 17 5831 6659 781116 185151 4.29396 4.29396 -1959.31 -4.29396 0 0 1.22072e+06 4768.46 0.47 0.43 0.24 -1 -1 0.47 0.24787 0.223643 961 1036 399 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_23.v common 19.47 vpr 77.13 MiB 0.15 13468 -1 -1 1 0.38 -1 -1 37804 -1 -1 133 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78984 22 19 3301 2742 1 1700 181 18 18 324 mult_36 auto 39.4 MiB 0.71 10087 30330 5799 21301 3230 77.1 MiB 1.29 0.02 4.29396 -2075.2 -4.29396 4.29396 0.94 0.00625865 0.00557228 0.40312 0.359865 60 18320 28 8.04299e+06 4.63052e+06 1.16833e+06 3605.96 11.65 2.80171 2.46399 35004 297736 -1 15010 17 6849 7695 873963 206522 4.29396 4.29396 -2095.97 -4.29396 0 0 1.46313e+06 4515.82 0.49 0.47 0.28 -1 -1 0.49 0.258722 0.233117 1012 1091 418 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_24.v common 16.07 vpr 77.49 MiB 0.16 13420 -1 -1 1 0.38 -1 -1 38120 -1 -1 137 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79352 22 19 3375 2799 1 1743 185 18 18 324 mult_36 auto 39.8 MiB 0.79 10300 29115 5219 20674 3222 77.5 MiB 1.36 0.02 4.22437 -2073.88 -4.22437 4.22437 0.94 0.00638202 0.00569795 0.392331 0.351465 58 18565 31 8.04299e+06 4.68641e+06 1.14310e+06 3528.09 8.01 2.01068 1.77339 34680 290288 -1 15595 17 6816 7782 901255 220455 4.29396 4.29396 -2160.36 -4.29396 0 0 1.43297e+06 4422.75 0.46 0.48 0.29 -1 -1 0.46 0.263504 0.237282 1041 1110 437 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_25.v common 16.35 vpr 78.42 MiB 0.13 13920 -1 -1 1 0.43 -1 -1 38068 -1 -1 146 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 80300 22 19 3615 3005 1 1847 194 18 18 324 mult_36 auto 40.8 MiB 0.76 10975 29927 5204 21640 3083 78.4 MiB 1.32 0.02 4.29396 -2273.15 -4.29396 4.29396 0.94 0.00681803 0.00607217 0.404898 0.361135 58 20078 36 8.04299e+06 4.81218e+06 1.14310e+06 3528.09 8.10 2.44569 2.15077 34680 290288 -1 16168 17 7089 8219 904291 224983 4.41926 4.41926 -2410.63 -4.41926 0 0 1.43297e+06 4422.75 0.46 0.54 0.29 -1 -1 0.46 0.303171 0.273998 1107 1201 456 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_26.v common 16.49 vpr 78.98 MiB 0.11 14116 -1 -1 1 0.46 -1 -1 38400 -1 -1 148 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 80872 22 19 3689 3062 1 1888 196 18 18 324 mult_36 auto 41.1 MiB 0.80 10816 33767 6403 23789 3575 79.0 MiB 1.59 0.03 4.09962 -2289.16 -4.09962 4.09962 0.94 0.0071237 0.0062438 0.470466 0.417032 60 19765 47 8.04299e+06 4.84013e+06 1.16833e+06 3605.96 8.25 2.39104 2.09943 35004 297736 -1 15783 16 6853 7919 833754 202360 4.41926 4.41926 -2402.93 -4.41926 0 0 1.46313e+06 4515.82 0.46 0.48 0.29 -1 -1 0.46 0.271922 0.244925 1135 1220 475 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_27.v common 15.57 vpr 80.27 MiB 0.26 14408 -1 -1 1 0.46 -1 -1 38300 -1 -1 156 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 82192 22 19 3871 3210 1 1998 205 18 18 324 mult_36 auto 42.5 MiB 0.84 12132 28593 4296 20787 3510 80.3 MiB 1.32 0.03 4.41926 -2393.12 -4.41926 4.41926 0.95 0.00729505 0.00653513 0.390081 0.34819 64 20586 19 8.04299e+06 5.34793e+06 1.23838e+06 3822.15 7.09 2.35122 2.07463 35972 318676 -1 17280 19 7116 8295 869286 210992 4.41926 4.41926 -2474.76 -4.41926 0 0 1.56068e+06 4816.91 0.56 0.55 0.31 -1 -1 0.56 0.325718 0.292122 1191 1275 494 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_28.v common 17.95 vpr 80.37 MiB 0.19 14552 -1 -1 1 0.44 -1 -1 38560 -1 -1 160 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 82296 22 19 3945 3267 1 2043 209 18 18 324 mult_36 auto 42.6 MiB 0.86 12721 34929 5952 24376 4601 80.4 MiB 1.52 0.03 4.26697 -2429.16 -4.26697 4.26697 0.94 0.00741866 0.00662054 0.453309 0.404577 60 21797 48 8.04299e+06 5.40382e+06 1.16833e+06 3605.96 8.24 2.90111 2.55028 35004 297736 -1 18182 20 8118 9346 1020381 253908 4.41926 4.41926 -2516.38 -4.41926 0 0 1.46313e+06 4515.82 0.48 0.60 0.28 -1 -1 0.48 0.334724 0.302496 1219 1294 513 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_29.v common 23.55 vpr 81.59 MiB 0.22 15088 -1 -1 1 0.46 -1 -1 39568 -1 -1 170 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83544 22 19 4159 3447 1 2157 220 22 22 484 mult_36 auto 43.9 MiB 0.88 13597 41989 8196 30469 3324 81.6 MiB 1.80 0.03 4.16866 -2687.48 -4.16866 4.16866 1.55 0.00784712 0.00700074 0.52798 0.468802 56 27289 30 1.30842e+07 5.93957e+06 1.71605e+06 3545.56 11.94 2.89187 2.54279 51606 428054 -1 21919 20 9434 11001 1516906 343088 4.52256 4.52256 -2855.36 -4.52256 0 0 2.11301e+06 4365.72 0.77 0.77 0.40 -1 -1 0.77 0.406731 0.367347 1283 1367 532 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_30.v common 23.94 vpr 82.74 MiB 0.18 15128 -1 -1 1 0.57 -1 -1 40816 -1 -1 173 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84728 22 19 4233 3504 1 2198 223 22 22 484 mult_36 auto 44.2 MiB 1.03 14316 43487 8493 30718 4276 82.7 MiB 1.99 0.03 4.41926 -2750.54 -4.41926 4.41926 1.52 0.00781634 0.00695303 0.564649 0.502132 58 27441 46 1.30842e+07 5.98149e+06 1.75961e+06 3635.55 11.96 2.79862 2.46501 52570 450426 -1 21701 17 9112 10561 1278143 292476 4.54456 4.54456 -2870.39 -4.54456 0 0 2.20457e+06 4554.90 0.77 0.66 0.46 -1 -1 0.77 0.342114 0.307331 1311 1386 551 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_31.v common 27.60 vpr 83.71 MiB 0.19 15608 -1 -1 1 0.55 -1 -1 40872 -1 -1 179 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 85724 22 19 4410 3647 1 2304 229 22 22 484 mult_36 auto 45.1 MiB 0.95 14559 42929 8301 31079 3549 83.7 MiB 1.94 0.03 4.54456 -2849.05 -4.54456 4.54456 1.51 0.00839327 0.00747603 0.555947 0.494878 60 26138 29 1.30842e+07 6.06533e+06 1.79840e+06 3715.71 15.34 3.41498 3.00974 53054 462096 -1 21367 18 8865 10303 1128192 264808 4.54456 4.54456 -2991.12 -4.54456 0 0 2.25108e+06 4650.99 0.77 0.65 0.44 -1 -1 0.77 0.361417 0.324723 1363 1441 570 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_32.v common 24.01 vpr 82.95 MiB 0.20 15604 -1 -1 1 0.52 -1 -1 40512 -1 -1 183 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84944 22 19 4484 3704 1 2346 233 22 22 484 mult_36 auto 45.3 MiB 0.95 14169 51069 10204 36498 4367 83.0 MiB 2.34 0.03 4.35562 -2870.14 -4.35562 4.35562 1.61 0.00856569 0.00758184 0.655665 0.585624 58 28562 42 1.30842e+07 6.12123e+06 1.75961e+06 3635.55 12.28 2.97627 2.62407 52570 450426 -1 21935 18 9198 10981 1225293 282955 4.41926 4.41926 -3046.59 -4.41926 0 0 2.20457e+06 4554.90 0.75 0.73 0.43 -1 -1 0.75 0.394794 0.354957 1393 1460 589 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_33.v common 27.61 vpr 85.36 MiB 0.25 16668 -1 -1 1 0.62 -1 -1 41596 -1 -1 196 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 87412 22 19 4843 4029 1 2462 247 22 22 484 mult_36 auto 46.9 MiB 1.00 15624 49783 9117 36437 4229 85.4 MiB 2.28 0.04 4.64786 -3017.99 -4.64786 4.64786 1.58 0.00896 0.00795191 0.626951 0.559088 60 29459 48 1.30842e+07 6.6989e+06 1.79840e+06 3715.71 15.68 3.20912 2.82754 53054 462096 -1 23118 17 9322 10866 1279018 283870 4.54456 4.54456 -3177.97 -4.54456 0 0 2.25108e+06 4650.99 0.77 0.70 0.43 -1 -1 0.77 0.388806 0.350115 1490 1606 608 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_34.v common 30.83 vpr 87.03 MiB 0.19 16796 -1 -1 1 0.67 -1 -1 41572 -1 -1 199 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 89116 22 19 4917 4086 1 2503 250 22 22 484 mult_36 auto 47.4 MiB 0.99 16182 52192 10276 36322 5594 84.9 MiB 2.36 0.03 4.41926 -3092.45 -4.41926 4.41926 1.61 0.00907153 0.00813393 0.674739 0.603024 64 28538 36 1.30842e+07 6.74082e+06 1.90554e+06 3937.06 18.38 4.31934 3.8058 54502 494576 -1 22667 18 8811 10602 1146289 263961 4.54456 4.54456 -3188.99 -4.54456 0 0 2.40101e+06 4960.76 0.81 0.68 0.45 -1 -1 0.81 0.397885 0.357216 1519 1625 627 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_35.v common 23.38 vpr 85.71 MiB 0.20 17040 -1 -1 1 0.67 -1 -1 41916 -1 -1 207 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 87764 22 19 5093 4228 1 2606 258 22 22 484 mult_36 auto 48.2 MiB 1.01 15281 55265 10444 39810 5011 85.7 MiB 2.53 0.04 4.16866 -3231.81 -4.16866 4.16866 1.65 0.00937927 0.00832765 0.694616 0.618824 60 28985 37 1.30842e+07 6.85261e+06 1.79840e+06 3715.71 10.95 3.45089 3.05062 53054 462096 -1 22720 20 9865 11925 1244020 294578 4.41926 4.41926 -3325.32 -4.41926 0 0 2.25108e+06 4650.99 0.82 0.77 0.44 -1 -1 0.82 0.451671 0.40508 1572 1680 646 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_36.v common 22.49 vpr 86.11 MiB 0.25 17232 -1 -1 1 0.65 -1 -1 41632 -1 -1 209 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 88172 22 19 5167 4285 1 2653 260 22 22 484 mult_36 auto 48.4 MiB 1.05 16606 54145 10648 38527 4970 86.1 MiB 2.51 0.04 4.16866 -3259.63 -4.16866 4.16866 1.45 0.010637 0.00937319 0.679867 0.603675 64 29957 28 1.30842e+07 6.88056e+06 1.90554e+06 3937.06 9.78 3.13247 2.76199 54502 494576 -1 23683 18 9902 11325 1259385 289004 4.41926 4.41926 -3287.54 -4.41926 0 0 2.40101e+06 4960.76 0.88 0.75 0.51 -1 -1 0.88 0.431761 0.38986 1600 1699 665 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_37.v common 33.09 vpr 97.65 MiB 0.19 17720 -1 -1 1 0.69 -1 -1 40768 -1 -1 218 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 99992 22 19 5380 4464 1 2755 270 24 24 576 mult_36 auto 49.8 MiB 1.13 18567 56078 10962 40406 4710 88.1 MiB 2.51 0.04 4.41926 -3517.74 -4.41926 4.41926 1.96 0.00985968 0.00880044 0.693688 0.615215 62 34089 42 1.57908e+07 7.40233e+06 2.19658e+06 3813.51 19.42 4.3801 3.87426 63306 560109 -1 25982 17 10013 11925 1290386 299725 4.54456 4.54456 -3709.06 -4.54456 0 0 2.72095e+06 4723.87 0.99 0.74 0.50 -1 -1 0.99 0.422904 0.38067 1662 1772 684 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_38.v common 37.40 vpr 97.70 MiB 0.26 17852 -1 -1 1 0.79 -1 -1 42448 -1 -1 220 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 100044 22 19 5454 4521 1 2802 272 24 24 576 mult_36 auto 49.9 MiB 1.15 18582 51370 9929 37950 3491 87.4 MiB 2.53 0.04 4.41926 -3447.93 -4.41926 4.41926 1.84 0.0098559 0.0087391 0.663664 0.587725 64 34209 36 1.57908e+07 7.43028e+06 2.26035e+06 3924.22 23.49 4.89984 4.32021 64454 586630 -1 26870 18 10485 12283 1454697 328137 4.54456 4.54456 -3636.25 -4.54456 0 0 2.84938e+06 4946.85 1.01 0.80 0.54 -1 -1 1.01 0.446622 0.402258 1690 1791 703 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_39.v common 37.66 vpr 97.94 MiB 0.22 18244 -1 -1 1 0.77 -1 -1 40132 -1 -1 228 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 100292 22 19 5629 4662 1 2909 280 24 24 576 mult_36 auto 51.0 MiB 1.24 18512 58840 11287 42675 4878 88.1 MiB 2.66 0.04 4.53661 -3591.01 -4.53661 4.53661 1.85 0.0101684 0.00904111 0.732766 0.651439 64 33376 33 1.57908e+07 7.54207e+06 2.26035e+06 3924.22 23.45 5.15666 4.5456 64454 586630 -1 26570 18 10607 12773 1398491 323531 4.52256 4.52256 -3729.32 -4.52256 0 0 2.84938e+06 4946.85 1.03 0.80 0.59 -1 -1 1.03 0.456749 0.41083 1742 1846 722 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_40.v common 99.08 vpr 91.30 MiB 0.21 18452 -1 -1 1 0.81 -1 -1 42248 -1 -1 232 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 93492 22 19 5703 4719 1 2951 284 24 24 576 mult_36 auto 51.9 MiB 1.20 19527 61862 12354 44168 5340 89.9 MiB 2.84 0.04 4.51758 -3660.42 -4.51758 4.51758 1.86 0.0105331 0.00934588 0.761831 0.673535 64 35385 33 1.57908e+07 7.59797e+06 2.26035e+06 3924.22 84.61 7.06296 6.18525 64454 586630 -1 27678 18 10750 12796 1471921 331561 4.64786 4.64786 -3839.37 -4.64786 0 0 2.84938e+06 4946.85 1.02 0.84 0.54 -1 -1 1.02 0.473036 0.426382 1771 1865 741 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_41.v common 31.90 vpr 91.43 MiB 0.28 18820 -1 -1 1 0.86 -1 -1 41516 -1 -1 240 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 93620 22 19 5950 4932 1 3065 293 24 24 576 mult_36 auto 52.5 MiB 1.24 20313 68333 13912 49003 5418 89.7 MiB 3.20 0.04 4.35562 -3781.12 -4.35562 4.35562 1.94 0.0110323 0.00979128 0.840954 0.744164 64 37437 47 1.57908e+07 8.10576e+06 2.26035e+06 3924.22 16.06 4.7769 4.19609 64454 586630 -1 29393 20 11515 13868 1578948 357275 4.54456 4.54456 -4027.56 -4.54456 0 0 2.84938e+06 4946.85 1.07 0.96 0.54 -1 -1 1.07 0.55197 0.497829 1841 1956 760 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_42.v common 31.01 vpr 92.52 MiB 0.26 18996 -1 -1 1 0.85 -1 -1 42852 -1 -1 242 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 94744 22 19 6024 4989 1 3106 295 24 24 576 mult_36 auto 53.1 MiB 1.25 21018 65041 12819 46780 5442 90.1 MiB 3.09 0.05 4.54456 -3823.47 -4.54456 4.54456 1.96 0.0110842 0.00995596 0.82207 0.733767 64 36534 49 1.57908e+07 8.13371e+06 2.26035e+06 3924.22 15.90 4.96529 4.37362 64454 586630 -1 29646 18 11267 13244 1541469 352337 4.66986 4.66986 -3955.02 -4.66986 0 0 2.84938e+06 4946.85 1.04 0.91 0.59 -1 -1 1.04 0.510102 0.459718 1869 1975 779 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_43.v common 41.13 vpr 104.11 MiB 0.30 19348 -1 -1 1 0.94 -1 -1 43220 -1 -1 250 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 106612 22 19 6198 5129 1 3209 303 24 24 576 mult_36 auto 53.9 MiB 1.27 22338 66408 13114 47625 5669 91.0 MiB 3.26 0.05 4.47497 -4072.8 -4.47497 4.47497 2.09 0.0115042 0.0102388 0.853752 0.756701 68 37694 34 1.57908e+07 8.2455e+06 2.39371e+06 4155.74 25.38 5.73056 5.04983 65606 615345 -1 30383 15 11489 13385 1484469 334786 4.66986 4.66986 -4189.73 -4.66986 0 0 2.98162e+06 5176.42 1.15 0.81 0.58 -1 -1 1.15 0.455337 0.411334 1921 2030 798 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_44.v common 41.04 vpr 105.69 MiB 0.29 19500 -1 -1 1 0.89 -1 -1 43304 -1 -1 253 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 108224 22 19 6272 5186 1 3253 306 24 24 576 mult_36 auto 54.3 MiB 1.29 22629 67256 12828 47647 6781 91.3 MiB 3.09 0.05 4.41926 -4066.4 -4.41926 4.41926 1.86 0.0116099 0.0103121 0.821498 0.727615 70 37350 43 1.57908e+07 8.28742e+06 2.45377e+06 4260.01 25.55 6.1074 5.39521 66754 640332 -1 30782 20 11655 13506 1570135 362351 4.41926 4.41926 -4119.98 -4.41926 0 0 3.09179e+06 5367.68 1.10 0.95 0.59 -1 -1 1.10 0.557671 0.50094 1949 2049 817 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_45.v common 41.90 vpr 108.14 MiB 0.31 19816 -1 -1 1 0.93 -1 -1 43696 -1 -1 262 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 110732 22 19 6485 5365 1 3362 316 24 24 576 mult_36 auto 55.3 MiB 1.38 21577 68041 12652 49574 5815 92.3 MiB 3.26 0.05 4.34967 -4219.28 -4.34967 4.34967 1.89 0.0120317 0.0107262 0.831214 0.73176 72 36507 46 1.57908e+07 8.80919e+06 2.50747e+06 4353.24 25.83 6.13147 5.39352 67330 654343 -1 29810 22 11462 13137 1601544 361852 4.39726 4.39726 -4238.31 -4.39726 0 0 3.14081e+06 5452.80 1.15 1.03 0.60 -1 -1 1.15 0.642762 0.578632 2011 2122 836 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_46.v common 41.71 vpr 106.51 MiB 0.21 20068 -1 -1 1 0.92 -1 -1 43812 -1 -1 266 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 109068 22 19 6559 5422 1 3404 320 24 24 576 mult_36 auto 55.5 MiB 1.36 24101 72524 13138 53102 6284 92.7 MiB 3.55 0.05 4.66986 -4291.45 -4.66986 4.66986 1.86 0.0119228 0.0105799 0.885425 0.786966 68 40255 40 1.57908e+07 8.86508e+06 2.39371e+06 4155.74 25.86 6.28341 5.54 65606 615345 -1 32521 18 12015 14089 1546690 340905 4.66986 4.66986 -4364.43 -4.66986 0 0 2.98162e+06 5176.42 1.08 0.91 0.61 -1 -1 1.08 0.524906 0.471422 2040 2141 855 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_47.v common 33.00 vpr 96.96 MiB 0.22 20312 -1 -1 1 0.98 -1 -1 44580 -1 -1 273 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 99284 22 19 6735 5564 1 3511 327 24 24 576 mult_36 auto 56.5 MiB 1.41 22785 72391 13683 52096 6612 93.6 MiB 3.51 0.04 4.36967 -4379.74 -4.36967 4.36967 1.81 0.0131305 0.0118361 0.88108 0.779868 66 39572 35 1.57908e+07 8.9629e+06 2.33135e+06 4047.49 16.86 5.05545 4.44848 65030 601923 -1 31611 19 12384 14268 1564989 359786 4.54456 4.54456 -4464.94 -4.54456 0 0 2.91907e+06 5067.82 1.14 0.99 0.55 -1 -1 1.14 0.596918 0.538102 2092 2196 874 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_48.v common 32.62 vpr 98.26 MiB 0.32 20568 -1 -1 1 0.96 -1 -1 44228 -1 -1 276 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 100616 22 19 6809 5621 1 3555 330 24 24 576 mult_36 auto 56.9 MiB 1.44 23066 80060 16107 55507 8446 93.9 MiB 3.80 0.05 4.29396 -4332.56 -4.29396 4.29396 1.83 0.012246 0.0108577 0.953793 0.843568 70 39582 34 1.57908e+07 9.00482e+06 2.45377e+06 4260.01 16.00 5.02812 4.41858 66754 640332 -1 32506 18 12951 15266 1774464 412111 4.41926 4.41926 -4460.37 -4.41926 0 0 3.09179e+06 5367.68 1.12 1.01 0.63 -1 -1 1.12 0.580252 0.523059 2121 2215 893 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_49.v common 44.50 vpr 109.61 MiB 0.32 21192 -1 -1 1 1.01 -1 -1 44396 -1 -1 287 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 112240 22 19 7094 5872 1 3669 342 24 24 576 mult_36 auto 58.2 MiB 1.50 24245 82797 16885 57326 8586 95.3 MiB 3.90 0.05 4.52256 -4714.45 -4.52256 4.52256 1.76 0.0128813 0.0114258 0.961456 0.848861 72 41230 32 1.57908e+07 9.55454e+06 2.50747e+06 4353.24 27.44 6.5171 5.72714 67330 654343 -1 33608 16 12552 14465 1746432 385070 4.64786 4.64786 -4951.91 -4.64786 0 0 3.14081e+06 5452.80 1.19 1.00 0.74 -1 -1 1.19 0.577628 0.522485 2200 2324 912 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_50.v common 45.35 vpr 109.82 MiB 0.27 21328 -1 -1 1 1.04 -1 -1 44096 -1 -1 290 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 112460 22 19 7168 5929 1 3710 345 24 24 576 mult_36 auto 58.5 MiB 1.56 24589 80139 15697 56982 7460 95.5 MiB 3.76 0.05 4.41926 -4634.65 -4.41926 4.41926 1.77 0.0135877 0.0121319 0.939469 0.827898 70 40446 44 1.57908e+07 9.59646e+06 2.45377e+06 4260.01 28.23 7.44435 6.53589 66754 640332 -1 34146 18 13413 15667 1907396 427492 4.54456 4.54456 -4822.29 -4.54456 0 0 3.09179e+06 5367.68 1.46 1.09 0.62 -1 -1 1.46 0.612549 0.552542 2229 2343 931 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_51.v common 33.49 vpr 102.93 MiB 0.29 21636 -1 -1 1 1.08 -1 -1 44832 -1 -1 297 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 105400 22 19 7344 6071 1 3814 352 24 24 576 mult_36 auto 59.3 MiB 1.54 25956 86050 17957 59580 8513 96.4 MiB 4.05 0.06 4.54456 -4790.18 -4.54456 4.54456 1.78 0.0132006 0.0117234 0.998492 0.878344 72 43615 28 1.57908e+07 9.69428e+06 2.50747e+06 4353.24 15.98 5.18613 4.55826 67330 654343 -1 35657 17 13386 15768 1879694 426603 4.64786 4.64786 -4925.15 -4.64786 0 0 3.14081e+06 5452.80 1.34 1.06 0.67 -1 -1 1.34 0.603049 0.543414 2282 2398 950 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_52.v common 46.24 vpr 115.37 MiB 0.28 21924 -1 -1 1 1.12 -1 -1 45188 -1 -1 301 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 118136 22 19 7418 6128 1 3859 356 24 24 576 mult_36 auto 59.7 MiB 1.52 27555 81060 16090 57104 7866 96.7 MiB 3.96 0.06 4.54456 -4802.82 -4.54456 4.54456 1.78 0.0138315 0.0123277 0.96815 0.850814 76 44587 45 1.57908e+07 9.75017e+06 2.61600e+06 4541.67 28.46 6.87985 6.05083 68478 680951 -1 37419 17 14263 16730 1964169 440460 4.52256 4.52256 -5062.61 -4.52256 0 0 3.24203e+06 5628.53 1.61 1.13 0.64 -1 -1 1.61 0.630318 0.57036 2310 2417 969 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_14.v common 13.07 vpr 67.13 MiB 0.06 9300 -1 -1 1 0.14 -1 -1 34756 -1 -1 58 22 0 4 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 68740 22 19 1246 925 1 732 103 16 16 256 mult_36 auto 28.8 MiB 2.54 3886 14081 3199 8271 2611 67.1 MiB 0.50 0.01 8.43746 -386.648 -8.43746 8.43746 0.69 0.00265214 0.00241773 0.162969 0.148653 44 8107 32 6.52434e+06 2.39448e+06 686998. 2683.59 6.51 1.23946 1.10541 24576 170172 -1 6188 24 5707 6417 667481 172985 7.87084 7.87084 -462.711 -7.87084 0 0 871168. 3403.00 0.27 0.30 0.17 -1 -1 0.27 0.135537 0.122326 421 285 247 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_15.v common 10.19 vpr 67.87 MiB 0.07 9616 -1 -1 1 0.17 -1 -1 35160 -1 -1 61 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69496 22 19 1344 989 1 793 107 16 16 256 mult_36 auto 29.6 MiB 1.97 4415 16299 3732 8915 3652 67.9 MiB 0.55 0.01 8.61109 -402.505 -8.61109 8.61109 0.69 0.00293067 0.00268043 0.193674 0.176594 44 9925 41 6.52434e+06 2.8324e+06 686998. 2683.59 4.01 0.823669 0.738623 24576 170172 -1 7024 25 6220 7095 698142 184212 8.45004 8.45004 -463.679 -8.45004 0 0 871168. 3403.00 0.27 0.34 0.17 -1 -1 0.27 0.154867 0.1398 453 304 266 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_16.v common 11.80 vpr 68.26 MiB 0.07 9696 -1 -1 1 0.18 -1 -1 35168 -1 -1 65 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69900 22 19 1418 1046 1 832 111 16 16 256 mult_36 auto 30.3 MiB 2.71 4724 16869 4045 10706 2118 68.3 MiB 0.69 0.01 8.43651 -410.772 -8.43651 8.43651 0.72 0.00288626 0.00263056 0.202418 0.184288 48 9176 31 6.52434e+06 2.88829e+06 755748. 2952.14 4.64 0.910157 0.814743 25088 180500 -1 7305 24 6692 7397 851322 211567 7.80584 7.80584 -467.143 -7.80584 0 0 916467. 3579.95 0.28 0.36 0.20 -1 -1 0.28 0.153289 0.138398 481 323 285 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_17.v common 10.59 vpr 68.39 MiB 0.15 10324 -1 -1 1 0.18 -1 -1 35316 -1 -1 71 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70036 22 19 1518 1112 1 896 117 16 16 256 mult_36 auto 30.4 MiB 2.48 5238 17563 3887 11404 2272 68.4 MiB 0.73 0.01 9.04171 -433.063 -9.04171 9.04171 0.68 0.00314482 0.00286228 0.206609 0.187966 48 10177 28 6.52434e+06 2.97214e+06 755748. 2952.14 3.58 0.888491 0.799679 25088 180500 -1 8176 22 6890 7606 917926 237751 8.68028 8.68028 -493.626 -8.68028 0 0 916467. 3579.95 0.28 0.38 0.18 -1 -1 0.28 0.161126 0.146051 514 342 304 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_18.v common 18.36 vpr 68.78 MiB 0.11 10444 -1 -1 1 0.20 -1 -1 34956 -1 -1 74 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70432 22 19 1592 1169 1 934 120 16 16 256 mult_36 auto 30.9 MiB 3.31 5243 15755 3475 9888 2392 68.8 MiB 0.66 0.01 9.04775 -490.252 -9.04775 9.04775 0.69 0.00335622 0.00302692 0.195379 0.177758 48 11232 37 6.52434e+06 3.01406e+06 755748. 2952.14 10.56 1.59396 1.42048 25088 180500 -1 8633 23 7736 8750 1034775 249786 8.80158 8.80158 -540.639 -8.80158 0 0 916467. 3579.95 0.28 0.41 0.19 -1 -1 0.28 0.167326 0.151342 542 361 323 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_19.v common 12.46 vpr 69.20 MiB 0.12 10588 -1 -1 1 0.20 -1 -1 35360 -1 -1 79 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70860 22 19 1688 1231 1 994 126 16 16 256 mult_36 auto 31.2 MiB 2.81 5618 18711 3986 11280 3445 69.2 MiB 0.75 0.01 9.18492 -482.658 -9.18492 9.18492 0.69 0.00352585 0.00321082 0.224411 0.204619 52 10842 44 6.52434e+06 3.47993e+06 808720. 3159.06 4.93 1.16387 1.04291 25852 197779 -1 8271 22 6752 7535 845938 215127 8.23108 8.23108 -551.85 -8.23108 0 0 1.00038e+06 3907.74 0.33 0.37 0.19 -1 -1 0.33 0.172018 0.155903 573 380 342 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_20.v common 11.96 vpr 69.64 MiB 0.13 10680 -1 -1 1 0.21 -1 -1 35496 -1 -1 81 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 71312 22 19 1762 1288 1 1031 128 16 16 256 mult_36 auto 31.6 MiB 3.36 6535 19770 4199 12093 3478 69.6 MiB 0.83 0.01 9.33493 -488.07 -9.33493 9.33493 0.68 0.00366446 0.0033248 0.238986 0.216586 48 12219 33 6.52434e+06 3.50787e+06 755748. 2952.14 3.68 0.994782 0.889351 25088 180500 -1 9898 22 7504 8327 1040791 265119 8.96258 8.96258 -581.233 -8.96258 0 0 916467. 3579.95 0.28 0.46 0.18 -1 -1 0.28 0.191498 0.174543 601 399 361 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_21.v common 16.21 vpr 70.19 MiB 0.09 11044 -1 -1 1 0.23 -1 -1 35892 -1 -1 85 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 71872 22 19 1859 1351 1 1093 132 16 16 256 mult_36 auto 32.2 MiB 3.29 6792 15542 2589 10760 2193 70.2 MiB 0.68 0.02 9.32007 -525.351 -9.32007 9.32007 0.71 0.00381547 0.00347501 0.192317 0.175124 52 13770 38 6.52434e+06 3.56377e+06 808720. 3159.06 8.22 1.70682 1.5235 25852 197779 -1 10144 26 8345 9522 1119762 274391 8.76698 8.76698 -629.803 -8.76698 0 0 1.00038e+06 3907.74 0.32 0.49 0.19 -1 -1 0.32 0.21413 0.193503 632 418 380 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_22.v common 16.45 vpr 70.80 MiB 0.14 11188 -1 -1 1 0.22 -1 -1 35896 -1 -1 90 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72496 22 19 1933 1408 1 1131 137 16 16 256 mult_36 auto 32.9 MiB 3.78 7153 18846 3425 12209 3212 70.8 MiB 0.82 0.02 9.31293 -505.408 -9.31293 9.31293 0.69 0.00396524 0.00359895 0.224706 0.203955 56 11937 28 6.52434e+06 3.63364e+06 849745. 3319.32 7.76 1.63798 1.46052 26364 208198 -1 10148 23 7351 8481 910874 235258 8.45968 8.45968 -707.138 -8.45968 0 0 1.04740e+06 4091.43 0.32 0.43 0.20 -1 -1 0.32 0.197811 0.178429 661 437 399 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_23.v common 20.56 vpr 71.00 MiB 0.10 11392 -1 -1 1 0.25 -1 -1 36036 -1 -1 94 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72708 22 19 2031 1472 1 1193 142 18 18 324 mult_36 auto 32.9 MiB 3.83 7470 21602 4449 14485 2668 71.0 MiB 0.89 0.02 9.36191 -552.695 -9.36191 9.36191 0.93 0.00420395 0.00382153 0.255575 0.232304 50 14673 42 8.04299e+06 4.08553e+06 1.03391e+06 3191.07 10.95 2.04111 1.82213 32744 246704 -1 11207 23 8954 10315 1227188 301096 8.80128 8.80128 -805.076 -8.80128 0 0 1.23838e+06 3822.15 0.39 0.50 0.24 -1 -1 0.39 0.212947 0.192707 693 456 418 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_24.v common 38.91 vpr 71.41 MiB 0.08 11504 -1 -1 1 0.26 -1 -1 36228 -1 -1 97 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73120 22 19 2105 1529 1 1232 145 18 18 324 mult_36 auto 33.4 MiB 3.96 7507 21425 4200 14405 2820 71.4 MiB 0.97 0.02 9.44155 -614.321 -9.44155 9.44155 0.92 0.00392629 0.00353809 0.264081 0.239424 50 14797 40 8.04299e+06 4.12745e+06 1.03391e+06 3191.07 29.15 2.51543 2.24108 32744 246704 -1 11508 23 9004 10353 1255675 301759 8.51938 8.51938 -832.526 -8.51938 0 0 1.23838e+06 3822.15 0.41 0.53 0.24 -1 -1 0.41 0.221173 0.19969 721 475 437 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_25.v common 22.09 vpr 71.84 MiB 0.16 11872 -1 -1 1 0.28 -1 -1 36488 -1 -1 101 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73564 22 19 2201 1591 1 1290 149 18 18 324 mult_36 auto 34.0 MiB 3.85 8738 27335 5810 17606 3919 71.8 MiB 1.24 0.02 9.29835 -606.15 -9.29835 9.29835 0.92 0.00458849 0.0041533 0.341976 0.30985 54 16607 42 8.04299e+06 4.18335e+06 1.08842e+06 3359.33 11.85 2.33803 2.08829 33712 268580 -1 12763 24 9307 10561 1197981 287506 8.67428 8.67428 -895.049 -8.67428 0 0 1.34436e+06 4149.26 0.41 0.53 0.26 -1 -1 0.41 0.236263 0.213113 751 494 456 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_26.v common 22.11 vpr 72.09 MiB 0.16 11912 -1 -1 1 0.33 -1 -1 37396 -1 -1 105 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73816 22 19 2275 1648 1 1330 153 18 18 324 mult_36 auto 34.3 MiB 4.43 8508 22239 4415 15566 2258 72.1 MiB 1.05 0.02 9.42265 -590.577 -9.42265 9.42265 0.94 0.00468257 0.00424886 0.282668 0.256395 58 14084 47 8.04299e+06 4.23924e+06 1.14310e+06 3528.09 11.27 2.32565 2.07061 34680 290288 -1 11882 25 8955 10040 1155840 295020 8.75428 8.75428 -771.843 -8.75428 0 0 1.43297e+06 4422.75 0.47 0.52 0.29 -1 -1 0.47 0.243321 0.218728 779 513 475 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_27.v common 17.76 vpr 72.66 MiB 0.14 12272 -1 -1 1 0.30 -1 -1 36708 -1 -1 111 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74400 22 19 2385 1724 1 1404 160 18 18 324 mult_36 auto 34.8 MiB 4.30 8706 29238 6495 17225 5518 72.7 MiB 1.20 0.02 9.5032 -657.318 -9.5032 9.5032 0.91 0.00491028 0.00445885 0.359337 0.326482 54 15872 37 8.04299e+06 4.7191e+06 1.08842e+06 3359.33 6.85 1.64682 1.47584 33712 268580 -1 12564 25 10940 12275 1423270 343940 8.66928 8.66928 -791.778 -8.66928 0 0 1.34436e+06 4149.26 0.45 0.63 0.26 -1 -1 0.45 0.269621 0.243375 817 532 494 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_28.v common 23.18 vpr 73.16 MiB 0.17 12272 -1 -1 1 0.31 -1 -1 36860 -1 -1 114 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74916 22 19 2459 1781 1 1443 163 18 18 324 mult_36 auto 35.5 MiB 4.92 9504 27753 5644 18640 3469 73.2 MiB 1.24 0.02 9.43607 -634.384 -9.43607 9.43607 0.91 0.00507822 0.00461794 0.340536 0.308709 56 17407 31 8.04299e+06 4.76102e+06 1.11497e+06 3441.27 11.68 2.23625 1.99785 34036 275796 -1 14124 23 11371 13051 1664037 404424 8.71328 8.71328 -982.566 -8.71328 0 0 1.37338e+06 4238.83 0.46 0.64 0.28 -1 -1 0.46 0.250223 0.22569 845 551 513 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_29.v common 21.10 vpr 73.73 MiB 0.17 12692 -1 -1 1 0.33 -1 -1 37140 -1 -1 118 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75500 22 19 2565 1853 1 1511 168 22 22 484 mult_36 auto 36.1 MiB 4.85 9474 28874 6138 19875 2861 73.7 MiB 1.35 0.03 9.50133 -723.607 -9.50133 9.50133 1.45 0.00686193 0.00635036 0.356711 0.32406 48 19694 45 1.30842e+07 5.21292e+06 1.52614e+06 3153.19 7.65 1.72213 1.54813 49190 371334 -1 15172 26 14085 16168 2028455 476792 9.32778 9.32778 -1106.44 -9.32778 0 0 1.85176e+06 3825.95 0.71 0.79 0.40 -1 -1 0.71 0.301579 0.272848 881 570 532 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_30.v common 61.70 vpr 73.91 MiB 0.18 12800 -1 -1 1 0.39 -1 -1 37272 -1 -1 123 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75684 22 19 2639 1910 1 1549 173 22 22 484 mult_36 auto 36.3 MiB 5.29 9440 36248 7919 24781 3548 73.9 MiB 1.60 0.02 9.36191 -670.158 -9.36191 9.36191 1.45 0.0052976 0.00478326 0.428277 0.386868 48 20360 50 1.30842e+07 5.28279e+06 1.52614e+06 3153.19 47.49 3.21938 2.86042 49190 371334 -1 15247 24 13469 15202 1910838 455736 8.95958 8.95958 -928.137 -8.95958 0 0 1.85176e+06 3825.95 0.80 0.76 0.35 -1 -1 0.80 0.290473 0.263122 910 589 551 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_31.v common 28.41 vpr 74.67 MiB 0.19 12988 -1 -1 1 0.41 -1 -1 37388 -1 -1 128 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76460 22 19 2744 1981 1 1618 178 22 22 484 mult_36 auto 37.2 MiB 5.20 9993 32678 6812 22677 3189 74.7 MiB 1.52 0.02 9.39202 -797.918 -9.39202 9.39202 1.49 0.00558456 0.00506463 0.403432 0.365541 52 20164 36 1.30842e+07 5.35266e+06 1.63434e+06 3376.74 14.64 2.55146 2.27629 50638 406276 -1 15115 23 10350 12253 1361270 325763 8.90628 8.90628 -1265.96 -8.90628 0 0 2.01763e+06 4168.66 0.65 0.60 0.36 -1 -1 0.65 0.27538 0.248331 946 608 570 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_32.v common 27.90 vpr 74.56 MiB 0.16 13048 -1 -1 1 0.40 -1 -1 36832 -1 -1 131 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76352 22 19 2818 2038 1 1657 181 22 22 484 mult_36 auto 37.1 MiB 6.60 10870 36462 7947 25089 3426 74.6 MiB 1.69 0.02 9.40709 -760.111 -9.40709 9.40709 1.50 0.00592117 0.00532314 0.442725 0.399117 54 20481 29 1.30842e+07 5.39458e+06 1.67518e+06 3461.11 12.52 2.38344 2.12807 51122 416746 -1 16006 25 13662 15590 1847779 424015 8.83758 8.83758 -1053.02 -8.83758 0 0 2.06816e+06 4273.05 0.66 0.74 0.31 -1 -1 0.66 0.305389 0.275174 974 627 589 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_33.v common 24.31 vpr 75.61 MiB 0.20 13616 -1 -1 1 0.39 -1 -1 37472 -1 -1 137 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77420 22 19 2923 2109 1 1726 188 22 22 484 mult_36 auto 38.1 MiB 5.87 10997 40538 8465 27874 4199 75.6 MiB 1.88 0.02 10.2864 -775.869 -10.2864 10.2864 1.46 0.00604798 0.00542647 0.479536 0.432484 52 22517 47 1.30842e+07 5.87443e+06 1.63434e+06 3376.74 8.72 2.1151 1.88978 50638 406276 -1 16574 24 12868 14850 1713334 417624 9.69202 9.69202 -1312.41 -9.69202 0 0 2.01763e+06 4168.66 1.12 0.81 0.44 -1 -1 1.12 0.337232 0.307033 1009 646 608 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_34.v common 33.52 vpr 75.45 MiB 0.17 13744 -1 -1 1 0.45 -1 -1 37788 -1 -1 140 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77264 22 19 2997 2166 1 1764 191 22 22 484 mult_36 auto 38.1 MiB 8.61 11197 34229 7090 23850 3289 75.5 MiB 1.59 0.02 10.179 -781.353 -10.179 10.179 1.50 0.00615474 0.00557098 0.410421 0.371393 54 21293 29 1.30842e+07 5.91636e+06 1.67518e+06 3461.11 15.81 2.76284 2.46677 51122 416746 -1 16721 23 13120 14891 1633684 395631 9.53142 9.53142 -1224.14 -9.53142 0 0 2.06816e+06 4273.05 0.68 0.71 0.38 -1 -1 0.68 0.307516 0.277757 1037 665 627 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_35.v common 35.60 vpr 76.23 MiB 0.21 14068 -1 -1 1 0.40 -1 -1 37836 -1 -1 145 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78056 22 19 3101 2236 1 1831 196 22 22 484 mult_36 auto 38.7 MiB 7.91 12065 39457 7984 27451 4022 76.2 MiB 1.90 0.03 10.526 -851.981 -10.526 10.526 1.48 0.0063573 0.00577627 0.468896 0.424608 56 22258 29 1.30842e+07 5.98623e+06 1.71605e+06 3545.56 18.21 3.3784 3.01833 51606 428054 -1 18193 24 12714 14593 1871341 439910 10.0876 10.0876 -1238.72 -10.0876 0 0 2.11301e+06 4365.72 0.68 0.78 0.41 -1 -1 0.68 0.330267 0.298419 1072 684 646 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_36.v common 27.66 vpr 76.53 MiB 0.23 14100 -1 -1 1 0.45 -1 -1 38008 -1 -1 148 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78368 22 19 3175 2293 1 1871 199 22 22 484 mult_36 auto 39.0 MiB 9.57 12207 40799 8234 28761 3804 76.5 MiB 1.92 0.03 10.1611 -829.474 -10.1611 10.1611 1.52 0.00655227 0.00594453 0.483653 0.436997 54 22885 31 1.30842e+07 6.02815e+06 1.67518e+06 3461.11 8.52 2.05561 1.83578 51122 416746 -1 17842 26 13429 15225 1699944 411787 9.66272 9.66272 -1103.79 -9.66272 0 0 2.06816e+06 4273.05 0.76 0.87 0.38 -1 -1 0.76 0.394011 0.358205 1100 703 665 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_37.v common 32.54 vpr 77.05 MiB 0.22 14476 -1 -1 1 0.42 -1 -1 37396 -1 -1 152 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78900 22 19 3280 2364 1 1938 204 24 24 576 mult_36 auto 39.6 MiB 8.70 12485 42204 8471 30168 3565 77.1 MiB 2.46 0.03 10.4948 -891.974 -10.4948 10.4948 2.08 0.00663975 0.00602791 0.523308 0.466349 54 24624 44 1.57908e+07 6.48005e+06 1.98675e+06 3449.22 12.51 2.66939 2.37527 60430 494267 -1 18748 25 15039 16700 2047326 478961 9.80372 9.80372 -1341.07 -9.80372 0 0 2.45377e+06 4260.01 0.85 0.88 0.48 -1 -1 0.85 0.367482 0.331922 1135 722 684 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_38.v common 42.88 vpr 82.35 MiB 0.27 14700 -1 -1 1 0.44 -1 -1 37964 -1 -1 157 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84324 22 19 3354 2421 1 1977 209 24 24 576 mult_36 auto 40.2 MiB 10.27 13772 42989 9121 30100 3768 77.6 MiB 2.15 0.03 10.1171 -857.01 -10.1171 10.1171 2.28 0.00680797 0.0061791 0.547178 0.481807 58 24942 46 1.57908e+07 6.54992e+06 2.08734e+06 3623.85 21.06 3.43991 3.05443 62154 534210 -1 19326 22 13894 15955 2071566 466040 9.47212 9.47212 -1334.31 -9.47212 0 0 2.61600e+06 4541.67 0.92 0.82 0.51 -1 -1 0.92 0.330813 0.298276 1164 741 703 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_39.v common 38.34 vpr 81.94 MiB 0.23 14712 -1 -1 1 0.47 -1 -1 38328 -1 -1 161 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83904 22 19 3457 2490 1 2044 213 24 24 576 mult_36 auto 40.5 MiB 9.50 13552 45933 9854 31922 4157 77.8 MiB 2.32 0.03 10.2548 -903.58 -10.2548 10.2548 1.78 0.00724144 0.00659299 0.580914 0.528412 56 23176 27 1.57908e+07 6.60581e+06 2.03561e+06 3534.04 17.30 3.29372 2.94105 61006 507707 -1 19371 24 12670 14651 1649493 401965 9.71472 9.71472 -1420.41 -9.71472 0 0 2.50747e+06 4353.24 1.30 0.87 0.49 -1 -1 1.30 0.399715 0.364604 1198 760 722 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_40.v common 37.25 vpr 78.21 MiB 0.23 15008 -1 -1 1 0.47 -1 -1 38944 -1 -1 164 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 80088 22 19 3531 2547 1 2082 216 24 24 576 mult_36 auto 40.9 MiB 11.26 14377 40977 8198 29796 2983 78.2 MiB 2.13 0.04 10.1711 -960.277 -10.1711 10.1711 1.77 0.00811636 0.00736848 0.489171 0.442608 54 25953 34 1.57908e+07 6.64774e+06 1.98675e+06 3449.22 15.02 2.78784 2.48678 60430 494267 -1 20022 24 14385 16625 1937405 463879 9.81632 9.81632 -1428.6 -9.81632 0 0 2.45377e+06 4260.01 0.87 0.87 0.46 -1 -1 0.87 0.37826 0.341295 1226 779 741 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_41.v common 43.32 vpr 82.72 MiB 0.21 15264 -1 -1 1 0.50 -1 -1 38100 -1 -1 170 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84708 22 19 3634 2616 1 2147 223 24 24 576 mult_36 auto 41.4 MiB 9.46 15712 55655 12202 38909 4544 78.6 MiB 2.61 0.03 10.3763 -978.657 -10.3763 10.3763 1.73 0.0069833 0.00633755 0.640702 0.576773 58 28102 35 1.57908e+07 7.12758e+06 2.08734e+06 3623.85 20.96 3.55838 3.17405 62154 534210 -1 22155 26 15175 17368 2377028 526488 9.93862 9.93862 -1498.09 -9.93862 0 0 2.61600e+06 4541.67 1.46 0.99 0.61 -1 -1 1.46 0.393771 0.356172 1261 798 760 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_42.v common 47.09 vpr 82.39 MiB 0.23 15344 -1 -1 1 0.61 -1 -1 38236 -1 -1 173 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84372 22 19 3708 2673 1 2187 226 24 24 576 mult_36 auto 41.7 MiB 10.51 15421 43570 8598 29045 5927 79.2 MiB 2.07 0.02 10.3695 -1008.01 -10.3695 10.3695 2.45 0.00630558 0.00587863 0.527026 0.471227 58 26702 46 1.57908e+07 7.1695e+06 2.08734e+06 3623.85 23.85 3.93073 3.50127 62154 534210 -1 21054 23 15341 17740 2211258 504766 9.93232 9.93232 -1535.11 -9.93232 0 0 2.61600e+06 4541.67 1.06 1.10 0.49 -1 -1 1.06 0.44254 0.404929 1289 817 779 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_43.v common 45.38 vpr 85.18 MiB 0.21 15528 -1 -1 1 0.54 -1 -1 38852 -1 -1 178 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 87228 22 19 3810 2741 1 2253 231 24 24 576 mult_36 auto 42.2 MiB 10.59 15931 45543 9198 31101 5244 79.6 MiB 2.23 0.03 10.2488 -1034.23 -10.2488 10.2488 1.79 0.00767964 0.0069628 0.531794 0.4799 58 28790 31 1.57908e+07 7.23937e+06 2.08734e+06 3623.85 23.27 3.85011 3.44161 62154 534210 -1 22784 25 17469 20003 2871017 629000 9.78802 9.78802 -1425.18 -9.78802 0 0 2.61600e+06 4541.67 0.91 1.14 0.50 -1 -1 0.91 0.444416 0.402389 1323 836 798 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_44.v common 43.03 vpr 84.36 MiB 0.22 15720 -1 -1 1 0.54 -1 -1 38404 -1 -1 181 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 86384 22 19 3884 2798 1 2294 234 24 24 576 mult_36 auto 42.5 MiB 12.19 15026 47034 9339 32867 4828 79.8 MiB 2.23 0.03 10.6634 -975.806 -10.6634 10.6634 1.79 0.00781892 0.00708191 0.548896 0.493693 56 25505 43 1.57908e+07 7.28129e+06 2.03561e+06 3534.04 19.72 3.83024 3.42612 61006 507707 -1 21177 24 13604 15932 1830861 450606 10.1266 10.1266 -1497.53 -10.1266 0 0 2.50747e+06 4353.24 0.83 0.86 0.46 -1 -1 0.83 0.406122 0.366578 1351 855 817 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_45.v common 39.56 vpr 80.32 MiB 0.25 15900 -1 -1 1 0.57 -1 -1 40456 -1 -1 186 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 82244 22 19 3989 2869 1 2359 240 24 24 576 mult_36 auto 43.1 MiB 11.21 16504 49410 9364 35589 4457 80.3 MiB 2.40 0.04 10.4128 -1039.57 -10.4128 10.4128 1.86 0.00818522 0.00741589 0.584553 0.526423 58 28065 31 1.57908e+07 7.74716e+06 2.08734e+06 3623.85 16.03 2.6317 2.35095 62154 534210 -1 23178 24 14780 17083 2031719 479355 10.0216 10.0216 -1620.1 -10.0216 0 0 2.61600e+06 4541.67 1.37 1.04 0.52 -1 -1 1.37 0.466061 0.425302 1387 874 836 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_46.v common 39.09 vpr 80.46 MiB 0.25 16100 -1 -1 1 0.53 -1 -1 40516 -1 -1 189 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 82388 22 19 4063 2926 1 2398 243 24 24 576 mult_36 auto 43.3 MiB 13.06 15456 49513 9815 35157 4541 80.5 MiB 2.73 0.04 10.3988 -1055.79 -10.3988 10.3988 2.08 0.00815232 0.00737227 0.611438 0.535989 54 30376 49 1.57908e+07 7.78909e+06 1.98675e+06 3449.22 13.97 3.09856 2.75585 60430 494267 -1 22258 25 14010 16246 1792980 437746 10.0703 10.0703 -1496.13 -10.0703 0 0 2.45377e+06 4260.01 0.84 0.90 0.45 -1 -1 0.84 0.445044 0.401556 1414 893 855 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_47.v common 45.96 vpr 87.56 MiB 0.28 16692 -1 -1 1 0.56 -1 -1 40796 -1 -1 194 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 89660 22 19 4167 2996 1 2466 248 24 24 576 mult_36 auto 43.9 MiB 12.44 16457 49262 9642 34224 5396 81.0 MiB 2.54 0.06 10.2964 -1023.88 -10.2964 10.2964 1.79 0.00744902 0.00675293 0.613147 0.552559 62 27413 41 1.57908e+07 7.85896e+06 2.19658e+06 3813.51 21.64 4.42953 3.94767 63306 560109 -1 22126 24 15880 18201 1967159 487181 9.26852 9.26852 -1515.46 -9.26852 0 0 2.72095e+06 4723.87 0.92 0.96 0.53 -1 -1 0.92 0.45535 0.41238 1449 912 874 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_48.v common 42.76 vpr 81.41 MiB 0.28 16620 -1 -1 1 0.66 -1 -1 40920 -1 -1 197 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83368 22 19 4241 3053 1 2505 251 24 24 576 mult_36 auto 44.1 MiB 13.77 16971 46920 8877 33152 4891 81.4 MiB 2.55 0.04 10.3426 -1105.68 -10.3426 10.3426 1.75 0.0102117 0.00944011 0.577389 0.511211 58 28357 39 1.57908e+07 7.90088e+06 2.08734e+06 3623.85 16.91 3.39493 3.01467 62154 534210 -1 23109 25 14819 17069 1985321 468184 9.32312 9.32312 -1714.79 -9.32312 0 0 2.61600e+06 4541.67 0.92 0.98 0.48 -1 -1 0.92 0.468329 0.422452 1477 931 893 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_49.v common 46.53 vpr 91.94 MiB 0.28 16968 -1 -1 1 0.64 -1 -1 41168 -1 -1 204 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 94144 22 19 4346 3124 1 2572 259 24 24 576 mult_36 auto 44.8 MiB 13.13 17818 58009 12065 38423 7521 82.0 MiB 2.75 0.04 10.4215 -1066.19 -10.4215 10.4215 1.86 0.00896625 0.00815044 0.652098 0.583204 64 27669 29 1.57908e+07 8.3947e+06 2.26035e+06 3924.22 21.14 3.93491 3.50453 64454 586630 -1 23761 23 15470 17571 1974721 480976 10.0026 10.0026 -1667.25 -10.0026 0 0 2.84938e+06 4946.85 0.97 0.93 0.54 -1 -1 0.97 0.440564 0.397646 1512 950 912 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_50.v common 42.97 vpr 82.24 MiB 0.20 17196 -1 -1 1 0.69 -1 -1 41028 -1 -1 206 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84212 22 19 4420 3181 1 2611 261 24 24 576 mult_36 auto 45.1 MiB 13.17 18113 59404 12055 41197 6152 82.2 MiB 2.84 0.04 10.7633 -1102.87 -10.7633 10.7633 2.09 0.00897832 0.00813593 0.670958 0.603728 58 30827 50 1.57908e+07 8.42264e+06 2.08734e+06 3623.85 16.53 3.20335 2.85436 62154 534210 -1 25105 24 17430 20166 2474881 582739 9.91802 9.91802 -1434.59 -9.91802 0 0 2.61600e+06 4541.67 0.92 1.15 0.49 -1 -1 0.92 0.475445 0.431167 1541 969 931 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_51.v common 56.02 vpr 89.57 MiB 0.30 17472 -1 -1 1 0.67 -1 -1 41200 -1 -1 211 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 91720 22 19 4524 3251 1 2681 266 24 24 576 mult_36 auto 45.6 MiB 12.19 17903 58406 11821 39335 7250 82.7 MiB 2.74 0.04 10.1189 -1113.35 -10.1189 10.1189 2.41 0.00913782 0.00827654 0.667678 0.598269 66 28650 46 1.57908e+07 8.49251e+06 2.33135e+06 4047.49 29.94 5.26651 4.68916 65030 601923 -1 23838 22 15662 18095 2053216 483046 9.32782 9.32782 -1570.64 -9.32782 0 0 2.91907e+06 5067.82 0.99 0.97 0.55 -1 -1 0.99 0.44678 0.403961 1576 988 950 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_52.v common 96.34 vpr 82.88 MiB 0.23 17468 -1 -1 1 0.66 -1 -1 39416 -1 -1 215 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84872 22 19 4598 3308 1 2718 270 24 24 576 mult_36 auto 45.8 MiB 14.12 18499 60438 12754 41701 5983 82.9 MiB 2.85 0.04 10.3652 -1274.39 -10.3652 10.3652 2.33 0.00951332 0.00844289 0.692048 0.621204 60 30704 47 1.57908e+07 8.54841e+06 2.13333e+06 3703.69 68.57 6.35371 5.65859 62730 548095 -1 24767 24 17273 19354 2179586 520270 9.64242 9.64242 -1770.68 -9.64242 0 0 2.67122e+06 4637.53 0.90 1.02 0.49 -1 -1 0.90 0.479763 0.432708 1605 1007 969 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_14.v common 11.38 vpr 70.48 MiB 0.07 10492 -1 -1 1 0.22 -1 -1 35504 -1 -1 81 22 0 4 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72172 22 19 1974 1653 1 1020 126 16 16 256 mult_36 auto 32.2 MiB 0.35 5566 18081 3979 11568 2534 70.5 MiB 0.67 0.01 4.18656 -1184 -4.18656 4.18656 0.72 0.00378121 0.00337431 0.234163 0.210213 50 12015 26 6.54114e+06 2.7256e+06 787708. 3076.99 6.51 1.52052 1.33578 25344 186282 -1 9252 17 4107 4636 547995 139041 4.41926 4.41926 -1238.23 -4.41926 0 0 943753. 3686.54 0.33 0.29 0.18 -1 -1 0.33 0.156498 0.140926 605 649 247 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_15.v common 24.11 vpr 71.27 MiB 0.09 10916 -1 -1 1 0.26 -1 -1 36948 -1 -1 88 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72980 22 19 2144 1789 1 1120 134 16 16 256 mult_36 auto 33.2 MiB 0.38 6319 20654 4053 14159 2442 71.3 MiB 0.80 0.01 4.29396 -1347.48 -4.29396 4.29396 0.71 0.00397352 0.00353702 0.264933 0.237366 50 12838 32 6.54114e+06 3.22025e+06 787708. 3076.99 18.86 2.11251 1.85656 25344 186282 -1 10194 15 4381 5331 543271 135603 4.41926 4.41926 -1427.22 -4.41926 0 0 943753. 3686.54 0.28 0.28 0.18 -1 -1 0.28 0.159752 0.144723 654 704 266 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_16.v common 11.77 vpr 71.98 MiB 0.08 10976 -1 -1 1 0.23 -1 -1 36848 -1 -1 91 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73704 22 19 2218 1846 1 1162 137 16 16 256 mult_36 auto 33.7 MiB 0.39 6746 20611 4243 13930 2438 72.0 MiB 0.81 0.01 4.27196 -1343.11 -4.27196 4.27196 0.69 0.00419717 0.00375079 0.264637 0.236937 56 12205 20 6.54114e+06 3.26253e+06 849745. 3319.32 6.54 1.5134 1.33077 26364 208198 -1 10886 18 4466 5238 632605 153751 4.54456 4.54456 -1414.59 -4.54456 0 0 1.04740e+06 4091.43 0.31 0.32 0.20 -1 -1 0.31 0.17518 0.157124 683 723 285 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_17.v common 12.04 vpr 72.87 MiB 0.13 11760 -1 -1 1 0.29 -1 -1 36564 -1 -1 103 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74620 22 19 2536 2130 1 1275 149 16 16 256 mult_36 auto 34.7 MiB 0.49 7309 25759 5410 16752 3597 72.9 MiB 0.97 0.01 4.22437 -1538.56 -4.22437 4.22437 0.71 0.00479837 0.00428134 0.31548 0.281148 54 15370 50 6.54114e+06 3.43166e+06 829453. 3240.05 6.15 1.86152 1.63469 26108 202796 -1 11251 20 4866 5650 591941 150326 4.41926 4.41926 -1554.25 -4.41926 0 0 1.02522e+06 4004.78 0.30 0.37 0.21 -1 -1 0.30 0.21684 0.194045 770 851 304 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_18.v common 14.07 vpr 73.36 MiB 0.09 11992 -1 -1 1 0.29 -1 -1 37124 -1 -1 107 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75120 22 19 2610 2187 1 1316 153 16 16 256 mult_36 auto 35.3 MiB 0.39 7489 21012 3652 14420 2940 73.4 MiB 0.89 0.02 4.05741 -1594.66 -4.05741 4.05741 0.95 0.00469532 0.00432007 0.290653 0.262061 58 14224 36 6.54114e+06 3.48803e+06 871168. 3403.00 7.98 2.0802 1.84144 26872 219187 -1 11540 19 4929 5820 646042 159250 4.41926 4.41926 -1618.92 -4.41926 0 0 1.09288e+06 4269.05 0.33 0.37 0.21 -1 -1 0.33 0.215755 0.193291 798 870 323 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_19.v common 13.24 vpr 74.03 MiB 0.19 12140 -1 -1 1 0.30 -1 -1 36776 -1 -1 113 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75808 22 19 2778 2321 1 1412 160 16 16 256 mult_36 auto 36.2 MiB 0.40 8590 28804 5795 19118 3891 74.0 MiB 1.28 0.02 4.16866 -1754.96 -4.16866 4.16866 0.95 0.00555672 0.00504423 0.395899 0.356176 60 14551 41 6.54114e+06 3.96859e+06 890343. 3477.90 6.08 1.80025 1.59494 27128 224764 -1 12108 19 5195 6165 612347 148881 4.29396 4.29396 -1780.33 -4.29396 0 0 1.11577e+06 4358.47 0.34 0.39 0.22 -1 -1 0.34 0.234318 0.210966 846 925 342 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_20.v common 13.42 vpr 74.60 MiB 0.10 12412 -1 -1 1 0.33 -1 -1 36896 -1 -1 118 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76388 22 19 2852 2378 1 1455 165 16 16 256 mult_36 auto 36.8 MiB 0.52 8719 21409 3812 14750 2847 74.6 MiB 0.95 0.02 4.23032 -1751.68 -4.23032 4.23032 0.69 0.00500252 0.00445072 0.294825 0.263791 58 15488 34 6.54114e+06 4.03906e+06 871168. 3403.00 7.37 1.74355 1.53987 26872 219187 -1 12591 16 5346 6342 671911 168571 4.29396 4.29396 -1828.31 -4.29396 0 0 1.09288e+06 4269.05 0.33 0.38 0.21 -1 -1 0.33 0.210528 0.189481 875 944 361 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_21.v common 13.55 vpr 75.41 MiB 0.18 12888 -1 -1 1 0.37 -1 -1 37816 -1 -1 122 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77224 22 19 3057 2549 1 1560 169 16 16 256 mult_36 auto 37.5 MiB 0.53 9662 28189 5474 18473 4242 75.4 MiB 1.37 0.02 4.27196 -1924.27 -4.27196 4.27196 0.69 0.00642709 0.00584763 0.394218 0.350814 60 16376 39 6.54114e+06 4.09544e+06 890343. 3477.90 6.92 2.02198 1.79611 27128 224764 -1 13229 17 5417 6865 651246 161214 4.52256 4.52256 -1946.8 -4.52256 0 0 1.11577e+06 4358.47 0.34 0.39 0.22 -1 -1 0.34 0.233524 0.210131 932 1017 380 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_22.v common 13.26 vpr 75.82 MiB 0.12 12988 -1 -1 1 0.35 -1 -1 37912 -1 -1 125 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77636 22 19 3131 2606 1 1600 172 16 16 256 mult_36 auto 37.9 MiB 0.52 9746 26940 4762 17615 4563 75.8 MiB 1.19 0.02 4.1051 -1925.37 -4.1051 4.1051 0.71 0.00582703 0.0051886 0.361517 0.321222 64 17025 40 6.54114e+06 4.13772e+06 943753. 3686.54 6.73 2.15537 1.91959 27892 240595 -1 13419 19 5604 6604 696533 174227 4.41926 4.41926 -1888.34 -4.41926 0 0 1.19033e+06 4649.74 0.36 0.44 0.25 -1 -1 0.36 0.260811 0.233391 961 1036 399 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_23.v common 19.63 vpr 76.63 MiB 0.18 13332 -1 -1 1 0.38 -1 -1 37848 -1 -1 133 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78472 22 19 3301 2742 1 1700 181 18 18 324 mult_36 auto 38.6 MiB 0.56 10073 29819 5770 20700 3349 76.6 MiB 1.25 0.02 4.29396 -2072.96 -4.29396 4.29396 0.91 0.00623253 0.00556062 0.392768 0.351453 58 20039 44 8.06603e+06 4.64648e+06 1.14310e+06 3528.09 12.13 2.73918 2.43029 34680 290288 -1 15296 19 6397 7351 896472 206109 4.52256 4.52256 -2107.99 -4.52256 0 0 1.43297e+06 4422.75 0.48 0.52 0.28 -1 -1 0.48 0.294954 0.266598 1012 1091 418 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_24.v common 28.49 vpr 76.93 MiB 0.16 13448 -1 -1 1 0.46 -1 -1 38132 -1 -1 137 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78772 22 19 3375 2799 1 1744 185 18 18 324 mult_36 auto 39.0 MiB 0.60 10242 28589 5033 20765 2791 76.9 MiB 1.20 0.02 4.16866 -2095.84 -4.16866 4.16866 0.97 0.00641405 0.00569661 0.36757 0.327642 56 19239 34 8.06603e+06 4.70285e+06 1.11497e+06 3441.27 20.82 2.85587 2.50954 34036 275796 -1 15430 18 6668 8155 902923 218175 4.66986 4.66986 -2283.29 -4.66986 0 0 1.37338e+06 4238.83 0.42 0.49 0.28 -1 -1 0.42 0.26827 0.240715 1041 1110 437 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_25.v common 15.03 vpr 77.96 MiB 0.15 13976 -1 -1 1 0.41 -1 -1 38092 -1 -1 146 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79836 22 19 3615 3005 1 1848 194 18 18 324 mult_36 auto 40.0 MiB 0.72 11381 30488 5169 21849 3470 78.0 MiB 1.30 0.02 4.29396 -2317.79 -4.29396 4.29396 1.08 0.00674007 0.00607127 0.402737 0.358988 60 19735 24 8.06603e+06 4.8297e+06 1.16833e+06 3605.96 6.20 2.03203 1.7934 35004 297736 -1 15899 18 6600 7758 807688 195562 4.41926 4.41926 -2334.44 -4.41926 0 0 1.46313e+06 4515.82 0.50 0.48 0.28 -1 -1 0.50 0.286431 0.256913 1107 1201 456 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_26.v common 28.99 vpr 78.52 MiB 0.25 14112 -1 -1 1 0.42 -1 -1 38412 -1 -1 148 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 80400 22 19 3689 3062 1 1888 196 18 18 324 mult_36 auto 40.6 MiB 0.63 11433 29784 5199 21859 2726 78.5 MiB 1.40 0.03 4.24437 -2303.41 -4.24437 4.24437 0.95 0.00695109 0.00628204 0.419904 0.377051 58 20982 37 8.06603e+06 4.85789e+06 1.14310e+06 3528.09 21.00 3.25851 2.87498 34680 290288 -1 16695 16 7063 8326 925400 221942 4.41926 4.41926 -2385.92 -4.41926 0 0 1.43297e+06 4422.75 0.45 0.50 0.28 -1 -1 0.45 0.27248 0.245402 1135 1220 475 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_27.v common 16.86 vpr 79.51 MiB 0.14 14548 -1 -1 1 0.49 -1 -1 38368 -1 -1 156 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81416 22 19 3871 3210 1 2002 205 18 18 324 mult_36 auto 41.5 MiB 0.66 12765 36445 6420 26320 3705 79.5 MiB 1.68 0.03 4.54456 -2408.49 -4.54456 4.54456 0.98 0.00729171 0.00665155 0.482117 0.431921 64 23264 38 8.06603e+06 5.36665e+06 1.23838e+06 3822.15 8.12 2.50455 2.22003 35972 318676 -1 18200 18 7220 8450 972098 233171 4.52256 4.52256 -2487.12 -4.52256 0 0 1.56068e+06 4816.91 0.51 0.55 0.31 -1 -1 0.51 0.312079 0.280533 1191 1275 494 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_28.v common 21.90 vpr 79.95 MiB 0.17 14560 -1 -1 1 0.54 -1 -1 38372 -1 -1 160 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81872 22 19 3945 3267 1 2045 209 18 18 324 mult_36 auto 42.0 MiB 0.70 12597 35549 6371 25304 3874 80.0 MiB 1.61 0.03 4.26697 -2505.98 -4.26697 4.26697 1.00 0.00743147 0.00662208 0.471627 0.419287 68 21534 29 8.06603e+06 5.42302e+06 1.31159e+06 4048.11 13.18 3.30767 2.92366 36620 334356 -1 17403 19 7212 8305 866718 201384 4.29396 4.29396 -2504.3 -4.29396 0 0 1.63345e+06 5041.52 0.51 0.56 0.32 -1 -1 0.51 0.337354 0.303196 1219 1294 513 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_29.v common 60.65 vpr 81.01 MiB 0.55 15024 -1 -1 1 0.60 -1 -1 39524 -1 -1 170 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 82956 22 19 4159 3447 1 2159 220 22 22 484 mult_36 auto 43.1 MiB 0.84 13941 43978 8874 31271 3833 81.0 MiB 1.86 0.03 4.35022 -2631.97 -4.35022 4.35022 1.63 0.00768855 0.0068308 0.549717 0.489106 58 24926 40 1.31202e+07 5.95997e+06 1.75961e+06 3635.55 49.32 4.53904 3.99936 52570 450426 -1 20690 17 8007 9443 1068841 244740 4.54456 4.54456 -2664.53 -4.54456 0 0 2.20457e+06 4554.90 0.72 0.56 0.41 -1 -1 0.72 0.3121 0.280059 1283 1367 532 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_30.v common 22.10 vpr 81.06 MiB 0.19 15120 -1 -1 1 0.57 -1 -1 40812 -1 -1 173 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83004 22 19 4233 3504 1 2198 223 22 22 484 mult_36 auto 43.2 MiB 0.81 14275 43487 8406 30788 4293 81.1 MiB 1.95 0.03 4.29396 -2676.94 -4.29396 4.29396 1.94 0.00798649 0.00713048 0.549465 0.488799 62 26940 39 1.31202e+07 6.00225e+06 1.85176e+06 3825.95 10.44 2.73876 2.42508 53538 472186 -1 20137 19 7963 9293 978277 226339 4.39726 4.39726 -2703.02 -4.39726 0 0 2.29262e+06 4736.82 0.78 0.61 0.45 -1 -1 0.78 0.355644 0.319291 1311 1386 551 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_31.v common 24.85 vpr 83.09 MiB 0.16 15528 -1 -1 1 0.59 -1 -1 40896 -1 -1 179 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 85080 22 19 4410 3647 1 2305 229 22 22 484 mult_36 auto 44.3 MiB 0.81 14328 48529 9744 34610 4175 83.1 MiB 2.19 0.03 4.31186 -2776.62 -4.31186 4.31186 2.08 0.00824528 0.00739659 0.618548 0.550067 60 26322 48 1.31202e+07 6.08682e+06 1.79840e+06 3715.71 12.60 3.05738 2.67011 53054 462096 -1 20969 18 8442 9887 1082581 257139 4.39726 4.39726 -2815.55 -4.39726 0 0 2.25108e+06 4650.99 0.80 0.63 0.44 -1 -1 0.80 0.358227 0.322298 1363 1441 570 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_32.v common 27.04 vpr 83.28 MiB 0.18 15656 -1 -1 1 0.56 -1 -1 40732 -1 -1 183 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 85280 22 19 4484 3704 1 2348 233 22 22 484 mult_36 auto 44.5 MiB 0.78 14525 45341 8355 32699 4287 82.3 MiB 2.03 0.03 4.41926 -2881.16 -4.41926 4.41926 1.50 0.00837078 0.00746071 0.567344 0.506455 60 25283 24 1.31202e+07 6.14319e+06 1.79840e+06 3715.71 15.88 3.52164 3.13183 53054 462096 -1 21198 18 8307 9417 1043367 244738 4.41926 4.41926 -2865.53 -4.41926 0 0 2.25108e+06 4650.99 0.79 0.66 0.42 -1 -1 0.79 0.385039 0.347738 1393 1460 589 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_33.v common 24.30 vpr 84.41 MiB 0.22 16524 -1 -1 1 0.82 -1 -1 41568 -1 -1 196 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 86440 22 19 4843 4029 1 2463 247 22 22 484 mult_36 auto 45.8 MiB 1.02 15998 49783 9671 35687 4425 84.4 MiB 2.26 0.04 4.54456 -3078.09 -4.54456 4.54456 1.52 0.0091638 0.00814293 0.621865 0.551191 62 30039 29 1.31202e+07 6.72242e+06 1.85176e+06 3825.95 11.66 2.99326 2.63647 53538 472186 -1 22471 18 8965 10546 1092220 257195 4.41926 4.41926 -3312.48 -4.41926 0 0 2.29262e+06 4736.82 0.75 0.67 0.43 -1 -1 0.75 0.395594 0.355618 1490 1606 608 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_34.v common 26.27 vpr 84.16 MiB 0.20 16800 -1 -1 1 0.75 -1 -1 41532 -1 -1 199 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 86180 22 19 4917 4086 1 2505 250 22 22 484 mult_36 auto 46.2 MiB 1.28 15240 53766 10631 37846 5289 84.2 MiB 2.41 0.03 4.29396 -3047.21 -4.29396 4.29396 1.54 0.00919275 0.00818695 0.690253 0.614728 60 28229 35 1.31202e+07 6.7647e+06 1.79840e+06 3715.71 12.89 3.7354 3.29972 53054 462096 -1 22321 17 8852 10511 1134513 265850 4.52256 4.52256 -3384.85 -4.52256 0 0 2.25108e+06 4650.99 1.22 0.77 0.47 -1 -1 1.22 0.453684 0.415185 1519 1625 627 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_35.v common 48.54 vpr 85.02 MiB 0.24 17232 -1 -1 1 0.74 -1 -1 41772 -1 -1 207 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 87064 22 19 5093 4228 1 2607 258 22 22 484 mult_36 auto 47.1 MiB 1.19 16561 53623 9690 39001 4932 85.0 MiB 2.50 0.04 4.27196 -3266.59 -4.27196 4.27196 1.70 0.00952453 0.00848314 0.685967 0.610687 60 31544 47 1.31202e+07 6.87745e+06 1.79840e+06 3715.71 34.81 5.02602 4.4182 53054 462096 -1 24567 20 9974 11801 1384303 319840 4.64786 4.64786 -3518.09 -4.64786 0 0 2.25108e+06 4650.99 0.77 0.85 0.43 -1 -1 0.77 0.495263 0.446935 1572 1680 646 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_36.v common 23.95 vpr 85.27 MiB 0.19 17332 -1 -1 1 0.67 -1 -1 42052 -1 -1 209 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 87316 22 19 5167 4285 1 2655 260 22 22 484 mult_36 auto 47.5 MiB 0.90 17463 54974 10444 39030 5500 85.3 MiB 2.61 0.03 4.35562 -3241.22 -4.35562 4.35562 2.16 0.00998321 0.00891839 0.724446 0.644574 66 29932 33 1.31202e+07 6.90564e+06 1.96511e+06 4060.15 10.56 3.50421 3.10149 54986 507526 -1 24310 15 9330 10872 1221412 282633 4.41926 4.41926 -3341.91 -4.41926 0 0 2.45963e+06 5081.88 0.84 0.67 0.46 -1 -1 0.84 0.366872 0.330843 1600 1699 665 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_37.v common 35.19 vpr 87.35 MiB 0.16 17660 -1 -1 1 0.72 -1 -1 40772 -1 -1 218 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 89444 22 19 5380 4464 1 2756 270 24 24 576 mult_36 auto 48.7 MiB 0.95 18706 56950 10603 41531 4816 87.3 MiB 2.69 0.04 4.35562 -3473.4 -4.35562 4.35562 2.58 0.0096782 0.00876401 0.733555 0.656002 60 36033 48 1.58331e+07 7.42849e+06 2.13333e+06 3703.69 20.42 3.86962 3.4235 62730 548095 -1 27276 19 10671 12691 1595594 352262 4.54456 4.54456 -3667.6 -4.54456 0 0 2.67122e+06 4637.53 0.93 0.90 0.56 -1 -1 0.93 0.485974 0.440448 1662 1772 684 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_38.v common 30.11 vpr 86.62 MiB 0.22 17812 -1 -1 1 0.77 -1 -1 42264 -1 -1 220 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 88696 22 19 5454 4521 1 2804 272 24 24 576 mult_36 auto 48.8 MiB 1.09 18631 58418 11427 42785 4206 86.6 MiB 2.81 0.04 4.29396 -3507.9 -4.29396 4.29396 2.02 0.00965294 0.00863172 0.744135 0.659218 62 35211 42 1.58331e+07 7.45668e+06 2.19658e+06 3813.51 15.88 4.65275 4.12152 63306 560109 -1 26641 17 10663 12453 1388485 323603 4.39726 4.39726 -3646.05 -4.39726 0 0 2.72095e+06 4723.87 0.97 0.78 0.51 -1 -1 0.97 0.43215 0.389711 1690 1791 703 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_39.v common 45.16 vpr 96.89 MiB 0.26 18104 -1 -1 1 0.79 -1 -1 40280 -1 -1 228 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 99216 22 19 5629 4662 1 2910 280 24 24 576 mult_36 auto 49.9 MiB 1.00 20090 64330 13333 46393 4604 87.3 MiB 3.10 0.04 4.55861 -3641.68 -4.55861 4.55861 2.47 0.0113336 0.00992669 0.841238 0.741184 66 38359 44 1.58331e+07 7.56943e+06 2.33135e+06 4047.49 29.21 5.80053 5.09983 65030 601923 -1 28690 16 10858 13238 1585011 358083 4.54456 4.54456 -3858.1 -4.54456 0 0 2.91907e+06 5067.82 1.03 0.82 0.71 -1 -1 1.03 0.42674 0.384578 1742 1846 722 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_40.v common 29.97 vpr 87.45 MiB 0.28 18344 -1 -1 1 0.72 -1 -1 42380 -1 -1 232 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 89552 22 19 5703 4719 1 2952 284 24 24 576 mult_36 auto 50.1 MiB 1.00 18947 59996 11849 42843 5304 87.5 MiB 2.99 0.04 4.34967 -3655.08 -4.34967 4.34967 2.20 0.0102186 0.00929649 0.812512 0.708497 60 35879 41 1.58331e+07 7.62581e+06 2.13333e+06 3703.69 14.27 4.08142 3.5994 62730 548095 -1 27199 19 10579 12398 1314935 306848 4.41926 4.41926 -3778.74 -4.41926 0 0 2.67122e+06 4637.53 1.41 1.03 0.66 -1 -1 1.41 0.610592 0.55043 1771 1865 741 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_41.v common 102.19 vpr 92.43 MiB 0.29 18872 -1 -1 1 0.85 -1 -1 41696 -1 -1 240 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 94652 22 19 5950 4932 1 3067 293 24 24 576 mult_36 auto 51.3 MiB 1.10 20012 62501 12151 44656 5694 88.8 MiB 3.02 0.04 4.29396 -3822.03 -4.29396 4.29396 2.42 0.0109472 0.00973069 0.788484 0.694512 64 35939 46 1.58331e+07 8.13456e+06 2.26035e+06 3924.22 86.91 7.61413 6.66948 64454 586630 -1 28402 20 10993 12737 1517197 352014 4.41926 4.41926 -3929.74 -4.41926 0 0 2.84938e+06 4946.85 0.95 0.89 0.53 -1 -1 0.95 0.512511 0.459461 1841 1956 760 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_42.v common 40.84 vpr 102.39 MiB 0.22 19092 -1 -1 1 0.85 -1 -1 42780 -1 -1 242 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 104852 22 19 6024 4989 1 3108 295 24 24 576 mult_36 auto 51.6 MiB 1.06 19910 60136 10755 44360 5021 89.1 MiB 3.19 0.05 4.29396 -3823.01 -4.29396 4.29396 2.13 0.0110489 0.00979717 0.80342 0.720453 68 34391 30 1.58331e+07 8.16275e+06 2.39371e+06 4155.74 25.54 5.38072 4.75976 65606 615345 -1 27865 17 10555 12711 1355075 308860 4.39726 4.39726 -4100.32 -4.39726 0 0 2.98162e+06 5176.42 1.16 0.84 0.59 -1 -1 1.16 0.500254 0.452225 1869 1975 779 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_43.v common 42.26 vpr 103.31 MiB 0.30 19304 -1 -1 1 0.86 -1 -1 43416 -1 -1 250 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 105792 22 19 6198 5129 1 3209 303 24 24 576 mult_36 auto 52.6 MiB 1.04 22784 60306 10847 44895 4564 90.0 MiB 2.81 0.05 4.66986 -4092.44 -4.66986 4.66986 1.84 0.0127938 0.0112669 0.736929 0.656056 68 38832 41 1.58331e+07 8.2755e+06 2.39371e+06 4155.74 27.46 6.3718 5.61617 65606 615345 -1 31135 17 11588 13651 1552306 353970 4.54456 4.54456 -4162.55 -4.54456 0 0 2.98162e+06 5176.42 1.12 0.93 0.60 -1 -1 1.12 0.516048 0.464557 1921 2030 798 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_44.v common 38.86 vpr 102.75 MiB 0.30 19608 -1 -1 1 0.90 -1 -1 43252 -1 -1 253 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 105220 22 19 6272 5186 1 3255 306 24 24 576 mult_36 auto 53.0 MiB 1.05 21212 62106 11016 45638 5452 90.3 MiB 2.92 0.05 4.29396 -3963.31 -4.29396 4.29396 1.80 0.0116831 0.0104245 0.749681 0.665321 66 38086 47 1.58331e+07 8.31778e+06 2.33135e+06 4047.49 23.38 5.92509 5.19738 65030 601923 -1 29668 16 11714 13642 1536421 356784 4.52256 4.52256 -4103.45 -4.52256 0 0 2.91907e+06 5067.82 1.22 0.84 0.69 -1 -1 1.22 0.466079 0.419654 1949 2049 817 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_45.v common 28.13 vpr 95.61 MiB 0.26 19872 -1 -1 1 0.97 -1 -1 43732 -1 -1 262 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 97904 22 19 6485 5365 1 3364 316 24 24 576 mult_36 auto 54.1 MiB 1.11 21665 63741 11956 46622 5163 91.4 MiB 2.92 0.05 4.41926 -4168.43 -4.41926 4.41926 1.79 0.0122189 0.0109183 0.766961 0.681215 64 37095 22 1.58331e+07 8.84063e+06 2.26035e+06 3924.22 13.29 3.92341 3.4735 64454 586630 -1 31001 18 12007 14131 1617183 372391 4.54456 4.54456 -4244.66 -4.54456 0 0 2.84938e+06 4946.85 1.04 0.95 0.54 -1 -1 1.04 0.54547 0.489158 2011 2122 836 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_46.v common 34.50 vpr 93.95 MiB 0.31 19956 -1 -1 1 0.94 -1 -1 43744 -1 -1 266 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 96200 22 19 6559 5422 1 3406 320 24 24 576 mult_36 auto 54.3 MiB 1.12 22395 70336 13410 49504 7422 91.6 MiB 3.31 0.05 4.29396 -4167.58 -4.29396 4.29396 1.80 0.0121666 0.0108191 0.840222 0.743943 68 38012 39 1.58331e+07 8.897e+06 2.39371e+06 4155.74 18.90 4.37914 3.86273 65606 615345 -1 30883 18 11581 13686 1504829 345509 4.41926 4.41926 -4245.28 -4.41926 0 0 2.98162e+06 5176.42 1.20 0.94 0.60 -1 -1 1.20 0.561498 0.505196 2040 2141 855 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_47.v common 55.24 vpr 96.22 MiB 0.28 20424 -1 -1 1 0.98 -1 -1 44720 -1 -1 273 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 98528 22 19 6735 5564 1 3513 327 24 24 576 mult_36 auto 55.1 MiB 1.15 22461 75769 14339 54266 7164 92.6 MiB 3.52 0.05 4.3557 -4269.53 -4.3557 4.3557 1.78 0.0121185 0.0107542 0.90968 0.808417 66 37826 29 1.58331e+07 8.99566e+06 2.33135e+06 4047.49 39.50 7.5275 6.61814 65030 601923 -1 31148 17 12152 14476 1574318 372450 4.41926 4.41926 -4319 -4.41926 0 0 2.91907e+06 5067.82 1.21 0.96 0.57 -1 -1 1.21 0.553841 0.499837 2092 2196 874 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_48.v common 30.07 vpr 96.99 MiB 0.27 20452 -1 -1 1 1.03 -1 -1 44168 -1 -1 276 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 99320 22 19 6809 5621 1 3556 330 24 24 576 mult_36 auto 55.5 MiB 1.17 24443 75504 14693 54581 6230 92.9 MiB 3.57 0.05 4.54456 -4333.82 -4.54456 4.54456 1.80 0.0123117 0.0109306 0.888676 0.786709 68 41304 32 1.58331e+07 9.03794e+06 2.39371e+06 4155.74 14.14 4.46422 3.95931 65606 615345 -1 32992 16 12193 14996 1577116 364367 4.66986 4.66986 -4785.3 -4.66986 0 0 2.98162e+06 5176.42 1.07 0.91 0.58 -1 -1 1.07 0.516725 0.465739 2121 2215 893 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_49.v common 46.31 vpr 111.59 MiB 0.31 21276 -1 -1 1 0.99 -1 -1 44344 -1 -1 287 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 114268 22 19 7094 5872 1 3671 342 24 24 576 mult_36 auto 56.8 MiB 1.21 24412 81602 15797 59095 6710 94.4 MiB 3.96 0.06 4.66986 -4735 -4.66986 4.66986 1.83 0.0130857 0.0116387 0.954295 0.842149 76 38504 31 1.58331e+07 9.58898e+06 2.61600e+06 4541.67 29.37 6.8577 6.04702 68478 680951 -1 32830 17 11929 13673 1640992 357972 4.92046 4.92046 -4741.32 -4.92046 0 0 3.24203e+06 5628.53 1.31 1.01 0.64 -1 -1 1.31 0.576819 0.520317 2200 2324 912 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_50.v common 31.86 vpr 100.75 MiB 0.33 21308 -1 -1 1 1.04 -1 -1 44160 -1 -1 290 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 103168 22 19 7168 5929 1 3712 345 24 24 576 mult_36 auto 57.3 MiB 1.21 25160 76512 14255 54563 7694 94.7 MiB 3.55 0.05 4.47552 -4598.48 -4.47552 4.47552 1.79 0.0132486 0.0118063 0.893307 0.79298 70 41615 40 1.58331e+07 9.63126e+06 2.45377e+06 4260.01 15.78 4.98065 4.3777 66754 640332 -1 34443 17 12525 14659 1724396 391207 4.64786 4.64786 -4803.4 -4.64786 0 0 3.09179e+06 5367.68 1.10 1.01 0.59 -1 -1 1.10 0.570513 0.514912 2229 2343 931 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_51.v common 43.31 vpr 101.60 MiB 0.34 21632 -1 -1 1 1.13 -1 -1 44704 -1 -1 297 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 104036 22 19 7344 6071 1 3815 352 24 24 576 mult_36 auto 57.9 MiB 1.23 26112 84808 17528 58730 8550 95.6 MiB 3.98 0.06 4.41926 -4718.92 -4.41926 4.41926 1.91 0.0134537 0.0119714 0.985229 0.871016 72 45711 45 1.58331e+07 9.72992e+06 2.50747e+06 4353.24 25.37 6.23815 5.45844 67330 654343 -1 35468 17 13268 15995 2013855 438885 4.54456 4.54456 -4858.33 -4.54456 0 0 3.14081e+06 5452.80 1.58 1.10 0.75 -1 -1 1.58 0.607669 0.547589 2282 2398 950 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_52.v common 34.67 vpr 103.78 MiB 0.46 21688 -1 -1 1 1.09 -1 -1 45284 -1 -1 301 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 106272 22 19 7418 6128 1 3860 356 24 24 576 mult_36 auto 58.7 MiB 1.26 25970 87365 17770 61046 8549 96.3 MiB 4.12 0.06 4.34967 -4804.09 -4.34967 4.34967 1.97 0.0138025 0.0123442 1.02647 0.89933 72 44233 45 1.58331e+07 9.78629e+06 2.50747e+06 4353.24 17.39 5.84306 5.15283 67330 654343 -1 35405 17 12953 15244 1834273 401238 4.54456 4.54456 -4810.48 -4.54456 0 0 3.14081e+06 5452.80 1.14 1.03 0.60 -1 -1 1.14 0.588523 0.530301 2310 2417 969 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_14.v common 8.90 vpr 66.82 MiB 0.08 9312 -1 -1 1 0.22 -1 -1 34712 -1 -1 58 22 0 4 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 68428 22 19 1246 925 1 732 103 16 16 256 mult_36 auto 28.5 MiB 1.56 4023 13117 2985 8070 2062 66.8 MiB 0.50 0.01 8.30942 -383.734 -8.30942 8.30942 0.71 0.00267083 0.00243339 0.158571 0.144609 44 7728 28 6.54114e+06 2.40144e+06 686998. 2683.59 3.19 0.681957 0.611916 24576 170172 -1 6158 22 4604 5291 512140 133084 7.47753 7.47753 -455.971 -7.47753 0 0 871168. 3403.00 0.27 0.26 0.17 -1 -1 0.27 0.129634 0.117161 421 285 247 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_15.v common 9.84 vpr 67.48 MiB 0.07 9524 -1 -1 1 0.14 -1 -1 35136 -1 -1 61 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69100 22 19 1344 989 1 791 107 16 16 256 mult_36 auto 29.3 MiB 0.98 4575 14022 3062 9140 1820 67.5 MiB 0.53 0.01 8.46467 -389.974 -8.46467 8.46467 0.96 0.00287669 0.00262672 0.165077 0.150558 42 9875 50 6.54114e+06 2.83972e+06 649763. 2538.14 4.14 0.98936 0.891648 24068 159480 -1 7244 23 6090 6933 810054 211687 7.95378 7.95378 -494.958 -7.95378 0 0 829453. 3240.05 0.31 0.34 0.16 -1 -1 0.31 0.145601 0.131784 453 304 266 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_16.v common 11.44 vpr 68.04 MiB 0.17 9792 -1 -1 1 0.17 -1 -1 35064 -1 -1 65 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69668 22 19 1418 1046 1 832 111 16 16 256 mult_36 auto 29.7 MiB 1.31 4773 16071 3747 10021 2303 68.0 MiB 0.63 0.01 8.40964 -409.362 -8.40964 8.40964 0.97 0.00305769 0.00277669 0.191584 0.174016 46 9093 31 6.54114e+06 2.89609e+06 723233. 2825.13 4.88 0.936375 0.841258 24832 174915 -1 7344 26 5474 6088 675835 171589 8.05383 8.05383 -514.535 -8.05383 0 0 890343. 3477.90 0.27 0.35 0.17 -1 -1 0.27 0.169665 0.152379 481 323 285 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_17.v common 13.41 vpr 68.36 MiB 0.07 10328 -1 -1 1 0.22 -1 -1 35348 -1 -1 71 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70000 22 19 1518 1112 1 895 117 16 16 256 mult_36 auto 30.0 MiB 1.24 5128 15847 3477 10520 1850 68.4 MiB 0.77 0.01 8.98451 -441.089 -8.98451 8.98451 0.99 0.00325804 0.00296122 0.198 0.179415 46 10202 35 6.54114e+06 2.98066e+06 723233. 2825.13 5.85 1.03455 0.928867 24832 174915 -1 8120 24 6873 7643 882202 231673 8.64522 8.64522 -508.026 -8.64522 0 0 890343. 3477.90 0.49 0.45 0.24 -1 -1 0.49 0.191787 0.175454 514 342 304 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_18.v common 16.32 vpr 68.71 MiB 0.11 10240 -1 -1 1 0.21 -1 -1 34964 -1 -1 74 22 0 5 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70364 22 19 1592 1169 1 934 120 16 16 256 mult_36 auto 30.6 MiB 2.01 5562 18410 4023 12076 2311 68.7 MiB 0.92 0.01 9.11545 -462.729 -9.11545 9.11545 0.89 0.00305054 0.00273429 0.235478 0.213746 50 10839 29 6.54114e+06 3.02294e+06 787708. 3076.99 9.12 1.81393 1.63828 25344 186282 -1 8621 24 6644 7427 822442 205516 8.84223 8.84223 -564.118 -8.84223 0 0 943753. 3686.54 0.33 0.38 0.18 -1 -1 0.33 0.172482 0.155703 542 361 323 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_19.v common 11.07 vpr 68.94 MiB 0.10 10596 -1 -1 1 0.20 -1 -1 35392 -1 -1 79 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70596 22 19 1688 1231 1 993 126 16 16 256 mult_36 auto 31.0 MiB 1.59 5905 19656 4339 11653 3664 68.9 MiB 0.80 0.01 9.37523 -468.383 -9.37523 9.37523 0.69 0.00376798 0.00348407 0.241625 0.219853 48 11452 47 6.54114e+06 3.48941e+06 755748. 2952.14 4.09 1.10894 1.00304 25088 180500 -1 8957 23 5555 6342 718459 187069 8.83268 8.83268 -558.947 -8.83268 0 0 916467. 3579.95 0.46 0.57 0.21 -1 -1 0.46 0.219612 0.203279 573 380 342 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_20.v common 30.94 vpr 69.19 MiB 0.12 10612 -1 -1 1 0.24 -1 -1 35504 -1 -1 81 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70852 22 19 1762 1288 1 1031 128 16 16 256 mult_36 auto 31.0 MiB 1.77 6159 20092 4300 10622 5170 69.2 MiB 0.79 0.01 9.0553 -504.795 -9.0553 9.0553 0.78 0.00378076 0.00344765 0.24808 0.225877 48 12002 45 6.54114e+06 3.51759e+06 755748. 2952.14 23.26 2.38778 2.1226 25088 180500 -1 9426 26 8013 9013 1087933 263252 8.51952 8.51952 -758.559 -8.51952 0 0 916467. 3579.95 0.28 0.47 0.18 -1 -1 0.28 0.205109 0.184774 601 399 361 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_21.v common 12.34 vpr 69.63 MiB 0.13 11004 -1 -1 1 0.23 -1 -1 35944 -1 -1 85 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 71304 22 19 1859 1351 1 1092 132 16 16 256 mult_36 auto 31.6 MiB 2.10 6816 20232 4108 12738 3386 69.6 MiB 0.96 0.02 9.21366 -510.538 -9.21366 9.21366 0.74 0.00400939 0.00368743 0.251655 0.229113 54 12156 29 6.54114e+06 3.57397e+06 829453. 3240.05 5.14 1.22589 1.10453 26108 202796 -1 9502 23 6442 7334 699332 184639 8.23497 8.23497 -611.204 -8.23497 0 0 1.02522e+06 4004.78 0.31 0.41 0.20 -1 -1 0.31 0.20559 0.187645 632 418 380 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_22.v common 13.48 vpr 70.16 MiB 0.14 11080 -1 -1 1 0.24 -1 -1 35916 -1 -1 90 22 0 6 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 71848 22 19 1933 1408 1 1130 137 16 16 256 mult_36 auto 32.2 MiB 1.95 6953 18846 3874 11726 3246 70.2 MiB 0.80 0.01 9.25639 -524.337 -9.25639 9.25639 0.87 0.00402615 0.00365713 0.222939 0.202276 54 12678 28 6.54114e+06 3.64444e+06 829453. 3240.05 5.95 1.24225 1.11428 26108 202796 -1 10018 23 7514 8545 880687 221653 8.27422 8.27422 -608.588 -8.27422 0 0 1.02522e+06 4004.78 0.30 0.42 0.19 -1 -1 0.30 0.201968 0.182501 661 437 399 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_23.v common 21.02 vpr 70.37 MiB 0.11 11432 -1 -1 1 0.30 -1 -1 36192 -1 -1 94 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72060 22 19 2031 1472 1 1193 142 18 18 324 mult_36 auto 32.2 MiB 1.97 7735 24562 5200 16532 2830 70.4 MiB 1.13 0.02 9.45758 -535.83 -9.45758 9.45758 1.31 0.00411781 0.00373487 0.296329 0.267762 50 14484 31 8.06603e+06 4.09681e+06 1.03391e+06 3191.07 11.53 2.07228 1.87141 32744 246704 -1 11690 23 7230 8414 1076073 253853 8.46493 8.46493 -695.821 -8.46493 0 0 1.23838e+06 3822.15 0.60 0.53 0.27 -1 -1 0.60 0.237209 0.218307 693 456 418 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_24.v common 16.51 vpr 70.91 MiB 0.12 11576 -1 -1 1 0.32 -1 -1 36244 -1 -1 97 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72612 22 19 2105 1529 1 1230 145 18 18 324 mult_36 auto 32.9 MiB 2.22 7180 26745 5794 17769 3182 70.9 MiB 1.43 0.02 9.12646 -589.17 -9.12646 9.12646 0.93 0.00441278 0.00398527 0.356904 0.323208 46 15589 39 8.06603e+06 4.13909e+06 948677. 2928.01 7.50 1.42368 1.27824 32096 231720 -1 11052 22 7422 8604 958262 236388 8.28608 8.28608 -757.327 -8.28608 0 0 1.16833e+06 3605.96 0.60 0.52 0.27 -1 -1 0.60 0.218409 0.198864 721 475 437 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_25.v common 40.07 vpr 71.57 MiB 0.12 11976 -1 -1 1 0.31 -1 -1 36476 -1 -1 101 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73288 22 19 2201 1591 1 1290 149 18 18 324 mult_36 auto 33.7 MiB 2.18 8299 21425 4201 14721 2503 71.6 MiB 1.02 0.02 9.40561 -605.89 -9.40561 9.40561 0.91 0.00464376 0.00419042 0.274185 0.249031 50 15707 32 8.06603e+06 4.19547e+06 1.03391e+06 3191.07 31.67 2.57831 2.30491 32744 246704 -1 12541 26 8887 10206 1316343 305538 8.90953 8.90953 -711.282 -8.90953 0 0 1.23838e+06 3822.15 0.39 0.59 0.24 -1 -1 0.39 0.256657 0.231514 751 494 456 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_26.v common 37.07 vpr 71.46 MiB 0.15 12104 -1 -1 1 0.30 -1 -1 37396 -1 -1 105 22 0 7 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73180 22 19 2275 1648 1 1330 153 18 18 324 mult_36 auto 33.6 MiB 2.61 8365 28783 6260 16543 5980 71.5 MiB 1.28 0.02 9.59957 -610.286 -9.59957 9.59957 1.15 0.0048078 0.00437708 0.348784 0.315715 48 16675 42 8.06603e+06 4.25184e+06 991730. 3060.90 27.47 3.00993 2.68727 32420 239176 -1 12949 23 9827 11166 1462580 349293 8.88453 8.88453 -788.036 -8.88453 0 0 1.20291e+06 3712.69 0.48 0.57 0.32 -1 -1 0.48 0.232193 0.209435 779 513 475 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_27.v common 16.44 vpr 71.95 MiB 0.15 12152 -1 -1 1 0.37 -1 -1 36616 -1 -1 111 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73672 22 19 2385 1724 1 1404 160 18 18 324 mult_36 auto 34.1 MiB 2.22 9241 28370 5807 18956 3607 71.9 MiB 1.55 0.02 9.27331 -683.845 -9.27331 9.27331 0.91 0.00408393 0.0036888 0.384937 0.351323 54 17136 39 8.06603e+06 4.73242e+06 1.08842e+06 3359.33 7.15 1.73344 1.56237 33712 268580 -1 13437 24 10877 12354 1477729 344669 8.64193 8.64193 -919.251 -8.64193 0 0 1.34436e+06 4149.26 0.42 0.62 0.25 -1 -1 0.42 0.259171 0.233586 817 532 494 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_28.v common 22.72 vpr 72.35 MiB 0.15 12312 -1 -1 1 0.32 -1 -1 36720 -1 -1 114 22 0 8 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74084 22 19 2459 1781 1 1443 163 18 18 324 mult_36 auto 34.4 MiB 2.69 9764 21523 4098 13503 3922 72.3 MiB 1.04 0.03 9.32934 -687.124 -9.32934 9.32934 0.92 0.00493721 0.00450656 0.262727 0.238905 56 16775 37 8.06603e+06 4.7747e+06 1.11497e+06 3441.27 13.11 2.43264 2.18285 34036 275796 -1 13980 23 9350 10755 1348955 317758 8.77023 8.77023 -898.217 -8.77023 0 0 1.37338e+06 4238.83 0.62 0.66 0.28 -1 -1 0.62 0.296604 0.271386 845 551 513 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_29.v common 60.84 vpr 73.03 MiB 0.17 12616 -1 -1 1 0.33 -1 -1 37088 -1 -1 118 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74780 22 19 2565 1853 1 1511 168 22 22 484 mult_36 auto 35.1 MiB 2.19 9948 31652 6879 21519 3254 73.0 MiB 1.58 0.02 9.31996 -692.815 -9.31996 9.31996 2.19 0.00538114 0.00491033 0.392336 0.354734 50 19158 34 1.31202e+07 5.22708e+06 1.59181e+06 3288.87 48.99 3.01719 2.68693 49674 382800 -1 14996 23 11360 12976 1660239 391147 8.81467 8.81467 -918.954 -8.81467 0 0 1.90554e+06 3937.06 0.64 0.66 0.36 -1 -1 0.64 0.265376 0.239664 881 570 532 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_30.v common 19.67 vpr 73.29 MiB 0.16 12656 -1 -1 1 0.33 -1 -1 37324 -1 -1 123 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75052 22 19 2639 1910 1 1548 173 22 22 484 mult_36 auto 35.5 MiB 2.36 9542 32881 6991 22506 3384 73.3 MiB 1.59 0.02 9.26617 -728.584 -9.26617 9.26617 2.06 0.00538548 0.00491086 0.393646 0.357378 48 19580 38 1.31202e+07 5.29755e+06 1.52614e+06 3153.19 7.96 1.70338 1.52886 49190 371334 -1 15243 26 13014 14790 1866040 442392 8.73812 8.73812 -1114.85 -8.73812 0 0 1.85176e+06 3825.95 0.62 0.77 0.36 -1 -1 0.62 0.3114 0.280231 910 589 551 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_31.v common 59.15 vpr 73.71 MiB 0.20 12928 -1 -1 1 0.34 -1 -1 37348 -1 -1 128 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75484 22 19 2744 1981 1 1618 178 22 22 484 mult_36 auto 35.9 MiB 2.21 10316 35178 7031 23952 4195 73.7 MiB 1.78 0.03 9.59887 -815.227 -9.59887 9.59887 1.57 0.00566921 0.00517657 0.426446 0.383836 50 19789 33 1.31202e+07 5.36802e+06 1.59181e+06 3288.87 47.81 3.31192 2.92167 49674 382800 -1 15490 27 12044 14151 1818410 427333 9.02988 9.02988 -1082.14 -9.02988 0 0 1.90554e+06 3937.06 0.63 0.78 0.35 -1 -1 0.63 0.328461 0.296876 946 608 570 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_32.v common 28.83 vpr 73.81 MiB 0.16 12952 -1 -1 1 0.36 -1 -1 36824 -1 -1 131 22 0 9 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75580 22 19 2818 2038 1 1656 181 22 22 484 mult_36 auto 36.1 MiB 2.65 10985 33396 7014 22006 4376 73.8 MiB 1.73 0.03 9.18872 -729.727 -9.18872 9.18872 1.57 0.00640126 0.00572527 0.473781 0.43195 52 21147 46 1.31202e+07 5.4103e+06 1.63434e+06 3376.74 16.74 2.83092 2.53569 50638 406276 -1 15805 26 12963 14588 1925572 461503 8.66113 8.66113 -888.638 -8.66113 0 0 2.01763e+06 4168.66 0.95 0.94 0.42 -1 -1 0.95 0.375103 0.322451 974 627 589 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_33.v common 21.76 vpr 74.73 MiB 0.15 13688 -1 -1 1 0.39 -1 -1 37564 -1 -1 137 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76524 22 19 2923 2109 1 1725 188 22 22 484 mult_36 auto 37.2 MiB 2.37 11534 41076 8921 25709 6446 74.7 MiB 1.89 0.03 10.2924 -835.387 -10.2924 10.2924 1.56 0.00583391 0.00536751 0.475426 0.429119 54 21231 38 1.31202e+07 5.89087e+06 1.67518e+06 3461.11 9.97 2.16373 1.93762 51122 416746 -1 16854 24 11734 13578 1615248 384384 9.39377 9.39377 -1134.87 -9.39377 0 0 2.06816e+06 4273.05 0.68 0.71 0.48 -1 -1 0.68 0.311168 0.281181 1009 646 608 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_34.v common 35.58 vpr 74.89 MiB 0.16 13808 -1 -1 1 0.39 -1 -1 37800 -1 -1 140 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76684 22 19 2997 2166 1 1764 191 22 22 484 mult_36 auto 37.1 MiB 3.56 12266 39170 8245 26892 4033 74.9 MiB 1.92 0.03 9.97834 -770.817 -9.97834 9.97834 1.44 0.00608846 0.00552813 0.463995 0.418833 56 21922 39 1.31202e+07 5.93316e+06 1.71605e+06 3545.56 22.31 3.49199 3.12737 51606 428054 -1 18215 24 13841 15896 2255928 507616 9.94227 9.94227 -1246.47 -9.94227 0 0 2.11301e+06 4365.72 1.14 0.84 0.48 -1 -1 1.14 0.325407 0.294176 1037 665 627 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_35.v common 23.54 vpr 75.37 MiB 0.21 14012 -1 -1 1 0.41 -1 -1 37748 -1 -1 145 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77176 22 19 3101 2236 1 1830 196 22 22 484 mult_36 auto 37.6 MiB 3.16 11422 38319 7965 26269 4085 75.4 MiB 1.84 0.03 9.90229 -825.692 -9.90229 9.90229 1.53 0.00632115 0.00574135 0.456883 0.41249 54 21987 30 1.31202e+07 6.00363e+06 1.67518e+06 3461.11 10.35 2.15176 1.93309 51122 416746 -1 17198 23 12943 14962 1754919 421016 9.26291 9.26291 -1135.22 -9.26291 0 0 2.06816e+06 4273.05 0.99 0.75 0.55 -1 -1 0.99 0.319956 0.289217 1072 684 646 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_36.v common 24.77 vpr 75.95 MiB 0.17 14152 -1 -1 1 0.58 -1 -1 38000 -1 -1 148 22 0 10 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77768 22 19 3175 2293 1 1870 199 22 22 484 mult_36 auto 38.2 MiB 3.69 11959 40219 8453 27913 3853 75.9 MiB 1.82 0.03 10.2141 -827.99 -10.2141 10.2141 1.52 0.00649602 0.0058904 0.476914 0.430441 54 22244 37 1.31202e+07 6.04591e+06 1.67518e+06 3461.11 11.04 2.48964 2.22205 51122 416746 -1 17420 23 11578 13322 1482709 359973 9.58852 9.58852 -1256.36 -9.58852 0 0 2.06816e+06 4273.05 0.96 0.82 0.41 -1 -1 0.96 0.3614 0.331685 1100 703 665 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_37.v common 86.82 vpr 76.46 MiB 0.22 14536 -1 -1 1 0.45 -1 -1 37556 -1 -1 152 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78300 22 19 3280 2364 1 1940 204 24 24 576 mult_36 auto 38.8 MiB 4.17 12413 41604 8759 29253 3592 76.5 MiB 1.99 0.03 10.1414 -859.737 -10.1414 10.1414 2.08 0.00669268 0.0060799 0.495663 0.447289 50 25735 44 1.58331e+07 6.49829e+06 1.88759e+06 3277.06 71.27 4.05155 3.60083 58706 454005 -1 18389 25 12459 14636 1793419 425436 9.27766 9.27766 -1319.74 -9.27766 0 0 2.26035e+06 3924.22 0.83 0.82 0.47 -1 -1 0.83 0.364868 0.329323 1135 722 684 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_38.v common 25.63 vpr 77.21 MiB 0.19 14444 -1 -1 1 0.54 -1 -1 37912 -1 -1 157 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79060 22 19 3354 2421 1 1977 209 24 24 576 mult_36 auto 39.6 MiB 4.65 12700 43609 9545 30570 3494 77.2 MiB 2.15 0.03 10.0282 -917.593 -10.0282 10.0282 2.13 0.00672846 0.00609621 0.525052 0.471752 56 21119 26 1.58331e+07 6.56876e+06 2.03561e+06 3534.04 9.55 2.14807 1.9198 61006 507707 -1 18139 27 11695 13188 1690980 410021 9.18442 9.18442 -1340.55 -9.18442 0 0 2.50747e+06 4353.24 0.88 0.80 0.48 -1 -1 0.88 0.379935 0.341536 1164 741 703 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_39.v common 26.50 vpr 77.07 MiB 0.19 14716 -1 -1 1 0.46 -1 -1 38248 -1 -1 161 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78920 22 19 3457 2490 1 2042 213 24 24 576 mult_36 auto 39.4 MiB 3.83 12894 46568 10474 28732 7362 77.1 MiB 2.30 0.03 10.1583 -949.474 -10.1583 10.1583 2.09 0.00725246 0.00670114 0.560989 0.503584 54 24143 46 1.58331e+07 6.62513e+06 1.98675e+06 3449.22 11.20 2.51381 2.24536 60430 494267 -1 18677 25 12663 14801 1632827 390484 9.97257 9.97257 -1318.13 -9.97257 0 0 2.45377e+06 4260.01 0.83 0.82 0.45 -1 -1 0.83 0.387062 0.35015 1198 760 722 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_40.v common 28.14 vpr 77.61 MiB 0.23 14904 -1 -1 1 0.49 -1 -1 38736 -1 -1 164 22 0 11 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79476 22 19 3531 2547 1 2082 216 24 24 576 mult_36 auto 39.9 MiB 4.61 13807 43565 9165 30733 3667 77.6 MiB 2.32 0.03 9.99186 -925.764 -9.99186 9.99186 2.24 0.00760576 0.00665866 0.56218 0.501754 54 25418 49 1.58331e+07 6.66742e+06 1.98675e+06 3449.22 11.88 2.53592 2.24936 60430 494267 -1 20060 24 14263 16167 1965856 473886 9.29411 9.29411 -1401.97 -9.29411 0 0 2.45377e+06 4260.01 0.83 0.87 0.45 -1 -1 0.83 0.374714 0.337669 1226 779 741 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_41.v common 29.89 vpr 77.95 MiB 0.25 15380 -1 -1 1 0.53 -1 -1 38048 -1 -1 170 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79824 22 19 3634 2616 1 2147 223 24 24 576 mult_36 auto 40.3 MiB 4.19 14145 47543 9891 33901 3751 78.0 MiB 2.44 0.03 9.91159 -1035.36 -9.91159 9.91159 2.08 0.0072808 0.00669045 0.56067 0.505246 54 26939 44 1.58331e+07 7.14798e+06 1.98675e+06 3449.22 14.13 3.06497 2.74367 60430 494267 -1 20614 24 15058 17233 2074607 480593 9.79086 9.79086 -1391.86 -9.79086 0 0 2.45377e+06 4260.01 0.86 0.88 0.44 -1 -1 0.86 0.37967 0.342553 1261 798 760 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_42.v common 42.86 vpr 83.43 MiB 0.24 15348 -1 -1 1 0.55 -1 -1 38312 -1 -1 173 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 85428 22 19 3708 2673 1 2186 226 24 24 576 mult_36 auto 40.8 MiB 4.89 16104 42194 8322 28032 5840 78.4 MiB 1.89 0.03 10.4136 -1012.01 -10.4136 10.4136 1.81 0.00779738 0.00713442 0.429003 0.387594 62 27815 40 1.58331e+07 7.19026e+06 2.19658e+06 3813.51 25.82 3.6689 3.27256 63306 560109 -1 21638 25 14219 16394 2291368 490734 9.41877 9.41877 -1577.24 -9.41877 0 0 2.72095e+06 4723.87 1.44 1.10 0.55 -1 -1 1.44 0.479689 0.438416 1289 817 779 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_43.v common 35.24 vpr 79.09 MiB 0.19 15624 -1 -1 1 0.50 -1 -1 38924 -1 -1 178 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 80992 22 19 3810 2741 1 2253 231 24 24 576 mult_36 auto 41.4 MiB 4.17 15296 41295 8139 29365 3791 79.1 MiB 2.18 0.04 10.16 -1063.97 -10.16 10.16 1.86 0.00787894 0.00716212 0.511222 0.459688 56 28472 50 1.58331e+07 7.26073e+06 2.03561e+06 3534.04 19.73 3.40716 3.03022 61006 507707 -1 22090 23 15206 17473 2444394 558097 9.42572 9.42572 -1494.13 -9.42572 0 0 2.50747e+06 4353.24 0.86 0.98 0.46 -1 -1 0.86 0.408745 0.369816 1323 836 798 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_44.v common 27.55 vpr 79.29 MiB 0.25 15712 -1 -1 1 0.60 -1 -1 38500 -1 -1 181 22 0 12 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81196 22 19 3884 2798 1 2294 234 24 24 576 mult_36 auto 41.6 MiB 4.70 15489 47034 9365 34232 3437 79.3 MiB 2.32 0.03 10.121 -975.462 -10.121 10.121 1.76 0.00789001 0.00715898 0.556089 0.500276 60 24207 29 1.58331e+07 7.30301e+06 2.13333e+06 3703.69 10.87 2.47086 2.20958 62730 548095 -1 21032 24 12683 14355 1753295 422656 9.00722 9.00722 -1352.2 -9.00722 0 0 2.67122e+06 4637.53 1.36 0.89 0.62 -1 -1 1.36 0.440699 0.402131 1351 855 817 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_45.v common 32.51 vpr 79.47 MiB 0.26 15988 -1 -1 1 0.56 -1 -1 40396 -1 -1 186 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81376 22 19 3989 2869 1 2359 240 24 24 576 mult_36 auto 41.9 MiB 5.32 16340 50155 10505 31575 8075 79.5 MiB 2.30 0.03 10.0722 -985.253 -10.0722 10.0722 2.28 0.00825621 0.00750867 0.591546 0.533471 62 27929 47 1.58331e+07 7.76948e+06 2.19658e+06 3813.51 15.24 3.37737 3.01058 63306 560109 -1 21607 23 12498 14826 1663854 396826 9.12307 9.12307 -1451.12 -9.12307 0 0 2.72095e+06 4723.87 0.92 0.86 0.54 -1 -1 0.92 0.399133 0.360941 1387 874 836 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_46.v common 38.09 vpr 86.33 MiB 0.17 16148 -1 -1 1 0.55 -1 -1 40576 -1 -1 189 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 88400 22 19 4063 2926 1 2398 243 24 24 576 mult_36 auto 42.1 MiB 5.06 16549 53303 11025 37595 4683 79.8 MiB 2.48 0.03 10.5357 -1123.54 -10.5357 10.5357 2.19 0.0082252 0.00745019 0.619482 0.556261 64 25587 38 1.58331e+07 7.81177e+06 2.26035e+06 3924.22 20.38 4.17895 3.72981 64454 586630 -1 22060 23 10577 12608 1472265 347313 9.67737 9.67737 -1524.22 -9.67737 0 0 2.84938e+06 4946.85 1.00 0.74 0.57 -1 -1 1.00 0.395616 0.358087 1414 893 855 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_47.v common 36.56 vpr 86.98 MiB 0.27 16624 -1 -1 1 0.61 -1 -1 40820 -1 -1 194 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 89068 22 19 4167 2996 1 2465 248 24 24 576 mult_36 auto 42.6 MiB 4.68 16473 59376 11937 40248 7191 80.2 MiB 2.80 0.04 10.4408 -1061.77 -10.4408 10.4408 1.75 0.00795436 0.00714584 0.666381 0.601639 60 26903 48 1.58331e+07 7.88224e+06 2.13333e+06 3703.69 20.02 4.13529 3.68926 62730 548095 -1 21754 23 12304 14126 1550289 380177 9.28402 9.28402 -1464.85 -9.28402 0 0 2.67122e+06 4637.53 0.92 0.83 0.49 -1 -1 0.92 0.424062 0.382806 1449 912 874 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_48.v common 37.73 vpr 87.44 MiB 0.23 16644 -1 -1 1 0.62 -1 -1 40928 -1 -1 197 22 0 13 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 89536 22 19 4241 3053 1 2504 251 24 24 576 mult_36 auto 42.9 MiB 5.36 16474 57994 11394 40219 6381 80.4 MiB 2.83 0.04 10.5013 -1047.39 -10.5013 10.5013 1.78 0.00882031 0.00804916 0.663568 0.597136 64 25175 29 1.58331e+07 7.92452e+06 2.26035e+06 3924.22 20.17 4.27809 3.80259 64454 586630 -1 22200 23 12490 14529 1711643 410861 9.39387 9.39387 -1359.3 -9.39387 0 0 2.84938e+06 4946.85 1.01 0.88 0.54 -1 -1 1.01 0.432059 0.389409 1477 931 893 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_49.v common 38.08 vpr 87.54 MiB 0.28 16988 -1 -1 1 0.60 -1 -1 41068 -1 -1 204 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 89636 22 19 4346 3124 1 2572 259 24 24 576 mult_36 auto 43.4 MiB 5.12 17944 60484 12294 40037 8153 80.9 MiB 2.90 0.04 10.2711 -1057.18 -10.2711 10.2711 1.81 0.00819571 0.00740488 0.700145 0.62922 60 28418 34 1.58331e+07 8.41918e+06 2.13333e+06 3703.69 20.51 4.19681 3.7411 62730 548095 -1 23860 21 13375 15404 1783547 434526 9.48426 9.48426 -1463.7 -9.48426 0 0 2.67122e+06 4637.53 0.91 0.87 0.55 -1 -1 0.91 0.41483 0.37537 1512 950 912 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_50.v common 31.99 vpr 81.06 MiB 0.20 17020 -1 -1 1 0.61 -1 -1 40956 -1 -1 206 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83004 22 19 4420 3181 1 2611 261 24 24 576 mult_36 auto 43.7 MiB 5.73 17532 50241 9749 32850 7642 81.1 MiB 2.19 0.03 10.0416 -1157.63 -10.0416 10.0416 1.77 0.00889221 0.00805436 0.571657 0.512315 58 28679 43 1.58331e+07 8.44736e+06 2.08734e+06 3623.85 14.53 3.09452 2.76864 62154 534210 -1 23883 25 16571 18768 2358557 558388 9.36196 9.36196 -1664.67 -9.36196 0 0 2.61600e+06 4541.67 0.90 1.07 0.49 -1 -1 0.90 0.483431 0.435221 1541 969 931 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_51.v common 29.21 vpr 81.21 MiB 0.30 17376 -1 -1 1 0.67 -1 -1 41112 -1 -1 211 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83164 22 19 4524 3251 1 2680 266 24 24 576 mult_36 auto 43.6 MiB 5.35 18368 60116 11930 38131 10055 81.2 MiB 2.67 0.04 10.5845 -1178.84 -10.5845 10.5845 1.71 0.00908059 0.00822022 0.688751 0.619631 66 27293 26 1.58331e+07 8.51783e+06 2.33135e+06 4047.49 11.30 2.87226 2.57059 65030 601923 -1 23810 20 12167 13847 1609632 377723 9.57737 9.57737 -1575.72 -9.57737 0 0 2.91907e+06 5067.82 1.27 0.82 0.68 -1 -1 1.27 0.415059 0.376079 1576 988 950 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_52.v common 38.52 vpr 81.42 MiB 0.31 17568 -1 -1 1 0.64 -1 -1 39420 -1 -1 215 22 0 14 success v8.0.0-10677-gf2af7ebf0 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-11T11:34:37 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 83376 22 19 4598 3308 1 2717 270 24 24 576 mult_36 auto 43.8 MiB 5.90 18189 61310 12677 40484 8149 81.4 MiB 2.85 0.04 10.1072 -1112.57 -10.1072 10.1072 1.72 0.00933908 0.00844848 0.69867 0.62706 58 33606 48 1.58331e+07 8.57421e+06 2.08734e+06 3623.85 20.07 3.8881 3.46496 62154 534210 -1 25197 24 15147 17510 2264940 516528 9.45177 9.45177 -1662.09 -9.45177 0 0 2.61600e+06 4541.67 0.91 1.06 0.49 -1 -1 0.91 0.488159 0.440255 1605 1007 969 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_14.v common 8.50 vpr 71.57 MiB 0.11 10472 -1 -1 1 0.27 -1 -1 35440 -1 -1 65 22 0 4 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73284 22 19 1974 1653 1 1013 110 16 16 256 mult_36 auto 34.0 MiB 0.69 5272 15101 3393 9968 1740 71.6 MiB 0.37 0.01 4.0831 -1115.98 -4.0831 4.0831 0.58 0.0034759 0.00313328 0.217026 0.195977 64 9828 23 6.59459e+06 2.52492e+06 943753. 3686.54 3.60 0.988199 0.864659 27892 240595 -1 8477 16 3926 4549 486168 112677 4.27196 4.27196 -1212.54 -4.27196 0 0 1.19033e+06 4649.74 0.30 0.24 0.21 -1 -1 0.30 0.136181 0.121699 481 708 247 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_15.v common 9.16 vpr 72.44 MiB 0.06 10800 -1 -1 1 0.24 -1 -1 36992 -1 -1 72 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74180 22 19 2144 1789 1 1110 118 16 16 256 mult_36 auto 34.8 MiB 0.98 6136 19192 4400 11965 2827 72.4 MiB 0.47 0.01 4.07762 -1246.61 -4.07762 4.07762 0.53 0.00377881 0.00340845 0.27241 0.245631 68 11309 29 6.59459e+06 3.02225e+06 1.00038e+06 3907.74 3.77 1.15784 1.01647 28404 252462 -1 9516 17 4344 4959 564949 131023 4.27196 4.27196 -1329.64 -4.27196 0 0 1.24648e+06 4869.04 0.30 0.28 0.24 -1 -1 0.30 0.159052 0.141737 521 769 266 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_16.v common 10.44 vpr 72.95 MiB 0.08 10940 -1 -1 1 0.23 -1 -1 36856 -1 -1 74 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74700 22 19 2218 1846 1 1154 120 16 16 256 mult_36 auto 35.3 MiB 0.88 6159 16935 3952 11063 1920 72.9 MiB 0.44 0.01 4.14666 -1298.68 -4.14666 4.14666 0.59 0.00394912 0.00355481 0.245771 0.221636 64 13073 22 6.59459e+06 3.0512e+06 943753. 3686.54 5.23 1.15014 1.00888 27892 240595 -1 10191 20 4784 5574 648344 144961 4.39726 4.39726 -1411.91 -4.39726 0 0 1.19033e+06 4649.74 0.29 0.30 0.21 -1 -1 0.29 0.170515 0.151369 540 788 285 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_17.v common 28.01 vpr 74.32 MiB 0.10 11684 -1 -1 1 0.28 -1 -1 36576 -1 -1 83 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76104 22 19 2536 2130 1 1256 129 16 16 256 mult_36 auto 36.9 MiB 1.18 6865 15729 3064 11003 1662 74.3 MiB 0.42 0.01 4.27196 -1448.46 -4.27196 4.27196 0.58 0.00465454 0.00412377 0.234476 0.211013 62 14881 44 6.59459e+06 3.18149e+06 916467. 3579.95 22.37 2.23199 1.9324 27384 229598 -1 10624 18 4845 5517 591644 141708 4.27196 4.27196 -1513.48 -4.27196 0 0 1.13630e+06 4438.68 0.26 0.30 0.19 -1 -1 0.26 0.179178 0.159375 617 924 304 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_18.v common 9.57 vpr 74.83 MiB 0.10 11884 -1 -1 1 0.31 -1 -1 37200 -1 -1 86 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76624 22 19 2610 2187 1 1305 132 16 16 256 mult_36 auto 37.5 MiB 0.99 6869 16212 3205 10695 2312 74.8 MiB 0.42 0.01 4.03926 -1468.2 -4.03926 4.03926 0.58 0.00449043 0.00402742 0.234775 0.2109 70 12353 27 6.59459e+06 3.22491e+06 1.02522e+06 4004.78 3.93 1.22954 1.06835 28912 262511 -1 10716 20 5011 5723 704649 159235 4.27196 4.27196 -1543.19 -4.27196 0 0 1.29210e+06 5047.26 0.31 0.34 0.25 -1 -1 0.31 0.199818 0.1773 636 943 323 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_19.v common 10.50 vpr 75.61 MiB 0.11 12332 -1 -1 1 0.23 -1 -1 36868 -1 -1 91 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77428 22 19 2778 2321 1 1401 138 16 16 256 mult_36 auto 38.4 MiB 0.98 7751 20074 4172 13462 2440 75.6 MiB 0.50 0.01 4.20832 -1614.09 -4.20832 4.20832 0.59 0.00455987 0.00407148 0.282142 0.252858 70 14091 32 6.59459e+06 3.69329e+06 1.02522e+06 4004.78 4.69 1.46178 1.27549 28912 262511 -1 11597 19 5221 6080 670296 155538 4.27196 4.27196 -1747.26 -4.27196 0 0 1.29210e+06 5047.26 0.31 0.34 0.25 -1 -1 0.31 0.20489 0.182093 676 1002 342 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_20.v common 11.55 vpr 76.22 MiB 0.14 12328 -1 -1 1 0.36 -1 -1 36916 -1 -1 93 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78052 22 19 2852 2378 1 1441 140 16 16 256 mult_36 auto 39.0 MiB 1.20 7701 24098 5487 15382 3229 76.2 MiB 0.69 0.01 4.14666 -1615.69 -4.14666 4.14666 0.59 0.00482598 0.00432145 0.385718 0.345251 68 15216 40 6.59459e+06 3.72224e+06 1.00038e+06 3907.74 5.20 1.61757 1.41891 28404 252462 -1 12039 17 5419 6476 661435 153008 4.27196 4.27196 -1732.55 -4.27196 0 0 1.24648e+06 4869.04 0.32 0.34 0.23 -1 -1 0.32 0.201544 0.180315 695 1021 361 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_21.v common 13.54 vpr 77.15 MiB 0.15 12796 -1 -1 1 0.34 -1 -1 37844 -1 -1 97 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79000 22 19 3057 2549 1 1544 144 16 16 256 mult_36 auto 40.0 MiB 1.31 9367 24272 5008 16124 3140 77.1 MiB 0.68 0.01 4.39726 -1835.45 -4.39726 4.39726 0.58 0.00532694 0.00478054 0.376655 0.338089 74 16942 47 6.59459e+06 3.78015e+06 1.07073e+06 4182.55 6.89 2.11826 1.85409 29424 273870 -1 13957 14 5924 6833 901877 190814 4.52256 4.52256 -1968.88 -4.52256 0 0 1.33358e+06 5209.30 0.32 0.36 0.25 -1 -1 0.32 0.186047 0.16608 742 1099 380 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_22.v common 12.36 vpr 77.33 MiB 0.11 13000 -1 -1 1 0.38 -1 -1 37952 -1 -1 100 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79184 22 19 3131 2606 1 1587 147 16 16 256 mult_36 auto 40.3 MiB 1.11 8900 25689 5397 16690 3602 77.3 MiB 0.70 0.01 4.27196 -1832.45 -4.27196 4.27196 0.56 0.00564151 0.00505803 0.391706 0.351179 74 16546 36 6.59459e+06 3.82357e+06 1.07073e+06 4182.55 5.80 1.71816 1.50682 29424 273870 -1 13593 21 6218 7124 883830 200504 4.27196 4.27196 -1953.42 -4.27196 0 0 1.33358e+06 5209.30 0.32 0.45 0.24 -1 -1 0.32 0.256768 0.228242 762 1118 399 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_23.v common 14.10 vpr 78.45 MiB 0.13 13308 -1 -1 1 0.37 -1 -1 38060 -1 -1 107 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80332 22 19 3301 2742 1 1685 155 18 18 324 mult_36 auto 41.3 MiB 1.00 9550 28859 6368 19463 3028 78.4 MiB 0.57 0.01 4.27196 -1973.15 -4.27196 4.27196 0.66 0.00634227 0.00573287 0.287066 0.258115 68 18693 46 8.13932e+06 4.3209e+06 1.31159e+06 4048.11 7.26 1.84939 1.62041 36620 334356 -1 14822 18 6572 7617 914655 195234 4.39726 4.39726 -2060.9 -4.39726 0 0 1.63345e+06 5041.52 0.42 0.44 0.31 -1 -1 0.42 0.239853 0.214582 802 1179 418 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_24.v common 12.49 vpr 78.90 MiB 0.14 13444 -1 -1 1 0.29 -1 -1 38112 -1 -1 109 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80796 22 19 3375 2799 1 1732 157 18 18 324 mult_36 auto 41.8 MiB 0.75 10056 25960 5726 17532 2702 78.9 MiB 0.71 0.01 4.27196 -2004.23 -4.27196 4.27196 0.77 0.00625433 0.00566837 0.392726 0.352573 76 17719 30 8.13932e+06 4.34985e+06 1.43297e+06 4422.75 5.70 1.77721 1.56248 38232 369828 -1 14833 17 6600 7437 899992 195667 4.39726 4.39726 -2169.68 -4.39726 0 0 1.77541e+06 5479.65 0.46 0.43 0.33 -1 -1 0.46 0.242617 0.21773 821 1198 437 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_25.v common 13.23 vpr 79.76 MiB 0.14 14020 -1 -1 1 0.37 -1 -1 38096 -1 -1 116 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81676 22 19 3615 3005 1 1836 164 18 18 324 mult_36 auto 42.7 MiB 1.03 10729 33764 7877 22457 3430 79.8 MiB 0.90 0.01 4.39726 -2180.78 -4.39726 4.39726 0.78 0.00623701 0.00557538 0.503163 0.449551 76 19342 24 8.13932e+06 4.45118e+06 1.43297e+06 4422.75 5.58 1.93758 1.70715 38232 369828 -1 16315 17 6932 7862 1003575 222232 4.39726 4.39726 -2258.25 -4.39726 0 0 1.77541e+06 5479.65 0.46 0.52 0.33 -1 -1 0.46 0.27578 0.248193 877 1293 456 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_26.v common 15.22 vpr 80.33 MiB 0.15 14088 -1 -1 1 0.44 -1 -1 38552 -1 -1 118 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82260 22 19 3689 3062 1 1874 166 18 18 324 mult_36 auto 43.3 MiB 1.16 10442 30262 6705 20097 3460 80.3 MiB 0.77 0.01 4.27196 -2184.83 -4.27196 4.27196 0.79 0.00652778 0.00585374 0.404966 0.361867 72 20476 50 8.13932e+06 4.48013e+06 1.37338e+06 4238.83 7.42 2.18124 1.91119 37588 355536 -1 16153 20 7464 8416 998033 217072 4.14666 4.14666 -2311.78 -4.14666 0 0 1.72054e+06 5310.31 0.47 0.50 0.39 -1 -1 0.47 0.292601 0.260921 896 1312 475 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_27.v common 14.26 vpr 81.57 MiB 0.21 14520 -1 -1 1 0.45 -1 -1 38396 -1 -1 126 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83528 22 19 3871 3210 1 1982 175 18 18 324 mult_36 auto 44.4 MiB 1.24 11174 29515 6552 19982 2981 81.6 MiB 0.80 0.01 4.27196 -2274.04 -4.27196 4.27196 0.78 0.00630671 0.00561642 0.439461 0.393044 68 21260 31 8.13932e+06 4.99193e+06 1.31159e+06 4048.11 6.40 2.09377 1.83035 36620 334356 -1 17367 17 7795 9201 990857 222794 4.39726 4.39726 -2515.29 -4.39726 0 0 1.63345e+06 5041.52 0.42 0.49 0.30 -1 -1 0.42 0.282366 0.253531 944 1385 494 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_28.v common 13.93 vpr 81.64 MiB 0.14 14688 -1 -1 1 0.47 -1 -1 38576 -1 -1 128 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83604 22 19 3945 3267 1 2025 177 18 18 324 mult_36 auto 44.7 MiB 1.09 11734 34897 7640 23359 3898 81.6 MiB 0.90 0.01 4.27196 -2285.03 -4.27196 4.27196 0.77 0.00668871 0.00599553 0.483753 0.431257 72 22190 34 8.13932e+06 5.02088e+06 1.37338e+06 4238.83 5.98 2.12639 1.84804 37588 355536 -1 17870 17 7943 9223 1126928 247605 4.39726 4.39726 -2508.33 -4.39726 0 0 1.72054e+06 5310.31 0.45 0.56 0.30 -1 -1 0.45 0.304202 0.272596 962 1404 513 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_29.v common 18.58 vpr 82.79 MiB 0.19 14976 -1 -1 1 0.49 -1 -1 39616 -1 -1 135 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84780 22 19 4159 3447 1 2141 185 22 22 484 mult_36 auto 45.8 MiB 1.44 13174 35953 8427 24187 3339 82.8 MiB 1.04 0.02 4.22237 -2488.49 -4.22237 4.22237 1.18 0.00856951 0.00780558 0.564857 0.507552 72 25377 43 1.32347e+07 5.5182e+06 2.11301e+06 4365.72 8.73 2.57868 2.27583 56918 551676 -1 20346 15 8444 9848 1257155 262005 4.39726 4.39726 -2750.66 -4.39726 0 0 2.64603e+06 5467.00 0.75 0.46 0.50 -1 -1 0.75 0.2482 0.223951 1015 1491 532 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_30.v common 18.97 vpr 84.25 MiB 0.19 15232 -1 -1 1 0.52 -1 -1 40872 -1 -1 137 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86276 22 19 4233 3504 1 2181 187 22 22 484 mult_36 auto 46.4 MiB 1.32 13110 38635 8392 26373 3870 84.3 MiB 1.00 0.01 4.08302 -2563.57 -4.08302 4.08302 1.21 0.00716477 0.00630509 0.530592 0.472881 68 25874 37 1.32347e+07 5.54715e+06 2.01763e+06 4168.66 9.32 2.41307 2.11127 55470 518816 -1 20145 22 8858 10316 1212837 260181 4.14666 4.14666 -2787.95 -4.14666 0 0 2.51205e+06 5190.18 0.65 0.59 0.44 -1 -1 0.65 0.338688 0.299762 1034 1510 551 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_31.v common 18.06 vpr 85.23 MiB 0.23 15608 -1 -1 1 0.54 -1 -1 40796 -1 -1 143 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87276 22 19 4410 3647 1 2284 193 22 22 484 mult_36 auto 47.4 MiB 1.13 14030 46981 10944 31495 4542 85.2 MiB 1.28 0.02 4.39726 -2691.53 -4.39726 4.39726 1.26 0.00865791 0.00769648 0.685382 0.611844 76 25587 29 1.32347e+07 5.63401e+06 2.20457e+06 4554.90 8.03 2.41776 2.11977 57882 574062 -1 21637 17 8701 9904 1360390 269571 4.64786 4.64786 -2958.16 -4.64786 0 0 2.73077e+06 5642.09 0.76 0.63 0.37 -1 -1 0.76 0.339392 0.307222 1077 1578 570 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_32.v common 21.69 vpr 84.51 MiB 0.21 15728 -1 -1 1 0.55 -1 -1 40596 -1 -1 145 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86536 22 19 4484 3704 1 2331 195 22 22 484 mult_36 auto 47.4 MiB 1.32 14336 39180 9212 26344 3624 84.5 MiB 1.07 0.02 4.27196 -2750.64 -4.27196 4.27196 1.30 0.00779802 0.00686165 0.574051 0.513729 74 27846 43 1.32347e+07 5.66296e+06 2.15943e+06 4461.62 11.13 2.7468 2.41532 57402 562966 -1 21950 17 9362 10872 1422997 286951 4.52256 4.52256 -3005.56 -4.52256 0 0 2.68771e+06 5553.12 0.74 0.66 0.53 -1 -1 0.74 0.333597 0.299696 1096 1597 589 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_33.v common 22.52 vpr 86.98 MiB 0.26 16636 -1 -1 1 0.59 -1 -1 41576 -1 -1 157 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89064 22 19 4843 4029 1 2441 208 22 22 484 mult_36 auto 49.7 MiB 1.74 14676 47024 10400 32136 4488 87.0 MiB 1.30 0.02 4.39726 -2845.68 -4.39726 4.39726 1.30 0.00826196 0.00738647 0.697696 0.62331 78 24684 29 1.32347e+07 6.23266e+06 2.25108e+06 4650.99 10.99 3.39692 2.97879 58850 595650 -1 21723 14 8860 10340 1224784 254736 4.39726 4.39726 -3004.01 -4.39726 0 0 2.82299e+06 5832.63 0.74 0.56 0.53 -1 -1 0.74 0.31281 0.283115 1185 1756 608 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_34.v common 23.60 vpr 86.76 MiB 0.29 16752 -1 -1 1 0.62 -1 -1 41480 -1 -1 160 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88844 22 19 4917 4086 1 2486 211 22 22 484 mult_36 auto 50.2 MiB 1.67 14916 46609 10188 31704 4717 86.8 MiB 1.24 0.02 4.27196 -2997.24 -4.27196 4.27196 1.27 0.00858556 0.00770115 0.67088 0.597459 80 25429 32 1.32347e+07 6.27609e+06 2.29262e+06 4736.82 12.34 3.4883 3.04762 59334 607116 -1 22295 17 9208 10622 1372836 273552 4.27196 4.27196 -3123.26 -4.27196 0 0 2.87723e+06 5944.70 0.75 0.61 0.49 -1 -1 0.75 0.336562 0.300767 1205 1775 627 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_35.v common 20.24 vpr 87.50 MiB 0.25 17108 -1 -1 1 0.68 -1 -1 41776 -1 -1 163 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89604 22 19 5093 4228 1 2588 214 22 22 484 mult_36 auto 50.9 MiB 1.67 15536 45583 9917 31556 4110 87.5 MiB 1.27 0.02 4.27196 -3005.45 -4.27196 4.27196 1.31 0.00869664 0.00777674 0.669261 0.594241 76 28352 31 1.32347e+07 6.31951e+06 2.20457e+06 4554.90 9.25 2.8244 2.47362 57882 574062 -1 23607 17 9965 11831 1457758 304984 4.39726 4.39726 -3480.44 -4.39726 0 0 2.73077e+06 5642.09 0.74 0.67 0.43 -1 -1 0.74 0.353488 0.321039 1248 1842 646 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_36.v common 22.73 vpr 87.92 MiB 0.25 17160 -1 -1 1 0.67 -1 -1 41868 -1 -1 165 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 90028 22 19 5167 4285 1 2632 216 22 22 484 mult_36 auto 51.4 MiB 1.63 15667 41624 8267 29885 3472 87.9 MiB 1.23 0.02 4.33362 -3152.9 -4.33362 4.33362 1.28 0.00850204 0.00759229 0.636531 0.565249 74 29785 34 1.32347e+07 6.34846e+06 2.15943e+06 4461.62 11.37 3.30946 2.8967 57402 562966 -1 24080 19 10244 12040 1518165 313102 4.52256 4.52256 -3590.71 -4.52256 0 0 2.68771e+06 5553.12 0.75 0.71 0.49 -1 -1 0.75 0.40039 0.357387 1267 1861 665 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_37.v common 23.77 vpr 89.23 MiB 0.26 17788 -1 -1 1 0.66 -1 -1 40800 -1 -1 173 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 91368 22 19 5380 4464 1 2743 225 24 24 576 mult_36 auto 52.8 MiB 1.91 17323 51525 11897 34432 5196 89.2 MiB 1.39 0.02 4.28601 -3284.49 -4.28601 4.28601 1.54 0.00857551 0.00763061 0.733055 0.64925 74 30303 40 1.59675e+07 6.86027e+06 2.56259e+06 4448.94 10.91 3.19892 2.80024 67906 667765 -1 25244 18 10317 12089 1522453 322878 4.39726 4.39726 -3731.23 -4.39726 0 0 3.19068e+06 5539.38 0.95 0.75 0.60 -1 -1 0.95 0.40953 0.366886 1321 1947 684 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_38.v common 22.68 vpr 89.94 MiB 0.17 17808 -1 -1 1 0.71 -1 -1 42296 -1 -1 176 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 92100 22 19 5454 4521 1 2787 228 24 24 576 mult_36 auto 52.9 MiB 2.02 17173 57996 13827 39781 4388 89.4 MiB 1.61 0.02 4.52256 -3242.13 -4.52256 4.52256 1.46 0.00925643 0.00828699 0.842234 0.748468 74 29865 34 1.59675e+07 6.90369e+06 2.56259e+06 4448.94 9.75 3.22568 2.83864 67906 667765 -1 25656 15 10421 12099 1547300 316808 4.64786 4.64786 -3606.77 -4.64786 0 0 3.19068e+06 5539.38 0.98 0.68 0.62 -1 -1 0.98 0.359616 0.32315 1340 1966 703 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_39.v common 25.20 vpr 90.11 MiB 0.21 18144 -1 -1 1 0.71 -1 -1 40084 -1 -1 180 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 92272 22 19 5629 4662 1 2884 232 24 24 576 mult_36 auto 53.8 MiB 2.03 18624 55768 13035 37822 4911 90.1 MiB 1.61 0.02 4.39726 -3391.54 -4.39726 4.39726 1.50 0.0104887 0.00942536 0.862312 0.77126 76 33253 33 1.59675e+07 6.9616e+06 2.61600e+06 4541.67 11.98 3.38951 2.98079 68478 680951 -1 27050 17 10922 12570 1623278 339627 4.52256 4.52256 -3618.17 -4.52256 0 0 3.24203e+06 5628.53 0.93 0.73 0.59 -1 -1 0.93 0.390966 0.349857 1381 2032 722 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_40.v common 106.73 vpr 91.25 MiB 0.15 18340 -1 -1 1 0.75 -1 -1 42292 -1 -1 182 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 93440 22 19 5703 4719 1 2932 234 24 24 576 mult_36 auto 54.2 MiB 2.06 17761 53514 12161 36873 4480 90.6 MiB 1.51 0.02 4.3337 -3472.19 -4.3337 4.3337 1.47 0.0105528 0.00951556 0.779612 0.694323 70 33764 46 1.59675e+07 6.99055e+06 2.45377e+06 4260.01 93.93 6.55011 5.67694 66754 640332 -1 27180 18 11294 13295 1660649 350009 4.39726 4.39726 -3935.92 -4.39726 0 0 3.09179e+06 5367.68 0.84 0.73 0.53 -1 -1 0.84 0.400462 0.355338 1400 2051 741 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_41.v common 28.65 vpr 92.59 MiB 0.22 18828 -1 -1 1 0.74 -1 -1 41616 -1 -1 190 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94816 22 19 5950 4932 1 3040 243 24 24 576 mult_36 auto 55.3 MiB 2.19 19478 54819 12176 38018 4625 91.5 MiB 1.41 0.02 4.41131 -3650.22 -4.41131 4.41131 1.44 0.00941679 0.00837831 0.711187 0.628289 80 31276 23 1.59675e+07 7.50235e+06 2.72095e+06 4723.87 15.35 3.98026 3.46891 70206 720185 -1 27478 16 10740 12213 1485213 299160 4.52256 4.52256 -3708.57 -4.52256 0 0 3.41546e+06 5929.62 0.96 0.70 0.62 -1 -1 0.96 0.397874 0.356582 1461 2153 760 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_42.v common 24.36 vpr 92.43 MiB 0.21 19056 -1 -1 1 0.62 -1 -1 42764 -1 -1 193 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94644 22 19 6024 4989 1 3083 246 24 24 576 mult_36 auto 56.0 MiB 2.07 19232 63386 14561 42862 5963 92.0 MiB 1.77 0.02 4.64786 -3641.46 -4.64786 4.64786 1.43 0.0112474 0.010131 0.930823 0.832762 76 33762 25 1.59675e+07 7.54578e+06 2.61600e+06 4541.67 10.82 3.38503 2.97948 68478 680951 -1 28522 16 11374 13382 1767274 362795 4.77316 4.77316 -3938.14 -4.77316 0 0 3.24203e+06 5628.53 0.92 0.78 0.55 -1 -1 0.92 0.417719 0.37574 1480 2172 779 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_43.v common 35.71 vpr 93.63 MiB 0.30 19448 -1 -1 1 0.89 -1 -1 43352 -1 -1 199 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 95880 22 19 6198 5129 1 3182 252 24 24 576 mult_36 auto 56.7 MiB 2.19 20650 59877 13155 41281 5441 92.9 MiB 1.63 0.02 4.39726 -3811.72 -4.39726 4.39726 1.47 0.010274 0.00901819 0.831265 0.734367 78 35628 33 1.59675e+07 7.63263e+06 2.67122e+06 4637.53 21.70 4.45954 3.88855 69630 706637 -1 29571 16 11494 13119 1806404 359043 4.64786 4.64786 -3950.34 -4.64786 0 0 3.35110e+06 5817.88 0.91 0.77 0.65 -1 -1 0.91 0.453584 0.408737 1523 2237 798 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_44.v common 28.11 vpr 96.53 MiB 0.26 19612 -1 -1 1 0.87 -1 -1 43360 -1 -1 200 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 98848 22 19 6272 5186 1 3228 253 24 24 576 mult_36 auto 57.2 MiB 2.22 21041 60977 14663 40942 5372 93.6 MiB 1.92 0.02 4.39726 -3882.95 -4.39726 4.39726 1.50 0.0117697 0.0106141 0.99995 0.890587 82 35957 47 1.59675e+07 7.64711e+06 2.78508e+06 4835.20 14.12 4.51457 3.96961 70778 734779 -1 29743 17 11967 13657 1737679 357747 4.52256 4.52256 -4130.14 -4.52256 0 0 3.48632e+06 6052.64 1.01 0.82 0.55 -1 -1 1.01 0.438991 0.392591 1542 2256 817 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_45.v common 34.41 vpr 95.91 MiB 0.27 19884 -1 -1 1 0.93 -1 -1 43888 -1 -1 208 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 98212 22 19 6485 5365 1 3341 262 24 24 576 mult_36 auto 58.4 MiB 2.12 21508 64788 14398 44765 5625 94.4 MiB 1.79 0.02 4.39726 -3920.4 -4.39726 4.39726 1.51 0.010682 0.00953596 0.911987 0.812691 80 36519 26 1.59675e+07 8.15891e+06 2.72095e+06 4723.87 20.05 4.42524 3.86615 70206 720185 -1 30728 17 12367 14306 1778984 366147 4.52256 4.52256 -4282.82 -4.52256 0 0 3.41546e+06 5929.62 0.99 0.87 0.60 -1 -1 0.99 0.476257 0.426721 1593 2342 836 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_46.v common 29.34 vpr 97.47 MiB 0.34 19984 -1 -1 1 0.72 -1 -1 43824 -1 -1 210 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 99812 22 19 6559 5422 1 3381 264 24 24 576 mult_36 auto 58.8 MiB 2.17 20947 70482 16577 47310 6595 94.9 MiB 1.87 0.02 4.14666 -3968.32 -4.14666 4.14666 1.49 0.0109731 0.00979758 0.958647 0.849793 78 35129 34 1.59675e+07 8.18786e+06 2.67122e+06 4637.53 14.75 4.68983 4.09569 69630 706637 -1 30447 20 12649 14767 1718007 358511 4.39726 4.39726 -4098.93 -4.39726 0 0 3.35110e+06 5817.88 1.02 0.90 0.60 -1 -1 1.02 0.526412 0.470654 1613 2361 855 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_47.v common 34.39 vpr 97.74 MiB 0.31 20324 -1 -1 1 0.93 -1 -1 44544 -1 -1 216 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 100084 22 19 6735 5564 1 3478 270 24 24 576 mult_36 auto 59.6 MiB 2.33 22209 70030 15451 47782 6797 95.9 MiB 2.09 0.02 4.41516 -4128.21 -4.41516 4.41516 1.47 0.0129228 0.0116882 1.09035 0.970827 84 37671 32 1.59675e+07 8.27472e+06 2.84938e+06 4946.85 19.62 5.16013 4.52241 71930 760447 -1 31070 17 12543 14162 1836210 367421 4.52256 4.52256 -4366.36 -4.52256 0 0 3.60864e+06 6265.01 1.06 0.86 0.55 -1 -1 1.06 0.485985 0.435523 1656 2428 874 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_48.v common 33.45 vpr 97.87 MiB 0.32 20468 -1 -1 1 0.97 -1 -1 44052 -1 -1 218 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 100220 22 19 6809 5621 1 3528 272 24 24 576 mult_36 auto 60.2 MiB 2.27 22399 68109 15563 46856 5690 96.2 MiB 1.89 0.02 4.28601 -4165.16 -4.28601 4.28601 1.51 0.0106728 0.00949716 0.930706 0.824444 84 37990 31 1.59675e+07 8.30367e+06 2.84938e+06 4946.85 18.68 4.78227 4.17358 71930 760447 -1 31425 16 12475 14355 1676213 339117 4.64786 4.64786 -4427.09 -4.64786 0 0 3.60864e+06 6265.01 1.05 0.83 0.62 -1 -1 1.05 0.476709 0.428619 1674 2447 893 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_49.v common 30.74 vpr 104.11 MiB 0.26 21080 -1 -1 1 1.14 -1 -1 44408 -1 -1 228 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 106608 22 19 7094 5872 1 3643 283 24 24 576 mult_36 auto 61.6 MiB 2.42 22044 72667 16155 50381 6131 97.9 MiB 2.20 0.03 4.16456 -4302.53 -4.16456 4.16456 1.47 0.0132913 0.0117975 1.12979 0.99479 78 36952 26 1.59675e+07 8.84444e+06 2.67122e+06 4637.53 15.11 5.14497 4.49556 69630 706637 -1 31678 15 13251 15339 1784571 373556 4.39726 4.39726 -4573.37 -4.39726 0 0 3.35110e+06 5817.88 1.01 0.84 0.57 -1 -1 1.01 0.464629 0.417807 1745 2569 912 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_50.v common 37.38 vpr 105.47 MiB 0.26 21224 -1 -1 1 1.08 -1 -1 44328 -1 -1 230 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 108004 22 19 7168 5929 1 3677 285 24 24 576 mult_36 auto 61.9 MiB 2.40 23518 76182 17449 52130 6603 98.0 MiB 2.06 0.02 4.39726 -4337.05 -4.39726 4.39726 1.49 0.0118145 0.0105578 1.03214 0.916432 80 39367 34 1.59675e+07 8.87339e+06 2.72095e+06 4723.87 21.71 5.18845 4.52687 70206 720185 -1 33218 16 13686 16071 1927329 395418 4.39726 4.39726 -4628.99 -4.39726 0 0 3.41546e+06 5929.62 1.01 0.90 0.66 -1 -1 1.01 0.49266 0.442744 1764 2588 931 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_51.v common 35.94 vpr 103.58 MiB 0.37 21508 -1 -1 1 1.11 -1 -1 44760 -1 -1 235 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 106064 22 19 7344 6071 1 3784 290 24 24 576 mult_36 auto 62.9 MiB 2.61 23160 75092 17160 51061 6871 99.0 MiB 2.23 0.03 4.28601 -4423.35 -4.28601 4.28601 1.55 0.0133859 0.0120886 1.16131 1.03723 80 39279 28 1.59675e+07 8.94577e+06 2.72095e+06 4723.87 20.13 5.30123 4.63659 70206 720185 -1 33312 15 13811 15847 1871805 392568 4.52256 4.52256 -4830.06 -4.52256 0 0 3.41546e+06 5929.62 1.07 0.89 0.58 -1 -1 1.07 0.477973 0.430588 1808 2655 950 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_52.v common 33.54 vpr 106.84 MiB 0.21 21728 -1 -1 1 0.94 -1 -1 45300 -1 -1 237 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 109400 22 19 7418 6128 1 3829 292 24 24 576 mult_36 auto 63.4 MiB 2.53 24388 75796 17173 51253 7370 99.4 MiB 1.97 0.02 4.39726 -4541.6 -4.39726 4.39726 1.42 0.0121864 0.0108831 0.960739 0.84753 82 40166 40 1.59675e+07 8.97472e+06 2.78508e+06 4835.20 18.23 5.40215 4.7012 70778 734779 -1 34142 16 13821 15840 1861707 392582 4.52256 4.52256 -4916.53 -4.52256 0 0 3.48632e+06 6052.64 0.92 0.89 0.59 -1 -1 0.92 0.502002 0.449718 1827 2674 969 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_14.v common 9.57 vpr 67.63 MiB 0.09 9420 -1 -1 1 0.13 -1 -1 34724 -1 -1 43 22 0 4 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69256 22 19 1246 925 1 719 88 16 16 256 mult_36 auto 29.9 MiB 1.06 3708 12178 3140 7111 1927 67.6 MiB 0.29 0.00 7.85627 -369.053 -7.85627 7.85627 0.56 0.00247974 0.00227123 0.164562 0.151153 56 7704 42 6.59459e+06 2.20645e+06 849745. 3319.32 4.60 0.792333 0.701862 26364 208198 -1 6616 32 8380 9269 1473487 377056 8.18784 8.18784 -442.129 -8.18784 0 0 1.04740e+06 4091.43 0.25 0.51 0.24 -1 -1 0.25 0.174145 0.155285 299 344 247 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_15.v common 8.47 vpr 68.37 MiB 0.10 9592 -1 -1 1 0.16 -1 -1 35180 -1 -1 46 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70012 22 19 1344 989 1 778 92 16 16 256 mult_36 auto 30.5 MiB 0.89 4253 11891 2718 7916 1257 68.4 MiB 0.29 0.00 8.06786 -397.609 -8.06786 8.06786 0.58 0.00265339 0.00243857 0.163296 0.149912 54 9006 35 6.59459e+06 2.64588e+06 829453. 3240.05 3.79 0.796672 0.706837 26108 202796 -1 7077 27 6857 7815 969928 231501 8.88753 8.88753 -500.255 -8.88753 0 0 1.02522e+06 4004.78 0.24 0.35 0.17 -1 -1 0.24 0.148959 0.132915 321 369 266 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_16.v common 9.84 vpr 68.77 MiB 0.11 9752 -1 -1 1 0.17 -1 -1 35168 -1 -1 48 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70424 22 19 1418 1046 1 822 94 16 16 256 mult_36 auto 30.9 MiB 1.08 4528 13087 3331 8118 1638 68.8 MiB 0.34 0.01 7.80064 -415.87 -7.80064 7.80064 0.58 0.00301012 0.00277729 0.190385 0.174644 60 8307 44 6.59459e+06 2.67484e+06 890343. 3477.90 4.96 0.900933 0.799135 27128 224764 -1 7269 23 7299 8032 994162 223606 8.50533 8.50533 -467.681 -8.50533 0 0 1.11577e+06 4358.47 0.27 0.34 0.18 -1 -1 0.27 0.136378 0.121633 340 388 285 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_17.v common 10.49 vpr 69.04 MiB 0.11 10164 -1 -1 1 0.18 -1 -1 35384 -1 -1 52 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70692 22 19 1518 1112 1 879 98 16 16 256 mult_36 auto 31.3 MiB 1.02 4723 16523 4141 9979 2403 69.0 MiB 0.48 0.01 8.49449 -420.557 -8.49449 8.49449 0.66 0.00306434 0.00276878 0.261531 0.239561 56 9780 47 6.59459e+06 2.73274e+06 849745. 3319.32 5.12 1.05673 0.940382 26364 208198 -1 8101 27 9367 10451 1358860 310210 9.29868 9.29868 -518.713 -9.29868 0 0 1.04740e+06 4091.43 0.25 0.45 0.19 -1 -1 0.25 0.168453 0.150261 365 415 304 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_18.v common 11.55 vpr 69.42 MiB 0.08 10380 -1 -1 1 0.19 -1 -1 34960 -1 -1 55 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71088 22 19 1592 1169 1 918 101 16 16 256 mult_36 auto 31.5 MiB 1.29 5255 15846 3816 10145 1885 69.4 MiB 0.43 0.01 8.73075 -474.97 -8.73075 8.73075 0.54 0.00363037 0.00333098 0.234126 0.214278 58 9951 50 6.59459e+06 2.77617e+06 871168. 3403.00 6.13 1.0597 0.940004 26872 219187 -1 8328 26 8188 9162 1100395 244875 8.96668 8.96668 -544.981 -8.96668 0 0 1.09288e+06 4269.05 0.31 0.41 0.20 -1 -1 0.31 0.174447 0.155683 383 434 323 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_19.v common 11.58 vpr 69.89 MiB 0.05 10540 -1 -1 1 0.22 -1 -1 35332 -1 -1 58 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71564 22 19 1688 1231 1 975 105 16 16 256 mult_36 auto 32.2 MiB 1.26 5522 18136 4926 9933 3277 69.9 MiB 0.33 0.00 8.61576 -458.576 -8.61576 8.61576 0.58 0.00158923 0.00144049 0.173046 0.158003 58 11561 41 6.59459e+06 3.21559e+06 871168. 3403.00 6.32 1.01078 0.895587 26872 219187 -1 8681 26 8638 9740 1126779 262997 9.32648 9.32648 -596.474 -9.32648 0 0 1.09288e+06 4269.05 0.28 0.40 0.19 -1 -1 0.28 0.175645 0.156605 404 457 342 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_20.v common 10.15 vpr 70.29 MiB 0.13 10604 -1 -1 1 0.21 -1 -1 35724 -1 -1 59 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71972 22 19 1762 1288 1 1013 106 16 16 256 mult_36 auto 32.6 MiB 1.39 5934 14856 3578 9339 1939 70.3 MiB 0.41 0.01 8.51815 -499.89 -8.51815 8.51815 0.58 0.00331427 0.00303299 0.218235 0.19912 70 10400 29 6.59459e+06 3.23007e+06 1.02522e+06 4004.78 4.47 1.0271 0.911101 28912 262511 -1 9026 25 8234 9301 1245461 261737 8.78618 8.78618 -561.652 -8.78618 0 0 1.29210e+06 5047.26 0.31 0.41 0.23 -1 -1 0.31 0.172427 0.153817 423 476 361 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_21.v common 10.09 vpr 70.92 MiB 0.13 11064 -1 -1 1 0.22 -1 -1 35788 -1 -1 62 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72620 22 19 1859 1351 1 1072 109 16 16 256 mult_36 auto 33.2 MiB 1.38 6071 17789 4553 10762 2474 70.9 MiB 0.47 0.01 8.64699 -503.256 -8.64699 8.64699 0.57 0.00350866 0.00321066 0.255118 0.233082 70 10334 32 6.59459e+06 3.2735e+06 1.02522e+06 4004.78 4.12 1.1358 1.00634 28912 262511 -1 9048 24 8163 9276 1068033 251456 8.68598 8.68598 -630.827 -8.68598 0 0 1.29210e+06 5047.26 0.33 0.45 0.26 -1 -1 0.33 0.190795 0.170811 445 500 380 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_22.v common 11.76 vpr 71.06 MiB 0.14 11192 -1 -1 1 0.23 -1 -1 35848 -1 -1 66 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72768 22 19 1933 1408 1 1112 113 16 16 256 mult_36 auto 33.5 MiB 1.56 6284 16766 3772 10688 2306 71.1 MiB 0.44 0.01 8.66433 -531.367 -8.66433 8.66433 0.57 0.00358871 0.00327439 0.235653 0.214767 64 12202 40 6.59459e+06 3.3314e+06 943753. 3686.54 5.63 1.18362 1.04832 27892 240595 -1 9937 26 8773 9855 1261410 275837 8.85048 8.85048 -653.969 -8.85048 0 0 1.19033e+06 4649.74 0.29 0.49 0.23 -1 -1 0.29 0.220799 0.198239 464 519 399 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_23.v common 13.12 vpr 71.43 MiB 0.14 11392 -1 -1 1 0.24 -1 -1 36044 -1 -1 68 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73144 22 19 2031 1472 1 1172 116 18 18 324 mult_36 auto 34.0 MiB 1.74 6825 18164 4253 11642 2269 71.4 MiB 0.49 0.01 8.63545 -565.294 -8.63545 8.63545 0.75 0.00375134 0.00342384 0.258036 0.234917 64 12993 44 8.13932e+06 3.75635e+06 1.23838e+06 3822.15 6.11 1.34456 1.19415 35972 318676 -1 10932 27 9839 11273 1504542 329887 9.41448 9.41448 -741.79 -9.41448 0 0 1.56068e+06 4816.91 0.41 0.54 0.30 -1 -1 0.41 0.227957 0.204155 486 544 418 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_24.v common 14.94 vpr 72.08 MiB 0.10 11480 -1 -1 1 0.21 -1 -1 36180 -1 -1 71 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73812 22 19 2105 1529 1 1210 119 18 18 324 mult_36 auto 34.6 MiB 1.74 7123 25231 6335 15708 3188 72.1 MiB 0.66 0.01 8.55031 -569.619 -8.55031 8.55031 0.72 0.00385804 0.00347932 0.348154 0.316096 60 14337 47 8.13932e+06 3.79978e+06 1.16833e+06 3605.96 7.99 1.43833 1.27594 35004 297736 -1 11588 24 11181 12858 1586113 344104 8.96778 8.96778 -766.812 -8.96778 0 0 1.46313e+06 4515.82 0.37 0.51 0.27 -1 -1 0.37 0.201048 0.179535 505 563 437 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_25.v common 17.26 vpr 72.73 MiB 0.17 11832 -1 -1 1 0.27 -1 -1 36508 -1 -1 73 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74472 22 19 2201 1591 1 1267 121 18 18 324 mult_36 auto 35.3 MiB 1.60 7919 21948 5452 13185 3311 72.7 MiB 0.61 0.01 8.66171 -618.683 -8.66171 8.66171 0.75 0.00405132 0.00365538 0.319641 0.290242 60 16508 37 8.13932e+06 3.82873e+06 1.16833e+06 3605.96 10.13 1.38308 1.22732 35004 297736 -1 12761 25 12967 14678 2069285 453276 9.40498 9.40498 -864.999 -9.40498 0 0 1.46313e+06 4515.82 0.41 0.62 0.26 -1 -1 0.41 0.214304 0.191321 526 586 456 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_26.v common 12.66 vpr 72.79 MiB 0.16 11984 -1 -1 1 0.25 -1 -1 37432 -1 -1 76 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74540 22 19 2275 1648 1 1304 124 18 18 324 mult_36 auto 35.5 MiB 1.60 8331 21445 5256 13853 2336 72.8 MiB 0.60 0.01 8.87612 -625.532 -8.87612 8.87612 0.75 0.00420155 0.00383333 0.311373 0.282995 68 14555 27 8.13932e+06 3.87216e+06 1.31159e+06 4048.11 5.75 1.30024 1.15267 36620 334356 -1 12285 27 11023 12770 1526505 337406 8.79728 8.79728 -914.308 -8.79728 0 0 1.63345e+06 5041.52 0.41 0.54 0.30 -1 -1 0.41 0.23212 0.206883 546 605 475 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_27.v common 19.02 vpr 73.42 MiB 0.12 12128 -1 -1 1 0.35 -1 -1 36644 -1 -1 82 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75180 22 19 2385 1724 1 1377 131 18 18 324 mult_36 auto 36.2 MiB 1.78 8472 26027 6274 16532 3221 73.4 MiB 0.69 0.01 8.72365 -592.733 -8.72365 8.72365 0.75 0.00437438 0.00398433 0.368738 0.33545 58 17784 50 8.13932e+06 4.35501e+06 1.14310e+06 3528.09 11.45 1.60024 1.4182 34680 290288 -1 14148 29 14549 16458 2410411 525176 9.27518 9.27518 -913.009 -9.27518 0 0 1.43297e+06 4422.75 0.35 0.73 0.25 -1 -1 0.35 0.258717 0.230231 575 642 494 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_28.v common 13.73 vpr 73.90 MiB 0.18 12284 -1 -1 1 0.33 -1 -1 36780 -1 -1 83 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75676 22 19 2459 1781 1 1418 132 18 18 324 mult_36 auto 36.6 MiB 2.05 8415 20232 4376 13738 2118 73.9 MiB 0.55 0.01 8.74245 -615.172 -8.74245 8.74245 0.76 0.00441093 0.00400405 0.289377 0.262855 68 14718 31 8.13932e+06 4.36948e+06 1.31159e+06 4048.11 5.93 1.31648 1.16368 36620 334356 -1 12434 24 10798 12644 1438060 323636 8.84138 8.84138 -805.552 -8.84138 0 0 1.63345e+06 5041.52 0.44 0.58 0.29 -1 -1 0.44 0.248153 0.222193 594 661 513 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_29.v common 17.85 vpr 74.62 MiB 0.18 12472 -1 -1 1 0.34 -1 -1 37076 -1 -1 85 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76408 22 19 2565 1853 1 1483 135 22 22 484 mult_36 auto 37.2 MiB 2.36 8830 25047 6081 16121 2845 74.6 MiB 0.71 0.01 8.91879 -700.843 -8.91879 8.91879 1.20 0.00460922 0.0041981 0.359866 0.327151 62 17709 48 1.32347e+07 4.79443e+06 1.85176e+06 3825.95 8.27 1.6595 1.47179 53538 472186 -1 13797 24 12694 14750 1732893 386603 9.08828 9.08828 -955.656 -9.08828 0 0 2.29262e+06 4736.82 0.59 0.63 0.41 -1 -1 0.59 0.257101 0.229885 619 694 532 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_30.v common 17.54 vpr 74.86 MiB 0.12 12676 -1 -1 1 0.35 -1 -1 37348 -1 -1 89 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76652 22 19 2639 1910 1 1523 139 22 22 484 mult_36 auto 37.8 MiB 2.38 9348 24192 5766 15227 3199 74.9 MiB 0.67 0.01 8.94231 -671.912 -8.94231 8.94231 1.20 0.00478038 0.0043423 0.346996 0.315622 72 16803 30 1.32347e+07 4.85233e+06 2.11301e+06 4365.72 7.81 1.53012 1.35691 56918 551676 -1 14084 25 12303 13644 1958815 410079 9.25628 9.25628 -846.537 -9.25628 0 0 2.64603e+06 5467.00 0.68 0.66 0.45 -1 -1 0.68 0.260327 0.232409 639 713 551 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_31.v common 72.19 vpr 75.61 MiB 0.18 12936 -1 -1 1 0.34 -1 -1 37408 -1 -1 93 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77420 22 19 2744 1981 1 1589 143 22 22 484 mult_36 auto 38.3 MiB 2.25 10398 27745 6556 18229 2960 75.6 MiB 0.79 0.01 8.84777 -733.653 -8.84777 8.84777 1.21 0.0050278 0.00457911 0.39794 0.361066 60 21030 47 1.32347e+07 4.91023e+06 1.79840e+06 3715.71 62.39 3.13351 2.7603 53054 462096 -1 16299 28 16051 18584 2592891 539995 9.38798 9.38798 -984.877 -9.38798 0 0 2.25108e+06 4650.99 0.59 0.83 0.38 -1 -1 0.59 0.297336 0.264934 665 745 570 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_32.v common 18.89 vpr 75.58 MiB 0.14 12912 -1 -1 1 0.34 -1 -1 36856 -1 -1 96 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77392 22 19 2818 2038 1 1626 146 22 22 484 mult_36 auto 38.4 MiB 2.57 10138 32786 8279 20912 3595 75.6 MiB 0.90 0.01 8.84685 -737.429 -8.84685 8.84685 1.20 0.00517968 0.00470796 0.462384 0.419667 66 19171 39 1.32347e+07 4.95366e+06 1.96511e+06 4060.15 8.58 1.7574 1.55873 54986 507526 -1 15563 25 13541 16004 2089577 446360 8.79458 8.79458 -1157.81 -8.79458 0 0 2.45963e+06 5081.88 0.66 0.69 0.43 -1 -1 0.66 0.274569 0.245214 684 764 589 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_33.v common 80.90 vpr 76.48 MiB 0.14 13660 -1 -1 1 0.41 -1 -1 37412 -1 -1 100 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78312 22 19 2923 2109 1 1697 151 22 22 484 mult_36 auto 39.2 MiB 2.61 10339 29825 6892 19522 3411 76.5 MiB 0.89 0.01 9.50859 -774.184 -9.50859 9.50859 1.22 0.00541053 0.00492536 0.446645 0.406425 64 19486 28 1.32347e+07 5.40755e+06 1.90554e+06 3937.06 70.36 3.49661 3.08494 54502 494576 -1 16301 26 16157 18261 2566029 528186 10.0023 10.0023 -1068.85 -10.0023 0 0 2.40101e+06 4960.76 0.64 0.86 0.43 -1 -1 0.64 0.312502 0.279376 710 796 608 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_34.v common 75.30 vpr 76.67 MiB 0.20 13852 -1 -1 1 0.39 -1 -1 37816 -1 -1 101 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78508 22 19 2997 2166 1 1733 152 22 22 484 mult_36 auto 39.5 MiB 3.43 11393 32957 7932 21559 3466 76.7 MiB 0.91 0.01 9.96699 -781.499 -9.96699 9.96699 1.29 0.00537607 0.00483093 0.471056 0.426502 68 21905 43 1.32347e+07 5.42203e+06 2.01763e+06 4168.66 63.98 3.72082 3.27653 55470 518816 -1 17478 24 15277 17609 2209524 460763 9.70792 9.70792 -1341.02 -9.70792 0 0 2.51205e+06 5190.18 0.64 0.75 0.42 -1 -1 0.64 0.287788 0.256873 729 815 627 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_35.v common 22.46 vpr 77.18 MiB 0.11 13936 -1 -1 1 0.40 -1 -1 38012 -1 -1 106 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79028 22 19 3101 2236 1 1798 157 22 22 484 mult_36 auto 39.9 MiB 3.07 11076 33151 7719 21806 3626 77.2 MiB 1.02 0.01 9.46565 -787.471 -9.46565 9.46565 1.24 0.00569466 0.00517519 0.51332 0.464982 68 20627 48 1.32347e+07 5.49441e+06 2.01763e+06 4168.66 11.24 2.08136 1.84294 55470 518816 -1 16941 23 14184 16448 2056200 451208 9.46312 9.46312 -1330.53 -9.46312 0 0 2.51205e+06 5190.18 0.65 0.72 0.46 -1 -1 0.65 0.290779 0.259806 755 846 646 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_36.v common 69.16 vpr 77.59 MiB 0.21 14212 -1 -1 1 0.40 -1 -1 38020 -1 -1 107 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79456 22 19 3175 2293 1 1835 158 22 22 484 mult_36 auto 40.4 MiB 3.51 11333 30475 6946 20367 3162 77.6 MiB 0.87 0.01 9.75629 -817.637 -9.75629 9.75629 1.21 0.00575594 0.00522535 0.444008 0.402507 66 21761 48 1.32347e+07 5.50888e+06 1.96511e+06 4060.15 57.53 4.0587 3.55958 54986 507526 -1 17539 27 16171 18953 2330366 501744 9.95932 9.95932 -1222.31 -9.95932 0 0 2.45963e+06 5081.88 0.66 0.86 0.43 -1 -1 0.66 0.347439 0.310801 773 865 665 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_37.v common 26.60 vpr 78.42 MiB 0.24 14392 -1 -1 1 0.43 -1 -1 37452 -1 -1 111 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80304 22 19 3280 2364 1 1905 163 24 24 576 mult_36 auto 41.1 MiB 3.60 12992 37988 9582 24747 3659 78.4 MiB 1.15 0.01 9.59371 -904.981 -9.59371 9.59371 1.61 0.00618131 0.00562883 0.574473 0.520007 72 23175 47 1.59675e+07 5.96278e+06 2.50747e+06 4353.24 13.48 2.24929 1.99262 67330 654343 -1 18905 25 16599 18922 2890425 575861 10.1337 10.1337 -1166.9 -10.1337 0 0 3.14081e+06 5452.80 0.83 0.90 0.53 -1 -1 0.83 0.324629 0.288976 798 897 684 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_38.v common 25.36 vpr 78.93 MiB 0.18 14520 -1 -1 1 0.44 -1 -1 37972 -1 -1 113 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80824 22 19 3354 2421 1 1940 165 24 24 576 mult_36 auto 41.8 MiB 3.81 12402 35873 8875 23165 3833 78.9 MiB 1.03 0.01 9.44139 -985.249 -9.44139 9.44139 1.43 0.00630909 0.00574833 0.521188 0.470246 78 19594 28 1.59675e+07 5.99174e+06 2.67122e+06 4637.53 12.46 2.33031 2.06348 69630 706637 -1 17513 23 14127 16340 2018929 414501 9.66552 9.66552 -1278.49 -9.66552 0 0 3.35110e+06 5817.88 0.94 0.74 0.57 -1 -1 0.94 0.305055 0.273423 818 916 703 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_39.v common 68.96 vpr 79.27 MiB 0.20 14732 -1 -1 1 0.47 -1 -1 38428 -1 -1 117 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81172 22 19 3457 2490 1 2006 169 24 24 576 mult_36 auto 42.0 MiB 3.74 13614 27255 5416 19238 2601 79.3 MiB 0.83 0.01 9.69926 -906.242 -9.69926 9.69926 1.64 0.00759961 0.00689627 0.418235 0.378595 76 22595 29 1.59675e+07 6.04964e+06 2.61600e+06 4541.67 55.84 3.94051 3.47104 68478 680951 -1 19506 24 14772 17013 2305059 478080 9.92522 9.92522 -1192.41 -9.92522 0 0 3.24203e+06 5628.53 0.88 0.85 0.56 -1 -1 0.88 0.344885 0.307445 842 946 722 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_40.v common 24.32 vpr 79.46 MiB 0.22 14980 -1 -1 1 0.50 -1 -1 38812 -1 -1 120 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81364 22 19 3531 2547 1 2046 172 24 24 576 mult_36 auto 42.5 MiB 4.18 12855 39846 9122 26150 4574 79.5 MiB 1.20 0.02 9.60743 -951.577 -9.60743 9.60743 1.49 0.00787438 0.00717689 0.586677 0.530891 70 22646 29 1.59675e+07 6.09306e+06 2.45377e+06 4260.01 10.59 2.13443 1.89245 66754 640332 -1 19155 26 16387 18725 2648043 543957 9.41322 9.41322 -1230.64 -9.41322 0 0 3.09179e+06 5367.68 0.83 0.89 0.54 -1 -1 0.83 0.352944 0.313894 862 965 741 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_41.v common 23.82 vpr 80.32 MiB 0.24 15124 -1 -1 1 0.55 -1 -1 38240 -1 -1 122 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82248 22 19 3634 2616 1 2109 175 24 24 576 mult_36 auto 43.1 MiB 3.78 13732 39784 9257 26530 3997 80.3 MiB 1.17 0.01 9.77499 -937.901 -9.77499 9.77499 1.58 0.00698356 0.00636675 0.582762 0.527686 70 23378 41 1.59675e+07 6.51802e+06 2.45377e+06 4260.01 10.32 2.32553 2.05951 66754 640332 -1 19768 25 16507 18827 2418548 524828 9.67842 9.67842 -1441.57 -9.67842 0 0 3.09179e+06 5367.68 0.87 0.86 0.52 -1 -1 0.87 0.353529 0.315842 886 995 760 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_42.v common 96.59 vpr 80.43 MiB 0.25 15316 -1 -1 1 0.52 -1 -1 38272 -1 -1 125 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82360 22 19 3708 2673 1 2146 178 24 24 576 mult_36 auto 43.5 MiB 4.28 14252 40678 9580 27421 3677 80.4 MiB 1.13 0.01 9.70673 -1014.41 -9.70673 9.70673 1.45 0.00634739 0.00574571 0.550138 0.495854 70 25068 49 1.59675e+07 6.56144e+06 2.45377e+06 4260.01 82.76 4.55442 4.00176 66754 640332 -1 20491 25 16283 18762 2587609 530117 10.1586 10.1586 -1420.43 -10.1586 0 0 3.09179e+06 5367.68 0.82 0.83 0.51 -1 -1 0.82 0.325842 0.291496 906 1014 779 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_43.v common 24.73 vpr 81.05 MiB 0.26 15556 -1 -1 1 0.50 -1 -1 38820 -1 -1 129 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83000 22 19 3810 2741 1 2211 182 24 24 576 mult_36 auto 44.0 MiB 4.34 14383 37777 8939 25288 3550 81.1 MiB 1.18 0.02 9.56815 -970.936 -9.56815 9.56815 1.46 0.00753474 0.00685196 0.604191 0.545183 70 25146 43 1.59675e+07 6.61934e+06 2.45377e+06 4260.01 10.83 2.49518 2.21129 66754 640332 -1 20927 25 18462 21016 2744808 580983 9.95542 9.95542 -1312.26 -9.95542 0 0 3.09179e+06 5367.68 0.84 0.92 0.45 -1 -1 0.84 0.365357 0.32587 930 1043 798 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_44.v common 25.64 vpr 81.60 MiB 0.24 15820 -1 -1 1 0.56 -1 -1 38420 -1 -1 132 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83560 22 19 3884 2798 1 2252 185 24 24 576 mult_36 auto 44.3 MiB 4.52 14460 39635 8934 27519 3182 81.6 MiB 1.17 0.02 9.61645 -992.888 -9.61645 9.61645 1.47 0.00714735 0.00649086 0.568584 0.512395 74 24935 34 1.59675e+07 6.66277e+06 2.56259e+06 4448.94 11.11 2.33134 2.05741 67906 667765 -1 21311 26 17785 20500 2693830 566652 10.0696 10.0696 -1333.67 -10.0696 0 0 3.19068e+06 5539.38 0.89 1.02 0.58 -1 -1 0.89 0.415761 0.373188 949 1062 817 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_45.v common 26.06 vpr 81.98 MiB 0.25 15932 -1 -1 1 0.55 -1 -1 40488 -1 -1 135 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83944 22 19 3989 2869 1 2317 189 24 24 576 mult_36 auto 45.0 MiB 4.61 14618 41381 9719 27735 3927 82.0 MiB 1.20 0.02 9.77027 -1011.74 -9.77027 9.77027 1.47 0.00736802 0.00668993 0.588856 0.531874 72 25523 37 1.59675e+07 7.1022e+06 2.50747e+06 4353.24 11.47 2.51799 2.2285 67330 654343 -1 21225 23 16401 19162 2396371 518493 9.82682 9.82682 -1397.87 -9.82682 0 0 3.14081e+06 5452.80 0.91 0.90 0.55 -1 -1 0.91 0.37998 0.340237 975 1094 836 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_46.v common 29.93 vpr 82.05 MiB 0.14 16060 -1 -1 1 0.54 -1 -1 40688 -1 -1 136 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84020 22 19 4063 2926 1 2354 190 24 24 576 mult_36 auto 44.9 MiB 4.94 16350 37864 7792 26746 3326 82.1 MiB 1.14 0.02 9.83665 -1114.77 -9.83665 9.83665 1.50 0.00740843 0.00663842 0.54478 0.488634 82 25929 47 1.59675e+07 7.11667e+06 2.78508e+06 4835.20 15.04 3.2069 2.82375 70778 734779 -1 22200 23 15637 18321 2342525 476667 9.76082 9.76082 -1542.32 -9.76082 0 0 3.48632e+06 6052.64 0.98 0.78 0.64 -1 -1 0.98 0.322008 0.287989 993 1113 855 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_47.v common 25.24 vpr 82.53 MiB 0.26 16636 -1 -1 1 0.53 -1 -1 40820 -1 -1 141 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84508 22 19 4167 2996 1 2420 195 24 24 576 mult_36 auto 45.3 MiB 4.57 16260 49350 11375 33104 4871 82.5 MiB 1.50 0.02 9.79725 -1090.73 -9.79725 9.79725 1.51 0.00770204 0.00694054 0.720916 0.64862 76 27046 30 1.59675e+07 7.18905e+06 2.61600e+06 4541.67 10.15 2.52277 2.22975 68478 680951 -1 22864 26 18735 21708 2814560 591545 10.3465 10.3465 -1365.53 -10.3465 0 0 3.24203e+06 5628.53 0.91 1.05 0.55 -1 -1 0.91 0.429858 0.384067 1019 1144 874 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_48.v common 28.77 vpr 82.84 MiB 0.27 16496 -1 -1 1 0.62 -1 -1 40784 -1 -1 144 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84832 22 19 4241 3053 1 2458 198 24 24 576 mult_36 auto 45.8 MiB 5.03 15592 42822 9203 28894 4725 82.8 MiB 1.30 0.02 9.79149 -1061.63 -9.79149 9.79149 1.42 0.00824472 0.00749693 0.645625 0.584761 68 28638 50 1.59675e+07 7.23248e+06 2.39371e+06 4155.74 13.46 2.86351 2.53648 65606 615345 -1 22680 27 19526 22864 2812735 612091 10.3416 10.3416 -1585.91 -10.3416 0 0 2.98162e+06 5176.42 0.86 1.06 0.50 -1 -1 0.86 0.443576 0.394915 1038 1163 893 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_49.v common 25.76 vpr 83.68 MiB 0.29 17064 -1 -1 1 0.62 -1 -1 41236 -1 -1 145 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85692 22 19 4346 3124 1 2527 200 24 24 576 mult_36 auto 47.0 MiB 4.90 16724 42832 9460 29682 3690 83.7 MiB 1.33 0.02 10.0387 -1078.78 -10.0387 10.0387 1.47 0.00797343 0.00723367 0.636386 0.573427 76 27160 30 1.59675e+07 7.64295e+06 2.61600e+06 4541.67 10.61 2.57326 2.28062 68478 680951 -1 23572 25 18876 21876 2791246 590608 10.4455 10.4455 -1489.69 -10.4455 0 0 3.24203e+06 5628.53 0.91 1.04 0.44 -1 -1 0.91 0.431509 0.385957 1062 1195 912 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_50.v common 29.21 vpr 83.79 MiB 0.16 17144 -1 -1 1 0.67 -1 -1 41040 -1 -1 148 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85796 22 19 4420 3181 1 2563 203 24 24 576 mult_36 auto 47.2 MiB 5.26 17398 44307 10226 29911 4170 83.8 MiB 1.37 0.02 9.9037 -1079.02 -9.9037 9.9037 1.52 0.00831944 0.00739092 0.668411 0.598925 74 29993 39 1.59675e+07 7.68637e+06 2.56259e+06 4448.94 13.19 2.72523 2.40927 67906 667765 -1 25064 27 22957 25885 3706669 745505 9.89712 9.89712 -1512.67 -9.89712 0 0 3.19068e+06 5539.38 0.92 1.25 0.54 -1 -1 0.92 0.468746 0.417267 1082 1214 931 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_51.v common 29.07 vpr 84.34 MiB 0.27 17280 -1 -1 1 0.73 -1 -1 41072 -1 -1 152 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86360 22 19 4524 3251 1 2633 207 24 24 576 mult_36 auto 47.4 MiB 5.06 17274 43047 9353 29279 4415 84.3 MiB 1.13 0.02 9.72425 -1170.65 -9.72425 9.72425 1.50 0.00836409 0.00742991 0.5227 0.466561 76 29407 46 1.59675e+07 7.74428e+06 2.61600e+06 4541.67 13.39 2.72234 2.40206 68478 680951 -1 24555 25 19224 22166 3043731 614947 10.2548 10.2548 -1642.4 -10.2548 0 0 3.24203e+06 5628.53 0.89 1.10 0.55 -1 -1 0.89 0.452964 0.405044 1107 1245 950 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_52.v common 28.26 vpr 84.80 MiB 0.30 17348 -1 -1 1 0.67 -1 -1 39500 -1 -1 155 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86832 22 19 4598 3308 1 2667 210 24 24 576 mult_36 auto 48.0 MiB 5.62 17604 46386 10173 32285 3928 84.8 MiB 1.48 0.02 9.68009 -1080.95 -9.68009 9.68009 1.59 0.00915384 0.0082116 0.70414 0.632133 72 30917 38 1.59675e+07 7.7877e+06 2.50747e+06 4353.24 11.45 2.81989 2.49644 67330 654343 -1 25360 25 21418 25117 3240485 694413 10.206 10.206 -1662.84 -10.206 0 0 3.14081e+06 5452.80 0.89 1.15 0.56 -1 -1 0.89 0.452531 0.404064 1127 1264 969 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_14.v common 9.62 vpr 71.29 MiB 0.11 10476 -1 -1 1 0.25 -1 -1 35508 -1 -1 65 22 0 4 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73000 22 19 1974 1653 1 1013 110 16 16 256 mult_36 auto 33.6 MiB 0.45 5297 17205 4342 10377 2486 71.3 MiB 0.42 0.01 4.14666 -1129.87 -4.14666 4.14666 0.58 0.00339471 0.00305405 0.248201 0.223626 56 11347 43 6.62819e+06 2.54052e+06 849745. 3319.32 4.90 1.11777 0.974098 26364 208198 -1 9317 19 4256 4818 612410 141530 4.39726 4.39726 -1244.22 -4.39726 0 0 1.04740e+06 4091.43 0.25 0.29 0.18 -1 -1 0.25 0.154654 0.137773 481 708 247 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_15.v common 9.84 vpr 72.22 MiB 0.08 10828 -1 -1 1 0.28 -1 -1 36908 -1 -1 72 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73952 22 19 2144 1789 1 1107 118 16 16 256 mult_36 auto 34.4 MiB 0.65 5790 18036 4123 11366 2547 72.2 MiB 0.41 0.00 4.11968 -1267.13 -4.11968 4.11968 0.60 0.00166501 0.00149431 0.220697 0.197374 58 11809 27 6.62819e+06 3.03953e+06 871168. 3403.00 4.87 1.10123 0.960951 26872 219187 -1 9868 19 4677 5264 620916 144337 4.14666 4.14666 -1356.44 -4.14666 0 0 1.09288e+06 4269.05 0.26 0.31 0.20 -1 -1 0.26 0.181583 0.162619 521 769 266 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_16.v common 32.82 vpr 72.61 MiB 0.09 10936 -1 -1 1 0.29 -1 -1 37020 -1 -1 74 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74348 22 19 2218 1846 1 1153 120 16 16 256 mult_36 auto 34.8 MiB 0.65 5931 16640 3652 10868 2120 72.6 MiB 0.41 0.01 4.14666 -1288.47 -4.14666 4.14666 0.57 0.00377805 0.00339693 0.234481 0.211024 60 12726 33 6.62819e+06 3.06896e+06 890343. 3477.90 27.70 2.238 1.94709 27128 224764 -1 10016 27 4853 5474 1043418 337630 4.27196 4.27196 -1404.7 -4.27196 0 0 1.11577e+06 4358.47 0.27 0.46 0.19 -1 -1 0.27 0.218022 0.192869 540 788 285 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_17.v common 30.59 vpr 74.12 MiB 0.14 11752 -1 -1 1 0.27 -1 -1 36588 -1 -1 83 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75904 22 19 2536 2130 1 1255 129 16 16 256 mult_36 auto 36.5 MiB 0.75 7206 19304 4115 12842 2347 74.1 MiB 0.48 0.01 4.27196 -1488.47 -4.27196 4.27196 0.59 0.00427741 0.00383947 0.274878 0.247049 62 16028 45 6.62819e+06 3.20141e+06 916467. 3579.95 24.91 2.39859 2.08409 27384 229598 -1 11410 20 5025 5916 767225 204270 4.27196 4.27196 -1617.84 -4.27196 0 0 1.13630e+06 4438.68 0.32 0.40 0.24 -1 -1 0.32 0.214184 0.191889 617 924 304 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_18.v common 10.11 vpr 74.53 MiB 0.15 11764 -1 -1 1 0.32 -1 -1 37120 -1 -1 86 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76320 22 19 2610 2187 1 1302 132 16 16 256 mult_36 auto 37.0 MiB 0.72 7013 22242 5431 13535 3276 74.5 MiB 0.59 0.01 4.14666 -1468.71 -4.14666 4.14666 0.62 0.00473157 0.00426815 0.331912 0.297322 66 13234 41 6.62819e+06 3.24555e+06 974584. 3806.97 4.45 1.53436 1.34977 28148 247068 -1 10694 15 4618 5355 589723 135547 4.27196 4.27196 -1523.57 -4.27196 0 0 1.22072e+06 4768.46 0.29 0.28 0.21 -1 -1 0.29 0.160347 0.14317 636 943 323 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_19.v common 10.48 vpr 75.45 MiB 0.17 12228 -1 -1 1 0.27 -1 -1 36780 -1 -1 91 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77260 22 19 2778 2321 1 1398 138 16 16 256 mult_36 auto 38.1 MiB 0.76 7745 26482 5909 16658 3915 75.4 MiB 0.71 0.01 4.32767 -1601.95 -4.32767 4.32767 0.60 0.00537075 0.00479166 0.395433 0.355347 68 13647 22 6.62819e+06 3.71513e+06 1.00038e+06 3907.74 4.67 1.52318 1.34514 28404 252462 -1 11177 18 4911 5677 568054 138793 4.14666 4.14666 -1691.92 -4.14666 0 0 1.24648e+06 4869.04 0.30 0.33 0.23 -1 -1 0.30 0.19934 0.177299 676 1002 342 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_20.v common 12.79 vpr 75.91 MiB 0.15 12328 -1 -1 1 0.31 -1 -1 37000 -1 -1 93 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77736 22 19 2852 2378 1 1440 140 16 16 256 mult_36 auto 38.6 MiB 0.79 8294 22646 5123 14901 2622 75.9 MiB 0.60 0.01 4.2084 -1649.58 -4.2084 4.2084 0.59 0.00519432 0.00459622 0.330436 0.295579 68 16097 38 6.62819e+06 3.74456e+06 1.00038e+06 3907.74 6.65 1.6338 1.43308 28404 252462 -1 12428 32 5526 6490 1025857 306320 4.39726 4.39726 -1796.73 -4.39726 0 0 1.24648e+06 4869.04 0.32 0.59 0.24 -1 -1 0.32 0.329705 0.29122 695 1021 361 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_21.v common 11.23 vpr 76.87 MiB 0.13 12808 -1 -1 1 0.34 -1 -1 37736 -1 -1 97 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78712 22 19 3057 2549 1 1542 144 16 16 256 mult_36 auto 39.6 MiB 0.88 8673 23895 5161 15228 3506 76.9 MiB 0.64 0.01 4.52256 -1743.09 -4.52256 4.52256 0.59 0.00509947 0.00455544 0.355011 0.31784 74 15361 35 6.62819e+06 3.80343e+06 1.07073e+06 4182.55 5.08 1.69428 1.48117 29424 273870 -1 12772 16 5516 6283 721984 162116 4.39726 4.39726 -1867.34 -4.39726 0 0 1.33358e+06 5209.30 0.37 0.37 0.23 -1 -1 0.37 0.219266 0.196635 742 1099 380 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_22.v common 11.01 vpr 77.04 MiB 0.14 13056 -1 -1 1 0.35 -1 -1 38004 -1 -1 100 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78884 22 19 3131 2606 1 1585 147 16 16 256 mult_36 auto 39.8 MiB 0.80 8566 16401 3002 11439 1960 77.0 MiB 0.46 0.01 4.20292 -1804.73 -4.20292 4.20292 0.58 0.00505943 0.00451654 0.250613 0.224921 70 15569 27 6.62819e+06 3.84757e+06 1.02522e+06 4004.78 5.00 1.57019 1.37496 28912 262511 -1 12915 18 5834 6628 735961 170375 4.27196 4.27196 -1954.66 -4.27196 0 0 1.29210e+06 5047.26 0.31 0.39 0.23 -1 -1 0.31 0.237635 0.212022 762 1118 399 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_23.v common 12.69 vpr 78.08 MiB 0.23 13264 -1 -1 1 0.36 -1 -1 37940 -1 -1 107 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79956 22 19 3301 2742 1 1683 155 18 18 324 mult_36 auto 40.7 MiB 0.77 9538 29691 6508 19815 3368 78.1 MiB 0.78 0.01 4.16456 -1929.44 -4.16456 4.16456 0.77 0.00543034 0.00486181 0.427346 0.382197 74 17207 25 8.18539e+06 4.34658e+06 1.40368e+06 4332.34 5.68 1.81502 1.59881 37912 362744 -1 14522 15 6182 7157 877389 187757 4.39726 4.39726 -2097.58 -4.39726 0 0 1.74764e+06 5393.95 0.44 0.39 0.32 -1 -1 0.44 0.220923 0.197744 802 1179 418 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_24.v common 14.98 vpr 78.37 MiB 0.16 13344 -1 -1 1 0.39 -1 -1 38272 -1 -1 109 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80252 22 19 3375 2799 1 1730 157 18 18 324 mult_36 auto 41.1 MiB 0.72 9993 25960 5685 17809 2466 78.4 MiB 0.69 0.01 4.14666 -1987.87 -4.14666 4.14666 0.78 0.00654875 0.00596535 0.380892 0.340812 66 20196 47 8.18539e+06 4.37601e+06 1.27759e+06 3943.17 8.17 2.00995 1.75922 36296 327148 -1 15425 16 6577 7667 933401 201564 4.27196 4.27196 -2140.03 -4.27196 0 0 1.59950e+06 4936.74 0.40 0.40 0.29 -1 -1 0.40 0.219115 0.195599 821 1198 437 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_25.v common 15.04 vpr 79.46 MiB 0.12 13996 -1 -1 1 0.41 -1 -1 38108 -1 -1 116 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81364 22 19 3615 3005 1 1835 164 18 18 324 mult_36 auto 42.2 MiB 0.80 11154 29284 6310 19654 3320 79.5 MiB 0.80 0.01 4.14666 -2148.01 -4.14666 4.14666 0.79 0.00586019 0.00523374 0.423027 0.375862 74 20993 41 8.18539e+06 4.47902e+06 1.40368e+06 4332.34 7.70 2.07686 1.81166 37912 362744 -1 16756 18 7134 8004 1128968 235536 4.39726 4.39726 -2385.21 -4.39726 0 0 1.74764e+06 5393.95 0.46 0.53 0.37 -1 -1 0.46 0.278899 0.249426 877 1293 456 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_26.v common 13.31 vpr 79.98 MiB 0.19 14172 -1 -1 1 0.42 -1 -1 38464 -1 -1 118 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81896 22 19 3689 3062 1 1872 166 18 18 324 mult_36 auto 42.9 MiB 0.73 10890 31630 7268 20957 3405 80.0 MiB 0.87 0.01 4.27196 -2181.76 -4.27196 4.27196 0.76 0.00606494 0.00540887 0.467527 0.418559 70 19335 31 8.18539e+06 4.50845e+06 1.34436e+06 4149.26 5.95 2.19285 1.93908 37264 347768 -1 16326 14 6732 7802 873866 193746 4.64786 4.64786 -2351.91 -4.64786 0 0 1.69344e+06 5226.66 0.44 0.45 0.31 -1 -1 0.44 0.250603 0.228761 896 1312 475 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_27.v common 14.41 vpr 80.97 MiB 0.24 14340 -1 -1 1 0.46 -1 -1 38332 -1 -1 126 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82916 22 19 3871 3210 1 1979 175 18 18 324 mult_36 auto 43.9 MiB 0.98 11935 36361 8458 24158 3745 81.0 MiB 0.94 0.01 4.27196 -2285.74 -4.27196 4.27196 0.75 0.00613784 0.00547274 0.503502 0.449047 74 21341 43 8.18539e+06 5.02217e+06 1.40368e+06 4332.34 6.40 2.23969 1.95842 37912 362744 -1 17442 28 7329 8264 1322461 328195 4.39726 4.39726 -2440.95 -4.39726 0 0 1.74764e+06 5393.95 0.44 0.76 0.34 -1 -1 0.44 0.424379 0.377177 944 1385 494 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_28.v common 14.60 vpr 81.27 MiB 0.18 14592 -1 -1 1 0.47 -1 -1 38396 -1 -1 128 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83216 22 19 3945 3267 1 2024 177 18 18 324 mult_36 auto 44.3 MiB 0.90 12138 33905 7358 22743 3804 81.3 MiB 0.87 0.01 4.2084 -2321.46 -4.2084 4.2084 0.75 0.00632408 0.00564454 0.466734 0.414007 70 21577 28 8.18539e+06 5.0516e+06 1.34436e+06 4149.26 7.04 2.21927 1.94826 37264 347768 -1 17740 16 7557 8666 1010701 226948 4.39726 4.39726 -2498.89 -4.39726 0 0 1.69344e+06 5226.66 0.44 0.51 0.32 -1 -1 0.44 0.287858 0.262005 962 1404 513 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_29.v common 17.47 vpr 82.56 MiB 0.20 14908 -1 -1 1 0.53 -1 -1 39728 -1 -1 135 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84544 22 19 4159 3447 1 2140 185 22 22 484 mult_36 auto 45.6 MiB 0.82 12922 36479 8016 24715 3748 82.6 MiB 0.96 0.01 4.27196 -2537.11 -4.27196 4.27196 1.19 0.00683899 0.00611129 0.513952 0.458181 72 24568 26 1.33067e+07 5.5506e+06 2.11301e+06 4365.72 7.99 2.21268 1.9378 56918 551676 -1 19622 18 7762 9120 1147231 234160 4.52256 4.52256 -2684.21 -4.52256 0 0 2.64603e+06 5467.00 0.81 0.59 0.50 -1 -1 0.81 0.327241 0.293336 1015 1491 532 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_30.v common 17.71 vpr 82.84 MiB 0.22 15256 -1 -1 1 0.50 -1 -1 40852 -1 -1 137 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84824 22 19 4233 3504 1 2179 187 22 22 484 mult_36 auto 45.8 MiB 1.00 12963 38101 8862 25522 3717 82.8 MiB 1.03 0.01 4.16456 -2491.22 -4.16456 4.16456 1.21 0.00728231 0.00641715 0.549748 0.485614 68 24170 26 1.33067e+07 5.58003e+06 2.01763e+06 4168.66 8.33 2.19929 1.91941 55470 518816 -1 19865 19 8475 9594 1119874 244580 4.27196 4.27196 -2605.99 -4.27196 0 0 2.51205e+06 5190.18 0.79 0.62 0.32 -1 -1 0.79 0.347772 0.311818 1034 1510 551 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_31.v common 19.21 vpr 84.78 MiB 0.19 15500 -1 -1 1 0.53 -1 -1 40888 -1 -1 143 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86816 22 19 4410 3647 1 2283 193 22 22 484 mult_36 auto 46.6 MiB 1.09 13261 42525 9859 28389 4277 84.8 MiB 1.12 0.01 4.20292 -2606.72 -4.20292 4.20292 1.23 0.00792387 0.00715548 0.607786 0.542467 68 26796 45 1.33067e+07 5.66832e+06 2.01763e+06 4168.66 9.59 2.60643 2.28092 55470 518816 -1 20620 18 9122 10596 1262791 274069 4.27196 4.27196 -2850.79 -4.27196 0 0 2.51205e+06 5190.18 0.66 0.58 0.41 -1 -1 0.66 0.313357 0.279844 1077 1578 570 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_32.v common 17.78 vpr 83.86 MiB 0.24 15564 -1 -1 1 0.65 -1 -1 40628 -1 -1 145 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85876 22 19 4484 3704 1 2328 195 22 22 484 mult_36 auto 46.7 MiB 1.10 14086 42570 10140 28365 4065 83.9 MiB 1.19 0.01 4.27196 -2656.53 -4.27196 4.27196 1.26 0.0074867 0.00669018 0.632666 0.566104 76 25174 22 1.33067e+07 5.69776e+06 2.20457e+06 4554.90 7.48 2.3411 2.05657 57882 574062 -1 21201 17 8736 10203 1208112 256654 4.52256 4.52256 -2899.81 -4.52256 0 0 2.73077e+06 5642.09 0.76 0.56 0.47 -1 -1 0.76 0.308971 0.276204 1096 1597 589 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_33.v common 19.59 vpr 86.55 MiB 0.18 16668 -1 -1 1 0.72 -1 -1 41584 -1 -1 157 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88624 22 19 4843 4029 1 2439 208 22 22 484 mult_36 auto 48.9 MiB 0.97 14930 47640 11114 32188 4338 86.5 MiB 1.36 0.02 4.39726 -2986.1 -4.39726 4.39726 1.21 0.00807193 0.00721129 0.720009 0.641175 72 28519 46 1.33067e+07 6.27034e+06 2.11301e+06 4365.72 9.31 2.92459 2.56125 56918 551676 -1 22603 18 8941 10278 1322426 274519 4.52256 4.52256 -3196.98 -4.52256 0 0 2.64603e+06 5467.00 0.69 0.62 0.44 -1 -1 0.69 0.344955 0.307973 1185 1756 608 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_34.v common 19.92 vpr 86.19 MiB 0.21 16844 -1 -1 1 0.66 -1 -1 41520 -1 -1 160 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88260 22 19 4917 4086 1 2483 211 22 22 484 mult_36 auto 49.5 MiB 1.07 15547 44101 10019 30168 3914 86.2 MiB 1.19 0.02 4.52256 -2910.9 -4.52256 4.52256 1.29 0.00850993 0.00765958 0.628457 0.56061 72 28972 45 1.33067e+07 6.31449e+06 2.11301e+06 4365.72 9.40 3.01041 2.65124 56918 551676 -1 23425 15 9029 10536 1317654 275619 4.77316 4.77316 -3227.02 -4.77316 0 0 2.64603e+06 5467.00 0.72 0.59 0.48 -1 -1 0.72 0.310447 0.278067 1205 1775 627 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_35.v common 19.61 vpr 86.97 MiB 0.19 17008 -1 -1 1 0.61 -1 -1 41780 -1 -1 163 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89056 22 19 5093 4228 1 2586 214 22 22 484 mult_36 auto 50.4 MiB 1.15 14368 50056 10737 34290 5029 87.0 MiB 1.36 0.02 4.0831 -3007.04 -4.0831 4.0831 1.30 0.00833478 0.00743564 0.68954 0.611847 70 26841 32 1.33067e+07 6.35863e+06 2.06816e+06 4273.05 8.76 2.96404 2.60102 56434 539830 -1 22266 17 9508 10903 1285918 285062 4.27196 4.27196 -3253.37 -4.27196 0 0 2.60483e+06 5381.88 0.75 0.66 0.47 -1 -1 0.75 0.377564 0.341646 1248 1842 646 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_36.v common 28.12 vpr 87.36 MiB 0.27 17256 -1 -1 1 0.66 -1 -1 42020 -1 -1 165 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89452 22 19 5167 4285 1 2630 216 22 22 484 mult_36 auto 50.8 MiB 1.17 17033 50682 11615 34548 4519 87.4 MiB 1.48 0.02 4.41516 -3107.93 -4.41516 4.41516 1.32 0.0095028 0.00838872 0.767027 0.68235 78 30105 32 1.33067e+07 6.38806e+06 2.25108e+06 4650.99 16.67 3.91497 3.43174 58850 595650 -1 24920 16 9692 11251 1483545 305489 4.52256 4.52256 -3425.17 -4.52256 0 0 2.82299e+06 5832.63 0.79 0.67 0.52 -1 -1 0.79 0.358575 0.322125 1267 1861 665 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_37.v common 22.25 vpr 88.59 MiB 0.24 17688 -1 -1 1 0.71 -1 -1 40812 -1 -1 173 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 90716 22 19 5380 4464 1 2739 225 24 24 576 mult_36 auto 52.1 MiB 1.21 16600 56313 12680 38864 4769 88.6 MiB 1.57 0.02 4.39726 -3260.8 -4.39726 4.39726 1.56 0.00877338 0.00782934 0.818708 0.726201 70 30941 28 1.60519e+07 6.90179e+06 2.45377e+06 4260.01 9.63 2.98262 2.61057 66754 640332 -1 25189 16 10124 11953 1441066 304403 4.52256 4.52256 -3510.18 -4.52256 0 0 3.09179e+06 5367.68 0.86 0.69 0.63 -1 -1 0.86 0.381342 0.340062 1321 1947 684 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_38.v common 23.40 vpr 90.68 MiB 0.27 17864 -1 -1 1 0.70 -1 -1 42304 -1 -1 176 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 92852 22 19 5454 4521 1 2784 228 24 24 576 mult_36 auto 52.1 MiB 1.20 17686 58692 14006 39560 5126 88.5 MiB 1.63 0.02 4.20237 -3287.95 -4.20237 4.20237 1.47 0.00905596 0.00808648 0.861451 0.765781 80 27661 18 1.60519e+07 6.94594e+06 2.72095e+06 4723.87 11.25 3.6755 3.21596 70206 720185 -1 25044 17 9392 10797 1238597 262408 4.39726 4.39726 -3387.93 -4.39726 0 0 3.41546e+06 5929.62 0.92 0.62 0.58 -1 -1 0.92 0.365106 0.326009 1340 1966 703 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_39.v common 21.01 vpr 92.66 MiB 0.31 18068 -1 -1 1 0.60 -1 -1 40220 -1 -1 180 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94884 22 19 5629 4662 1 2882 232 24 24 576 mult_36 auto 52.9 MiB 1.16 17139 55056 12561 37747 4748 89.5 MiB 1.32 0.01 4.39726 -3372.5 -4.39726 4.39726 1.43 0.00421205 0.00376248 0.673509 0.595022 72 32360 40 1.60519e+07 7.0048e+06 2.50747e+06 4353.24 9.53 3.12732 2.7338 67330 654343 -1 26063 15 10213 11721 1450566 306425 4.52256 4.52256 -3562.16 -4.52256 0 0 3.14081e+06 5452.80 0.88 0.66 0.52 -1 -1 0.88 0.362696 0.325953 1381 2032 722 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_40.v common 23.71 vpr 95.62 MiB 0.17 18332 -1 -1 1 0.64 -1 -1 42224 -1 -1 182 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 97920 22 19 5703 4719 1 2929 234 24 24 576 mult_36 auto 53.8 MiB 1.19 17730 54234 12385 37329 4520 90.3 MiB 1.44 0.02 4.27196 -3426.27 -4.27196 4.27196 1.45 0.0096553 0.00863034 0.736039 0.655051 74 32857 35 1.60519e+07 7.03423e+06 2.56259e+06 4448.94 11.86 3.74322 3.27327 67906 667765 -1 27007 17 10660 11973 1577287 328402 4.39726 4.39726 -3639.92 -4.39726 0 0 3.19068e+06 5539.38 0.88 0.72 0.53 -1 -1 0.88 0.399574 0.357659 1400 2051 741 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_41.v common 25.04 vpr 92.39 MiB 0.19 18932 -1 -1 1 0.84 -1 -1 41616 -1 -1 190 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94612 22 19 5950 4932 1 3039 243 24 24 576 mult_36 auto 54.5 MiB 1.28 18494 48755 10232 33831 4692 90.9 MiB 1.31 0.02 4.14666 -3593.15 -4.14666 4.14666 1.49 0.00924519 0.00822018 0.675753 0.598199 78 30524 25 1.60519e+07 7.54795e+06 2.67122e+06 4637.53 12.89 4.04171 3.53277 69630 706637 -1 26409 17 10464 12149 1422734 303195 4.27196 4.27196 -3758.11 -4.27196 0 0 3.35110e+06 5817.88 0.92 0.70 0.57 -1 -1 0.92 0.40952 0.366635 1461 2153 760 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_42.v common 27.13 vpr 92.70 MiB 0.23 18872 -1 -1 1 0.94 -1 -1 42772 -1 -1 193 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94928 22 19 6024 4989 1 3082 246 24 24 576 mult_36 auto 55.2 MiB 1.24 20030 64926 14885 44112 5929 91.5 MiB 1.76 0.02 4.39726 -3645.71 -4.39726 4.39726 1.56 0.00996243 0.008898 0.910422 0.8106 76 36054 42 1.60519e+07 7.5921e+06 2.61600e+06 4541.67 13.78 4.1362 3.61629 68478 680951 -1 29459 18 11439 13299 1697383 348587 4.39726 4.39726 -3948.23 -4.39726 0 0 3.24203e+06 5628.53 1.06 0.83 0.60 -1 -1 1.06 0.459419 0.411692 1480 2172 779 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_43.v common 23.59 vpr 92.35 MiB 0.25 19360 -1 -1 1 1.09 -1 -1 43276 -1 -1 199 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94568 22 19 6198 5129 1 3181 252 24 24 576 mult_36 auto 56.1 MiB 1.30 20168 59082 13911 39065 6106 92.4 MiB 1.54 0.02 4.64786 -3811.84 -4.64786 4.64786 1.45 0.00965356 0.0085898 0.791746 0.702729 74 34701 31 1.60519e+07 7.68039e+06 2.56259e+06 4448.94 10.77 3.6847 3.24442 67906 667765 -1 29515 15 11276 13062 1613817 335267 4.64786 4.64786 -4088.62 -4.64786 0 0 3.19068e+06 5539.38 0.91 0.74 0.58 -1 -1 0.91 0.402959 0.361589 1523 2237 798 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_44.v common 30.25 vpr 94.77 MiB 0.25 19504 -1 -1 1 0.92 -1 -1 43224 -1 -1 200 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 97048 22 19 6272 5186 1 3226 253 24 24 576 mult_36 auto 56.9 MiB 1.40 20928 66570 15265 44565 6740 93.2 MiB 1.86 0.02 4.52256 -3840.7 -4.52256 4.52256 1.62 0.0105936 0.00945656 0.966478 0.858883 78 34552 50 1.60519e+07 7.69511e+06 2.67122e+06 4637.53 16.75 4.95122 4.3327 69630 706637 -1 28997 15 11195 13019 1576795 325150 4.64786 4.64786 -4270.29 -4.64786 0 0 3.35110e+06 5817.88 1.03 0.72 0.58 -1 -1 1.03 0.422781 0.383052 1542 2256 817 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_45.v common 26.51 vpr 95.27 MiB 0.22 19780 -1 -1 1 1.06 -1 -1 43724 -1 -1 208 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 97556 22 19 6485 5365 1 3338 262 24 24 576 mult_36 auto 57.5 MiB 1.43 21050 68140 15742 46206 6192 93.8 MiB 1.96 0.02 4.3337 -3866.62 -4.3337 4.3337 1.72 0.0110034 0.00985175 1.00708 0.895221 76 37388 40 1.60519e+07 8.20883e+06 2.61600e+06 4541.67 12.17 3.96882 3.48336 68478 680951 -1 29833 26 12212 14243 1891537 439336 4.39726 4.39726 -4071.65 -4.39726 0 0 3.24203e+06 5628.53 0.94 1.11 0.57 -1 -1 0.94 0.649219 0.577456 1593 2342 836 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_46.v common 24.25 vpr 95.32 MiB 0.31 20044 -1 -1 1 1.01 -1 -1 43836 -1 -1 210 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 97604 22 19 6559 5422 1 3380 264 24 24 576 mult_36 auto 57.9 MiB 1.44 20986 65406 14272 45368 5766 94.0 MiB 1.89 0.02 4.41516 -3851.32 -4.41516 4.41516 1.75 0.0104864 0.00925677 0.951179 0.844485 76 35918 33 1.60519e+07 8.23826e+06 2.61600e+06 4541.67 9.96 3.65068 3.18914 68478 680951 -1 30049 16 12176 14229 1658356 357526 4.39726 4.39726 -4137.94 -4.39726 0 0 3.24203e+06 5628.53 0.96 0.81 0.56 -1 -1 0.96 0.45034 0.404231 1613 2361 855 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_47.v common 30.26 vpr 100.97 MiB 0.23 20468 -1 -1 1 0.98 -1 -1 44512 -1 -1 216 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 103392 22 19 6735 5564 1 3477 270 24 24 576 mult_36 auto 59.1 MiB 1.55 24055 64798 13570 44576 6652 95.1 MiB 1.71 0.02 4.39726 -4157.74 -4.39726 4.39726 1.78 0.0113045 0.0101147 0.845251 0.755155 86 40233 49 1.60519e+07 8.32656e+06 2.91907e+06 5067.82 15.99 4.313 3.78276 72506 773887 -1 33084 16 12748 14764 2101422 413693 4.64786 4.64786 -4356.52 -4.64786 0 0 3.65856e+06 6351.67 1.02 0.87 0.65 -1 -1 1.02 0.458208 0.411484 1656 2428 874 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_48.v common 35.47 vpr 96.93 MiB 0.32 20664 -1 -1 1 0.95 -1 -1 44236 -1 -1 218 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 99252 22 19 6809 5621 1 3526 272 24 24 576 mult_36 auto 59.3 MiB 1.50 22900 73395 16707 49770 6918 95.2 MiB 2.15 0.02 4.39726 -4153.76 -4.39726 4.39726 1.67 0.011406 0.0101958 1.08523 0.969545 80 37824 42 1.60519e+07 8.35599e+06 2.72095e+06 4723.87 20.80 5.22399 4.56195 70206 720185 -1 31870 17 12170 14127 1643072 340205 4.52256 4.52256 -4448.16 -4.52256 0 0 3.41546e+06 5929.62 0.98 0.91 0.60 -1 -1 0.98 0.514534 0.462797 1674 2447 893 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_49.v common 31.44 vpr 97.77 MiB 0.33 21116 -1 -1 1 1.20 -1 -1 44496 -1 -1 228 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 100120 22 19 7094 5872 1 3640 283 24 24 576 mult_36 auto 60.8 MiB 1.61 22621 68027 14330 47033 6664 96.8 MiB 1.93 0.02 4.32767 -4362.09 -4.32767 4.32767 1.64 0.0119534 0.0107154 0.980804 0.872047 78 38472 32 1.60519e+07 8.89916e+06 2.67122e+06 4637.53 16.89 5.12848 4.48135 69630 706637 -1 32337 18 12793 14786 1774390 369345 4.39726 4.39726 -4662.48 -4.39726 0 0 3.35110e+06 5817.88 0.96 0.89 0.59 -1 -1 0.96 0.506522 0.451565 1745 2569 912 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_50.v common 42.89 vpr 104.99 MiB 0.34 21260 -1 -1 1 1.07 -1 -1 44300 -1 -1 230 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 107512 22 19 7168 5929 1 3676 285 24 24 576 mult_36 auto 61.3 MiB 1.54 23567 73371 16206 50485 6680 97.6 MiB 2.07 0.02 4.52256 -4404.95 -4.52256 4.52256 1.61 0.0121815 0.0108962 1.01563 0.902893 80 39688 35 1.60519e+07 8.92859e+06 2.72095e+06 4723.87 28.13 5.30125 4.63165 70206 720185 -1 33305 16 12887 14936 1843889 377237 4.64786 4.64786 -4684.92 -4.64786 0 0 3.41546e+06 5929.62 0.97 0.88 0.58 -1 -1 0.97 0.48546 0.433223 1764 2588 931 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_51.v common 35.12 vpr 100.53 MiB 0.29 21748 -1 -1 1 1.16 -1 -1 44852 -1 -1 235 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 102940 22 19 7344 6071 1 3782 290 24 24 576 mult_36 auto 61.8 MiB 1.53 23722 73174 15715 50579 6880 97.9 MiB 2.23 0.02 4.459 -4442.21 -4.459 4.459 1.71 0.0129397 0.0114853 1.13602 1.00367 78 40381 49 1.60519e+07 9.00217e+06 2.67122e+06 4637.53 19.81 5.82881 5.09426 69630 706637 -1 33812 17 13492 15556 1913676 402938 4.39726 4.39726 -4781.62 -4.39726 0 0 3.35110e+06 5817.88 0.99 0.96 0.60 -1 -1 0.99 0.553941 0.498992 1808 2655 950 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_52.v common 29.93 vpr 103.93 MiB 0.35 21712 -1 -1 1 1.06 -1 -1 45144 -1 -1 237 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 106420 22 19 7418 6128 1 3828 292 24 24 576 mult_36 auto 63.0 MiB 1.65 25005 78700 18301 52935 7464 99.2 MiB 2.24 0.03 4.3337 -4441.83 -4.3337 4.3337 1.62 0.0141833 0.0126136 1.11433 0.987066 82 41723 40 1.60519e+07 9.0316e+06 2.78508e+06 4835.20 14.40 5.09586 4.46474 70778 734779 -1 34399 17 13048 14909 1766649 364634 4.64786 4.64786 -4948.18 -4.64786 0 0 3.48632e+06 6052.64 1.03 0.91 0.62 -1 -1 1.03 0.529155 0.472554 1827 2674 969 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_14.v common 8.30 vpr 67.70 MiB 0.06 9236 -1 -1 1 0.16 -1 -1 34796 -1 -1 43 22 0 4 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69320 22 19 1246 925 1 718 88 16 16 256 mult_36 auto 29.6 MiB 0.40 3890 12373 3373 7466 1534 67.7 MiB 0.29 0.00 7.60941 -361.611 -7.60941 7.60941 0.58 0.00248719 0.00227377 0.168746 0.154814 48 8671 44 6.62819e+06 2.21677e+06 755748. 2952.14 4.19 0.782373 0.696842 25088 180500 -1 6645 23 6937 7779 935577 227413 8.26573 8.26573 -437.931 -8.26573 0 0 916467. 3579.95 0.32 0.34 0.18 -1 -1 0.32 0.131416 0.117582 299 344 247 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_15.v common 7.86 vpr 67.93 MiB 0.10 9568 -1 -1 1 0.16 -1 -1 35164 -1 -1 46 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69560 22 19 1344 989 1 778 92 16 16 256 mult_36 auto 30.1 MiB 0.35 4185 14168 4013 8552 1603 67.9 MiB 0.34 0.00 7.6175 -392.139 -7.6175 7.6175 0.57 0.00268393 0.00245944 0.195077 0.179222 60 7437 28 6.62819e+06 2.65692e+06 890343. 3477.90 3.66 0.798125 0.713421 27128 224764 -1 6562 26 6006 6790 825899 214119 7.65538 7.65538 -446.805 -7.65538 0 0 1.11577e+06 4358.47 0.27 0.34 0.20 -1 -1 0.27 0.146346 0.13072 321 369 266 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_16.v common 7.58 vpr 68.24 MiB 0.11 9564 -1 -1 1 0.17 -1 -1 35172 -1 -1 48 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69880 22 19 1418 1046 1 821 94 16 16 256 mult_36 auto 30.5 MiB 0.39 4487 13513 3432 8383 1698 68.2 MiB 0.33 0.00 7.60494 -393.597 -7.60494 7.60494 0.58 0.0027842 0.00255165 0.187731 0.172143 56 8390 28 6.62819e+06 2.68636e+06 849745. 3319.32 3.33 0.831016 0.737597 26364 208198 -1 7216 25 7078 7963 962371 230897 7.99013 7.99013 -460.438 -7.99013 0 0 1.04740e+06 4091.43 0.25 0.36 0.25 -1 -1 0.25 0.150063 0.134273 340 388 285 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_17.v common 9.38 vpr 68.71 MiB 0.11 10216 -1 -1 1 0.15 -1 -1 35368 -1 -1 52 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70356 22 19 1518 1112 1 879 98 16 16 256 mult_36 auto 31.0 MiB 0.39 4625 16298 4224 8851 3223 68.7 MiB 0.40 0.01 8.32683 -417.873 -8.32683 8.32683 0.58 0.00298677 0.00271368 0.228688 0.209212 58 9112 39 6.62819e+06 2.74522e+06 871168. 3403.00 5.05 0.9919 0.882394 26872 219187 -1 7252 25 7366 7878 922895 225342 9.12512 9.12512 -480.323 -9.12512 0 0 1.09288e+06 4269.05 0.27 0.39 0.19 -1 -1 0.27 0.167818 0.150821 365 415 304 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_18.v common 11.18 vpr 69.09 MiB 0.12 10396 -1 -1 1 0.19 -1 -1 34952 -1 -1 55 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70752 22 19 1592 1169 1 918 101 16 16 256 mult_36 auto 31.2 MiB 0.42 5347 16316 4097 10275 1944 69.1 MiB 0.41 0.01 8.4422 -469.823 -8.4422 8.4422 0.57 0.00307543 0.00281496 0.225945 0.206695 56 10897 47 6.62819e+06 2.78937e+06 849745. 3319.32 6.50 1.05998 0.941705 26364 208198 -1 9026 32 9275 10182 1519161 349464 9.30818 9.30818 -562.145 -9.30818 0 0 1.04740e+06 4091.43 0.25 0.55 0.18 -1 -1 0.25 0.20576 0.183578 383 434 323 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_19.v common 10.03 vpr 69.58 MiB 0.08 10668 -1 -1 1 0.20 -1 -1 35488 -1 -1 58 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71252 22 19 1688 1231 1 976 105 16 16 256 mult_36 auto 31.8 MiB 0.46 5523 17642 4653 10328 2661 69.6 MiB 0.43 0.01 8.2901 -468.025 -8.2901 8.2901 0.57 0.00321502 0.00294453 0.244246 0.223338 58 10958 42 6.62819e+06 3.22951e+06 871168. 3403.00 5.27 1.08965 0.971784 26872 219187 -1 8881 23 8148 9336 1045786 240112 9.19702 9.19702 -670.638 -9.19702 0 0 1.09288e+06 4269.05 0.36 0.44 0.21 -1 -1 0.36 0.170417 0.152624 404 457 342 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_20.v common 9.80 vpr 70.05 MiB 0.08 10652 -1 -1 1 0.22 -1 -1 35588 -1 -1 59 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71732 22 19 1762 1288 1 1014 106 16 16 256 mult_36 auto 32.2 MiB 0.47 5650 16606 4202 10324 2080 70.1 MiB 0.45 0.01 8.4978 -488.18 -8.4978 8.4978 0.57 0.00334718 0.00305518 0.244371 0.222607 56 11507 38 6.62819e+06 3.24423e+06 849745. 3319.32 4.85 1.09951 0.975231 26364 208198 -1 9516 27 10307 11396 1607507 371242 9.22112 9.22112 -579.067 -9.22112 0 0 1.04740e+06 4091.43 0.27 0.59 0.21 -1 -1 0.27 0.202265 0.180619 423 476 361 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_21.v common 10.37 vpr 70.59 MiB 0.13 10924 -1 -1 1 0.23 -1 -1 35984 -1 -1 62 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72284 22 19 1859 1351 1 1072 109 16 16 256 mult_36 auto 32.8 MiB 0.52 6035 17789 4471 10978 2340 70.6 MiB 0.50 0.01 8.38109 -487.093 -8.38109 8.38109 0.58 0.00353177 0.00322401 0.258398 0.235679 60 12117 48 6.62819e+06 3.28838e+06 890343. 3477.90 5.30 1.15998 1.0304 27128 224764 -1 9393 23 8484 9643 1075611 255217 9.04658 9.04658 -638.837 -9.04658 0 0 1.11577e+06 4358.47 0.34 0.43 0.20 -1 -1 0.34 0.187693 0.169332 445 500 380 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_22.v common 9.75 vpr 71.11 MiB 0.15 11060 -1 -1 1 0.23 -1 -1 35992 -1 -1 66 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72816 22 19 1933 1408 1 1111 113 16 16 256 mult_36 auto 33.4 MiB 0.55 6447 14582 3335 9243 2004 71.1 MiB 0.40 0.01 8.38225 -539.049 -8.38225 8.38225 0.52 0.00372084 0.00340025 0.211763 0.193395 66 12032 36 6.62819e+06 3.34724e+06 974584. 3806.97 4.64 1.11576 0.989347 28148 247068 -1 9826 24 8221 9433 1042848 236369 8.80852 8.80852 -690.661 -8.80852 0 0 1.22072e+06 4768.46 0.29 0.44 0.23 -1 -1 0.29 0.195304 0.175492 464 519 399 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_23.v common 12.26 vpr 71.07 MiB 0.15 11404 -1 -1 1 0.25 -1 -1 36004 -1 -1 68 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72780 22 19 2031 1472 1 1174 116 18 18 324 mult_36 auto 33.5 MiB 0.60 6930 17882 4089 11335 2458 71.1 MiB 0.47 0.01 8.41364 -547.214 -8.41364 8.41364 0.75 0.00373301 0.0033942 0.252968 0.230155 60 13146 46 8.18539e+06 3.77267e+06 1.16833e+06 3605.96 6.44 1.26858 1.12367 35004 297736 -1 10629 25 9789 11037 1322884 293485 8.79022 8.79022 -667.882 -8.79022 0 0 1.46313e+06 4515.82 0.37 0.55 0.26 -1 -1 0.37 0.222269 0.199302 486 544 418 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_24.v common 28.06 vpr 71.67 MiB 0.15 11572 -1 -1 1 0.26 -1 -1 36336 -1 -1 71 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73388 22 19 2105 1529 1 1210 119 18 18 324 mult_36 auto 34.0 MiB 0.57 6947 19099 4545 12489 2065 71.7 MiB 0.50 0.01 8.54591 -592.304 -8.54591 8.54591 0.76 0.00387295 0.00353344 0.268825 0.244429 58 13826 37 8.18539e+06 3.81682e+06 1.14310e+06 3528.09 22.14 2.16612 1.90652 34680 290288 -1 11315 25 10013 11336 1455403 323969 9.26762 9.26762 -836.784 -9.26762 0 0 1.43297e+06 4422.75 0.38 0.51 0.26 -1 -1 0.38 0.191148 0.172557 505 563 437 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_25.v common 12.18 vpr 72.28 MiB 0.10 11840 -1 -1 1 0.28 -1 -1 36436 -1 -1 73 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74016 22 19 2201 1591 1 1268 121 18 18 324 mult_36 auto 34.8 MiB 0.59 7634 22247 5441 14246 2560 72.3 MiB 0.59 0.01 8.41835 -567.959 -8.41835 8.41835 0.75 0.00403852 0.00366175 0.317042 0.288294 64 14202 44 8.18539e+06 3.84625e+06 1.23838e+06 3822.15 6.20 1.44631 1.28376 35972 318676 -1 11820 29 12088 13740 1940094 442042 8.68898 8.68898 -781.144 -8.68898 0 0 1.56068e+06 4816.91 0.38 0.65 0.28 -1 -1 0.38 0.246613 0.219596 526 586 456 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_26.v common 11.94 vpr 72.46 MiB 0.10 11936 -1 -1 1 0.28 -1 -1 37420 -1 -1 76 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74204 22 19 2275 1648 1 1306 124 18 18 324 mult_36 auto 35.1 MiB 0.81 7751 20827 4662 13516 2649 72.5 MiB 0.57 0.01 8.56929 -568.623 -8.56929 8.56929 0.77 0.00413781 0.00376541 0.298181 0.271274 60 14701 32 8.18539e+06 3.8904e+06 1.16833e+06 3605.96 5.72 1.33007 1.17753 35004 297736 -1 12032 25 10795 12330 1483067 336752 8.81798 8.81798 -886.816 -8.81798 0 0 1.46313e+06 4515.82 0.37 0.55 0.25 -1 -1 0.37 0.224402 0.199898 546 605 475 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_27.v common 12.20 vpr 73.11 MiB 0.16 12176 -1 -1 1 0.31 -1 -1 36624 -1 -1 82 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74864 22 19 2385 1724 1 1378 131 18 18 324 mult_36 auto 35.7 MiB 0.67 8283 20383 4936 13018 2429 73.1 MiB 0.56 0.01 8.5461 -628.049 -8.5461 8.5461 0.75 0.00441244 0.00400671 0.289094 0.262967 68 14535 41 8.18539e+06 4.37469e+06 1.31159e+06 4048.11 5.93 1.42908 1.26783 36620 334356 -1 12409 26 10631 12441 1427422 320553 8.58227 8.58227 -875.158 -8.58227 0 0 1.63345e+06 5041.52 0.41 0.56 0.28 -1 -1 0.41 0.247584 0.221266 575 642 494 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_28.v common 16.70 vpr 73.46 MiB 0.17 12280 -1 -1 1 0.31 -1 -1 36788 -1 -1 83 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75224 22 19 2459 1781 1 1417 132 18 18 324 mult_36 auto 36.1 MiB 0.64 8787 24252 5813 15988 2451 73.5 MiB 0.63 0.01 8.59036 -640.13 -8.59036 8.59036 0.74 0.00438785 0.00398589 0.335875 0.305032 58 18144 50 8.18539e+06 4.3894e+06 1.14310e+06 3528.09 10.39 1.61231 1.42708 34680 290288 -1 13981 22 13072 15000 1915715 426043 9.02382 9.02382 -822.024 -9.02382 0 0 1.43297e+06 4422.75 0.36 0.64 0.24 -1 -1 0.36 0.241009 0.217144 594 661 513 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_29.v common 17.70 vpr 73.96 MiB 0.18 12728 -1 -1 1 0.32 -1 -1 37292 -1 -1 85 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75732 22 19 2565 1853 1 1485 135 22 22 484 mult_36 auto 36.7 MiB 0.71 9693 25047 5824 16462 2761 74.0 MiB 0.71 0.01 8.56824 -658.817 -8.56824 8.56824 1.22 0.00474006 0.0043231 0.362784 0.329646 64 18425 33 1.33067e+07 4.81483e+06 1.90554e+06 3937.06 9.45 1.53093 1.35853 54502 494576 -1 15063 28 14458 16832 2340289 516030 8.76628 8.76628 -928.497 -8.76628 0 0 2.40101e+06 4960.76 0.62 0.77 0.40 -1 -1 0.62 0.280264 0.250411 619 694 532 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_30.v common 15.00 vpr 74.31 MiB 0.08 12824 -1 -1 1 0.34 -1 -1 37428 -1 -1 89 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76096 22 19 2639 1910 1 1523 139 22 22 484 mult_36 auto 37.1 MiB 0.74 9384 25628 5988 16697 2943 74.3 MiB 0.72 0.01 8.44238 -674.317 -8.44238 8.44238 1.23 0.00474821 0.00431628 0.368392 0.334281 70 15871 29 1.33067e+07 4.87369e+06 2.06816e+06 4273.05 6.97 1.51562 1.34444 56434 539830 -1 14145 24 11726 13596 1807233 398151 9.10687 9.10687 -826.57 -9.10687 0 0 2.60483e+06 5381.88 0.69 0.64 0.44 -1 -1 0.69 0.255512 0.228396 639 713 551 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_31.v common 17.31 vpr 74.87 MiB 0.19 12964 -1 -1 1 0.39 -1 -1 37424 -1 -1 93 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76664 22 19 2744 1981 1 1590 143 22 22 484 mult_36 auto 37.7 MiB 0.74 9784 30356 7187 19530 3639 74.9 MiB 0.86 0.01 8.38567 -675.978 -8.38567 8.38567 1.22 0.00507411 0.00456402 0.440825 0.399147 64 18972 47 1.33067e+07 4.93255e+06 1.90554e+06 3937.06 9.03 1.81872 1.61299 54502 494576 -1 15109 27 13335 15415 2075489 440624 9.05667 9.05667 -930.353 -9.05667 0 0 2.40101e+06 4960.76 0.63 0.71 0.40 -1 -1 0.63 0.28603 0.255035 665 745 570 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_32.v common 59.78 vpr 75.20 MiB 0.13 13060 -1 -1 1 0.42 -1 -1 36820 -1 -1 96 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77008 22 19 2818 2038 1 1627 146 22 22 484 mult_36 auto 37.9 MiB 0.81 9765 27794 6626 18138 3030 75.2 MiB 0.78 0.01 8.43423 -706.833 -8.43423 8.43423 1.24 0.00503391 0.00455887 0.393484 0.356822 68 17281 43 1.33067e+07 4.9767e+06 2.01763e+06 4168.66 51.47 3.45154 3.04118 55470 518816 -1 14549 26 13387 15791 1843918 396984 8.48238 8.48238 -1019.62 -8.48238 0 0 2.51205e+06 5190.18 0.66 0.73 0.35 -1 -1 0.66 0.32025 0.287688 684 764 589 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_33.v common 18.67 vpr 75.77 MiB 0.20 13728 -1 -1 1 0.40 -1 -1 37556 -1 -1 100 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77588 22 19 2923 2109 1 1695 151 22 22 484 mult_36 auto 38.4 MiB 0.73 10394 32632 7799 20384 4449 75.8 MiB 0.93 0.01 9.15948 -780.094 -9.15948 9.15948 1.23 0.00550841 0.00496395 0.466464 0.422627 68 19006 40 1.33067e+07 5.43155e+06 2.01763e+06 4168.66 10.13 1.85464 1.64421 55470 518816 -1 15474 24 12536 14090 1741858 383228 9.73142 9.73142 -1174.71 -9.73142 0 0 2.51205e+06 5190.18 0.66 0.64 0.41 -1 -1 0.66 0.274146 0.24518 710 796 608 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_34.v common 17.07 vpr 76.12 MiB 0.15 13748 -1 -1 1 0.44 -1 -1 37840 -1 -1 101 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77944 22 19 2997 2166 1 1734 152 22 22 484 mult_36 auto 38.9 MiB 1.01 10711 29717 6877 19660 3180 76.1 MiB 0.85 0.01 9.29828 -782.067 -9.29828 9.29828 1.27 0.00537933 0.00488556 0.439577 0.398766 68 19336 39 1.33067e+07 5.44627e+06 2.01763e+06 4168.66 8.09 1.80439 1.59957 55470 518816 -1 15822 25 13222 15017 1923830 410698 9.61867 9.61867 -1083.26 -9.61867 0 0 2.51205e+06 5190.18 0.67 0.74 0.44 -1 -1 0.67 0.31043 0.277578 729 815 627 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_35.v common 18.30 vpr 76.68 MiB 0.23 14092 -1 -1 1 0.43 -1 -1 37608 -1 -1 106 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78520 22 19 3101 2236 1 1801 157 22 22 484 mult_36 auto 39.4 MiB 1.05 11402 28075 6295 18501 3279 76.7 MiB 0.81 0.01 9.47066 -829.471 -9.47066 9.47066 1.22 0.00609179 0.00558557 0.405266 0.367879 70 19800 47 1.33067e+07 5.51985e+06 2.06816e+06 4273.05 9.21 1.86486 1.65176 56434 539830 -1 16867 24 13697 15802 2138431 452706 9.74781 9.74781 -1050.32 -9.74781 0 0 2.60483e+06 5381.88 0.70 0.76 0.44 -1 -1 0.70 0.299055 0.26771 755 846 646 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_36.v common 21.97 vpr 77.04 MiB 0.21 14088 -1 -1 1 0.44 -1 -1 38016 -1 -1 107 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78888 22 19 3175 2293 1 1836 158 22 22 484 mult_36 auto 39.8 MiB 1.13 11170 30902 7166 20385 3351 77.0 MiB 0.94 0.01 9.18378 -834.69 -9.18378 9.18378 1.25 0.00580597 0.00527978 0.477711 0.431692 60 23060 49 1.33067e+07 5.53456e+06 1.79840e+06 3715.71 12.89 2.11193 1.86795 53054 462096 -1 17670 24 14840 17527 2134269 458631 9.53001 9.53001 -1214.3 -9.53001 0 0 2.25108e+06 4650.99 0.61 0.77 0.38 -1 -1 0.61 0.306378 0.273847 773 865 665 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_37.v common 21.82 vpr 77.66 MiB 0.22 14376 -1 -1 1 0.43 -1 -1 37340 -1 -1 111 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79520 22 19 3280 2364 1 1904 163 24 24 576 mult_36 auto 40.5 MiB 1.15 11916 36653 8512 22659 5482 77.7 MiB 1.10 0.01 9.503 -813.596 -9.503 9.503 1.55 0.00616994 0.00541883 0.561311 0.506567 68 21847 36 1.60519e+07 5.98942e+06 2.39371e+06 4155.74 11.44 2.14252 1.89965 65606 615345 -1 17297 31 13826 16479 2281397 551091 9.31947 9.31947 -1215.55 -9.31947 0 0 2.98162e+06 5176.42 0.78 0.89 0.49 -1 -1 0.78 0.378325 0.337347 798 897 684 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_38.v common 19.36 vpr 78.34 MiB 0.28 14508 -1 -1 1 0.44 -1 -1 37968 -1 -1 113 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80220 22 19 3354 2421 1 1941 165 24 24 576 mult_36 auto 41.1 MiB 1.27 13091 35421 8629 23184 3608 78.3 MiB 1.06 0.01 9.56954 -911.791 -9.56954 9.56954 1.50 0.0060493 0.00549289 0.531047 0.479941 70 22176 36 1.60519e+07 6.01886e+06 2.45377e+06 4260.01 8.83 2.08523 1.84725 66754 640332 -1 18678 23 12610 14627 1802919 388775 9.66152 9.66152 -1189.17 -9.66152 0 0 3.09179e+06 5367.68 0.87 0.71 0.52 -1 -1 0.87 0.310292 0.277961 818 916 703 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_39.v common 19.69 vpr 78.55 MiB 0.17 14732 -1 -1 1 0.45 -1 -1 38232 -1 -1 117 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80432 22 19 3457 2490 1 2007 169 24 24 576 mult_36 auto 41.5 MiB 1.09 13257 37062 8849 24893 3320 78.5 MiB 1.04 0.01 9.53513 -973.946 -9.53513 9.53513 1.47 0.00596731 0.00540136 0.518221 0.46788 66 24364 31 1.60519e+07 6.07772e+06 2.33135e+06 4047.49 9.54 2.08379 1.84877 65030 601923 -1 19382 25 15180 17874 2138458 453487 9.76651 9.76651 -1308.99 -9.76651 0 0 2.91907e+06 5067.82 0.82 0.81 0.48 -1 -1 0.82 0.344465 0.308244 842 946 722 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_40.v common 21.96 vpr 78.87 MiB 0.21 15004 -1 -1 1 0.47 -1 -1 38752 -1 -1 120 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80760 22 19 3531 2547 1 2046 172 24 24 576 mult_36 auto 41.7 MiB 1.34 13416 38890 9004 25965 3921 78.9 MiB 1.13 0.01 9.43624 -981.01 -9.43624 9.43624 1.43 0.00625586 0.00565441 0.543303 0.489943 70 23523 44 1.60519e+07 6.12186e+06 2.45377e+06 4260.01 11.31 2.23268 1.9759 66754 640332 -1 19563 25 14474 17290 2278221 477004 9.83772 9.83772 -1353.33 -9.83772 0 0 3.09179e+06 5367.68 0.86 0.84 0.51 -1 -1 0.86 0.367156 0.327513 862 965 741 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_41.v common 21.92 vpr 79.35 MiB 0.22 15180 -1 -1 1 0.52 -1 -1 38096 -1 -1 122 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81256 22 19 3634 2616 1 2113 175 24 24 576 mult_36 auto 42.3 MiB 1.31 14260 37339 8299 25744 3296 79.4 MiB 1.14 0.01 9.48942 -936.304 -9.48942 9.48942 1.49 0.00675422 0.00614536 0.558513 0.504178 76 24101 46 1.60519e+07 6.5473e+06 2.61600e+06 4541.67 11.02 2.44748 2.17082 68478 680951 -1 20450 26 13980 16375 2275565 472356 10.0482 10.0482 -1255.71 -10.0482 0 0 3.24203e+06 5628.53 0.92 0.87 0.54 -1 -1 0.92 0.371853 0.332549 886 995 760 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_42.v common 22.42 vpr 80.11 MiB 0.12 15260 -1 -1 1 0.45 -1 -1 38348 -1 -1 125 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82028 22 19 3708 2673 1 2147 178 24 24 576 mult_36 auto 42.9 MiB 1.36 13247 38178 8698 26287 3193 80.1 MiB 1.07 0.01 9.34555 -911.748 -9.34555 9.34555 1.44 0.0064956 0.00588021 0.52583 0.474314 68 24266 46 1.60519e+07 6.59144e+06 2.39371e+06 4155.74 12.11 2.37149 2.09472 65606 615345 -1 19305 25 14215 16917 2027268 431068 9.41247 9.41247 -1370.03 -9.41247 0 0 2.98162e+06 5176.42 0.76 0.76 0.48 -1 -1 0.76 0.345503 0.307881 906 1014 779 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_43.v common 23.50 vpr 80.20 MiB 0.16 15604 -1 -1 1 0.54 -1 -1 38872 -1 -1 129 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82124 22 19 3810 2741 1 2214 182 24 24 576 mult_36 auto 43.1 MiB 1.40 14854 39322 8760 27092 3470 80.2 MiB 1.18 0.01 9.43515 -973.044 -9.43515 9.43515 1.50 0.00665249 0.00603299 0.564376 0.511736 70 26179 39 1.60519e+07 6.6503e+06 2.45377e+06 4260.01 12.41 2.38973 2.11663 66754 640332 -1 21790 27 16236 19013 2690277 570799 10.0622 10.0622 -1353.82 -10.0622 0 0 3.09179e+06 5367.68 0.89 1.00 0.52 -1 -1 0.89 0.406695 0.362835 930 1043 798 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_44.v common 21.15 vpr 80.74 MiB 0.15 15680 -1 -1 1 0.55 -1 -1 38396 -1 -1 132 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82680 22 19 3884 2798 1 2251 185 24 24 576 mult_36 auto 43.6 MiB 1.51 14264 43317 10157 28920 4240 80.7 MiB 1.14 0.01 9.54931 -1049.89 -9.54931 9.54931 1.45 0.00442549 0.0040212 0.566381 0.512217 70 23866 43 1.60519e+07 6.69445e+06 2.45377e+06 4260.01 10.14 2.47136 2.1912 66754 640332 -1 20739 24 16345 18902 2422633 514103 9.94026 9.94026 -1346.73 -9.94026 0 0 3.09179e+06 5367.68 0.84 0.90 0.53 -1 -1 0.84 0.372298 0.33204 949 1062 817 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_45.v common 21.13 vpr 81.10 MiB 0.14 15976 -1 -1 1 0.58 -1 -1 40524 -1 -1 135 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83048 22 19 3989 2869 1 2318 189 24 24 576 mult_36 auto 43.9 MiB 1.45 15002 45717 10664 29972 5081 81.1 MiB 1.34 0.02 9.30374 -1001.57 -9.30374 9.30374 1.52 0.00746911 0.00679006 0.668085 0.604004 74 24106 34 1.60519e+07 7.1346e+06 2.56259e+06 4448.94 9.60 2.47418 2.18875 67906 667765 -1 21115 26 15678 18406 2326491 502931 9.44027 9.44027 -1425.49 -9.44027 0 0 3.19068e+06 5539.38 0.86 0.92 0.59 -1 -1 0.86 0.405328 0.361259 975 1094 836 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_46.v common 24.34 vpr 81.14 MiB 0.24 16108 -1 -1 1 0.56 -1 -1 40476 -1 -1 136 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83088 22 19 4063 2926 1 2357 190 24 24 576 mult_36 auto 44.1 MiB 1.54 15384 39502 8716 27417 3369 81.1 MiB 1.20 0.02 9.25444 -1065.06 -9.25444 9.25444 1.46 0.00819881 0.00737383 0.591398 0.531649 68 28280 44 1.60519e+07 7.14931e+06 2.39371e+06 4155.74 13.33 2.59794 2.29721 65606 615345 -1 22363 25 16582 19483 2454716 510839 9.51877 9.51877 -1579.55 -9.51877 0 0 2.98162e+06 5176.42 0.80 0.77 0.50 -1 -1 0.80 0.295053 0.265261 993 1113 855 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_47.v common 22.95 vpr 81.84 MiB 0.28 16676 -1 -1 1 0.57 -1 -1 40860 -1 -1 141 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83800 22 19 4167 2996 1 2421 195 24 24 576 mult_36 auto 44.9 MiB 1.52 15434 47655 11175 32212 4268 81.8 MiB 1.45 0.02 9.32624 -1067.91 -9.32624 9.32624 1.46 0.00866741 0.00766169 0.705291 0.6329 68 26939 44 1.60519e+07 7.22289e+06 2.39371e+06 4155.74 11.15 2.73486 2.41721 65606 615345 -1 22408 22 17205 20128 2344851 525433 9.69172 9.69172 -1531.77 -9.69172 0 0 2.98162e+06 5176.42 0.89 0.86 0.54 -1 -1 0.89 0.360779 0.3226 1019 1144 874 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_48.v common 26.04 vpr 84.46 MiB 0.28 16560 -1 -1 1 0.62 -1 -1 40944 -1 -1 144 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86488 22 19 4241 3053 1 2459 198 24 24 576 mult_36 auto 45.1 MiB 1.63 16101 43398 9885 28969 4544 82.2 MiB 1.32 0.02 9.15276 -1137.39 -9.15276 9.15276 1.41 0.00812705 0.00725182 0.602704 0.540065 74 28016 46 1.60519e+07 7.26704e+06 2.56259e+06 4448.94 14.11 3.02835 2.67053 67906 667765 -1 23184 26 19200 22279 3097523 635988 10.1736 10.1736 -1421.35 -10.1736 0 0 3.19068e+06 5539.38 0.89 1.12 0.55 -1 -1 0.89 0.441622 0.39392 1038 1163 893 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_49.v common 22.70 vpr 82.50 MiB 0.30 17020 -1 -1 1 0.63 -1 -1 41164 -1 -1 145 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84476 22 19 4346 3124 1 2527 200 24 24 576 mult_36 auto 45.8 MiB 1.58 16303 42248 9563 28218 4467 82.5 MiB 1.25 0.02 9.38798 -1053.9 -9.38798 9.38798 1.45 0.00782229 0.00708899 0.606041 0.545412 76 26459 35 1.60519e+07 7.67775e+06 2.61600e+06 4541.67 10.77 2.5998 2.30202 68478 680951 -1 22900 23 17127 19789 2450260 525170 9.49071 9.49071 -1363.71 -9.49071 0 0 3.24203e+06 5628.53 0.88 0.95 0.57 -1 -1 0.88 0.408657 0.365417 1062 1195 912 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_50.v common 24.93 vpr 84.88 MiB 0.30 16992 -1 -1 1 0.62 -1 -1 40960 -1 -1 148 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86916 22 19 4420 3181 1 2564 203 24 24 576 mult_36 auto 46.2 MiB 1.72 16495 43711 9469 30201 4041 82.7 MiB 1.31 0.02 9.43609 -1064.71 -9.43609 9.43609 1.44 0.0088878 0.00796896 0.634709 0.572282 74 29023 44 1.60519e+07 7.72189e+06 2.56259e+06 4448.94 12.97 2.85564 2.52665 67906 667765 -1 23678 25 18523 22416 2877968 597216 9.48707 9.48707 -1821.24 -9.48707 0 0 3.19068e+06 5539.38 0.86 1.01 0.55 -1 -1 0.86 0.421101 0.376085 1082 1214 931 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_51.v common 23.60 vpr 83.62 MiB 0.31 17388 -1 -1 1 0.50 -1 -1 41132 -1 -1 152 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85628 22 19 4524 3251 1 2634 207 24 24 576 mult_36 auto 46.9 MiB 1.47 16985 41823 9101 28954 3768 83.6 MiB 1.27 0.02 9.734 -1168.67 -9.734 9.734 1.49 0.00828626 0.00752653 0.605156 0.543297 72 29204 35 1.60519e+07 7.78076e+06 2.50747e+06 4353.24 11.88 2.7076 2.39559 67330 654343 -1 24180 25 18625 21935 2835680 592310 9.95301 9.95301 -1799.32 -9.95301 0 0 3.14081e+06 5452.80 0.84 1.10 0.55 -1 -1 0.84 0.463942 0.414065 1107 1245 950 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_52.v common 23.86 vpr 86.70 MiB 0.30 17404 -1 -1 1 0.68 -1 -1 39356 -1 -1 155 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88776 22 19 4598 3308 1 2668 210 24 24 576 mult_36 auto 47.2 MiB 1.76 17259 43266 9678 28409 5179 84.2 MiB 1.25 0.02 9.7565 -1135.89 -9.7565 9.7565 1.46 0.00829854 0.00752642 0.618965 0.557544 72 30374 50 1.60519e+07 7.8249e+06 2.50747e+06 4353.24 11.75 2.94605 2.60428 67330 654343 -1 24994 25 20197 24076 3112218 653789 9.59001 9.59001 -1667.66 -9.59001 0 0 3.14081e+06 5452.80 0.89 1.12 0.53 -1 -1 0.89 0.451547 0.402446 1127 1264 969 19 0 0 +k6_frac_N8_22nm.xml fir_pipe_14.v common 35.06 vpr 70.03 MiB 0.07 10400 -1 -1 8 0.52 -1 -1 34576 -1 -1 79 22 0 4 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71708 22 19 1764 1664 1 1014 124 16 16 256 mult_36 auto 32.0 MiB 0.61 6309 13720 2598 9792 1330 70.0 MiB 0.31 0.01 4.27196 -1341.5 -4.27196 4.27196 0.57 0.00354648 0.00317141 0.178158 0.159799 62 13731 45 6.45408e+06 2.64829e+06 916467. 3579.95 30.10 2.06286 1.78614 26824 229188 -1 9858 17 4242 7313 542219 128340 4.27196 4.27196 -1342.23 -4.27196 0 0 1.13630e+06 4438.68 0.29 0.31 0.20 -1 -1 0.29 0.168254 0.151358 599 966 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_15.v common 9.44 vpr 71.33 MiB 0.12 10904 -1 -1 8 0.42 -1 -1 36132 -1 -1 85 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73044 22 19 1918 1801 1 1104 131 16 16 256 mult_36 auto 32.9 MiB 0.59 6626 16731 3359 11755 1617 71.3 MiB 0.41 0.01 4.52256 -1452.91 -4.52256 4.52256 0.59 0.00446844 0.00396271 0.2364 0.211929 64 12736 29 6.45408e+06 3.12512e+06 943753. 3686.54 4.24 1.25278 1.0975 27332 240185 -1 10846 16 4390 7653 589954 137377 4.39726 4.39726 -1545.05 -4.39726 0 0 1.19033e+06 4649.74 0.30 0.34 0.22 -1 -1 0.30 0.187048 0.169073 651 1047 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_16.v common 9.35 vpr 71.73 MiB 0.10 10872 -1 -1 8 0.52 -1 -1 37432 -1 -1 87 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73448 22 19 1976 1859 1 1141 133 16 16 256 mult_36 auto 33.4 MiB 0.64 7164 16066 3216 11368 1482 71.7 MiB 0.37 0.01 4.28601 -1479.04 -4.28601 4.28601 0.58 0.00387816 0.00346619 0.213837 0.190981 66 14097 31 6.45408e+06 3.15206e+06 974584. 3806.97 4.07 1.22789 1.07012 27588 246658 -1 11314 14 4644 8048 628529 143762 4.39726 4.39726 -1506.32 -4.39726 0 0 1.22072e+06 4768.46 0.30 0.29 0.24 -1 -1 0.30 0.152509 0.136574 679 1086 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_17.v common 10.64 vpr 72.72 MiB 0.19 11888 -1 -1 8 0.54 -1 -1 36740 -1 -1 102 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74464 22 19 2278 2144 1 1269 148 16 16 256 mult_36 auto 34.9 MiB 0.67 8095 16961 3169 12034 1758 72.7 MiB 0.39 0.01 4.27196 -1685.47 -4.27196 4.27196 0.61 0.00431669 0.00384312 0.216345 0.192777 66 15895 38 6.45408e+06 3.35414e+06 974584. 3806.97 4.97 1.40484 1.2203 27588 246658 -1 12871 17 5512 9156 773452 182436 4.14666 4.14666 -1714.79 -4.14666 0 0 1.22072e+06 4768.46 0.29 0.35 0.23 -1 -1 0.29 0.187032 0.166489 768 1242 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_18.v common 10.64 vpr 73.61 MiB 0.13 11900 -1 -1 8 0.64 -1 -1 37788 -1 -1 105 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75380 22 19 2336 2202 1 1299 151 16 16 256 mult_36 auto 35.2 MiB 0.49 8142 19800 3855 14118 1827 73.6 MiB 0.45 0.01 4.27196 -1743.36 -4.27196 4.27196 0.57 0.00455664 0.00406375 0.2538 0.22658 66 16357 31 6.45408e+06 3.39456e+06 974584. 3806.97 5.10 1.41202 1.23044 27588 246658 -1 13041 16 5315 9387 790244 175589 4.27196 4.27196 -1778.91 -4.27196 0 0 1.22072e+06 4768.46 0.29 0.38 0.23 -1 -1 0.29 0.193318 0.172161 794 1281 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_19.v common 24.75 vpr 74.32 MiB 0.14 12416 -1 -1 8 0.68 -1 -1 37468 -1 -1 111 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76104 22 19 2488 2337 1 1399 158 16 16 256 mult_36 auto 36.3 MiB 0.69 9188 20654 3849 14830 1975 74.3 MiB 0.46 0.01 4.52256 -1895.49 -4.52256 4.52256 0.57 0.00473762 0.00422106 0.259355 0.231093 68 18182 48 6.45408e+06 3.87139e+06 1.00038e+06 3907.74 18.65 2.74248 2.3778 27844 252052 -1 14297 34 5758 10179 1038312 262783 4.52256 4.52256 -1955.57 -4.52256 0 0 1.24648e+06 4869.04 0.30 0.58 0.21 -1 -1 0.30 0.341379 0.298117 837 1360 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_20.v common 11.64 vpr 74.53 MiB 0.15 12376 -1 -1 8 0.72 -1 -1 37532 -1 -1 114 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76316 22 19 2546 2395 1 1440 161 16 16 256 mult_36 auto 36.6 MiB 0.76 9425 20700 4100 14535 2065 74.5 MiB 0.49 0.01 4.32767 -1936.05 -4.32767 4.32767 0.60 0.00479328 0.00425549 0.262515 0.233316 70 17071 27 6.45408e+06 3.91181e+06 1.02522e+06 4004.78 5.44 1.50404 1.31263 28352 262101 -1 14775 14 5841 10666 895010 199961 4.39726 4.39726 -1935.26 -4.39726 0 0 1.29210e+06 5047.26 0.33 0.40 0.24 -1 -1 0.33 0.202434 0.182515 867 1399 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_21.v common 13.89 vpr 75.57 MiB 0.08 12880 -1 -1 8 0.83 -1 -1 37748 -1 -1 122 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77380 22 19 2735 2567 1 1547 169 16 16 256 mult_36 auto 37.5 MiB 0.80 10400 22118 4046 16008 2064 75.6 MiB 0.53 0.01 4.52256 -2137.28 -4.52256 4.52256 0.58 0.00516143 0.00458229 0.287244 0.254668 70 19515 48 6.45408e+06 4.01958e+06 1.02522e+06 4004.78 7.48 1.81902 1.57916 28352 262101 -1 15796 16 6443 11250 987187 224359 4.39726 4.39726 -2218.61 -4.39726 0 0 1.29210e+06 5047.26 0.31 0.44 0.24 -1 -1 0.31 0.220885 0.198288 931 1497 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_22.v common 13.34 vpr 75.62 MiB 0.30 13172 -1 -1 8 0.95 -1 -1 38144 -1 -1 126 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77440 22 19 2793 2625 1 1580 173 16 16 256 mult_36 auto 38.0 MiB 0.83 10482 25185 5093 17461 2631 75.6 MiB 0.56 0.01 4.39726 -2104.19 -4.39726 4.39726 0.57 0.00537934 0.0047865 0.308563 0.273921 72 20575 41 6.45408e+06 4.07347e+06 1.04740e+06 4091.43 6.34 1.82921 1.59368 28608 268066 -1 16169 16 6398 11556 979161 224597 4.39726 4.39726 -2198.12 -4.39726 0 0 1.31294e+06 5128.69 0.35 0.45 0.25 -1 -1 0.35 0.226758 0.202105 962 1536 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_23.v common 16.01 vpr 76.38 MiB 0.16 13296 -1 -1 8 0.89 -1 -1 38448 -1 -1 131 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78216 22 19 2947 2762 1 1693 179 18 18 324 mult_36 auto 39.0 MiB 0.93 10552 29411 6189 20863 2359 76.4 MiB 0.70 0.01 4.33362 -2228.91 -4.33362 4.33362 0.66 0.00580614 0.00516197 0.384101 0.340643 68 20948 46 7.94662e+06 4.53683e+06 1.31159e+06 4048.11 8.55 2.05696 1.79391 35852 333792 -1 17072 17 7143 12403 1006005 225429 4.27196 4.27196 -2354.78 -4.27196 0 0 1.63345e+06 5041.52 0.41 0.48 0.29 -1 -1 0.41 0.256808 0.22909 1008 1617 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_24.v common 14.93 vpr 76.59 MiB 0.17 13576 -1 -1 8 1.00 -1 -1 38700 -1 -1 135 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78424 22 19 3005 2820 1 1720 183 18 18 324 mult_36 auto 39.2 MiB 0.91 11450 28728 5932 20637 2159 76.6 MiB 0.66 0.01 4.52256 -2356.78 -4.52256 4.52256 0.75 0.00574229 0.00510157 0.358146 0.317759 72 21726 43 7.94662e+06 4.59072e+06 1.37338e+06 4238.83 7.31 1.99763 1.74589 36820 354972 -1 17934 15 7047 12424 1077888 233656 4.52256 4.52256 -2526.88 -4.52256 0 0 1.72054e+06 5310.31 0.42 0.49 0.31 -1 -1 0.42 0.23615 0.211458 1039 1656 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_25.v common 16.53 vpr 77.66 MiB 0.18 13972 -1 -1 8 1.00 -1 -1 40404 -1 -1 145 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79524 22 19 3229 3027 1 1824 193 18 18 324 mult_36 auto 40.2 MiB 0.96 12352 31385 6347 23011 2027 77.7 MiB 0.71 0.01 4.39726 -2511.96 -4.39726 4.39726 0.75 0.0065231 0.00581076 0.383994 0.340359 70 22936 50 7.94662e+06 4.72544e+06 1.34436e+06 4149.26 8.72 2.23382 1.94605 36496 347204 -1 19370 16 7698 13674 1225432 265565 4.39726 4.39726 -2525.78 -4.39726 0 0 1.69344e+06 5226.66 0.45 0.57 0.25 -1 -1 0.45 0.288571 0.258231 1106 1771 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_26.v common 33.53 vpr 78.91 MiB 0.16 14212 -1 -1 8 1.12 -1 -1 40760 -1 -1 151 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80804 22 19 3287 3085 1 1862 199 18 18 324 mult_36 auto 40.5 MiB 1.03 12525 30939 6097 22880 1962 78.9 MiB 0.72 0.01 4.39726 -2537.22 -4.39726 4.39726 0.75 0.00639641 0.00567426 0.382194 0.339475 70 24243 35 7.94662e+06 4.80627e+06 1.34436e+06 4149.26 25.31 3.65738 3.16723 36496 347204 -1 19814 18 7873 13828 1227157 263796 4.39726 4.39726 -2635.7 -4.39726 0 0 1.69344e+06 5226.66 0.42 0.57 0.29 -1 -1 0.42 0.293613 0.262418 1134 1810 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_27.v common 18.33 vpr 79.88 MiB 0.19 14624 -1 -1 8 1.17 -1 -1 39396 -1 -1 156 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81792 22 19 3453 3234 1 1964 205 18 18 324 mult_36 auto 41.5 MiB 0.86 13681 31613 6009 23435 2169 79.9 MiB 0.70 0.01 4.45297 -2674.52 -4.45297 4.45297 0.76 0.00674018 0.00597503 0.372184 0.32942 74 25230 39 7.94662e+06 5.26963e+06 1.40368e+06 4332.34 10.22 2.29136 2.00107 37144 362180 -1 20914 15 8108 14439 1272992 270691 4.39726 4.39726 -2705.27 -4.39726 0 0 1.74764e+06 5393.95 0.42 0.54 0.30 -1 -1 0.42 0.270946 0.242901 1189 1903 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_28.v common 16.27 vpr 80.38 MiB 0.19 14924 -1 -1 8 1.34 -1 -1 41120 -1 -1 160 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82308 22 19 3511 3292 1 2001 209 18 18 324 mult_36 auto 42.2 MiB 1.16 13533 36169 7851 25670 2648 80.4 MiB 0.81 0.01 4.27196 -2716.32 -4.27196 4.27196 0.77 0.00311184 0.00273883 0.42534 0.377914 76 24958 37 7.94662e+06 5.32352e+06 1.43297e+06 4422.75 7.46 2.14707 1.86573 37464 369264 -1 20464 15 8254 14560 1239406 267344 4.27196 4.27196 -2808.92 -4.27196 0 0 1.77541e+06 5479.65 0.44 0.56 0.31 -1 -1 0.44 0.280802 0.252252 1221 1942 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_29.v common 18.06 vpr 81.39 MiB 0.22 15232 -1 -1 8 1.30 -1 -1 39884 -1 -1 168 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83348 22 19 3709 3473 1 2127 218 22 22 484 mult_36 auto 43.1 MiB 1.13 14602 39518 9141 27857 2520 81.4 MiB 0.88 0.01 4.64786 -2935.24 -4.64786 4.64786 1.18 0.00704858 0.00623722 0.475426 0.419795 72 26438 32 1.29336e+07 5.8273e+06 2.11301e+06 4365.72 7.81 2.31239 2.02149 55718 550791 -1 22616 14 8048 14017 1235710 262139 4.64786 4.64786 -3093.81 -4.64786 0 0 2.64603e+06 5467.00 0.71 0.56 0.43 -1 -1 0.71 0.282288 0.253979 1281 2049 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_30.v common 19.14 vpr 81.88 MiB 0.15 15520 -1 -1 8 1.29 -1 -1 40308 -1 -1 170 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83848 22 19 3767 3531 1 2168 220 22 22 484 mult_36 auto 43.8 MiB 1.21 14136 38674 7872 27997 2805 81.9 MiB 0.88 0.01 4.27196 -2917.4 -4.27196 4.27196 1.12 0.00731678 0.00647748 0.47014 0.414099 70 26124 28 1.29336e+07 5.85424e+06 2.06816e+06 4273.05 8.74 2.28486 1.99526 55234 538945 -1 23007 16 8701 15898 1397998 301821 4.52256 4.52256 -3212.81 -4.52256 0 0 2.60483e+06 5381.88 0.72 0.59 0.43 -1 -1 0.72 0.284851 0.256579 1309 2088 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_31.v common 22.22 vpr 82.26 MiB 0.23 15852 -1 -1 8 1.37 -1 -1 41832 -1 -1 177 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84232 22 19 3928 3675 1 2252 227 22 22 484 mult_36 auto 44.1 MiB 1.26 15955 41055 8830 29506 2719 82.3 MiB 0.91 0.01 4.64786 -3128.05 -4.64786 4.64786 1.24 0.00730936 0.00646431 0.474372 0.418387 70 29680 35 1.29336e+07 5.94854e+06 2.06816e+06 4273.05 11.58 2.62503 2.30513 55234 538945 -1 25230 18 9528 17282 1610949 332876 4.52256 4.52256 -3269.54 -4.52256 0 0 2.60483e+06 5381.88 0.67 0.66 0.43 -1 -1 0.67 0.331341 0.294013 1363 2176 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_32.v common 20.13 vpr 82.86 MiB 0.25 15944 -1 -1 8 1.33 -1 -1 41876 -1 -1 181 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84852 22 19 3986 3733 1 2287 231 22 22 484 mult_36 auto 44.7 MiB 1.35 15887 40587 8585 29443 2559 82.9 MiB 1.00 0.02 4.39726 -3145.72 -4.39726 4.39726 1.36 0.00821089 0.00718473 0.520716 0.459366 76 29475 26 1.29336e+07 6.00243e+06 2.20457e+06 4554.90 8.94 2.51277 2.20238 56682 573177 -1 24951 17 9277 17002 1468776 311644 4.39726 4.39726 -3289.06 -4.39726 0 0 2.73077e+06 5642.09 0.73 0.68 0.39 -1 -1 0.73 0.347291 0.311644 1391 2215 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_33.v common 99.13 vpr 84.55 MiB 0.21 16864 -1 -1 8 1.46 -1 -1 40932 -1 -1 192 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86580 22 19 4329 4059 1 2422 243 22 22 484 mult_36 auto 46.4 MiB 1.36 16862 44965 10374 31657 2934 84.6 MiB 1.04 0.02 4.39726 -3352.56 -4.39726 4.39726 1.25 0.00828653 0.00736647 0.542118 0.47704 72 34065 42 1.29336e+07 6.54662e+06 2.11301e+06 4365.72 87.59 5.77988 4.99812 55718 550791 -1 26516 16 9852 17904 1643140 347448 4.52256 4.52256 -3515.92 -4.52256 0 0 2.64603e+06 5467.00 0.69 0.70 0.44 -1 -1 0.69 0.339087 0.302937 1494 2394 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_34.v common 20.90 vpr 85.07 MiB 0.21 17092 -1 -1 8 1.67 -1 -1 42772 -1 -1 198 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87116 22 19 4387 4117 1 2459 249 22 22 484 mult_36 auto 47.0 MiB 1.40 17068 44097 9577 31491 3029 85.1 MiB 1.06 0.02 4.39726 -3405.93 -4.39726 4.39726 1.28 0.00891162 0.00796796 0.552844 0.487065 72 32512 35 1.29336e+07 6.62746e+06 2.11301e+06 4365.72 9.24 2.76456 2.41224 55718 550791 -1 26613 16 9838 17813 1459212 312343 4.39726 4.39726 -3610.82 -4.39726 0 0 2.64603e+06 5467.00 0.72 0.69 0.44 -1 -1 0.72 0.357191 0.320219 1521 2433 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_35.v common 25.69 vpr 85.73 MiB 0.22 17368 -1 -1 8 1.74 -1 -1 41464 -1 -1 208 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87792 22 19 4547 4260 1 2575 259 22 22 484 mult_36 auto 47.7 MiB 1.42 17676 47284 9482 34731 3071 85.7 MiB 1.19 0.02 4.45892 -3532.9 -4.45892 4.45892 1.21 0.010738 0.00953501 0.597741 0.533751 72 34940 49 1.29336e+07 6.76218e+06 2.11301e+06 4365.72 13.54 3.41734 3.01024 55718 550791 -1 27945 15 10572 18938 1649152 351009 4.39726 4.39726 -3764.56 -4.39726 0 0 2.64603e+06 5467.00 0.74 0.82 0.45 -1 -1 0.74 0.404368 0.369945 1571 2520 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_36.v common 24.10 vpr 86.09 MiB 0.26 17580 -1 -1 8 1.67 -1 -1 43000 -1 -1 210 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88160 22 19 4605 4318 1 2609 261 22 22 484 mult_36 auto 47.8 MiB 1.42 19180 50241 11166 35970 3105 86.1 MiB 1.31 0.02 4.64786 -3637.14 -4.64786 4.64786 1.38 0.00984921 0.00882945 0.703275 0.626732 76 35018 33 1.29336e+07 6.78912e+06 2.20457e+06 4554.90 11.67 3.21155 2.82387 56682 573177 -1 28971 16 10574 19278 1656672 344536 4.39726 4.39726 -3778.28 -4.39726 0 0 2.73077e+06 5642.09 0.78 0.80 0.49 -1 -1 0.78 0.402756 0.360781 1597 2559 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_37.v common 23.92 vpr 87.76 MiB 0.25 17964 -1 -1 8 1.82 -1 -1 42760 -1 -1 218 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89864 22 19 4802 4498 1 2726 270 24 24 576 mult_36 auto 49.1 MiB 1.53 18971 52590 11478 38185 2927 87.0 MiB 1.26 0.02 4.52256 -3767.52 -4.52256 4.52256 1.61 0.0100493 0.00900254 0.652798 0.576051 76 34411 31 1.56141e+07 7.2929e+06 2.61600e+06 4541.67 10.33 2.96709 2.60687 67070 679911 -1 28926 17 10727 19259 1642623 351279 4.64786 4.64786 -3877.51 -4.64786 0 0 3.24203e+06 5628.53 0.97 0.83 0.59 -1 -1 0.97 0.461161 0.417045 1661 2665 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_38.v common 27.47 vpr 88.68 MiB 0.24 18188 -1 -1 8 2.04 -1 -1 43216 -1 -1 221 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 90812 22 19 4860 4556 1 2764 273 24 24 576 mult_36 auto 49.6 MiB 1.49 19598 57798 12862 41398 3538 87.5 MiB 1.32 0.02 4.52256 -3851.3 -4.52256 4.52256 1.47 0.0106099 0.00952517 0.681471 0.599071 74 37110 40 1.56141e+07 7.33331e+06 2.56259e+06 4448.94 13.81 3.59574 3.15746 66498 666725 -1 30085 15 10985 19570 1801298 370615 4.52256 4.52256 -3958.38 -4.52256 0 0 3.19068e+06 5539.38 1.02 0.82 0.56 -1 -1 1.02 0.400121 0.360024 1689 2704 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_39.v common 30.93 vpr 89.76 MiB 0.27 18552 -1 -1 8 2.07 -1 -1 43724 -1 -1 226 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 91916 22 19 5019 4698 1 2868 278 24 24 576 mult_36 auto 50.5 MiB 1.56 20910 61047 14284 42574 4189 88.2 MiB 1.46 0.02 4.41131 -4082.11 -4.41131 4.41131 1.61 0.0100292 0.00894577 0.751859 0.662253 78 35683 29 1.56141e+07 7.40067e+06 2.67122e+06 4637.53 16.36 4.26304 3.73599 68222 705597 -1 31672 25 11561 20714 2237775 528335 4.52256 4.52256 -4301.86 -4.52256 0 0 3.35110e+06 5817.88 0.98 1.28 0.56 -1 -1 0.98 0.622632 0.557724 1735 2790 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_40.v common 33.78 vpr 90.32 MiB 0.30 18884 -1 -1 8 2.25 -1 -1 44456 -1 -1 230 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 92484 22 19 5077 4756 1 2904 282 24 24 576 mult_36 auto 51.0 MiB 1.60 20948 66810 16155 46347 4308 88.8 MiB 1.58 0.02 4.64786 -4029.87 -4.64786 4.64786 1.53 0.0106379 0.0094818 0.790481 0.691024 78 35873 43 1.56141e+07 7.45456e+06 2.67122e+06 4637.53 19.04 4.67465 4.08376 68222 705597 -1 31594 14 11574 20582 1892028 402185 4.52256 4.52256 -4297.75 -4.52256 0 0 3.35110e+06 5817.88 0.96 0.82 0.63 -1 -1 0.96 0.389407 0.349233 1765 2829 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_41.v common 134.39 vpr 93.68 MiB 0.18 19280 -1 -1 8 2.15 -1 -1 44380 -1 -1 239 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 95928 22 19 5308 4970 1 3021 292 24 24 576 mult_36 auto 52.1 MiB 1.64 22266 65148 15301 45446 4401 89.7 MiB 1.42 0.02 4.53661 -4284.69 -4.53661 4.53661 1.49 0.00920152 0.00806761 0.699964 0.612746 78 38792 49 1.56141e+07 7.97181e+06 2.67122e+06 4637.53 119.41 7.0507 6.08179 68222 705597 -1 33859 17 11939 21586 2000521 410260 4.52256 4.52256 -4455.87 -4.52256 0 0 3.35110e+06 5817.88 0.95 0.92 0.68 -1 -1 0.95 0.467719 0.420303 1838 2951 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_42.v common 33.91 vpr 92.96 MiB 0.27 19344 -1 -1 8 2.21 -1 -1 44412 -1 -1 242 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 95188 22 19 5366 5028 1 3055 295 24 24 576 mult_36 auto 52.3 MiB 1.67 22679 61117 13773 43741 3603 89.7 MiB 1.46 0.02 4.66191 -4235.07 -4.66191 4.66191 1.55 0.0104843 0.0093203 0.743505 0.656289 82 39997 47 1.56141e+07 8.01222e+06 2.78508e+06 4835.20 19.03 4.89757 4.28252 69370 733739 -1 33886 15 12156 22275 1970079 405149 4.64786 4.64786 -4496.94 -4.64786 0 0 3.48632e+06 6052.64 1.09 0.91 0.61 -1 -1 1.09 0.474049 0.429477 1862 2990 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_43.v common 32.68 vpr 95.26 MiB 0.22 19732 -1 -1 8 2.21 -1 -1 44784 -1 -1 255 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 97544 22 19 5524 5169 1 3162 308 24 24 576 mult_36 auto 53.4 MiB 1.71 22460 73038 16907 51210 4921 90.0 MiB 1.74 0.02 4.45892 -4390.33 -4.45892 4.45892 1.45 0.0110264 0.0098125 0.883447 0.77097 80 37054 31 1.56141e+07 8.18736e+06 2.72095e+06 4723.87 17.63 4.82696 4.2197 68798 719145 -1 33280 16 11785 21759 1790126 370269 4.64786 4.64786 -4576.22 -4.64786 0 0 3.41546e+06 5929.62 1.08 0.92 0.61 -1 -1 1.08 0.492943 0.444477 1916 3075 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_44.v common 33.08 vpr 97.48 MiB 0.32 20084 -1 -1 8 2.28 -1 -1 45352 -1 -1 254 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 99820 22 19 5582 5227 1 3204 307 24 24 576 mult_36 auto 53.7 MiB 1.73 22502 66547 15787 46972 3788 90.5 MiB 1.74 0.02 4.52256 -4486.19 -4.52256 4.52256 1.66 0.0128681 0.0115662 0.914855 0.809073 74 42787 45 1.56141e+07 8.17389e+06 2.56259e+06 4448.94 17.42 4.20618 3.69055 66498 666725 -1 35196 16 13390 24231 2184528 458821 4.39726 4.39726 -4709.92 -4.39726 0 0 3.19068e+06 5539.38 1.14 1.10 0.59 -1 -1 1.14 0.563911 0.511043 1945 3114 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_45.v common 40.22 vpr 99.73 MiB 0.33 20408 -1 -1 8 2.51 -1 -1 45932 -1 -1 262 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 102128 22 19 5779 5407 1 3306 316 24 24 576 mult_36 auto 54.6 MiB 1.80 24550 70191 16510 49767 3914 91.4 MiB 1.64 0.02 4.64786 -4625.87 -4.64786 4.64786 1.44 0.0113318 0.0100705 0.795742 0.696744 78 43496 43 1.56141e+07 8.67766e+06 2.67122e+06 4637.53 24.78 5.19892 4.51387 68222 705597 -1 36693 16 12990 23039 2177528 443029 4.64786 4.64786 -4872.93 -4.64786 0 0 3.35110e+06 5817.88 1.02 1.00 0.62 -1 -1 1.02 0.50216 0.450919 2012 3220 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_46.v common 34.97 vpr 99.81 MiB 0.31 20476 -1 -1 8 2.56 -1 -1 46136 -1 -1 267 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 102208 22 19 5837 5465 1 3341 321 24 24 576 mult_36 auto 55.1 MiB 1.81 23014 78279 19395 54249 4635 91.8 MiB 1.78 0.02 4.77316 -4717.28 -4.77316 4.77316 1.59 0.0116703 0.0102154 0.869453 0.762032 78 41329 31 1.56141e+07 8.74502e+06 2.67122e+06 4637.53 18.96 4.80848 4.17403 68222 705597 -1 35603 14 12924 23433 2097034 435832 4.89846 4.89846 -5046.66 -4.89846 0 0 3.35110e+06 5817.88 1.18 1.01 0.59 -1 -1 1.18 0.491191 0.441516 2043 3259 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_47.v common 31.15 vpr 99.89 MiB 0.31 21036 -1 -1 8 2.74 -1 -1 44612 -1 -1 275 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 102284 22 19 5997 5608 1 3446 329 24 24 576 mult_36 auto 56.3 MiB 1.68 23890 79779 19615 56036 4128 94.6 MiB 1.86 0.02 4.52256 -4753.36 -4.52256 4.52256 1.56 0.0118662 0.0105584 0.935368 0.819414 76 42922 43 1.56141e+07 8.8528e+06 2.61600e+06 4541.67 15.25 4.36172 3.80744 67070 679911 -1 36043 16 13572 24201 2071974 442460 4.39726 4.39726 -5108.91 -4.39726 0 0 3.24203e+06 5628.53 0.96 1.00 0.58 -1 -1 0.96 0.508769 0.456973 2100 3346 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_48.v common 30.01 vpr 100.23 MiB 0.24 21072 -1 -1 8 2.56 -1 -1 46340 -1 -1 279 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 102632 22 19 6055 5666 1 3477 333 24 24 576 mult_36 auto 56.7 MiB 1.91 24651 81043 20011 56340 4692 94.9 MiB 1.78 0.03 4.41131 -4877.82 -4.41131 4.41131 1.44 0.0115864 0.0100158 0.868451 0.757897 74 45227 34 1.56141e+07 8.90669e+06 2.56259e+06 4448.94 14.34 4.18882 3.65387 66498 666725 -1 37604 17 14240 25302 2246621 473431 4.39726 4.39726 -5110.14 -4.39726 0 0 3.19068e+06 5539.38 0.88 1.04 0.57 -1 -1 0.88 0.529126 0.471919 2126 3385 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_49.v common 38.86 vpr 98.47 MiB 0.22 21620 -1 -1 8 2.80 -1 -1 46452 -1 -1 285 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 100836 22 19 6324 5918 1 3577 340 24 24 576 mult_36 auto 57.6 MiB 1.94 25847 78616 18544 55831 4241 95.8 MiB 1.79 0.03 4.57827 -4988.8 -4.57827 4.57827 1.48 0.0119756 0.0106082 0.881023 0.771829 80 42456 33 1.56141e+07 9.38352e+06 2.72095e+06 4723.87 22.52 5.45036 4.74664 68798 719145 -1 37978 14 13206 24374 2114449 435929 4.64786 4.64786 -5260.94 -4.64786 0 0 3.41546e+06 5929.62 0.91 0.94 0.63 -1 -1 0.91 0.492501 0.443599 2206 3527 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_50.v common 36.12 vpr 102.79 MiB 0.34 21936 -1 -1 8 3.02 -1 -1 47304 -1 -1 292 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 105252 22 19 6382 5976 1 3610 347 24 24 576 mult_36 auto 58.0 MiB 1.97 25875 80735 19460 56548 4727 96.2 MiB 1.76 0.03 4.52256 -5008.91 -4.52256 4.52256 1.44 0.0122172 0.0108498 0.850308 0.741374 78 45028 42 1.56141e+07 9.47782e+06 2.67122e+06 4637.53 19.39 5.61886 4.89556 68222 705597 -1 39583 16 14556 26399 2333973 504210 4.39726 4.39726 -5323.83 -4.39726 0 0 3.35110e+06 5817.88 0.91 1.04 0.60 -1 -1 0.91 0.534154 0.480296 2235 3566 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_51.v common 39.51 vpr 105.27 MiB 0.25 22220 -1 -1 8 2.91 -1 -1 47908 -1 -1 297 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 107796 22 19 6542 6119 1 3736 352 24 24 576 mult_36 auto 58.8 MiB 1.95 27181 89776 22152 62375 5249 97.1 MiB 2.07 0.03 4.77316 -5190.65 -4.77316 4.77316 1.47 0.0144313 0.0129502 1.03022 0.909186 82 46642 29 1.56141e+07 9.54518e+06 2.78508e+06 4835.20 22.42 5.66276 4.9523 69370 733739 -1 39735 14 14219 25417 2265389 476034 4.64786 4.64786 -5370.32 -4.64786 0 0 3.48632e+06 6052.64 1.03 1.04 0.59 -1 -1 1.03 0.511917 0.460249 2287 3653 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_52.v common 39.78 vpr 104.93 MiB 0.32 22280 -1 -1 8 3.10 -1 -1 47408 -1 -1 301 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 107452 22 19 6600 6177 1 3777 356 24 24 576 mult_36 auto 59.1 MiB 2.00 27822 86104 20994 59845 5265 97.3 MiB 1.95 0.03 4.52256 -5230.39 -4.52256 4.52256 1.55 0.0126873 0.0112633 0.939554 0.822382 78 47564 41 1.56141e+07 9.59907e+06 2.67122e+06 4637.53 22.63 5.88688 5.12476 68222 705597 -1 41368 15 15230 27813 2474674 526301 4.52256 4.52256 -5391.64 -4.52256 0 0 3.35110e+06 5817.88 0.95 1.14 0.60 -1 -1 0.95 0.554614 0.499773 2318 3692 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_14.v common 9.56 vpr 67.77 MiB 0.11 9172 -1 -1 10 0.44 -1 -1 35200 -1 -1 57 22 0 4 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69392 22 19 1149 1049 1 785 102 16 16 256 mult_36 auto 29.6 MiB 0.40 5037 10336 2127 7192 1017 67.8 MiB 0.24 0.00 13.5769 -436.724 -13.5769 13.5769 0.57 0.00283789 0.00259675 0.139608 0.127688 66 10619 38 6.45408e+06 2.3519e+06 974584. 3806.97 5.09 0.859487 0.760269 27588 246658 -1 9102 21 4960 9680 816171 175522 12.3606 12.3606 -501.162 -12.3606 0 0 1.22072e+06 4768.46 0.29 0.31 0.22 -1 -1 0.29 0.135528 0.121491 433 715 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_15.v common 11.47 vpr 68.09 MiB 0.10 9568 -1 -1 11 0.53 -1 -1 36096 -1 -1 63 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69728 22 19 1261 1144 1 857 109 16 16 256 mult_36 auto 29.8 MiB 0.31 5354 11029 1996 7826 1207 68.1 MiB 0.27 0.01 14.3075 -472.001 -14.3075 14.3075 0.61 0.00311906 0.00285732 0.153208 0.140305 60 11748 49 6.45408e+06 2.82874e+06 890343. 3477.90 6.85 1.00097 0.885675 26568 224354 -1 9547 19 5111 10092 834420 183795 13.1013 13.1013 -568.67 -13.1013 0 0 1.11577e+06 4358.47 0.28 0.38 0.20 -1 -1 0.28 0.15702 0.141497 471 790 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_16.v common 13.03 vpr 68.41 MiB 0.07 9512 -1 -1 11 0.54 -1 -1 35676 -1 -1 70 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70048 22 19 1336 1219 1 919 116 16 16 256 mult_36 auto 30.4 MiB 0.41 5988 14780 3169 10176 1435 68.4 MiB 0.34 0.01 15.4691 -502.458 -15.4691 15.4691 0.59 0.00321339 0.00293116 0.193966 0.176783 60 13547 46 6.45408e+06 2.92304e+06 890343. 3477.90 8.32 1.09104 0.964979 26568 224354 -1 10822 18 5906 11528 997034 212689 13.6285 13.6285 -588.196 -13.6285 0 0 1.11577e+06 4358.47 0.33 0.37 0.16 -1 -1 0.33 0.143771 0.129249 512 846 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_17.v common 27.96 vpr 68.99 MiB 0.07 10120 -1 -1 11 0.60 -1 -1 36268 -1 -1 77 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70648 22 19 1446 1312 1 981 123 16 16 256 mult_36 auto 31.2 MiB 0.40 6289 16593 3435 11440 1718 69.0 MiB 0.41 0.01 14.6023 -516.745 -14.6023 14.6023 0.57 0.00376618 0.00346715 0.226722 0.206413 58 14652 40 6.45408e+06 3.01734e+06 871168. 3403.00 23.06 2.15691 1.89833 26312 218777 -1 11958 21 6363 12408 1114223 259816 13.1832 13.1832 -634.162 -13.1832 0 0 1.09288e+06 4269.05 0.28 0.45 0.20 -1 -1 0.28 0.179143 0.161178 558 919 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_18.v common 11.67 vpr 69.31 MiB 0.14 10076 -1 -1 11 0.64 -1 -1 36144 -1 -1 79 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70972 22 19 1507 1373 1 1020 125 16 16 256 mult_36 auto 31.4 MiB 0.44 6726 16037 3280 11223 1534 69.3 MiB 0.37 0.01 14.4834 -543.036 -14.4834 14.4834 0.59 0.00363422 0.00330186 0.203721 0.185413 68 13928 32 6.45408e+06 3.04429e+06 1.00038e+06 3907.74 6.51 1.10046 0.97363 27844 252052 -1 11686 20 6201 12406 990131 213742 13.2267 13.2267 -690.745 -13.2267 0 0 1.24648e+06 4869.04 0.30 0.38 0.22 -1 -1 0.30 0.168494 0.15091 576 961 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_19.v common 11.35 vpr 69.98 MiB 0.13 10552 -1 -1 11 0.68 -1 -1 36148 -1 -1 80 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71656 22 19 1596 1445 1 1103 127 16 16 256 mult_36 auto 32.0 MiB 0.46 7348 16715 3403 11508 1804 70.0 MiB 0.39 0.01 14.8867 -546.505 -14.8867 14.8867 0.61 0.00383748 0.00350071 0.219016 0.199495 74 14383 47 6.45408e+06 3.45376e+06 1.07073e+06 4182.55 5.89 1.36261 1.21569 28864 273460 -1 12301 23 6003 11963 1225113 345124 13.7425 13.7425 -634.512 -13.7425 0 0 1.33358e+06 5209.30 0.32 0.48 0.25 -1 -1 0.32 0.195495 0.174987 615 1013 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_20.v common 11.43 vpr 70.18 MiB 0.12 10476 -1 -1 11 0.71 -1 -1 37016 -1 -1 86 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71864 22 19 1656 1505 1 1131 133 16 16 256 mult_36 auto 32.3 MiB 0.50 7846 15049 2924 10833 1292 70.2 MiB 0.36 0.01 15.2396 -554.475 -15.2396 15.2396 0.57 0.00381256 0.00344485 0.197804 0.179974 78 14532 25 6.45408e+06 3.53459e+06 1.11577e+06 4358.47 6.05 1.55153 1.36966 29628 289086 -1 12993 20 6297 12615 1007204 216794 13.8209 13.8209 -719.959 -13.8209 0 0 1.40012e+06 5469.22 0.33 0.42 0.25 -1 -1 0.33 0.18349 0.163832 637 1054 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_21.v common 10.99 vpr 70.82 MiB 0.08 10820 -1 -1 12 0.78 -1 -1 36952 -1 -1 91 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72520 22 19 1754 1586 1 1196 138 16 16 256 mult_36 auto 32.9 MiB 0.48 7990 15090 2622 11262 1206 70.8 MiB 0.36 0.01 15.6803 -617.052 -15.6803 15.6803 0.57 0.00411309 0.00370872 0.199158 0.181002 70 15670 41 6.45408e+06 3.60195e+06 1.02522e+06 4004.78 5.53 1.40516 1.24773 28352 262101 -1 13848 20 6781 13005 1123871 254420 14.4006 14.4006 -887.052 -14.4006 0 0 1.29210e+06 5047.26 0.31 0.42 0.23 -1 -1 0.31 0.189808 0.170084 662 1115 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_22.v common 12.31 vpr 71.13 MiB 0.11 10916 -1 -1 11 0.78 -1 -1 37892 -1 -1 97 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72836 22 19 1827 1659 1 1261 144 16 16 256 mult_36 auto 33.3 MiB 0.54 8682 12585 1999 9675 911 71.1 MiB 0.32 0.01 14.4771 -606.777 -14.4771 14.4771 0.59 0.00425811 0.0038667 0.164363 0.149722 74 17628 40 6.45408e+06 3.68278e+06 1.07073e+06 4182.55 6.64 1.38253 1.22543 28864 273460 -1 14632 18 7673 14950 1275962 280127 13.3561 13.3561 -716.782 -13.3561 0 0 1.33358e+06 5209.30 0.33 0.47 0.25 -1 -1 0.33 0.188624 0.169655 708 1169 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_23.v common 12.29 vpr 71.60 MiB 0.11 11308 -1 -1 12 0.88 -1 -1 38200 -1 -1 97 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73320 22 19 1905 1720 1 1293 145 18 18 324 mult_36 auto 33.9 MiB 0.53 9148 21425 4017 15587 1821 71.6 MiB 0.52 0.01 16.7814 -693.289 -16.7814 16.7814 0.80 0.00445708 0.00405429 0.28277 0.256794 72 18160 35 7.94662e+06 4.07878e+06 1.37338e+06 4238.83 5.79 1.42559 1.26369 36820 354972 -1 15344 17 6907 13721 1184988 258891 15.4142 15.4142 -835.99 -15.4142 0 0 1.72054e+06 5310.31 0.44 0.44 0.30 -1 -1 0.44 0.185723 0.167504 722 1210 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_24.v common 12.39 vpr 72.14 MiB 0.10 11428 -1 -1 12 0.87 -1 -1 36816 -1 -1 98 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73876 22 19 1979 1794 1 1336 146 18 18 324 mult_36 auto 34.2 MiB 0.56 8835 18962 3578 13867 1517 72.1 MiB 0.47 0.01 15.6002 -656.607 -15.6002 15.6002 0.78 0.00467573 0.00425148 0.258996 0.234975 70 16906 25 7.94662e+06 4.09226e+06 1.34436e+06 4149.26 5.81 1.37186 1.21779 36496 347204 -1 14857 18 7173 13718 1126372 251932 14.6043 14.6043 -914.656 -14.6043 0 0 1.69344e+06 5226.66 0.41 0.43 0.29 -1 -1 0.41 0.19392 0.174432 739 1265 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_25.v common 54.46 vpr 72.80 MiB 0.15 11616 -1 -1 12 0.97 -1 -1 37344 -1 -1 105 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74552 22 19 2073 1871 1 1394 153 18 18 324 mult_36 auto 35.2 MiB 0.56 9747 21012 4486 14783 1743 72.8 MiB 0.49 0.01 15.9811 -650.584 -15.9811 15.9811 0.75 0.00473226 0.00429919 0.271823 0.24654 68 20163 32 7.94662e+06 4.18656e+06 1.31159e+06 4048.11 47.37 3.21864 2.83632 35852 333792 -1 16458 31 7861 15403 1582531 407046 15.2351 15.2351 -843.341 -15.2351 0 0 1.63345e+06 5041.52 0.43 0.76 0.33 -1 -1 0.43 0.338135 0.303647 791 1322 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_26.v common 15.66 vpr 73.84 MiB 0.17 11888 -1 -1 12 1.01 -1 -1 37336 -1 -1 106 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75616 22 19 2130 1928 1 1451 154 18 18 324 mult_36 auto 35.9 MiB 0.59 10204 19518 3476 14463 1579 73.8 MiB 0.49 0.01 15.2934 -691.341 -15.2934 15.2934 0.77 0.00497894 0.00451692 0.268485 0.243242 78 18594 29 7.94662e+06 4.20003e+06 1.46313e+06 4515.82 8.78 1.90212 1.6799 38112 383040 -1 16631 19 8278 16241 1354684 288682 13.9932 13.9932 -860.935 -13.9932 0 0 1.83526e+06 5664.38 0.45 0.51 0.34 -1 -1 0.45 0.220491 0.197761 811 1360 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_27.v common 14.03 vpr 74.11 MiB 0.11 12080 -1 -1 12 1.10 -1 -1 37988 -1 -1 114 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75892 22 19 2238 2019 1 1541 163 18 18 324 mult_36 auto 36.0 MiB 0.62 11025 22858 4211 16623 2024 74.1 MiB 0.57 0.01 16.3551 -735.488 -16.3551 16.3551 0.80 0.00585114 0.00535646 0.309241 0.280048 76 21114 47 7.94662e+06 4.70381e+06 1.43297e+06 4422.75 6.80 1.77216 1.56975 37464 369264 -1 17850 18 8516 16298 1366025 295170 14.9675 14.9675 -881.208 -14.9675 0 0 1.77541e+06 5479.65 0.44 0.53 0.31 -1 -1 0.44 0.229164 0.206865 851 1431 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_28.v common 16.02 vpr 73.91 MiB 0.26 12204 -1 -1 12 1.02 -1 -1 38184 -1 -1 117 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75680 22 19 2299 2080 1 1575 166 18 18 324 mult_36 auto 36.4 MiB 0.62 10794 23422 4551 16955 1916 73.9 MiB 0.54 0.01 15.946 -732.667 -15.946 15.946 0.75 0.00517696 0.00467148 0.27908 0.251768 78 20079 29 7.94662e+06 4.74422e+06 1.46313e+06 4515.82 8.72 2.04218 1.79501 38112 383040 -1 17907 18 9336 18256 1527559 324376 14.7451 14.7451 -981.151 -14.7451 0 0 1.83526e+06 5664.38 0.45 0.57 0.32 -1 -1 0.45 0.229135 0.205229 874 1473 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_29.v common 18.81 vpr 75.03 MiB 0.12 12664 -1 -1 12 1.20 -1 -1 38612 -1 -1 121 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76828 22 19 2400 2164 1 1649 171 22 22 484 mult_36 auto 37.1 MiB 0.64 11709 28137 5812 19993 2332 75.0 MiB 0.66 0.01 15.3214 -777.403 -15.3214 15.3214 1.19 0.00570205 0.00512156 0.352766 0.31902 74 23883 36 1.29336e+07 5.19411e+06 2.15943e+06 4461.62 10.12 1.85364 1.64724 56202 562081 -1 20484 24 9805 18861 1973610 438335 14.0212 14.0212 -1043.93 -14.0212 0 0 2.68771e+06 5553.12 0.68 0.71 0.35 -1 -1 0.68 0.295137 0.264756 915 1537 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_30.v common 22.10 vpr 75.44 MiB 0.15 12692 -1 -1 12 1.18 -1 -1 38224 -1 -1 127 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77252 22 19 2474 2238 1 1692 177 22 22 484 mult_36 auto 37.5 MiB 0.66 11907 26961 5348 19369 2244 75.4 MiB 0.64 0.01 15.2789 -855.312 -15.2789 15.2789 1.22 0.0055669 0.00504026 0.34526 0.312191 70 24231 42 1.29336e+07 5.27494e+06 2.06816e+06 4273.05 13.20 1.90214 1.67925 55234 538945 -1 20580 19 11208 21825 2041793 427284 14.0646 14.0646 -1208.44 -14.0646 0 0 2.60483e+06 5381.88 0.67 0.73 0.44 -1 -1 0.67 0.273404 0.244783 947 1592 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_31.v common 21.05 vpr 76.11 MiB 0.29 12928 -1 -1 12 1.30 -1 -1 39768 -1 -1 137 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77932 22 19 2603 2350 1 1765 187 22 22 484 mult_36 auto 38.1 MiB 0.69 12262 31159 6432 22219 2508 76.1 MiB 0.74 0.01 16.1203 -785.932 -16.1203 16.1203 1.23 0.00611833 0.00555561 0.395018 0.356791 68 25196 45 1.29336e+07 5.40966e+06 2.01763e+06 4168.66 11.50 2.06046 1.82653 54270 517931 -1 20695 21 10470 20411 1826849 392287 14.5952 14.5952 -1200.15 -14.5952 0 0 2.51205e+06 5190.18 0.66 0.71 0.44 -1 -1 0.66 0.303571 0.273281 1001 1684 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_32.v common 18.43 vpr 76.16 MiB 0.18 13140 -1 -1 12 1.34 -1 -1 38432 -1 -1 141 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77992 22 19 2694 2441 1 1849 191 22 22 484 mult_36 auto 38.8 MiB 0.73 12941 28739 5515 21062 2162 76.2 MiB 0.67 0.01 16.1727 -911.506 -16.1727 16.1727 1.20 0.00602303 0.00545232 0.350625 0.316295 74 24735 34 1.29336e+07 5.46355e+06 2.15943e+06 4461.62 9.02 1.86707 1.65046 56202 562081 -1 21368 18 10183 19389 1708612 353718 14.5728 14.5728 -1178.82 -14.5728 0 0 2.68771e+06 5553.12 0.72 0.65 0.47 -1 -1 0.72 0.27233 0.246182 1040 1756 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_33.v common 22.26 vpr 76.82 MiB 0.20 13628 -1 -1 13 1.46 -1 -1 39832 -1 -1 140 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78660 22 19 2787 2517 1 1916 191 22 22 484 mult_36 auto 39.6 MiB 0.65 13465 35327 7716 24810 2801 76.8 MiB 0.82 0.01 16.2303 -861.433 -16.2303 16.2303 1.17 0.00619642 0.00560228 0.441015 0.397344 72 28617 47 1.29336e+07 5.84608e+06 2.11301e+06 4365.72 12.74 2.32135 2.06384 55718 550791 -1 22968 20 11049 21354 1933552 406347 15.1021 15.1021 -1245.64 -15.1021 0 0 2.64603e+06 5467.00 0.70 0.73 0.46 -1 -1 0.70 0.304053 0.273472 1070 1812 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_34.v common 67.97 vpr 76.89 MiB 0.20 13868 -1 -1 13 1.66 -1 -1 38812 -1 -1 142 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78736 22 19 2834 2564 1 1944 193 22 22 484 mult_36 auto 39.5 MiB 0.74 13469 30271 5714 22234 2323 76.9 MiB 0.72 0.01 16.0453 -909.324 -16.0453 16.0453 1.18 0.00635464 0.00574929 0.382473 0.3445 80 25009 28 1.29336e+07 5.87302e+06 2.29262e+06 4736.82 57.67 3.98386 3.50176 58134 606231 -1 21947 24 11598 22950 1898757 393575 14.9053 14.9053 -1295.89 -14.9053 0 0 2.87723e+06 5944.70 0.84 0.85 0.54 -1 -1 0.84 0.384773 0.344879 1084 1840 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_35.v common 22.97 vpr 77.67 MiB 0.53 14024 -1 -1 13 1.48 -1 -1 40452 -1 -1 150 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79536 22 19 2941 2654 1 2012 201 22 22 484 mult_36 auto 40.2 MiB 0.78 14333 34893 6946 25294 2653 77.7 MiB 0.81 0.01 16.6518 -906.845 -16.6518 16.6518 1.18 0.00655725 0.00592973 0.429636 0.387526 84 25918 26 1.29336e+07 5.9808e+06 2.40101e+06 4960.76 12.48 2.90109 2.57723 59582 640177 -1 22484 20 10291 19738 1555925 325659 15.3638 15.3638 -1059.3 -15.3638 0 0 3.03951e+06 6279.99 0.80 0.65 0.52 -1 -1 0.80 0.313369 0.282092 1131 1910 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_36.v common 22.50 vpr 78.09 MiB 0.22 14096 -1 -1 13 1.64 -1 -1 40556 -1 -1 153 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79960 22 19 3011 2724 1 2050 204 22 22 484 mult_36 auto 40.6 MiB 0.81 14333 33204 6759 24067 2378 78.1 MiB 0.82 0.01 16.0901 -925.304 -16.0901 16.0901 1.23 0.00711466 0.0064534 0.433504 0.389873 76 28442 48 1.29336e+07 6.02122e+06 2.20457e+06 4554.90 11.98 2.38845 2.11654 56682 573177 -1 23842 28 12073 23670 2540531 638646 14.9173 14.9173 -1511.95 -14.9173 0 0 2.73077e+06 5642.09 0.70 1.00 0.46 -1 -1 0.70 0.413026 0.369097 1168 1961 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_37.v common 26.82 vpr 79.39 MiB 0.25 14480 -1 -1 13 1.63 -1 -1 39240 -1 -1 158 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81300 22 19 3132 2828 1 2123 210 24 24 576 mult_36 auto 41.1 MiB 0.85 16072 33282 6623 24362 2297 79.4 MiB 0.83 0.01 16.4965 -1047.3 -16.4965 16.4965 1.44 0.00706155 0.00639046 0.428977 0.38598 80 28099 43 1.56141e+07 6.48458e+06 2.72095e+06 4723.87 15.57 3.09042 2.73815 68798 719145 -1 24743 19 11538 21936 2036930 411178 15.1133 15.1133 -1392.4 -15.1133 0 0 3.41546e+06 5929.62 0.89 0.77 0.59 -1 -1 0.89 0.326713 0.294003 1192 2045 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_38.v common 27.44 vpr 78.64 MiB 0.22 14496 -1 -1 13 1.67 -1 -1 41204 -1 -1 160 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80524 22 19 3159 2855 1 2172 212 24 24 576 mult_36 auto 41.5 MiB 0.90 15400 37441 7616 27633 2192 78.6 MiB 0.89 0.01 16.6277 -1074.04 -16.6277 16.6277 1.45 0.00754073 0.00683655 0.466712 0.419083 72 31514 49 1.56141e+07 6.51152e+06 2.50747e+06 4353.24 15.87 2.62843 2.33191 65922 653303 -1 25605 20 12401 23528 2242204 463472 15.3358 15.3358 -1479.25 -15.3358 0 0 3.14081e+06 5452.80 0.86 0.82 0.60 -1 -1 0.86 0.335776 0.300988 1207 2053 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_39.v common 19.87 vpr 79.98 MiB 0.23 14800 -1 -1 13 1.79 -1 -1 39908 -1 -1 169 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81904 22 19 3284 2963 1 2259 221 24 24 576 mult_36 auto 42.1 MiB 0.64 15993 38907 8122 28363 2422 79.5 MiB 0.90 0.01 17.5627 -1048.03 -17.5627 17.5627 1.39 0.00751196 0.00679551 0.462113 0.415849 76 30113 42 1.56141e+07 6.63277e+06 2.61600e+06 4541.67 8.99 2.2988 2.03591 67070 679911 -1 25981 19 11896 23197 1973836 423116 16.2556 16.2556 -1391.29 -16.2556 0 0 3.24203e+06 5628.53 0.85 0.76 0.56 -1 -1 0.85 0.333649 0.299451 1267 2141 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_40.v common 24.57 vpr 79.75 MiB 0.23 15076 -1 -1 13 1.75 -1 -1 40080 -1 -1 169 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81668 22 19 3343 3022 1 2282 221 24 24 576 mult_36 auto 42.5 MiB 0.92 15990 43576 9973 30398 3205 79.8 MiB 1.03 0.01 16.4294 -969.621 -16.4294 16.4294 1.46 0.00760405 0.00686572 0.535813 0.480165 76 30952 33 1.56141e+07 6.63277e+06 2.61600e+06 4541.67 12.77 2.57653 2.27861 67070 679911 -1 26278 19 12991 25311 2114866 467584 15.2497 15.2497 -1454.29 -15.2497 0 0 3.24203e+06 5628.53 0.86 0.80 0.57 -1 -1 0.86 0.344819 0.308242 1284 2181 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_41.v common 27.19 vpr 81.92 MiB 0.24 15360 -1 -1 13 2.00 -1 -1 41976 -1 -1 175 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83888 22 19 3448 3110 1 2364 228 24 24 576 mult_36 auto 43.3 MiB 0.90 17394 37812 7382 28088 2342 80.5 MiB 0.91 0.02 16.1075 -1051.7 -16.1075 16.1075 1.40 0.00800191 0.00714055 0.470431 0.42195 80 32710 50 1.56141e+07 7.1096e+06 2.72095e+06 4723.87 15.13 3.11565 2.75847 68798 719145 -1 27975 20 13581 26685 2399172 485688 14.745 14.745 -1420.2 -14.745 0 0 3.41546e+06 5929.62 0.89 0.90 0.62 -1 -1 0.89 0.371789 0.334716 1333 2249 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_42.v common 29.28 vpr 80.86 MiB 0.18 15508 -1 -1 13 1.95 -1 -1 40568 -1 -1 179 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82800 22 19 3510 3172 1 2403 232 24 24 576 mult_36 auto 43.6 MiB 1.01 17180 40816 8418 29993 2405 80.9 MiB 0.95 0.02 16.1912 -1016.75 -16.1912 16.1912 1.42 0.00753843 0.00671455 0.484684 0.434717 78 31825 33 1.56141e+07 7.16349e+06 2.67122e+06 4637.53 17.12 3.33801 2.95367 68222 705597 -1 28178 20 13315 25658 2235495 474011 14.82 14.82 -1393.15 -14.82 0 0 3.35110e+06 5817.88 0.93 0.88 0.57 -1 -1 0.93 0.380218 0.341939 1352 2292 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_43.v common 101.99 vpr 83.47 MiB 0.26 15696 -1 -1 13 2.20 -1 -1 38516 -1 -1 182 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85472 22 19 3598 3243 1 2469 235 24 24 576 mult_36 auto 44.2 MiB 1.01 18304 36435 6715 27575 2145 81.3 MiB 0.93 0.02 16.7224 -1137.41 -16.7224 16.7224 1.54 0.00847774 0.00767893 0.481449 0.431756 80 32742 43 1.56141e+07 7.2039e+06 2.72095e+06 4723.87 89.32 5.31576 4.66446 68798 719145 -1 28837 18 13104 25834 2196766 464822 15.2028 15.2028 -1813.65 -15.2028 0 0 3.41546e+06 5929.62 0.90 0.85 0.64 -1 -1 0.90 0.370256 0.33297 1391 2343 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_44.v common 30.26 vpr 83.66 MiB 0.27 15820 -1 -1 13 2.11 -1 -1 42436 -1 -1 189 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85664 22 19 3689 3334 1 2527 242 24 24 576 mult_36 auto 44.8 MiB 1.02 17450 43163 8464 32497 2202 82.9 MiB 0.88 0.02 15.8215 -1053.59 -15.8215 15.8215 1.46 0.00850938 0.00771115 0.410183 0.365757 78 32864 35 1.56141e+07 7.29821e+06 2.67122e+06 4637.53 17.95 3.3378 2.93687 68222 705597 -1 29085 22 13883 27525 2405573 500719 14.7058 14.7058 -1423.85 -14.7058 0 0 3.35110e+06 5817.88 0.94 0.86 0.57 -1 -1 0.94 0.340965 0.309465 1433 2415 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_45.v common 33.20 vpr 84.90 MiB 0.25 16080 -1 -1 13 2.29 -1 -1 38860 -1 -1 191 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86940 22 19 3763 3391 1 2591 245 24 24 576 mult_36 auto 45.2 MiB 1.10 18844 45439 9758 33174 2507 83.1 MiB 1.21 0.03 16.1092 -1223.71 -16.1092 16.1092 1.55 0.0159171 0.0142019 0.629245 0.560456 80 34440 28 1.56141e+07 7.72115e+06 2.72095e+06 4723.87 19.68 3.48973 3.07505 68798 719145 -1 29823 19 14053 27150 2539938 517717 14.6981 14.6981 -1643.43 -14.6981 0 0 3.41546e+06 5929.62 0.95 0.95 0.57 -1 -1 0.95 0.3926 0.354176 1453 2452 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_46.v common 29.39 vpr 83.80 MiB 0.20 16224 -1 -1 13 2.28 -1 -1 42424 -1 -1 195 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85812 22 19 3845 3473 1 2635 249 24 24 576 mult_36 auto 45.9 MiB 1.13 19078 44880 9246 33148 2486 83.8 MiB 1.07 0.02 16.4066 -1156.75 -16.4066 16.4066 1.46 0.00857654 0.00776513 0.550131 0.492533 76 38277 49 1.56141e+07 7.77504e+06 2.61600e+06 4541.67 16.16 3.19223 2.82495 67070 679911 -1 31279 21 14604 28625 2614110 539811 15.1678 15.1678 -1537.76 -15.1678 0 0 3.24203e+06 5628.53 0.90 1.02 0.54 -1 -1 0.90 0.430568 0.385437 1482 2515 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_47.v common 34.04 vpr 84.73 MiB 0.29 16576 -1 -1 13 2.36 -1 -1 42656 -1 -1 206 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86768 22 19 3983 3594 1 2724 260 24 24 576 mult_36 auto 46.9 MiB 1.17 19564 47513 9947 35207 2359 84.7 MiB 1.26 0.02 16.197 -1214.31 -16.197 16.197 1.43 0.00880364 0.00790823 0.658543 0.584785 78 35422 40 1.56141e+07 7.92323e+06 2.67122e+06 4637.53 20.46 3.89534 3.42477 68222 705597 -1 31712 20 14679 29149 2638098 545103 14.8312 14.8312 -1689.11 -14.8312 0 0 3.35110e+06 5817.88 0.88 0.99 0.56 -1 -1 0.88 0.41967 0.376975 1559 2616 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_48.v common 31.49 vpr 85.75 MiB 0.34 16884 -1 -1 13 2.35 -1 -1 38932 -1 -1 202 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87804 22 19 4025 3636 1 2760 256 24 24 576 mult_36 auto 47.1 MiB 1.17 19865 44104 8235 32908 2961 84.2 MiB 1.11 0.02 16.5555 -1237.6 -16.5555 16.5555 1.52 0.00951442 0.00845547 0.564856 0.504466 80 34964 32 1.56141e+07 7.86934e+06 2.72095e+06 4723.87 17.88 3.64247 3.20046 68798 719145 -1 31055 19 14926 29473 2357968 493685 15.3246 15.3246 -1886.04 -15.3246 0 0 3.41546e+06 5929.62 0.95 0.96 0.58 -1 -1 0.95 0.420428 0.376137 1547 2639 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_49.v common 29.42 vpr 88.52 MiB 0.26 17096 -1 -1 13 2.59 -1 -1 39384 -1 -1 213 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 90640 22 19 4164 3758 1 2857 268 24 24 576 mult_36 auto 48.2 MiB 1.19 20771 46007 8890 34471 2646 85.7 MiB 1.10 0.02 17.0529 -1256.54 -17.0529 17.0529 1.46 0.00946931 0.00857696 0.557609 0.499161 82 37329 31 1.56141e+07 8.41354e+06 2.78508e+06 4835.20 15.70 3.88689 3.43225 69370 733739 -1 32313 17 14152 27191 2278999 483397 15.8336 15.8336 -1741.68 -15.8336 0 0 3.48632e+06 6052.64 0.95 0.91 0.59 -1 -1 0.95 0.399336 0.360201 1622 2741 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_50.v common 36.12 vpr 86.42 MiB 0.20 17156 -1 -1 13 2.58 -1 -1 39324 -1 -1 212 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88496 22 19 4190 3784 1 2864 267 24 24 576 mult_36 auto 48.0 MiB 1.19 20719 47512 9780 35035 2697 84.8 MiB 1.16 0.02 16.5956 -1264.91 -16.5956 16.5956 1.47 0.0091073 0.00821237 0.577449 0.516343 80 37198 33 1.56141e+07 8.40006e+06 2.72095e+06 4723.87 22.19 4.055 3.58594 68798 719145 -1 32760 21 15413 30452 2837390 559448 15.403 15.403 -1780.07 -15.403 0 0 3.41546e+06 5929.62 0.95 1.10 0.58 -1 -1 0.95 0.474642 0.42666 1618 2748 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_51.v common 30.24 vpr 89.34 MiB 0.32 17612 -1 -1 13 2.71 -1 -1 43504 -1 -1 216 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 91480 22 19 4305 3882 1 2950 271 24 24 576 mult_36 auto 49.1 MiB 0.93 21440 51079 10257 37415 3407 86.6 MiB 1.27 0.02 16.714 -1309.99 -16.714 16.714 1.64 0.0119022 0.0109917 0.641407 0.572951 84 38763 39 1.56141e+07 8.45395e+06 2.84938e+06 4946.85 15.79 4.22066 3.74218 70522 759407 -1 32428 20 15429 30918 2308593 493125 15.4073 15.4073 -1971.83 -15.4073 0 0 3.60864e+06 6265.01 0.98 1.05 0.61 -1 -1 0.98 0.497871 0.448507 1666 2826 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_52.v common 152.77 vpr 89.94 MiB 0.33 17640 -1 -1 13 2.82 -1 -1 39776 -1 -1 227 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 92096 22 19 4363 3940 1 3005 282 24 24 576 mult_36 auto 49.3 MiB 1.21 21730 54798 11168 40568 3062 87.0 MiB 1.32 0.02 17.192 -1314.04 -17.192 17.192 1.52 0.0101418 0.00918253 0.66549 0.59325 76 43596 50 1.56141e+07 8.60214e+06 2.61600e+06 4541.67 137.76 7.36468 6.43712 67070 679911 -1 35261 20 17755 34183 2873298 612759 15.6501 15.6501 -1976.75 -15.6501 0 0 3.24203e+06 5628.53 0.91 1.24 0.60 -1 -1 0.91 0.56194 0.502549 1697 2865 -1 -1 -1 -1 +k6_frac_ripple_N8_22nm.xml fir_pipe_14.v common 7.16 vpr 70.80 MiB 0.07 10496 -1 -1 1 0.24 -1 -1 35480 -1 -1 81 22 0 4 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72496 22 19 1974 1653 1 1020 126 16 16 256 mult_36 auto 32.8 MiB 0.41 5707 14616 2612 9996 2008 70.8 MiB 0.35 0.01 4.27196 -1191.29 -4.27196 4.27196 0.57 0.00340592 0.00306896 0.179803 0.162328 60 9610 24 6.52434e+06 2.71588e+06 890343. 3477.90 2.78 0.899076 0.784711 27128 224764 -1 8185 17 3699 4190 423433 108714 4.39726 4.39726 -1140.75 -4.39726 0 0 1.11577e+06 4358.47 0.29 0.23 0.19 -1 -1 0.29 0.130495 0.117487 605 708 247 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_15.v common 20.60 vpr 71.64 MiB 0.08 10912 -1 -1 1 0.25 -1 -1 36976 -1 -1 88 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73356 22 19 2144 1789 1 1119 134 16 16 256 mult_36 auto 33.5 MiB 0.42 6078 18944 3753 12931 2260 71.6 MiB 0.44 0.01 4.22492 -1354.66 -4.22492 4.22492 0.67 0.0037036 0.00333617 0.21501 0.193696 52 14873 50 6.52434e+06 3.20969e+06 808720. 3159.06 15.69 1.74398 1.5257 25852 197779 -1 10045 20 4558 5394 572033 144141 4.52256 4.52256 -1396.34 -4.52256 0 0 1.00038e+06 3907.74 0.24 0.29 0.17 -1 -1 0.24 0.162087 0.143071 654 769 266 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_16.v common 8.25 vpr 71.93 MiB 0.11 10952 -1 -1 1 0.26 -1 -1 36912 -1 -1 91 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73652 22 19 2218 1846 1 1161 137 16 16 256 mult_36 auto 33.8 MiB 0.46 6793 19199 3651 12642 2906 71.9 MiB 0.46 0.01 4.29396 -1376.37 -4.29396 4.29396 0.55 0.00392286 0.00353131 0.222154 0.199557 56 12610 23 6.52434e+06 3.25161e+06 849745. 3319.32 3.35 1.08385 0.946389 26364 208198 -1 10765 21 4657 5400 648059 162428 4.52256 4.52256 -1436.25 -4.52256 0 0 1.04740e+06 4091.43 0.27 0.35 0.21 -1 -1 0.27 0.193181 0.170747 683 788 285 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_17.v common 9.50 vpr 73.33 MiB 0.13 11704 -1 -1 1 0.27 -1 -1 36580 -1 -1 103 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75088 22 19 2536 2130 1 1274 149 16 16 256 mult_36 auto 35.3 MiB 0.52 7563 19849 3721 13396 2732 73.3 MiB 0.51 0.01 4.29396 -1555.03 -4.29396 4.29396 0.60 0.00452081 0.00408155 0.252577 0.22717 54 14934 45 6.52434e+06 3.4193e+06 829453. 3240.05 4.40 1.45664 1.27771 26108 202796 -1 11220 19 5009 5929 575456 150599 4.29396 4.29396 -1585.29 -4.29396 0 0 1.02522e+06 4004.78 0.25 0.34 0.17 -1 -1 0.25 0.199787 0.177848 770 924 304 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_18.v common 10.95 vpr 74.29 MiB 0.12 11884 -1 -1 1 0.31 -1 -1 37120 -1 -1 107 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76068 22 19 2610 2187 1 1316 153 16 16 256 mult_36 auto 35.8 MiB 0.55 7580 22648 4139 15538 2971 74.3 MiB 0.55 0.01 4.22437 -1603.12 -4.22437 4.22437 0.58 0.00443525 0.00398183 0.273319 0.245768 56 14991 32 6.52434e+06 3.47519e+06 849745. 3319.32 5.86 1.41031 1.23076 26364 208198 -1 12118 24 5442 6385 763550 186400 5.14906 5.14906 -1681.4 -5.14906 0 0 1.04740e+06 4091.43 0.27 0.41 0.13 -1 -1 0.27 0.230417 0.203033 798 943 323 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_19.v common 10.76 vpr 75.11 MiB 0.17 12184 -1 -1 1 0.33 -1 -1 36724 -1 -1 113 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76916 22 19 2778 2321 1 1410 160 16 16 256 mult_36 auto 36.8 MiB 0.57 8169 22294 4065 14927 3302 75.1 MiB 0.53 0.01 4.2304 -1681.23 -4.2304 4.2304 0.58 0.0045314 0.00405318 0.256982 0.22945 58 14770 47 6.52434e+06 3.95503e+06 871168. 3403.00 5.40 1.56264 1.36024 26872 219187 -1 12035 18 5167 5841 646056 165802 4.29396 4.29396 -1705.82 -4.29396 0 0 1.09288e+06 4269.05 0.26 0.34 0.19 -1 -1 0.26 0.194726 0.171914 846 1002 342 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_20.v common 9.91 vpr 75.12 MiB 0.13 12376 -1 -1 1 0.35 -1 -1 37004 -1 -1 118 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76928 22 19 2852 2378 1 1454 165 16 16 256 mult_36 auto 37.3 MiB 0.56 8808 21861 3843 15034 2984 75.1 MiB 0.55 0.01 4.28986 -1739.48 -4.28986 4.28986 0.61 0.00497001 0.00446513 0.264268 0.23753 60 14824 27 6.52434e+06 4.0249e+06 890343. 3477.90 4.57 1.45122 1.26718 27128 224764 -1 12480 16 5276 6100 595745 151457 4.41926 4.41926 -1762.84 -4.41926 0 0 1.11577e+06 4358.47 0.28 0.34 0.20 -1 -1 0.28 0.194343 0.172377 875 1021 361 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_21.v common 11.49 vpr 76.05 MiB 0.15 12808 -1 -1 1 0.34 -1 -1 37824 -1 -1 122 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77880 22 19 3057 2549 1 1559 169 16 16 256 mult_36 auto 38.3 MiB 0.64 9015 24920 4571 15619 4730 76.1 MiB 0.64 0.01 4.20237 -1905.04 -4.20237 4.20237 0.58 0.00554434 0.00500669 0.309355 0.276796 60 16024 44 6.52434e+06 4.0808e+06 890343. 3477.90 5.69 1.73434 1.51865 27128 224764 -1 13134 16 5600 6594 636756 160290 4.29396 4.29396 -1928.97 -4.29396 0 0 1.11577e+06 4358.47 0.28 0.36 0.19 -1 -1 0.28 0.207694 0.184735 932 1099 380 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_22.v common 12.10 vpr 76.48 MiB 0.10 12960 -1 -1 1 0.35 -1 -1 37920 -1 -1 125 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78316 22 19 3131 2606 1 1599 172 16 16 256 mult_36 auto 38.8 MiB 0.53 9644 27896 4964 18195 4737 76.5 MiB 0.74 0.01 4.09962 -1964.96 -4.09962 4.09962 0.57 0.00549947 0.00489115 0.342589 0.303885 66 17711 35 6.52434e+06 4.12272e+06 974584. 3806.97 6.45 1.71183 1.49596 28148 247068 -1 13707 17 5831 6659 781116 185151 4.29396 4.29396 -1959.31 -4.29396 0 0 1.22072e+06 4768.46 0.31 0.39 0.19 -1 -1 0.31 0.215751 0.191625 961 1118 399 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_23.v common 13.73 vpr 77.29 MiB 0.17 13308 -1 -1 1 0.39 -1 -1 37936 -1 -1 133 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79140 22 19 3301 2742 1 1700 181 18 18 324 mult_36 auto 39.5 MiB 0.72 10087 30330 5799 21301 3230 77.3 MiB 0.74 0.01 4.29396 -2075.2 -4.29396 4.29396 0.77 0.00650178 0.00598133 0.346423 0.313697 60 18320 28 8.04299e+06 4.63052e+06 1.16833e+06 3605.96 7.06 1.72603 1.51148 35004 297736 -1 15010 17 6849 7695 873963 206522 4.29396 4.29396 -2095.97 -4.29396 0 0 1.46313e+06 4515.82 0.40 0.41 0.25 -1 -1 0.40 0.220321 0.195312 1012 1179 418 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_24.v common 13.85 vpr 77.54 MiB 0.13 13392 -1 -1 1 0.41 -1 -1 38108 -1 -1 137 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79396 22 19 3375 2799 1 1743 185 18 18 324 mult_36 auto 39.8 MiB 0.70 10300 29115 5219 20674 3222 77.5 MiB 0.80 0.01 4.22437 -2073.88 -4.22437 4.22437 0.77 0.006131 0.00553331 0.354774 0.317073 58 18565 31 8.04299e+06 4.68641e+06 1.14310e+06 3528.09 7.15 1.79694 1.56807 34680 290288 -1 15595 17 6816 7782 901255 220455 4.29396 4.29396 -2160.36 -4.29396 0 0 1.43297e+06 4422.75 0.36 0.44 0.26 -1 -1 0.36 0.237466 0.211355 1041 1198 437 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_25.v common 13.85 vpr 78.52 MiB 0.13 13888 -1 -1 1 0.40 -1 -1 38236 -1 -1 146 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80404 22 19 3615 3005 1 1847 194 18 18 324 mult_36 auto 40.8 MiB 0.67 10975 29927 5204 21640 3083 78.5 MiB 0.78 0.01 4.29396 -2273.15 -4.29396 4.29396 0.76 0.006101 0.00546094 0.361338 0.323248 58 20078 36 8.04299e+06 4.81218e+06 1.14310e+06 3528.09 7.25 1.94915 1.69787 34680 290288 -1 16168 17 7089 8219 904291 224983 4.41926 4.41926 -2410.63 -4.41926 0 0 1.43297e+06 4422.75 0.36 0.46 0.24 -1 -1 0.36 0.258436 0.230808 1107 1293 456 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_26.v common 14.51 vpr 79.02 MiB 0.09 14076 -1 -1 1 0.34 -1 -1 38412 -1 -1 148 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80916 22 19 3689 3062 1 1888 196 18 18 324 mult_36 auto 41.4 MiB 0.77 10816 33767 6403 23789 3575 79.0 MiB 0.90 0.01 4.09962 -2289.16 -4.09962 4.09962 0.77 0.00666653 0.00592456 0.405095 0.359897 60 19765 47 8.04299e+06 4.84013e+06 1.16833e+06 3605.96 7.57 2.1649 1.88473 35004 297736 -1 15783 16 6853 7919 833754 202360 4.41926 4.41926 -2402.93 -4.41926 0 0 1.46313e+06 4515.82 0.37 0.43 0.25 -1 -1 0.37 0.24325 0.216254 1135 1312 475 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_27.v common 12.41 vpr 80.23 MiB 0.18 14388 -1 -1 1 0.41 -1 -1 38456 -1 -1 156 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82160 22 19 3871 3210 1 1998 205 18 18 324 mult_36 auto 42.4 MiB 0.80 12132 28593 4296 20787 3510 80.2 MiB 0.74 0.01 4.41926 -2393.12 -4.41926 4.41926 0.77 0.006481 0.00579771 0.338432 0.302298 64 20586 19 8.04299e+06 5.34793e+06 1.23838e+06 3822.15 5.24 1.78906 1.56837 35972 318676 -1 17280 19 7116 8295 869286 210992 4.41926 4.41926 -2474.76 -4.41926 0 0 1.56068e+06 4816.91 0.44 0.51 0.30 -1 -1 0.44 0.295813 0.263743 1191 1385 494 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_28.v common 15.94 vpr 80.36 MiB 0.28 14584 -1 -1 1 0.47 -1 -1 38476 -1 -1 160 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82292 22 19 3945 3267 1 2043 209 18 18 324 mult_36 auto 42.6 MiB 0.83 12721 34929 5952 24376 4601 80.4 MiB 0.89 0.01 4.26697 -2429.16 -4.26697 4.26697 0.78 0.00701006 0.00631112 0.406399 0.363637 60 21797 48 8.04299e+06 5.40382e+06 1.16833e+06 3605.96 8.27 2.30836 2.01074 35004 297736 -1 18182 20 8118 9346 1020381 253908 4.41926 4.41926 -2516.38 -4.41926 0 0 1.46313e+06 4515.82 0.38 0.63 0.27 -1 -1 0.38 0.375108 0.337767 1219 1404 513 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_29.v common 17.64 vpr 81.52 MiB 0.12 15092 -1 -1 1 0.48 -1 -1 39648 -1 -1 170 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83480 22 19 4159 3447 1 2157 220 22 22 484 mult_36 auto 43.7 MiB 0.84 13597 41989 8196 30469 3324 81.5 MiB 1.05 0.02 4.16866 -2687.48 -4.16866 4.16866 1.22 0.00719836 0.00646222 0.481623 0.429453 56 27289 30 1.30842e+07 5.93957e+06 1.71605e+06 3545.56 8.95 2.22671 1.94498 51606 428054 -1 21919 20 9434 11001 1516906 343088 4.52256 4.52256 -2855.36 -4.52256 0 0 2.11301e+06 4365.72 0.56 0.39 0.34 -1 -1 0.56 0.187846 0.168815 1283 1491 532 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_30.v common 20.20 vpr 82.89 MiB 0.20 15032 -1 -1 1 0.60 -1 -1 40776 -1 -1 173 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84880 22 19 4233 3504 1 2198 223 22 22 484 mult_36 auto 44.3 MiB 0.85 14316 43487 8493 30718 4276 82.9 MiB 1.12 0.02 4.41926 -2750.54 -4.41926 4.41926 1.22 0.00742763 0.00666077 0.497987 0.444103 58 27441 46 1.30842e+07 5.98149e+06 1.75961e+06 3635.55 10.85 2.43679 2.13088 52570 450426 -1 21701 17 9112 10561 1278143 292476 4.54456 4.54456 -2870.39 -4.54456 0 0 2.20457e+06 4554.90 0.61 0.57 0.36 -1 -1 0.61 0.303403 0.26981 1311 1510 551 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_31.v common 16.67 vpr 83.57 MiB 0.23 15640 -1 -1 1 0.53 -1 -1 41024 -1 -1 179 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85576 22 19 4410 3647 1 2304 229 22 22 484 mult_36 auto 44.9 MiB 0.88 14559 42929 8301 31079 3549 83.6 MiB 1.12 0.02 4.54456 -2849.05 -4.54456 4.54456 1.21 0.00745103 0.00666239 0.502234 0.448841 60 26138 29 1.30842e+07 6.06533e+06 1.79840e+06 3715.71 7.35 2.34135 2.05057 53054 462096 -1 21367 18 8865 10303 1128192 264808 4.54456 4.54456 -2991.12 -4.54456 0 0 2.25108e+06 4650.99 0.62 0.59 0.39 -1 -1 0.62 0.318889 0.285441 1363 1578 570 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_32.v common 20.69 vpr 82.85 MiB 0.19 15572 -1 -1 1 0.54 -1 -1 40572 -1 -1 183 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84836 22 19 4484 3704 1 2346 233 22 22 484 mult_36 auto 45.1 MiB 0.91 14169 51069 10204 36498 4367 82.8 MiB 1.24 0.02 4.35562 -2870.14 -4.35562 4.35562 1.18 0.00727166 0.00648461 0.540705 0.481056 58 28562 42 1.30842e+07 6.12123e+06 1.75961e+06 3635.55 10.86 2.61612 2.28074 52570 450426 -1 21935 18 9198 10981 1225293 282955 4.41926 4.41926 -3046.59 -4.41926 0 0 2.20457e+06 4554.90 0.62 0.59 0.32 -1 -1 0.62 0.310706 0.275736 1393 1597 589 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_33.v common 24.20 vpr 85.52 MiB 0.23 16688 -1 -1 1 0.56 -1 -1 41628 -1 -1 196 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87572 22 19 4843 4029 1 2462 247 22 22 484 mult_36 auto 47.0 MiB 1.13 15624 49783 9117 36437 4229 85.5 MiB 1.21 0.02 4.64786 -3017.99 -4.64786 4.64786 1.24 0.00761602 0.00676614 0.533935 0.474376 60 29459 48 1.30842e+07 6.6989e+06 1.79840e+06 3715.71 14.26 2.84822 2.48391 53054 462096 -1 23118 17 9322 10866 1279018 283870 4.54456 4.54456 -3177.97 -4.54456 0 0 2.25108e+06 4650.99 0.61 0.62 0.46 -1 -1 0.61 0.353908 0.31735 1490 1756 608 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_34.v common 20.31 vpr 84.88 MiB 0.26 16896 -1 -1 1 0.63 -1 -1 41516 -1 -1 199 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86916 22 19 4917 4086 1 2503 250 22 22 484 mult_36 auto 47.4 MiB 0.95 16182 52192 10276 36322 5594 84.9 MiB 1.28 0.02 4.41926 -3092.45 -4.41926 4.41926 1.23 0.00760482 0.00676556 0.564061 0.500769 64 28538 36 1.30842e+07 6.74082e+06 1.90554e+06 3937.06 10.13 3.04467 2.68442 54502 494576 -1 22667 18 8811 10602 1146289 263961 4.54456 4.54456 -3188.99 -4.54456 0 0 2.40101e+06 4960.76 0.65 0.62 0.41 -1 -1 0.65 0.351193 0.312295 1519 1775 627 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_35.v common 21.36 vpr 85.83 MiB 0.32 17128 -1 -1 1 0.63 -1 -1 41764 -1 -1 207 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87888 22 19 5093 4228 1 2606 258 22 22 484 mult_36 auto 48.2 MiB 0.95 15281 55265 10444 39810 5011 85.8 MiB 1.34 0.02 4.16866 -3231.81 -4.16866 4.16866 1.23 0.00806113 0.00717252 0.590696 0.524331 60 28985 37 1.30842e+07 6.85261e+06 1.79840e+06 3715.71 11.05 2.9251 2.55373 53054 462096 -1 22720 20 9865 11925 1244020 294578 4.41926 4.41926 -3325.32 -4.41926 0 0 2.25108e+06 4650.99 0.64 0.69 0.37 -1 -1 0.64 0.399047 0.354548 1572 1842 646 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_36.v common 18.14 vpr 86.34 MiB 0.17 17204 -1 -1 1 0.65 -1 -1 41776 -1 -1 209 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88416 22 19 5167 4285 1 2653 260 22 22 484 mult_36 auto 48.8 MiB 0.98 16606 54145 10648 38527 4970 86.3 MiB 1.36 0.02 4.16866 -3259.63 -4.16866 4.16866 1.19 0.00868234 0.00775776 0.586893 0.521739 64 29957 28 1.30842e+07 6.88056e+06 1.90554e+06 3937.06 8.19 2.67123 2.33119 54502 494576 -1 23683 18 9902 11325 1259385 289004 4.41926 4.41926 -3287.54 -4.41926 0 0 2.40101e+06 4960.76 0.61 0.58 0.39 -1 -1 0.61 0.331583 0.292623 1600 1861 665 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_37.v common 21.09 vpr 88.22 MiB 0.26 17588 -1 -1 1 0.67 -1 -1 40772 -1 -1 218 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 90340 22 19 5380 4464 1 2755 270 24 24 576 mult_36 auto 49.9 MiB 1.06 18567 56078 10962 40406 4710 88.2 MiB 1.45 0.02 4.41926 -3517.74 -4.41926 4.41926 1.46 0.011845 0.0108667 0.625669 0.556627 62 34089 42 1.57908e+07 7.40233e+06 2.19658e+06 3813.51 10.12 3.24992 2.85968 63306 560109 -1 25982 17 10013 11925 1290386 299725 4.54456 4.54456 -3709.06 -4.54456 0 0 2.72095e+06 4723.87 0.70 0.60 0.43 -1 -1 0.70 0.335585 0.296844 1662 1947 684 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_38.v common 23.46 vpr 87.28 MiB 0.18 17932 -1 -1 1 0.70 -1 -1 42356 -1 -1 220 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89372 22 19 5454 4521 1 2802 272 24 24 576 mult_36 auto 49.6 MiB 1.08 18582 51370 9929 37950 3491 87.3 MiB 1.41 0.02 4.41926 -3447.93 -4.41926 4.41926 1.47 0.00885871 0.00790343 0.606093 0.53869 64 34209 36 1.57908e+07 7.43028e+06 2.26035e+06 3924.22 12.06 2.88108 2.51729 64454 586630 -1 26870 18 10485 12283 1454697 328137 4.54456 4.54456 -3636.25 -4.54456 0 0 2.84938e+06 4946.85 0.81 0.72 0.48 -1 -1 0.81 0.391969 0.349886 1690 1966 703 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_39.v common 23.62 vpr 88.21 MiB 0.29 18256 -1 -1 1 0.71 -1 -1 40212 -1 -1 228 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 90324 22 19 5629 4662 1 2909 280 24 24 576 mult_36 auto 50.9 MiB 1.08 18512 58840 11287 42675 4878 88.2 MiB 1.50 0.02 4.53661 -3591.01 -4.53661 4.53661 1.51 0.0104965 0.0094672 0.651336 0.579977 64 33376 33 1.57908e+07 7.54207e+06 2.26035e+06 3924.22 11.88 3.18095 2.78182 64454 586630 -1 26570 18 10607 12773 1398491 323531 4.52256 4.52256 -3729.32 -4.52256 0 0 2.84938e+06 4946.85 0.82 0.72 0.47 -1 -1 0.82 0.405198 0.361638 1742 2032 722 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_40.v common 24.07 vpr 89.79 MiB 0.34 18348 -1 -1 1 0.68 -1 -1 42284 -1 -1 232 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 91944 22 19 5703 4719 1 2951 284 24 24 576 mult_36 auto 51.8 MiB 1.09 19527 61862 12354 44168 5340 89.8 MiB 1.55 0.02 4.51758 -3660.42 -4.51758 4.51758 1.41 0.00911902 0.00811392 0.654527 0.579497 64 35385 33 1.57908e+07 7.59797e+06 2.26035e+06 3924.22 11.97 3.12936 2.74636 64454 586630 -1 27678 18 10750 12796 1471921 331561 4.64786 4.64786 -3839.37 -4.64786 0 0 2.84938e+06 4946.85 0.83 0.79 0.55 -1 -1 0.83 0.438235 0.393209 1771 2051 741 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_41.v common 24.48 vpr 89.66 MiB 0.21 18724 -1 -1 1 0.84 -1 -1 41504 -1 -1 240 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 91816 22 19 5950 4932 1 3065 293 24 24 576 mult_36 auto 52.4 MiB 1.12 20313 68333 13912 49003 5418 89.7 MiB 1.76 0.02 4.35562 -3781.12 -4.35562 4.35562 1.49 0.0100927 0.00897853 0.748474 0.663187 64 37437 47 1.57908e+07 8.10576e+06 2.26035e+06 3924.22 12.19 3.44676 2.99524 64454 586630 -1 29393 20 11515 13868 1578948 357275 4.54456 4.54456 -4027.56 -4.54456 0 0 2.84938e+06 4946.85 0.77 0.81 0.47 -1 -1 0.77 0.448202 0.39727 1841 2153 760 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_42.v common 25.47 vpr 92.35 MiB 0.23 18988 -1 -1 1 0.86 -1 -1 42916 -1 -1 242 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94564 22 19 6024 4989 1 3106 295 24 24 576 mult_36 auto 53.2 MiB 1.15 21018 65041 12819 46780 5442 90.3 MiB 1.67 0.02 4.54456 -3823.47 -4.54456 4.54456 1.51 0.0101508 0.00906076 0.715915 0.636736 64 36534 49 1.57908e+07 8.13371e+06 2.26035e+06 3924.22 13.19 3.56747 3.11957 64454 586630 -1 29646 18 11267 13244 1541469 352337 4.66986 4.66986 -3955.02 -4.66986 0 0 2.84938e+06 4946.85 0.75 0.75 0.46 -1 -1 0.75 0.430993 0.383901 1869 2172 779 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_43.v common 25.12 vpr 91.39 MiB 0.31 19256 -1 -1 1 0.89 -1 -1 43264 -1 -1 250 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 93588 22 19 6198 5129 1 3209 303 24 24 576 mult_36 auto 54.3 MiB 1.22 22338 66408 13114 47625 5669 91.4 MiB 1.76 0.03 4.47497 -4072.8 -4.47497 4.47497 1.50 0.0104487 0.00936437 0.738522 0.655007 68 37694 34 1.57908e+07 8.2455e+06 2.39371e+06 4155.74 12.43 3.35506 2.92455 65606 615345 -1 30383 15 11489 13385 1484469 334786 4.66986 4.66986 -4189.73 -4.66986 0 0 2.98162e+06 5176.42 1.02 0.78 0.49 -1 -1 1.02 0.421175 0.378984 1921 2237 798 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_44.v common 25.17 vpr 94.43 MiB 0.17 19552 -1 -1 1 0.85 -1 -1 43196 -1 -1 253 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 96696 22 19 6272 5186 1 3253 306 24 24 576 mult_36 auto 54.2 MiB 1.23 22629 67256 12828 47647 6781 91.3 MiB 1.75 0.03 4.41926 -4066.4 -4.41926 4.41926 1.56 0.0105256 0.0093916 0.741281 0.658657 70 37350 43 1.57908e+07 8.28742e+06 2.45377e+06 4260.01 12.42 3.6164 3.15387 66754 640332 -1 30782 20 11655 13506 1570135 362351 4.41926 4.41926 -4119.98 -4.41926 0 0 3.09179e+06 5367.68 0.82 0.82 0.51 -1 -1 0.82 0.468682 0.416096 1949 2256 817 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_45.v common 23.85 vpr 92.27 MiB 0.33 20028 -1 -1 1 0.90 -1 -1 43716 -1 -1 262 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94488 22 19 6485 5365 1 3362 316 24 24 576 mult_36 auto 55.3 MiB 1.26 21577 68041 12652 49574 5815 92.3 MiB 1.82 0.03 4.34967 -4219.28 -4.34967 4.34967 1.55 0.010752 0.00961779 0.738639 0.650742 72 36507 46 1.57908e+07 8.80919e+06 2.50747e+06 4353.24 10.81 3.77641 3.29091 67330 654343 -1 29810 22 11462 13137 1601544 361852 4.39726 4.39726 -4238.31 -4.39726 0 0 3.14081e+06 5452.80 0.85 0.91 0.52 -1 -1 0.85 0.527897 0.467341 2011 2342 836 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_46.v common 26.61 vpr 98.11 MiB 0.34 20028 -1 -1 1 0.87 -1 -1 43880 -1 -1 266 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 100468 22 19 6559 5422 1 3404 320 24 24 576 mult_36 auto 55.5 MiB 1.28 24101 72524 13138 53102 6284 92.7 MiB 2.08 0.03 4.66986 -4291.45 -4.66986 4.66986 1.46 0.0119672 0.0107794 0.83727 0.749668 68 40255 40 1.57908e+07 8.86508e+06 2.39371e+06 4155.74 13.34 3.88625 3.40879 65606 615345 -1 32521 18 12015 14089 1546690 340905 4.66986 4.66986 -4364.43 -4.66986 0 0 2.98162e+06 5176.42 0.79 0.84 0.52 -1 -1 0.79 0.471209 0.420824 2040 2361 855 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_47.v common 25.66 vpr 96.38 MiB 0.26 20328 -1 -1 1 0.98 -1 -1 44612 -1 -1 273 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 98692 22 19 6735 5564 1 3511 327 24 24 576 mult_36 auto 56.6 MiB 1.32 22785 72391 13683 52096 6612 93.7 MiB 2.12 0.03 4.36967 -4379.74 -4.36967 4.36967 1.44 0.0126992 0.011479 0.885818 0.786761 66 39572 35 1.57908e+07 8.9629e+06 2.33135e+06 4047.49 12.30 3.95827 3.45851 65030 601923 -1 31611 19 12384 14268 1564989 359786 4.54456 4.54456 -4464.94 -4.54456 0 0 2.91907e+06 5067.82 0.82 0.86 0.50 -1 -1 0.82 0.496205 0.441897 2092 2428 874 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_48.v common 27.56 vpr 98.24 MiB 0.39 20536 -1 -1 1 1.04 -1 -1 44100 -1 -1 276 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 100596 22 19 6809 5621 1 3555 330 24 24 576 mult_36 auto 57.0 MiB 1.36 23066 80060 16107 55507 8446 94.0 MiB 2.24 0.03 4.29396 -4332.56 -4.29396 4.29396 1.49 0.010321 0.00913554 0.900016 0.796321 70 39582 34 1.57908e+07 9.00482e+06 2.45377e+06 4260.01 13.48 3.67756 3.19309 66754 640332 -1 32506 18 12951 15266 1774464 412111 4.41926 4.41926 -4460.37 -4.41926 0 0 3.09179e+06 5367.68 0.84 0.87 0.54 -1 -1 0.84 0.478592 0.424893 2121 2447 893 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_49.v common 27.16 vpr 97.51 MiB 0.18 21252 -1 -1 1 1.04 -1 -1 44416 -1 -1 287 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 99852 22 19 7094 5872 1 3669 342 24 24 576 mult_36 auto 58.0 MiB 1.42 24245 82797 16885 57326 8586 95.1 MiB 2.25 0.03 4.52256 -4714.45 -4.52256 4.52256 1.44 0.0118561 0.0106259 0.900369 0.79678 72 41230 32 1.57908e+07 9.55454e+06 2.50747e+06 4353.24 13.37 3.97004 3.4626 67330 654343 -1 33608 16 12552 14465 1746432 385070 4.64786 4.64786 -4951.91 -4.64786 0 0 3.14081e+06 5452.80 0.85 0.85 0.53 -1 -1 0.85 0.455975 0.406164 2200 2569 912 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_50.v common 26.03 vpr 100.95 MiB 0.21 21304 -1 -1 1 1.04 -1 -1 44288 -1 -1 290 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 103372 22 19 7168 5929 1 3710 345 24 24 576 mult_36 auto 58.4 MiB 1.47 24589 80139 15697 56982 7460 95.4 MiB 2.13 0.03 4.41926 -4634.65 -4.41926 4.41926 1.48 0.0119433 0.010454 0.836358 0.737133 70 40446 44 1.57908e+07 9.59646e+06 2.45377e+06 4260.01 12.09 4.00842 3.47817 66754 640332 -1 34146 18 13413 15667 1907396 427492 4.54456 4.54456 -4822.29 -4.54456 0 0 3.09179e+06 5367.68 0.89 1.01 0.52 -1 -1 0.89 0.535964 0.47839 2229 2588 931 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_51.v common 28.63 vpr 99.47 MiB 0.37 21664 -1 -1 1 1.11 -1 -1 44756 -1 -1 297 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 101856 22 19 7344 6071 1 3814 352 24 24 576 mult_36 auto 59.4 MiB 1.64 25956 86050 17957 59580 8513 96.4 MiB 2.35 0.04 4.54456 -4790.18 -4.54456 4.54456 1.49 0.0162424 0.0148599 0.946895 0.838694 72 43615 28 1.57908e+07 9.69428e+06 2.50747e+06 4353.24 13.90 3.95891 3.45177 67330 654343 -1 35657 17 13386 15768 1879694 426603 4.64786 4.64786 -4925.15 -4.64786 0 0 3.14081e+06 5452.80 0.86 0.89 0.52 -1 -1 0.86 0.48718 0.433407 2282 2655 950 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_52.v common 25.95 vpr 99.39 MiB 0.28 21732 -1 -1 1 1.01 -1 -1 45068 -1 -1 301 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 101776 22 19 7418 6128 1 3859 356 24 24 576 mult_36 auto 60.1 MiB 1.47 27555 81060 16090 57104 7866 99.1 MiB 2.14 0.03 4.54456 -4802.82 -4.54456 4.54456 1.43 0.0120698 0.0107753 0.842413 0.740695 76 44587 45 1.57908e+07 9.75017e+06 2.61600e+06 4541.67 12.08 4.15845 3.61183 68478 680951 -1 37419 17 14263 16730 1964169 440460 4.52256 4.52256 -5062.61 -4.52256 0 0 3.24203e+06 5628.53 0.95 0.95 0.52 -1 -1 0.95 0.502544 0.447268 2310 2674 969 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_14.v common 8.81 vpr 67.31 MiB 0.13 9440 -1 -1 1 0.12 -1 -1 34712 -1 -1 58 22 0 4 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 68924 22 19 1246 925 1 732 103 16 16 256 mult_36 auto 28.9 MiB 2.74 3886 14081 3199 8271 2611 67.3 MiB 0.31 0.01 8.43746 -386.648 -8.43746 8.43746 0.59 0.00249884 0.0022961 0.153735 0.141049 44 8107 32 6.52434e+06 2.39448e+06 686998. 2683.59 2.43 0.551985 0.492102 24576 170172 -1 6188 24 5707 6417 667481 172985 7.87084 7.87084 -462.711 -7.87084 0 0 871168. 3403.00 0.21 0.29 0.15 -1 -1 0.21 0.128358 0.11408 421 344 247 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_15.v common 9.80 vpr 67.93 MiB 0.10 9540 -1 -1 1 0.17 -1 -1 35144 -1 -1 61 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69560 22 19 1344 989 1 793 107 16 16 256 mult_36 auto 29.6 MiB 2.03 4415 16299 3732 8915 3652 67.9 MiB 0.37 0.01 8.61109 -402.505 -8.61109 8.61109 0.58 0.00265723 0.00243955 0.189356 0.173645 44 9925 41 6.52434e+06 2.8324e+06 686998. 2683.59 3.88 0.892944 0.7947 24576 170172 -1 7024 25 6220 7095 698142 184212 8.45004 8.45004 -463.679 -8.45004 0 0 871168. 3403.00 0.22 0.34 0.15 -1 -1 0.22 0.155405 0.14074 453 369 266 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_16.v common 11.29 vpr 68.10 MiB 0.10 9672 -1 -1 1 0.19 -1 -1 35136 -1 -1 65 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69736 22 19 1418 1046 1 832 111 16 16 256 mult_36 auto 30.1 MiB 2.96 4724 16869 4045 10706 2118 68.1 MiB 0.44 0.01 8.43651 -410.772 -8.43651 8.43651 0.62 0.0028132 0.00257563 0.200536 0.183658 48 9176 31 6.52434e+06 2.88829e+06 755748. 2952.14 4.31 0.897273 0.796679 25088 180500 -1 7305 24 6692 7397 851322 211567 7.80584 7.80584 -467.143 -7.80584 0 0 916467. 3579.95 0.22 0.34 0.17 -1 -1 0.22 0.143449 0.127696 481 388 285 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_17.v common 10.58 vpr 68.59 MiB 0.10 10212 -1 -1 1 0.15 -1 -1 35340 -1 -1 71 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70240 22 19 1518 1112 1 896 117 16 16 256 mult_36 auto 30.6 MiB 2.67 5238 17563 3887 11404 2272 68.6 MiB 0.46 0.01 9.04171 -433.063 -9.04171 9.04171 0.56 0.00413444 0.00385519 0.205719 0.187964 48 10177 28 6.52434e+06 2.97214e+06 755748. 2952.14 3.95 0.881042 0.782615 25088 180500 -1 8176 22 6890 7606 917926 237751 8.68028 8.68028 -493.626 -8.68028 0 0 916467. 3579.95 0.22 0.32 0.18 -1 -1 0.22 0.135487 0.121653 514 415 304 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_18.v common 13.14 vpr 68.97 MiB 0.12 10304 -1 -1 1 0.21 -1 -1 34948 -1 -1 74 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70628 22 19 1592 1169 1 934 120 16 16 256 mult_36 auto 30.9 MiB 3.32 5243 15755 3475 9888 2392 69.0 MiB 0.39 0.01 9.04775 -490.252 -9.04775 9.04775 0.55 0.00310114 0.00281456 0.183321 0.167683 48 11232 37 6.52434e+06 3.01406e+06 755748. 2952.14 5.98 0.941072 0.833617 25088 180500 -1 8633 23 7736 8750 1034775 249786 8.80158 8.80158 -540.639 -8.80158 0 0 916467. 3579.95 0.23 0.39 0.17 -1 -1 0.23 0.152496 0.136913 542 434 323 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_19.v common 11.51 vpr 69.29 MiB 0.11 10692 -1 -1 1 0.20 -1 -1 35236 -1 -1 79 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70956 22 19 1688 1231 1 994 126 16 16 256 mult_36 auto 31.4 MiB 2.90 5618 18711 3986 11280 3445 69.3 MiB 0.48 0.01 9.18492 -482.658 -9.18492 9.18492 0.58 0.00325551 0.00298378 0.223503 0.20475 52 10842 44 6.52434e+06 3.47993e+06 808720. 3159.06 4.48 1.093 0.971846 25852 197779 -1 8271 22 6752 7535 845938 215127 8.23108 8.23108 -551.85 -8.23108 0 0 1.00038e+06 3907.74 0.25 0.33 0.17 -1 -1 0.25 0.150906 0.134461 573 457 342 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_20.v common 12.15 vpr 69.87 MiB 0.12 10752 -1 -1 1 0.22 -1 -1 35508 -1 -1 81 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71544 22 19 1762 1288 1 1031 128 16 16 256 mult_36 auto 31.8 MiB 3.48 6535 19770 4199 12093 3478 69.9 MiB 0.50 0.01 9.33493 -488.07 -9.33493 9.33493 0.58 0.00393902 0.00361618 0.226774 0.206643 48 12219 33 6.52434e+06 3.50787e+06 755748. 2952.14 4.48 1.04501 0.925176 25088 180500 -1 9898 22 7504 8327 1040791 265119 8.96258 8.96258 -581.233 -8.96258 0 0 916467. 3579.95 0.23 0.39 0.16 -1 -1 0.23 0.156731 0.139761 601 476 361 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_21.v common 12.92 vpr 70.16 MiB 0.14 10972 -1 -1 1 0.23 -1 -1 35944 -1 -1 85 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71844 22 19 1859 1351 1 1093 132 16 16 256 mult_36 auto 32.1 MiB 3.48 6792 15542 2589 10760 2193 70.2 MiB 0.41 0.01 9.32007 -525.351 -9.32007 9.32007 0.61 0.00348662 0.00319064 0.180881 0.165392 52 13770 38 6.52434e+06 3.56377e+06 808720. 3159.06 5.06 1.13318 1.00524 25852 197779 -1 10144 26 8345 9522 1119762 274391 8.76698 8.76698 -629.803 -8.76698 0 0 1.00038e+06 3907.74 0.25 0.48 0.17 -1 -1 0.25 0.200326 0.179147 632 500 380 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_22.v common 12.79 vpr 70.51 MiB 0.09 11036 -1 -1 1 0.25 -1 -1 35780 -1 -1 90 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72200 22 19 1933 1408 1 1131 137 16 16 256 mult_36 auto 32.7 MiB 4.09 7153 18846 3425 12209 3212 70.5 MiB 0.49 0.01 9.31293 -505.408 -9.31293 9.31293 0.60 0.00360585 0.00328582 0.209128 0.190526 56 11937 28 6.52434e+06 3.63364e+06 849745. 3319.32 4.42 1.06006 0.938823 26364 208198 -1 10148 23 7351 8481 910874 235258 8.45968 8.45968 -707.138 -8.45968 0 0 1.04740e+06 4091.43 0.26 0.39 0.18 -1 -1 0.26 0.181491 0.161447 661 519 399 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_23.v common 16.10 vpr 71.06 MiB 0.18 11408 -1 -1 1 0.25 -1 -1 36016 -1 -1 94 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72768 22 19 2031 1472 1 1193 142 18 18 324 mult_36 auto 33.2 MiB 3.90 7470 21602 4449 14485 2668 71.1 MiB 0.53 0.01 9.36191 -552.695 -9.36191 9.36191 0.79 0.00376507 0.00343241 0.238367 0.217452 50 14673 42 8.04299e+06 4.08553e+06 1.03391e+06 3191.07 7.13 1.27319 1.12709 32744 246704 -1 11207 23 8954 10315 1227188 301096 8.80128 8.80128 -805.076 -8.80128 0 0 1.23838e+06 3822.15 0.31 0.48 0.22 -1 -1 0.31 0.19755 0.176261 693 544 418 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_24.v common 15.40 vpr 71.33 MiB 0.11 11492 -1 -1 1 0.23 -1 -1 36264 -1 -1 97 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73040 22 19 2105 1529 1 1232 145 18 18 324 mult_36 auto 33.3 MiB 4.14 7507 21425 4200 14405 2820 71.3 MiB 0.55 0.01 9.44155 -614.321 -9.44155 9.44155 0.78 0.0038934 0.00354525 0.238346 0.21681 50 14797 40 8.04299e+06 4.12745e+06 1.03391e+06 3191.07 6.30 1.24287 1.0989 32744 246704 -1 11508 23 9004 10353 1255675 301759 8.51938 8.51938 -832.526 -8.51938 0 0 1.23838e+06 3822.15 0.31 0.44 0.21 -1 -1 0.31 0.185596 0.165494 721 563 437 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_25.v common 14.99 vpr 71.78 MiB 0.08 11932 -1 -1 1 0.27 -1 -1 36564 -1 -1 101 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73500 22 19 2201 1591 1 1290 149 18 18 324 mult_36 auto 33.9 MiB 3.96 8738 27335 5810 17606 3919 71.8 MiB 0.75 0.01 9.29835 -606.15 -9.29835 9.29835 0.78 0.00474546 0.00429979 0.319794 0.290255 54 16607 42 8.04299e+06 4.18335e+06 1.08842e+06 3359.33 5.60 1.37437 1.21416 33712 268580 -1 12763 24 9307 10561 1197981 287506 8.67428 8.67428 -895.049 -8.67428 0 0 1.34436e+06 4149.26 0.34 0.51 0.24 -1 -1 0.34 0.215604 0.192549 751 586 456 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_26.v common 15.07 vpr 72.17 MiB 0.11 11824 -1 -1 1 0.27 -1 -1 37384 -1 -1 105 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73900 22 19 2275 1648 1 1330 153 18 18 324 mult_36 auto 34.3 MiB 4.64 8508 22239 4415 15566 2258 72.2 MiB 0.62 0.01 9.42265 -590.577 -9.42265 9.42265 0.80 0.00445864 0.00401596 0.257362 0.233603 58 14084 47 8.04299e+06 4.23924e+06 1.14310e+06 3528.09 5.07 1.33825 1.18192 34680 290288 -1 11882 25 8955 10040 1155840 295020 8.75428 8.75428 -771.843 -8.75428 0 0 1.43297e+06 4422.75 0.37 0.49 0.24 -1 -1 0.37 0.224963 0.200306 779 605 475 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_27.v common 15.95 vpr 72.68 MiB 0.12 12180 -1 -1 1 0.31 -1 -1 36636 -1 -1 111 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74420 22 19 2385 1724 1 1404 160 18 18 324 mult_36 auto 34.8 MiB 4.54 8706 29238 6495 17225 5518 72.7 MiB 0.73 0.01 9.5032 -657.318 -9.5032 9.5032 0.82 0.00494662 0.00454829 0.328609 0.29886 54 15872 37 8.04299e+06 4.7191e+06 1.08842e+06 3359.33 5.77 1.43293 1.26829 33712 268580 -1 12564 25 10940 12275 1423270 343940 8.66928 8.66928 -791.778 -8.66928 0 0 1.34436e+06 4149.26 0.34 0.56 0.23 -1 -1 0.34 0.235215 0.209343 817 642 494 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_28.v common 17.76 vpr 73.13 MiB 0.17 12176 -1 -1 1 0.35 -1 -1 36836 -1 -1 114 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74888 22 19 2459 1781 1 1443 163 18 18 324 mult_36 auto 35.5 MiB 5.17 9504 27753 5644 18640 3469 73.1 MiB 0.73 0.01 9.43607 -634.384 -9.43607 9.43607 0.76 0.00443496 0.00403627 0.311401 0.282893 56 17407 31 8.04299e+06 4.76102e+06 1.11497e+06 3441.27 6.82 1.4487 1.28367 34036 275796 -1 14124 23 11371 13051 1664037 404424 8.71328 8.71328 -982.566 -8.71328 0 0 1.37338e+06 4238.83 0.34 0.62 0.24 -1 -1 0.34 0.223686 0.19819 845 661 513 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_29.v common 21.18 vpr 73.47 MiB 0.18 12728 -1 -1 1 0.34 -1 -1 37124 -1 -1 118 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75236 22 19 2565 1853 1 1511 168 22 22 484 mult_36 auto 35.8 MiB 5.07 9474 28874 6138 19875 2861 73.5 MiB 0.84 0.01 9.50133 -723.607 -9.50133 9.50133 1.27 0.00561174 0.0050836 0.359574 0.328413 48 19694 45 1.30842e+07 5.21292e+06 1.52614e+06 3153.19 8.93 1.66619 1.47757 49190 371334 -1 15172 26 14085 16168 2028455 476792 9.32778 9.32778 -1106.44 -9.32778 0 0 1.85176e+06 3825.95 0.50 0.70 0.33 -1 -1 0.50 0.26154 0.232522 881 694 532 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_30.v common 23.43 vpr 73.83 MiB 0.18 12628 -1 -1 1 0.34 -1 -1 37408 -1 -1 123 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75604 22 19 2639 1910 1 1549 173 22 22 484 mult_36 auto 36.1 MiB 5.43 9440 36248 7919 24781 3548 73.8 MiB 0.99 0.01 9.36191 -670.158 -9.36191 9.36191 1.30 0.00494298 0.00448404 0.423993 0.384622 48 20360 50 1.30842e+07 5.28279e+06 1.52614e+06 3153.19 10.37 1.80964 1.60233 49190 371334 -1 15247 24 13469 15202 1910838 455736 8.95958 8.95958 -928.137 -8.95958 0 0 1.85176e+06 3825.95 0.50 0.72 0.32 -1 -1 0.50 0.254704 0.227272 910 713 551 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_31.v common 20.52 vpr 75.10 MiB 0.11 12956 -1 -1 1 0.35 -1 -1 37316 -1 -1 128 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76900 22 19 2744 1981 1 1618 178 22 22 484 mult_36 auto 37.0 MiB 5.38 9993 32678 6812 22677 3189 75.1 MiB 1.03 0.01 9.39202 -797.918 -9.39202 9.39202 1.34 0.0053927 0.00491095 0.427117 0.387263 52 20164 36 1.30842e+07 5.35266e+06 1.63434e+06 3376.74 7.65 1.82581 1.6196 50638 406276 -1 15115 23 10350 12253 1361270 325763 8.90628 8.90628 -1265.96 -8.90628 0 0 2.01763e+06 4168.66 0.54 0.66 0.34 -1 -1 0.54 0.277207 0.249324 946 745 570 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_32.v common 22.43 vpr 74.63 MiB 0.13 13120 -1 -1 1 0.36 -1 -1 36780 -1 -1 131 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76420 22 19 2818 2038 1 1657 181 22 22 484 mult_36 auto 37.1 MiB 6.28 10870 36462 7947 25089 3426 74.6 MiB 0.96 0.01 9.40709 -760.111 -9.40709 9.40709 1.21 0.00536095 0.00480148 0.393661 0.356475 54 20481 29 1.30842e+07 5.39458e+06 1.67518e+06 3461.11 8.52 1.67302 1.48349 51122 416746 -1 16006 25 13662 15590 1847779 424015 8.83758 8.83758 -1053.02 -8.83758 0 0 2.06816e+06 4273.05 0.59 0.75 0.35 -1 -1 0.59 0.284515 0.253659 974 764 589 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_33.v common 20.81 vpr 75.45 MiB 0.19 13676 -1 -1 1 0.29 -1 -1 37356 -1 -1 137 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77256 22 19 2923 2109 1 1726 188 22 22 484 mult_36 auto 37.9 MiB 5.35 10997 40538 8465 27874 4199 75.4 MiB 1.12 0.01 10.2864 -775.869 -10.2864 10.2864 1.27 0.00603775 0.00548455 0.463266 0.419405 52 22517 47 1.30842e+07 5.87443e+06 1.63434e+06 3376.74 8.03 1.96653 1.74365 50638 406276 -1 16574 24 12868 14850 1713334 417624 9.69202 9.69202 -1312.41 -9.69202 0 0 2.01763e+06 4168.66 0.52 0.60 0.36 -1 -1 0.52 0.259428 0.231175 1009 796 608 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_34.v common 23.72 vpr 75.49 MiB 0.15 13668 -1 -1 1 0.46 -1 -1 37768 -1 -1 140 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77304 22 19 2997 2166 1 1764 191 22 22 484 mult_36 auto 38.1 MiB 8.36 11197 34229 7090 23850 3289 75.5 MiB 0.93 0.01 10.179 -781.353 -10.179 10.179 1.24 0.0059064 0.00538226 0.383252 0.348114 54 21293 29 1.30842e+07 5.91636e+06 1.67518e+06 3461.11 7.73 1.7254 1.52965 51122 416746 -1 16721 23 13120 14891 1633684 395631 9.53142 9.53142 -1224.14 -9.53142 0 0 2.06816e+06 4273.05 0.54 0.66 0.38 -1 -1 0.54 0.27638 0.245962 1037 815 627 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_35.v common 23.83 vpr 76.11 MiB 0.25 14040 -1 -1 1 0.49 -1 -1 37616 -1 -1 145 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77940 22 19 3101 2236 1 1831 196 22 22 484 mult_36 auto 38.7 MiB 7.24 12065 39457 7984 27451 4022 76.1 MiB 1.09 0.02 10.526 -851.981 -10.526 10.526 1.24 0.00586591 0.00534859 0.436328 0.396044 56 22258 29 1.30842e+07 5.98623e+06 1.71605e+06 3545.56 8.54 1.85952 1.64959 51606 428054 -1 18193 24 12714 14593 1871341 439910 10.0876 10.0876 -1238.72 -10.0876 0 0 2.11301e+06 4365.72 0.61 0.73 0.36 -1 -1 0.61 0.297247 0.265421 1072 846 646 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_36.v common 24.33 vpr 76.50 MiB 0.20 14132 -1 -1 1 0.44 -1 -1 38020 -1 -1 148 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78332 22 19 3175 2293 1 1871 199 22 22 484 mult_36 auto 39.2 MiB 9.10 12207 40799 8234 28761 3804 76.5 MiB 1.07 0.02 10.1611 -829.474 -10.1611 10.1611 1.21 0.00612506 0.00560505 0.41581 0.376091 54 22885 31 1.30842e+07 6.02815e+06 1.67518e+06 3461.11 7.49 1.82689 1.61383 51122 416746 -1 17842 26 13429 15225 1699944 411787 9.66272 9.66272 -1103.79 -9.66272 0 0 2.06816e+06 4273.05 0.54 0.69 0.35 -1 -1 0.54 0.291022 0.25976 1100 865 665 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_37.v common 26.51 vpr 77.23 MiB 0.18 14556 -1 -1 1 0.43 -1 -1 37400 -1 -1 152 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79088 22 19 3280 2364 1 1938 204 24 24 576 mult_36 auto 39.9 MiB 8.11 12485 42204 8471 30168 3565 77.2 MiB 1.28 0.02 10.4948 -891.974 -10.4948 10.4948 1.64 0.00699807 0.00644165 0.491999 0.446277 54 24624 44 1.57908e+07 6.48005e+06 1.98675e+06 3449.22 9.32 2.1289 1.88566 60430 494267 -1 18748 25 15039 16700 2047326 478961 9.80372 9.80372 -1341.07 -9.80372 0 0 2.45377e+06 4260.01 0.69 0.79 0.41 -1 -1 0.69 0.320015 0.284418 1135 897 684 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_38.v common 33.75 vpr 77.77 MiB 0.22 14528 -1 -1 1 0.51 -1 -1 38012 -1 -1 157 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79640 22 19 3354 2421 1 1977 209 24 24 576 mult_36 auto 40.2 MiB 9.79 13772 42989 9121 30100 3768 77.8 MiB 1.25 0.02 10.1171 -857.01 -10.1171 10.1171 1.43 0.00791817 0.00722799 0.516006 0.465513 58 24942 46 1.57908e+07 6.54992e+06 2.08734e+06 3623.85 14.71 2.25275 1.99207 62154 534210 -1 19326 22 13894 15955 2071566 466040 9.47212 9.47212 -1334.31 -9.47212 0 0 2.61600e+06 4541.67 0.76 0.80 0.48 -1 -1 0.76 0.308207 0.275727 1164 916 703 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_39.v common 25.51 vpr 77.91 MiB 0.17 14792 -1 -1 1 0.46 -1 -1 38268 -1 -1 161 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79784 22 19 3457 2490 1 2044 213 24 24 576 mult_36 auto 40.5 MiB 8.89 13552 45933 9854 31922 4157 77.9 MiB 1.23 0.02 10.2548 -903.58 -10.2548 10.2548 1.43 0.0061585 0.00559162 0.50214 0.4543 56 23176 27 1.57908e+07 6.60581e+06 2.03561e+06 3534.04 7.69 2.02374 1.79471 61006 507707 -1 19371 24 12670 14651 1649493 401965 9.71472 9.71472 -1420.41 -9.71472 0 0 2.50747e+06 4353.24 0.70 0.73 0.46 -1 -1 0.70 0.328048 0.292553 1198 946 722 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_40.v common 29.98 vpr 78.39 MiB 0.21 14836 -1 -1 1 0.55 -1 -1 38816 -1 -1 164 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80272 22 19 3531 2547 1 2082 216 24 24 576 mult_36 auto 41.0 MiB 10.45 14377 40977 8198 29796 2983 78.4 MiB 1.20 0.04 10.1711 -960.277 -10.1711 10.1711 1.48 0.0143787 0.0127714 0.458028 0.414102 54 25953 34 1.57908e+07 6.64774e+06 1.98675e+06 3449.22 10.60 2.07487 1.83836 60430 494267 -1 20022 24 14385 16625 1937405 463879 9.81632 9.81632 -1428.6 -9.81632 0 0 2.45377e+06 4260.01 0.64 0.73 0.39 -1 -1 0.64 0.314374 0.279746 1226 965 741 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_41.v common 35.16 vpr 78.74 MiB 0.28 15280 -1 -1 1 0.49 -1 -1 38148 -1 -1 170 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80628 22 19 3634 2616 1 2147 223 24 24 576 mult_36 auto 41.5 MiB 9.41 15712 55655 12202 38909 4544 78.7 MiB 1.47 0.02 10.3763 -978.657 -10.3763 10.3763 1.47 0.00656435 0.00595435 0.56496 0.510207 58 28102 35 1.57908e+07 7.12758e+06 2.08734e+06 3623.85 16.17 2.31989 2.05554 62154 534210 -1 22155 26 15175 17368 2377028 526488 9.93862 9.93862 -1498.09 -9.93862 0 0 2.61600e+06 4541.67 0.75 0.89 0.44 -1 -1 0.75 0.371312 0.330875 1261 995 760 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_42.v common 36.65 vpr 79.30 MiB 0.17 15304 -1 -1 1 0.36 -1 -1 38260 -1 -1 173 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81208 22 19 3708 2673 1 2187 226 24 24 576 mult_36 auto 42.0 MiB 10.88 15421 43570 8598 29045 5927 79.3 MiB 1.18 0.02 10.3695 -1008.01 -10.3695 10.3695 1.53 0.00691599 0.00630311 0.506654 0.456311 58 26702 46 1.57908e+07 7.1695e+06 2.08734e+06 3623.85 16.72 2.38208 2.09631 62154 534210 -1 21054 23 15341 17740 2211258 504766 9.93232 9.93232 -1535.11 -9.93232 0 0 2.61600e+06 4541.67 0.71 0.81 0.45 -1 -1 0.71 0.329232 0.292614 1289 1014 779 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_43.v common 36.71 vpr 79.58 MiB 0.18 15700 -1 -1 1 0.52 -1 -1 39024 -1 -1 178 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81492 22 19 3810 2741 1 2253 231 24 24 576 mult_36 auto 42.4 MiB 10.00 15931 45543 9198 31101 5244 79.6 MiB 1.19 0.02 10.2488 -1034.23 -10.2488 10.2488 1.39 0.00703787 0.00638807 0.446452 0.40357 58 28790 31 1.57908e+07 7.23937e+06 2.08734e+06 3623.85 17.51 2.14457 1.89576 62154 534210 -1 22784 25 17469 20003 2871017 629000 9.78802 9.78802 -1425.18 -9.78802 0 0 2.61600e+06 4541.67 0.70 0.99 0.44 -1 -1 0.70 0.367709 0.327023 1323 1043 798 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_44.v common 31.84 vpr 79.89 MiB 0.19 15672 -1 -1 1 0.62 -1 -1 38428 -1 -1 181 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81804 22 19 3884 2798 1 2294 234 24 24 576 mult_36 auto 42.5 MiB 11.63 15026 47034 9339 32867 4828 79.9 MiB 1.26 0.02 10.6634 -975.806 -10.6634 10.6634 1.49 0.00718101 0.00652364 0.497842 0.448355 56 25505 43 1.57908e+07 7.28129e+06 2.03561e+06 3534.04 10.72 2.34961 2.07315 61006 507707 -1 21177 24 13604 15932 1830861 450606 10.1266 10.1266 -1497.53 -10.1266 0 0 2.50747e+06 4353.24 0.75 0.86 0.45 -1 -1 0.75 0.39966 0.357524 1351 1062 817 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_45.v common 34.45 vpr 80.38 MiB 0.20 15976 -1 -1 1 0.56 -1 -1 40620 -1 -1 186 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82304 22 19 3989 2869 1 2359 240 24 24 576 mult_36 auto 43.1 MiB 10.86 16504 49410 9364 35589 4457 80.4 MiB 1.34 0.02 10.4128 -1039.57 -10.4128 10.4128 1.47 0.00736411 0.00667934 0.524551 0.472825 58 28065 31 1.57908e+07 7.74716e+06 2.08734e+06 3623.85 14.02 2.31055 2.04279 62154 534210 -1 23178 24 14780 17083 2031719 479355 10.0216 10.0216 -1620.1 -10.0216 0 0 2.61600e+06 4541.67 0.76 0.85 0.46 -1 -1 0.76 0.380055 0.340905 1387 1094 836 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_46.v common 34.08 vpr 80.50 MiB 0.16 16112 -1 -1 1 0.51 -1 -1 40524 -1 -1 189 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82428 22 19 4063 2926 1 2398 243 24 24 576 mult_36 auto 43.3 MiB 12.69 15456 49513 9815 35157 4541 80.5 MiB 1.38 0.02 10.3988 -1055.79 -10.3988 10.3988 1.48 0.00738406 0.00670027 0.527894 0.477333 54 30376 49 1.57908e+07 7.78909e+06 1.98675e+06 3449.22 11.93 2.5705 2.26971 60430 494267 -1 22258 25 14010 16246 1792980 437746 10.0703 10.0703 -1496.13 -10.0703 0 0 2.45377e+06 4260.01 0.71 0.83 0.42 -1 -1 0.71 0.407104 0.363229 1414 1113 855 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_47.v common 31.04 vpr 80.99 MiB 0.29 16436 -1 -1 1 0.50 -1 -1 40912 -1 -1 194 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82936 22 19 4167 2996 1 2466 248 24 24 576 mult_36 auto 43.9 MiB 11.29 16457 49262 9642 34224 5396 81.0 MiB 1.33 0.02 10.2964 -1023.88 -10.2964 10.2964 1.45 0.00767253 0.00696798 0.528201 0.475734 62 27413 41 1.57908e+07 7.85896e+06 2.19658e+06 3813.51 10.15 2.47844 2.18562 63306 560109 -1 22126 24 15880 18201 1967159 487181 9.26852 9.26852 -1515.46 -9.26852 0 0 2.72095e+06 4723.87 0.80 0.85 0.42 -1 -1 0.80 0.382417 0.341094 1449 1144 874 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_48.v common 37.43 vpr 81.34 MiB 0.29 16504 -1 -1 1 0.60 -1 -1 40704 -1 -1 197 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83288 22 19 4241 3053 1 2505 251 24 24 576 mult_36 auto 44.2 MiB 13.09 16971 46920 8877 33152 4891 81.3 MiB 1.26 0.02 10.3426 -1105.68 -10.3426 10.3426 1.41 0.00707168 0.00637172 0.454538 0.408531 58 28357 39 1.57908e+07 7.90088e+06 2.08734e+06 3623.85 14.75 2.52654 2.23221 62154 534210 -1 23109 25 14819 17069 1985321 468184 9.32312 9.32312 -1714.79 -9.32312 0 0 2.61600e+06 4541.67 0.71 0.84 0.45 -1 -1 0.71 0.394003 0.351585 1477 1163 893 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_49.v common 31.77 vpr 81.89 MiB 0.24 16968 -1 -1 1 0.63 -1 -1 41060 -1 -1 204 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83852 22 19 4346 3124 1 2572 259 24 24 576 mult_36 auto 44.8 MiB 12.23 17818 58009 12065 38423 7521 81.9 MiB 1.51 0.02 10.4215 -1066.19 -10.4215 10.4215 1.46 0.0080745 0.00733701 0.604224 0.544123 64 27669 29 1.57908e+07 8.3947e+06 2.26035e+06 3924.22 9.46 2.45546 2.1712 64454 586630 -1 23761 23 15470 17571 1974721 480976 10.0026 10.0026 -1667.25 -10.0026 0 0 2.84938e+06 4946.85 0.77 0.83 0.50 -1 -1 0.77 0.375436 0.332674 1512 1195 912 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_50.v common 38.16 vpr 82.15 MiB 0.29 17100 -1 -1 1 0.66 -1 -1 41020 -1 -1 206 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84120 22 19 4420 3181 1 2611 261 24 24 576 mult_36 auto 44.8 MiB 13.82 18113 59404 12055 41197 6152 82.1 MiB 1.17 0.02 10.7633 -1102.87 -10.7633 10.7633 1.43 0.00500541 0.00457353 0.399298 0.359786 58 30827 50 1.57908e+07 8.42264e+06 2.08734e+06 3623.85 14.62 2.65311 2.33328 62154 534210 -1 25105 24 17430 20166 2474881 582739 9.91802 9.91802 -1434.59 -9.91802 0 0 2.61600e+06 4541.67 0.83 0.99 0.44 -1 -1 0.83 0.413443 0.368887 1541 1214 931 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_51.v common 35.76 vpr 82.72 MiB 0.36 17424 -1 -1 1 0.69 -1 -1 41064 -1 -1 211 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84708 22 19 4524 3251 1 2681 266 24 24 576 mult_36 auto 45.6 MiB 12.68 17903 58406 11821 39335 7250 82.7 MiB 1.54 0.02 10.1189 -1113.35 -10.1189 10.1189 1.47 0.00840097 0.00762828 0.598606 0.537073 66 28650 46 1.57908e+07 8.49251e+06 2.33135e+06 4047.49 12.41 2.79535 2.46899 65030 601923 -1 23838 22 15662 18095 2053216 483046 9.32782 9.32782 -1570.64 -9.32782 0 0 2.91907e+06 5067.82 0.88 0.90 0.53 -1 -1 0.88 0.406862 0.363976 1576 1245 950 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_52.v common 38.64 vpr 83.15 MiB 0.31 17420 -1 -1 1 0.66 -1 -1 39328 -1 -1 215 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 85148 22 19 4598 3308 1 2718 270 24 24 576 mult_36 auto 46.1 MiB 14.46 18499 60438 12754 41701 5983 83.2 MiB 1.60 0.02 10.3652 -1274.39 -10.3652 10.3652 1.47 0.00856926 0.00761627 0.633263 0.568286 60 30704 47 1.57908e+07 8.54841e+06 2.13333e+06 3703.69 13.56 2.91685 2.57247 62730 548095 -1 24767 24 17273 19354 2179586 520270 9.64242 9.64242 -1770.68 -9.64242 0 0 2.67122e+06 4637.53 0.72 1.11 0.45 -1 -1 0.72 0.496032 0.445053 1605 1264 969 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_14.v common 7.87 vpr 70.55 MiB 0.07 10524 -1 -1 1 0.24 -1 -1 35484 -1 -1 81 22 0 4 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72248 22 19 1974 1653 1 1020 126 16 16 256 mult_36 auto 32.4 MiB 0.34 5566 18081 3979 11568 2534 70.6 MiB 0.43 0.01 4.18656 -1184 -4.18656 4.18656 0.67 0.00356539 0.00320963 0.220467 0.198858 50 12015 26 6.54114e+06 2.7256e+06 787708. 3076.99 3.45 1.01169 0.882887 25344 186282 -1 9252 17 4107 4636 547995 139041 4.41926 4.41926 -1238.23 -4.41926 0 0 943753. 3686.54 0.24 0.26 0.16 -1 -1 0.24 0.141423 0.125975 605 708 247 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_15.v common 8.30 vpr 71.43 MiB 0.11 10904 -1 -1 1 0.26 -1 -1 36900 -1 -1 88 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73144 22 19 2144 1789 1 1120 134 16 16 256 mult_36 auto 33.2 MiB 0.36 6319 20654 4053 14159 2442 71.4 MiB 0.51 0.01 4.29396 -1347.48 -4.29396 4.29396 0.58 0.00372143 0.00335451 0.253783 0.22888 50 12838 32 6.54114e+06 3.22025e+06 787708. 3076.99 3.77 1.17955 1.03156 25344 186282 -1 10194 15 4381 5331 543271 135603 4.41926 4.41926 -1427.22 -4.41926 0 0 943753. 3686.54 0.23 0.24 0.17 -1 -1 0.23 0.128701 0.114324 654 769 266 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_16.v common 8.39 vpr 71.61 MiB 0.10 10948 -1 -1 1 0.28 -1 -1 36840 -1 -1 91 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73332 22 19 2218 1846 1 1162 137 16 16 256 mult_36 auto 33.5 MiB 0.37 6746 20611 4243 13930 2438 71.6 MiB 0.50 0.01 4.27196 -1343.11 -4.27196 4.27196 0.59 0.0032663 0.00291636 0.239428 0.215294 56 12205 20 6.54114e+06 3.26253e+06 849745. 3319.32 3.49 1.14162 1.001 26364 208198 -1 10886 18 4466 5238 632605 153751 4.54456 4.54456 -1414.59 -4.54456 0 0 1.04740e+06 4091.43 0.29 0.30 0.19 -1 -1 0.29 0.15905 0.140984 683 788 285 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_17.v common 9.73 vpr 72.91 MiB 0.08 11792 -1 -1 1 0.32 -1 -1 36508 -1 -1 103 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74660 22 19 2536 2130 1 1275 149 16 16 256 mult_36 auto 34.6 MiB 0.47 7309 25759 5410 16752 3597 72.9 MiB 0.59 0.01 4.22437 -1538.56 -4.22437 4.22437 0.57 0.00421061 0.00376811 0.292735 0.261633 54 15370 50 6.54114e+06 3.43166e+06 829453. 3240.05 4.63 1.49103 1.29857 26108 202796 -1 11251 20 4866 5650 591941 150326 4.41926 4.41926 -1554.25 -4.41926 0 0 1.02522e+06 4004.78 0.27 0.32 0.18 -1 -1 0.27 0.191262 0.168408 770 924 304 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_18.v common 10.30 vpr 73.96 MiB 0.11 11880 -1 -1 1 0.29 -1 -1 37264 -1 -1 107 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75732 22 19 2610 2187 1 1316 153 16 16 256 mult_36 auto 35.4 MiB 0.45 7489 21012 3652 14420 2940 74.0 MiB 0.52 0.01 4.05741 -1594.66 -4.05741 4.05741 0.59 0.00442383 0.00397394 0.261885 0.235686 58 14224 36 6.54114e+06 3.48803e+06 871168. 3403.00 5.23 1.41298 1.23272 26872 219187 -1 11540 19 4929 5820 646042 159250 4.41926 4.41926 -1618.92 -4.41926 0 0 1.09288e+06 4269.05 0.26 0.39 0.19 -1 -1 0.26 0.204211 0.18126 798 943 323 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_19.v common 10.55 vpr 74.75 MiB 0.14 12128 -1 -1 1 0.25 -1 -1 36804 -1 -1 113 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76548 22 19 2778 2321 1 1412 160 16 16 256 mult_36 auto 36.3 MiB 0.47 8590 28804 5795 19118 3891 74.8 MiB 0.72 0.01 4.16866 -1754.96 -4.16866 4.16866 0.60 0.00457112 0.00408692 0.351306 0.314519 60 14551 41 6.54114e+06 3.96859e+06 890343. 3477.90 5.43 1.68264 1.47097 27128 224764 -1 12108 19 5195 6165 612347 148881 4.29396 4.29396 -1780.33 -4.29396 0 0 1.11577e+06 4358.47 0.27 0.35 0.17 -1 -1 0.27 0.205204 0.181382 846 1002 342 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_20.v common 11.37 vpr 74.61 MiB 0.10 12396 -1 -1 1 0.31 -1 -1 37000 -1 -1 118 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76400 22 19 2852 2378 1 1455 165 16 16 256 mult_36 auto 36.7 MiB 0.47 8719 21409 3812 14750 2847 74.6 MiB 0.53 0.01 4.23032 -1751.68 -4.23032 4.23032 0.57 0.00497053 0.00445561 0.253389 0.227057 58 15488 34 6.54114e+06 4.03906e+06 871168. 3403.00 6.21 1.50021 1.30756 26872 219187 -1 12591 16 5346 6342 671911 168571 4.29396 4.29396 -1828.31 -4.29396 0 0 1.09288e+06 4269.05 0.30 0.33 0.19 -1 -1 0.30 0.183129 0.162478 875 1021 361 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_21.v common 11.40 vpr 75.77 MiB 0.14 12892 -1 -1 1 0.38 -1 -1 37876 -1 -1 122 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77592 22 19 3057 2549 1 1560 169 16 16 256 mult_36 auto 37.8 MiB 0.52 9662 28189 5474 18473 4242 75.8 MiB 0.72 0.01 4.27196 -1924.27 -4.27196 4.27196 0.56 0.00527906 0.00471781 0.33261 0.296421 60 16376 39 6.54114e+06 4.09544e+06 890343. 3477.90 5.78 1.68732 1.4696 27128 224764 -1 13229 17 5417 6865 651246 161214 4.52256 4.52256 -1946.8 -4.52256 0 0 1.11577e+06 4358.47 0.29 0.37 0.20 -1 -1 0.29 0.214974 0.191547 932 1099 380 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_22.v common 11.22 vpr 75.77 MiB 0.15 13000 -1 -1 1 0.36 -1 -1 38084 -1 -1 125 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77584 22 19 3131 2606 1 1600 172 16 16 256 mult_36 auto 37.8 MiB 0.50 9746 26940 4762 17615 4563 75.8 MiB 0.74 0.01 4.1051 -1925.37 -4.1051 4.1051 0.60 0.00611816 0.00544144 0.356751 0.319711 64 17025 40 6.54114e+06 4.13772e+06 943753. 3686.54 5.32 1.70879 1.49331 27892 240595 -1 13419 19 5604 6604 696533 174227 4.41926 4.41926 -1888.34 -4.41926 0 0 1.19033e+06 4649.74 0.30 0.40 0.23 -1 -1 0.30 0.237528 0.209958 961 1118 399 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_23.v common 16.07 vpr 76.61 MiB 0.17 13432 -1 -1 1 0.37 -1 -1 37772 -1 -1 133 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78444 22 19 3301 2742 1 1700 181 18 18 324 mult_36 auto 38.7 MiB 0.59 10073 29819 5770 20700 3349 76.6 MiB 0.78 0.01 4.29396 -2072.96 -4.29396 4.29396 0.94 0.00542746 0.00490157 0.375376 0.33652 58 20039 44 8.06603e+06 4.64648e+06 1.14310e+06 3528.09 9.23 1.91764 1.67586 34680 290288 -1 15296 19 6397 7351 896472 206109 4.52256 4.52256 -2107.99 -4.52256 0 0 1.43297e+06 4422.75 0.40 0.44 0.25 -1 -1 0.40 0.240683 0.213451 1012 1179 418 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_24.v common 14.61 vpr 77.01 MiB 0.16 13444 -1 -1 1 0.37 -1 -1 38100 -1 -1 137 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78856 22 19 3375 2799 1 1744 185 18 18 324 mult_36 auto 39.0 MiB 0.53 10242 28589 5033 20765 2791 77.0 MiB 0.77 0.01 4.16866 -2095.84 -4.16866 4.16866 0.89 0.00584888 0.00521185 0.358826 0.320166 56 19239 34 8.06603e+06 4.70285e+06 1.11497e+06 3441.27 8.07 1.89179 1.65394 34036 275796 -1 15430 18 6668 8155 902923 218175 4.66986 4.66986 -2283.29 -4.66986 0 0 1.37338e+06 4238.83 0.34 0.45 0.23 -1 -1 0.34 0.243287 0.216124 1041 1198 437 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_25.v common 12.96 vpr 77.87 MiB 0.14 13944 -1 -1 1 0.45 -1 -1 38164 -1 -1 146 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79740 22 19 3615 3005 1 1848 194 18 18 324 mult_36 auto 39.9 MiB 0.63 11381 30488 5169 21849 3470 77.9 MiB 0.84 0.01 4.29396 -2317.79 -4.29396 4.29396 0.96 0.00648239 0.00577959 0.389275 0.347872 60 19735 24 8.06603e+06 4.8297e+06 1.16833e+06 3605.96 5.76 1.97602 1.73231 35004 297736 -1 15899 18 6600 7758 807688 195562 4.41926 4.41926 -2334.44 -4.41926 0 0 1.46313e+06 4515.82 0.41 0.46 0.27 -1 -1 0.41 0.266483 0.237429 1107 1293 456 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_26.v common 15.61 vpr 78.54 MiB 0.13 14192 -1 -1 1 0.42 -1 -1 38520 -1 -1 148 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80428 22 19 3689 3062 1 1888 196 18 18 324 mult_36 auto 40.5 MiB 0.63 11433 29784 5199 21859 2726 78.5 MiB 0.82 0.02 4.24437 -2303.41 -4.24437 4.24437 0.85 0.00711705 0.00628036 0.378532 0.339296 58 20982 37 8.06603e+06 4.85789e+06 1.14310e+06 3528.09 8.60 2.11816 1.84746 34680 290288 -1 16695 16 7063 8326 925400 221942 4.41926 4.41926 -2385.92 -4.41926 0 0 1.43297e+06 4422.75 0.36 0.47 0.24 -1 -1 0.36 0.260815 0.235816 1135 1312 475 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_27.v common 14.19 vpr 79.47 MiB 0.19 14444 -1 -1 1 0.48 -1 -1 38456 -1 -1 156 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81380 22 19 3871 3210 1 2002 205 18 18 324 mult_36 auto 41.4 MiB 0.56 12765 36445 6420 26320 3705 79.5 MiB 0.96 0.02 4.54456 -2408.49 -4.54456 4.54456 0.82 0.00685927 0.00612775 0.437842 0.392218 64 23264 38 8.06603e+06 5.36665e+06 1.23838e+06 3822.15 6.95 2.19503 1.91755 35972 318676 -1 18200 18 7220 8450 972098 233171 4.52256 4.52256 -2487.12 -4.52256 0 0 1.56068e+06 4816.91 0.48 0.50 0.28 -1 -1 0.48 0.289327 0.259022 1191 1385 494 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_28.v common 14.33 vpr 79.86 MiB 0.11 14480 -1 -1 1 0.47 -1 -1 38392 -1 -1 160 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81780 22 19 3945 3267 1 2045 209 18 18 324 mult_36 auto 41.9 MiB 0.70 12597 35549 6371 25304 3874 79.9 MiB 0.91 0.02 4.26697 -2505.98 -4.26697 4.26697 0.79 0.00592329 0.00528273 0.412317 0.367578 68 21534 29 8.06603e+06 5.42302e+06 1.31159e+06 4048.11 7.05 2.09847 1.8353 36620 334356 -1 17403 19 7212 8305 866718 201384 4.29396 4.29396 -2504.3 -4.29396 0 0 1.63345e+06 5041.52 0.41 0.50 0.28 -1 -1 0.41 0.292126 0.259432 1219 1404 513 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_29.v common 17.90 vpr 80.95 MiB 0.17 14996 -1 -1 1 0.48 -1 -1 39736 -1 -1 170 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82888 22 19 4159 3447 1 2159 220 22 22 484 mult_36 auto 42.9 MiB 0.66 13941 43978 8874 31271 3833 80.9 MiB 1.17 0.02 4.35022 -2631.97 -4.35022 4.35022 1.25 0.00774696 0.00697861 0.556098 0.499879 58 24926 40 1.31202e+07 5.95997e+06 1.75961e+06 3635.55 9.01 2.41905 2.11286 52570 450426 -1 20690 17 8007 9443 1068841 244740 4.54456 4.54456 -2664.53 -4.54456 0 0 2.20457e+06 4554.90 0.59 0.56 0.38 -1 -1 0.59 0.298787 0.265732 1283 1491 532 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_30.v common 17.61 vpr 81.04 MiB 0.31 15108 -1 -1 1 0.50 -1 -1 40796 -1 -1 173 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82984 22 19 4233 3504 1 2198 223 22 22 484 mult_36 auto 43.1 MiB 0.70 14275 43487 8406 30788 4293 81.0 MiB 1.13 0.02 4.29396 -2676.94 -4.29396 4.29396 1.20 0.00692972 0.00618355 0.508408 0.45329 62 26940 39 1.31202e+07 6.00225e+06 1.85176e+06 3825.95 8.47 2.36766 2.06397 53538 472186 -1 20137 19 7963 9293 978277 226339 4.39726 4.39726 -2703.02 -4.39726 0 0 2.29262e+06 4736.82 0.66 0.56 0.41 -1 -1 0.66 0.316801 0.28135 1311 1510 551 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_31.v common 20.11 vpr 82.97 MiB 0.24 15504 -1 -1 1 0.53 -1 -1 41024 -1 -1 179 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84960 22 19 4410 3647 1 2305 229 22 22 484 mult_36 auto 44.0 MiB 0.73 14328 48529 9744 34610 4175 83.0 MiB 1.21 0.02 4.31186 -2776.62 -4.31186 4.31186 1.19 0.00763571 0.00681491 0.544669 0.484896 60 26322 48 1.31202e+07 6.08682e+06 1.79840e+06 3715.71 10.61 2.63139 2.29142 53054 462096 -1 20969 18 8442 9887 1082581 257139 4.39726 4.39726 -2815.55 -4.39726 0 0 2.25108e+06 4650.99 0.71 0.59 0.38 -1 -1 0.71 0.326546 0.291041 1363 1578 570 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_32.v common 15.71 vpr 82.19 MiB 0.19 15580 -1 -1 1 0.53 -1 -1 40672 -1 -1 183 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 84164 22 19 4484 3704 1 2348 233 22 22 484 mult_36 auto 44.2 MiB 0.73 14525 45341 8355 32699 4287 82.2 MiB 1.16 0.02 4.41926 -2881.16 -4.41926 4.41926 1.21 0.00766067 0.00686394 0.513788 0.459417 60 25283 24 1.31202e+07 6.14319e+06 1.79840e+06 3715.71 6.97 2.2262 1.94485 53054 462096 -1 21198 18 8307 9417 1043367 244738 4.41926 4.41926 -2865.53 -4.41926 0 0 2.25108e+06 4650.99 0.61 0.56 0.32 -1 -1 0.61 0.315484 0.280564 1393 1597 589 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_33.v common 18.91 vpr 84.66 MiB 0.22 16620 -1 -1 1 0.59 -1 -1 41660 -1 -1 196 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86688 22 19 4843 4029 1 2463 247 22 22 484 mult_36 auto 46.0 MiB 0.78 15998 49783 9671 35687 4425 84.7 MiB 1.28 0.02 4.54456 -3078.09 -4.54456 4.54456 1.19 0.00747416 0.00663489 0.560167 0.499174 62 30039 29 1.31202e+07 6.72242e+06 1.85176e+06 3825.95 9.26 2.48747 2.16446 53538 472186 -1 22471 18 8965 10546 1092220 257195 4.41926 4.41926 -3312.48 -4.41926 0 0 2.29262e+06 4736.82 0.59 0.58 0.41 -1 -1 0.59 0.352441 0.314917 1490 1756 608 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_34.v common 19.55 vpr 84.04 MiB 0.25 16760 -1 -1 1 0.57 -1 -1 41600 -1 -1 199 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 86060 22 19 4917 4086 1 2505 250 22 22 484 mult_36 auto 46.4 MiB 0.77 15240 53766 10631 37846 5289 84.0 MiB 1.33 0.02 4.29396 -3047.21 -4.29396 4.29396 1.18 0.00808591 0.00721489 0.588263 0.523476 60 28229 35 1.31202e+07 6.7647e+06 1.79840e+06 3715.71 9.97 2.63886 2.29656 53054 462096 -1 22321 17 8852 10511 1134513 265850 4.52256 4.52256 -3384.85 -4.52256 0 0 2.25108e+06 4650.99 0.63 0.60 0.40 -1 -1 0.63 0.335676 0.2989 1519 1775 627 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_35.v common 23.64 vpr 85.00 MiB 0.24 17068 -1 -1 1 0.68 -1 -1 41824 -1 -1 207 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87040 22 19 5093 4228 1 2607 258 22 22 484 mult_36 auto 47.3 MiB 0.79 16561 53623 9690 39001 4932 85.0 MiB 1.34 0.02 4.27196 -3266.59 -4.27196 4.27196 1.24 0.00830998 0.0075757 0.581879 0.518075 60 31544 47 1.31202e+07 6.87745e+06 1.79840e+06 3715.71 13.58 3.07471 2.68119 53054 462096 -1 24567 20 9974 11801 1384303 319840 4.64786 4.64786 -3518.09 -4.64786 0 0 2.25108e+06 4650.99 0.64 0.77 0.37 -1 -1 0.64 0.428809 0.381439 1572 1842 646 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_36.v common 17.81 vpr 85.26 MiB 0.14 17200 -1 -1 1 0.65 -1 -1 41692 -1 -1 209 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 87308 22 19 5167 4285 1 2655 260 22 22 484 mult_36 auto 47.4 MiB 0.83 17463 54974 10444 39030 5500 85.3 MiB 1.42 0.02 4.35562 -3241.22 -4.35562 4.35562 1.19 0.00860278 0.00767459 0.617579 0.546968 66 29932 33 1.31202e+07 6.90564e+06 1.96511e+06 4060.15 7.92 2.75677 2.40228 54986 507526 -1 24310 15 9330 10872 1221412 282633 4.41926 4.41926 -3341.91 -4.41926 0 0 2.45963e+06 5081.88 0.65 0.58 0.40 -1 -1 0.65 0.312635 0.278695 1600 1861 665 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_37.v common 27.73 vpr 87.54 MiB 0.26 17768 -1 -1 1 0.54 -1 -1 40916 -1 -1 218 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89640 22 19 5380 4464 1 2756 270 24 24 576 mult_36 auto 48.8 MiB 0.86 18706 56950 10603 41531 4816 87.5 MiB 1.41 0.02 4.35562 -3473.4 -4.35562 4.35562 1.50 0.00838022 0.00746015 0.610354 0.542795 60 36033 48 1.58331e+07 7.42849e+06 2.13333e+06 3703.69 16.72 3.22557 2.81696 62730 548095 -1 27276 19 10671 12691 1595594 352262 4.54456 4.54456 -3667.6 -4.54456 0 0 2.67122e+06 4637.53 0.72 0.73 0.46 -1 -1 0.72 0.392459 0.34775 1662 1947 684 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_38.v common 22.21 vpr 86.79 MiB 0.26 17700 -1 -1 1 0.70 -1 -1 42288 -1 -1 220 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88868 22 19 5454 4521 1 2804 272 24 24 576 mult_36 auto 49.1 MiB 0.86 18631 58418 11427 42785 4206 86.8 MiB 1.49 0.02 4.29396 -3507.9 -4.29396 4.29396 1.45 0.00871041 0.00776012 0.630769 0.558119 62 35211 42 1.58331e+07 7.45668e+06 2.19658e+06 3813.51 11.05 3.14164 2.73658 63306 560109 -1 26641 17 10663 12453 1388485 323603 4.39726 4.39726 -3646.05 -4.39726 0 0 2.72095e+06 4723.87 0.74 0.69 0.45 -1 -1 0.74 0.371924 0.331025 1690 1966 703 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_39.v common 25.05 vpr 87.38 MiB 0.29 18144 -1 -1 1 0.73 -1 -1 40268 -1 -1 228 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 89472 22 19 5629 4662 1 2910 280 24 24 576 mult_36 auto 49.9 MiB 0.89 20090 64330 13333 46393 4604 87.4 MiB 1.77 0.02 4.55861 -3641.68 -4.55861 4.55861 1.58 0.0105706 0.00923672 0.76296 0.67492 66 38359 44 1.58331e+07 7.56943e+06 2.33135e+06 4047.49 13.56 3.38858 2.95709 65030 601923 -1 28690 16 10858 13238 1585011 358083 4.54456 4.54456 -3858.1 -4.54456 0 0 2.91907e+06 5067.82 0.82 0.68 0.42 -1 -1 0.82 0.309942 0.278263 1742 2032 722 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_40.v common 26.03 vpr 88.15 MiB 0.16 18344 -1 -1 1 0.75 -1 -1 42292 -1 -1 232 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 90268 22 19 5703 4719 1 2952 284 24 24 576 mult_36 auto 50.3 MiB 0.97 18947 59996 11849 42843 5304 87.7 MiB 1.58 0.02 4.34967 -3655.08 -4.34967 4.34967 1.51 0.0108257 0.00976529 0.659967 0.583337 60 35879 41 1.58331e+07 7.62581e+06 2.13333e+06 3703.69 14.89 3.29162 2.87116 62730 548095 -1 27199 19 10579 12398 1314935 306848 4.41926 4.41926 -3778.74 -4.41926 0 0 2.67122e+06 4637.53 0.73 0.71 0.40 -1 -1 0.73 0.40986 0.363742 1771 2051 741 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_41.v common 25.49 vpr 88.72 MiB 0.22 18828 -1 -1 1 0.82 -1 -1 41672 -1 -1 240 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 90852 22 19 5950 4932 1 3067 293 24 24 576 mult_36 auto 51.2 MiB 1.04 20012 62501 12151 44656 5694 88.7 MiB 1.61 0.02 4.29396 -3822.03 -4.29396 4.29396 1.44 0.00959955 0.0085489 0.680194 0.600453 64 35939 46 1.58331e+07 8.13456e+06 2.26035e+06 3924.22 13.46 3.34983 2.90225 64454 586630 -1 28402 20 10993 12737 1517197 352014 4.41926 4.41926 -3929.74 -4.41926 0 0 2.84938e+06 4946.85 0.77 0.79 0.47 -1 -1 0.77 0.446001 0.395992 1841 2153 760 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_42.v common 22.35 vpr 92.71 MiB 0.29 18948 -1 -1 1 0.79 -1 -1 42732 -1 -1 242 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94940 22 19 6024 4989 1 3108 295 24 24 576 mult_36 auto 51.8 MiB 1.03 19910 60136 10755 44360 5021 89.2 MiB 1.61 0.02 4.29396 -3823.01 -4.29396 4.29396 1.49 0.00997355 0.00890021 0.669998 0.595416 68 34391 30 1.58331e+07 8.16275e+06 2.39371e+06 4155.74 10.26 3.27279 2.85609 65606 615345 -1 27865 17 10555 12711 1355075 308860 4.39726 4.39726 -4100.32 -4.39726 0 0 2.98162e+06 5176.42 0.81 0.68 0.52 -1 -1 0.81 0.389065 0.345358 1869 2172 779 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_43.v common 28.27 vpr 90.55 MiB 0.30 19252 -1 -1 1 0.89 -1 -1 43280 -1 -1 250 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 92720 22 19 6198 5129 1 3209 303 24 24 576 mult_36 auto 52.8 MiB 1.03 22784 60306 10847 44895 4564 90.0 MiB 1.63 0.03 4.66986 -4092.44 -4.66986 4.66986 1.56 0.010458 0.00933727 0.683433 0.609507 68 38832 41 1.58331e+07 8.2755e+06 2.39371e+06 4155.74 15.82 3.42817 2.98344 65606 615345 -1 31135 17 11588 13651 1552306 353970 4.54456 4.54456 -4162.55 -4.54456 0 0 2.98162e+06 5176.42 0.80 0.76 0.49 -1 -1 0.80 0.414118 0.368413 1921 2237 798 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_44.v common 24.51 vpr 90.27 MiB 0.24 19576 -1 -1 1 0.89 -1 -1 43548 -1 -1 253 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 92432 22 19 6272 5186 1 3255 306 24 24 576 mult_36 auto 52.8 MiB 1.02 21212 62106 11016 45638 5452 90.3 MiB 1.89 0.03 4.29396 -3963.31 -4.29396 4.29396 1.50 0.0118959 0.0107204 0.811675 0.728958 66 38086 47 1.58331e+07 8.31778e+06 2.33135e+06 4047.49 12.08 3.96345 3.47157 65030 601923 -1 29668 16 11714 13642 1536421 356784 4.52256 4.52256 -4103.45 -4.52256 0 0 2.91907e+06 5067.82 0.82 0.73 0.50 -1 -1 0.82 0.396822 0.353156 1949 2256 817 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_45.v common 23.95 vpr 93.04 MiB 0.29 19992 -1 -1 1 0.99 -1 -1 43872 -1 -1 262 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 95268 22 19 6485 5365 1 3364 316 24 24 576 mult_36 auto 53.9 MiB 1.06 21665 63741 11956 46622 5163 91.4 MiB 1.69 0.03 4.41926 -4168.43 -4.41926 4.41926 1.43 0.0109101 0.00976255 0.702499 0.622845 64 37095 22 1.58331e+07 8.84063e+06 2.26035e+06 3924.22 11.56 3.25556 2.83432 64454 586630 -1 31001 18 12007 14131 1617183 372391 4.54456 4.54456 -4244.66 -4.54456 0 0 2.84938e+06 4946.85 0.84 0.83 0.47 -1 -1 0.84 0.455739 0.405333 2011 2342 836 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_46.v common 28.82 vpr 94.72 MiB 0.17 20176 -1 -1 1 0.95 -1 -1 44120 -1 -1 266 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 96992 22 19 6559 5422 1 3406 320 24 24 576 mult_36 auto 54.3 MiB 1.11 22395 70336 13410 49504 7422 91.7 MiB 1.88 0.03 4.29396 -4167.58 -4.29396 4.29396 1.55 0.0104906 0.00933311 0.751473 0.664137 68 38012 39 1.58331e+07 8.897e+06 2.39371e+06 4155.74 15.77 3.61694 3.13945 65606 615345 -1 30883 18 11581 13686 1504829 345509 4.41926 4.41926 -4245.28 -4.41926 0 0 2.98162e+06 5176.42 0.78 0.81 0.53 -1 -1 0.78 0.463567 0.412278 2040 2361 855 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_47.v common 24.67 vpr 92.69 MiB 0.29 20348 -1 -1 1 0.94 -1 -1 44564 -1 -1 273 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 94916 22 19 6735 5564 1 3513 327 24 24 576 mult_36 auto 55.2 MiB 1.19 22461 75769 14339 54266 7164 92.7 MiB 2.10 0.03 4.3557 -4269.53 -4.3557 4.3557 1.57 0.0129475 0.0117307 0.885512 0.791812 66 37826 29 1.58331e+07 8.99566e+06 2.33135e+06 4047.49 11.51 3.9521 3.47188 65030 601923 -1 31148 17 12152 14476 1574318 372450 4.41926 4.41926 -4319 -4.41926 0 0 2.91907e+06 5067.82 0.81 0.80 0.48 -1 -1 0.81 0.443075 0.393385 2092 2428 874 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_48.v common 27.91 vpr 97.22 MiB 0.31 20424 -1 -1 1 1.06 -1 -1 44100 -1 -1 276 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 99552 22 19 6809 5621 1 3556 330 24 24 576 mult_36 auto 55.5 MiB 1.24 24443 75504 14693 54581 6230 92.9 MiB 2.12 0.03 4.54456 -4333.82 -4.54456 4.54456 1.61 0.0130596 0.0117811 0.89344 0.798428 68 41304 32 1.58331e+07 9.03794e+06 2.39371e+06 4155.74 14.16 4.00794 3.5132 65606 615345 -1 32992 16 12193 14996 1577116 364367 4.66986 4.66986 -4785.3 -4.66986 0 0 2.98162e+06 5176.42 0.83 0.79 0.49 -1 -1 0.83 0.434988 0.387791 2121 2447 893 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_49.v common 25.51 vpr 96.57 MiB 0.23 21104 -1 -1 1 1.09 -1 -1 44384 -1 -1 287 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 98888 22 19 7094 5872 1 3671 342 24 24 576 mult_36 auto 56.6 MiB 1.18 24412 81602 15797 59095 6710 94.3 MiB 2.29 0.03 4.66986 -4735 -4.66986 4.66986 1.59 0.0116342 0.0102507 0.880052 0.775715 76 38504 31 1.58331e+07 9.58898e+06 2.61600e+06 4541.67 11.47 3.75695 3.26879 68478 680951 -1 32830 17 11929 13673 1640992 357972 4.92046 4.92046 -4741.32 -4.92046 0 0 3.24203e+06 5628.53 0.93 0.87 0.55 -1 -1 0.93 0.489288 0.436653 2200 2569 912 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_50.v common 27.54 vpr 98.38 MiB 0.35 21340 -1 -1 1 1.16 -1 -1 44232 -1 -1 290 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 100736 22 19 7168 5929 1 3712 345 24 24 576 mult_36 auto 57.1 MiB 1.25 25160 76512 14255 54563 7694 94.7 MiB 1.93 0.03 4.47552 -4598.48 -4.47552 4.47552 1.61 0.013865 0.0125473 0.804796 0.724721 70 41615 40 1.58331e+07 9.63126e+06 2.45377e+06 4260.01 13.51 4.10442 3.58662 66754 640332 -1 34443 17 12525 14659 1724396 391207 4.64786 4.64786 -4803.4 -4.64786 0 0 3.09179e+06 5367.68 0.88 0.87 0.51 -1 -1 0.88 0.476807 0.423447 2229 2588 931 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_51.v common 39.08 vpr 102.40 MiB 0.33 21612 -1 -1 1 1.12 -1 -1 44672 -1 -1 297 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 104860 22 19 7344 6071 1 3815 352 24 24 576 mult_36 auto 58.1 MiB 1.26 26112 84808 17528 58730 8550 95.6 MiB 2.44 0.03 4.41926 -4718.92 -4.41926 4.41926 1.58 0.0138815 0.0125488 1.00517 0.89552 72 45711 45 1.58331e+07 9.72992e+06 2.50747e+06 4353.24 24.53 4.58489 4.00396 67330 654343 -1 35468 17 13268 15995 2013855 438885 4.54456 4.54456 -4858.33 -4.54456 0 0 3.14081e+06 5452.80 0.86 0.93 0.55 -1 -1 0.86 0.495571 0.441007 2282 2655 950 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_52.v common 32.37 vpr 102.40 MiB 0.37 21760 -1 -1 1 1.14 -1 -1 45136 -1 -1 301 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 104856 22 19 7418 6128 1 3860 356 24 24 576 mult_36 auto 58.7 MiB 1.26 25970 87365 17770 61046 8549 96.3 MiB 2.54 0.03 4.34967 -4804.09 -4.34967 4.34967 1.60 0.0145542 0.0131418 1.06436 0.932564 72 44233 45 1.58331e+07 9.78629e+06 2.50747e+06 4353.24 17.54 4.64956 4.04739 67330 654343 -1 35405 17 12953 15244 1834273 401238 4.54456 4.54456 -4810.48 -4.54456 0 0 3.14081e+06 5452.80 0.85 0.91 0.53 -1 -1 0.85 0.514887 0.459964 2310 2674 969 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_14.v common 18.72 vpr 66.80 MiB 0.10 9440 -1 -1 1 0.19 -1 -1 34640 -1 -1 58 22 0 4 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 68404 22 19 1246 925 1 732 103 16 16 256 mult_36 auto 28.4 MiB 1.17 4023 13117 2985 8070 2062 66.8 MiB 0.34 0.01 8.30942 -383.734 -8.30942 8.30942 0.59 0.00262001 0.00241154 0.150191 0.137092 40 8052 31 6.54114e+06 2.40144e+06 616420. 2407.89 13.83 1.33095 1.17365 23812 153515 -1 6887 25 6377 7252 840667 207113 7.83898 7.83898 -465.002 -7.83898 0 0 808720. 3159.06 0.20 0.35 0.14 -1 -1 0.20 0.139969 0.124794 421 344 247 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_15.v common 8.49 vpr 67.56 MiB 0.07 9596 -1 -1 1 0.18 -1 -1 35084 -1 -1 61 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69180 22 19 1344 989 1 791 107 16 16 256 mult_36 auto 29.3 MiB 0.96 4575 14022 3062 9140 1820 67.6 MiB 0.35 0.01 8.46467 -389.974 -8.46467 8.46467 0.59 0.00303809 0.00280853 0.166695 0.152832 42 9875 50 6.54114e+06 2.83972e+06 649763. 2538.14 3.81 0.88637 0.786788 24068 159480 -1 7244 23 6090 6933 810054 211687 7.95378 7.95378 -494.958 -7.95378 0 0 829453. 3240.05 0.22 0.34 0.14 -1 -1 0.22 0.139388 0.124672 453 369 266 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_16.v common 8.88 vpr 67.79 MiB 0.11 9644 -1 -1 1 0.18 -1 -1 35228 -1 -1 65 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69416 22 19 1418 1046 1 832 111 16 16 256 mult_36 auto 29.5 MiB 1.30 4773 16071 3747 10021 2303 67.8 MiB 0.39 0.01 8.40964 -409.362 -8.40964 8.40964 0.58 0.00292238 0.0026757 0.181568 0.165822 46 9093 31 6.54114e+06 2.89609e+06 723233. 2825.13 3.79 0.816121 0.72172 24832 174915 -1 7344 26 5474 6088 675835 171589 8.05383 8.05383 -514.535 -8.05383 0 0 890343. 3477.90 0.22 0.30 0.18 -1 -1 0.22 0.148422 0.131646 481 388 285 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_17.v common 10.40 vpr 68.43 MiB 0.10 10200 -1 -1 1 0.21 -1 -1 35356 -1 -1 71 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70072 22 19 1518 1112 1 895 117 16 16 256 mult_36 auto 30.0 MiB 1.18 5128 15847 3477 10520 1850 68.4 MiB 0.38 0.01 8.98451 -441.089 -8.98451 8.98451 0.58 0.0029563 0.00270358 0.181126 0.165532 46 10202 35 6.54114e+06 2.98066e+06 723233. 2825.13 5.32 0.966824 0.861479 24832 174915 -1 8120 24 6873 7643 882202 231673 8.64522 8.64522 -508.026 -8.64522 0 0 890343. 3477.90 0.22 0.36 0.16 -1 -1 0.22 0.153564 0.136801 514 415 304 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_18.v common 9.13 vpr 68.72 MiB 0.08 10212 -1 -1 1 0.21 -1 -1 35032 -1 -1 74 22 0 5 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70372 22 19 1592 1169 1 934 120 16 16 256 mult_36 auto 30.6 MiB 1.48 5562 18410 4023 12076 2311 68.7 MiB 0.50 0.01 9.11545 -462.729 -9.11545 9.11545 0.58 0.00313992 0.00286707 0.219509 0.20039 50 10839 29 6.54114e+06 3.02294e+06 787708. 3076.99 3.65 0.960923 0.851871 25344 186282 -1 8621 24 6644 7427 822442 205516 8.84223 8.84223 -564.118 -8.84223 0 0 943753. 3686.54 0.24 0.34 0.19 -1 -1 0.24 0.155445 0.138298 542 434 323 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_19.v common 9.72 vpr 68.82 MiB 0.11 10560 -1 -1 1 0.27 -1 -1 35344 -1 -1 79 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 70468 22 19 1688 1231 1 993 126 16 16 256 mult_36 auto 30.8 MiB 1.32 5905 19656 4339 11653 3664 68.8 MiB 0.49 0.01 9.37523 -468.383 -9.37523 9.37523 0.58 0.00351254 0.00323258 0.232479 0.212033 48 11452 47 6.54114e+06 3.48941e+06 755748. 2952.14 4.24 1.13956 1.0091 25088 180500 -1 8957 23 5555 6342 718459 187069 8.83268 8.83268 -558.947 -8.83268 0 0 916467. 3579.95 0.23 0.33 0.16 -1 -1 0.23 0.163001 0.145746 573 457 342 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_20.v common 10.98 vpr 69.38 MiB 0.09 10784 -1 -1 1 0.23 -1 -1 35528 -1 -1 81 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71044 22 19 1762 1288 1 1031 128 16 16 256 mult_36 auto 31.4 MiB 1.59 6159 20092 4300 10622 5170 69.4 MiB 0.47 0.01 9.0553 -504.795 -9.0553 9.0553 0.58 0.00336194 0.003079 0.223133 0.20372 48 12002 45 6.54114e+06 3.51759e+06 755748. 2952.14 5.14 1.09027 0.964321 25088 180500 -1 9426 26 8013 9013 1087933 263252 8.51952 8.51952 -758.559 -8.51952 0 0 916467. 3579.95 0.27 0.43 0.18 -1 -1 0.27 0.182262 0.162271 601 476 361 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_21.v common 10.02 vpr 69.73 MiB 0.11 10904 -1 -1 1 0.24 -1 -1 35776 -1 -1 85 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71404 22 19 1859 1351 1 1092 132 16 16 256 mult_36 auto 31.6 MiB 1.57 6816 20232 4108 12738 3386 69.7 MiB 0.54 0.01 9.21366 -510.538 -9.21366 9.21366 0.59 0.00370234 0.00339557 0.232676 0.21175 54 12156 29 6.54114e+06 3.57397e+06 829453. 3240.05 4.16 1.10107 0.97694 26108 202796 -1 9502 23 6442 7334 699332 184639 8.23497 8.23497 -611.204 -8.23497 0 0 1.02522e+06 4004.78 0.24 0.34 0.18 -1 -1 0.24 0.17102 0.152253 632 500 380 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_22.v common 11.05 vpr 69.93 MiB 0.14 11016 -1 -1 1 0.26 -1 -1 35912 -1 -1 90 22 0 6 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71604 22 19 1933 1408 1 1130 137 16 16 256 mult_36 auto 31.8 MiB 1.89 6953 18846 3874 11726 3246 69.9 MiB 0.51 0.01 9.25639 -524.337 -9.25639 9.25639 0.60 0.00633064 0.00579152 0.229754 0.209796 54 12678 28 6.54114e+06 3.64444e+06 829453. 3240.05 4.77 1.12815 0.998589 26108 202796 -1 10018 23 7514 8545 880687 221653 8.27422 8.27422 -608.588 -8.27422 0 0 1.02522e+06 4004.78 0.26 0.42 0.19 -1 -1 0.26 0.195465 0.17486 661 519 399 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_23.v common 12.05 vpr 70.30 MiB 0.14 11296 -1 -1 1 0.24 -1 -1 35984 -1 -1 94 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71988 22 19 2031 1472 1 1193 142 18 18 324 mult_36 auto 32.4 MiB 1.88 7735 24562 5200 16532 2830 70.3 MiB 0.65 0.01 9.45758 -535.83 -9.45758 9.45758 0.78 0.00385623 0.00351616 0.276218 0.251396 50 14484 31 8.06603e+06 4.09681e+06 1.03391e+06 3191.07 5.08 1.22106 1.08246 32744 246704 -1 11690 23 7230 8414 1076073 253853 8.46493 8.46493 -695.821 -8.46493 0 0 1.23838e+06 3822.15 0.31 0.47 0.23 -1 -1 0.31 0.198031 0.176796 693 544 418 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_24.v common 15.78 vpr 70.71 MiB 0.17 11480 -1 -1 1 0.22 -1 -1 36208 -1 -1 97 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72404 22 19 2105 1529 1 1230 145 18 18 324 mult_36 auto 32.6 MiB 1.82 7180 26745 5794 17769 3182 70.7 MiB 0.44 0.01 9.12646 -589.17 -9.12646 9.12646 0.72 0.00174114 0.00155803 0.141052 0.12686 46 15589 39 8.06603e+06 4.13909e+06 948677. 2928.01 9.22 1.18426 1.04138 32096 231720 -1 11052 22 7422 8604 958262 236388 8.28608 8.28608 -757.327 -8.28608 0 0 1.16833e+06 3605.96 0.35 0.43 0.17 -1 -1 0.35 0.198698 0.177394 721 563 437 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_25.v common 13.08 vpr 71.23 MiB 0.19 11976 -1 -1 1 0.32 -1 -1 36508 -1 -1 101 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 72944 22 19 2201 1591 1 1290 149 18 18 324 mult_36 auto 33.3 MiB 1.80 8299 21425 4201 14721 2503 71.2 MiB 0.63 0.01 9.40561 -605.89 -9.40561 9.40561 0.82 0.0049407 0.00448797 0.265454 0.241336 50 15707 32 8.06603e+06 4.19547e+06 1.03391e+06 3191.07 5.84 1.31782 1.16752 32744 246704 -1 12541 26 8887 10206 1316343 305538 8.90953 8.90953 -711.282 -8.90953 0 0 1.23838e+06 3822.15 0.31 0.54 0.24 -1 -1 0.31 0.239322 0.214263 751 586 456 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_26.v common 13.57 vpr 71.47 MiB 0.08 12020 -1 -1 1 0.29 -1 -1 37372 -1 -1 105 22 0 7 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73184 22 19 2275 1648 1 1330 153 18 18 324 mult_36 auto 33.7 MiB 2.04 8365 28783 6260 16543 5980 71.5 MiB 0.69 0.01 9.59957 -610.286 -9.59957 9.59957 0.79 0.00411691 0.00374728 0.321128 0.291926 48 16675 42 8.06603e+06 4.25184e+06 991730. 3060.90 6.21 1.43531 1.26884 32420 239176 -1 12949 23 9827 11166 1462580 349293 8.88453 8.88453 -788.036 -8.88453 0 0 1.20291e+06 3712.69 0.31 0.56 0.21 -1 -1 0.31 0.220435 0.196694 779 605 475 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_27.v common 13.18 vpr 72.21 MiB 0.12 12088 -1 -1 1 0.32 -1 -1 36688 -1 -1 111 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 73948 22 19 2385 1724 1 1404 160 18 18 324 mult_36 auto 34.4 MiB 1.94 9241 28370 5807 18956 3607 72.2 MiB 0.83 0.01 9.27331 -683.845 -9.27331 9.27331 0.78 0.00442823 0.00404133 0.325043 0.29516 54 17136 39 8.06603e+06 4.73242e+06 1.08842e+06 3359.33 5.64 1.46239 1.29485 33712 268580 -1 13437 24 10877 12354 1477729 344669 8.64193 8.64193 -919.251 -8.64193 0 0 1.34436e+06 4149.26 0.36 0.59 0.22 -1 -1 0.36 0.252438 0.226581 817 642 494 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_28.v common 14.41 vpr 72.31 MiB 0.16 12296 -1 -1 1 0.32 -1 -1 36784 -1 -1 114 22 0 8 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74048 22 19 2459 1781 1 1443 163 18 18 324 mult_36 auto 34.3 MiB 2.32 9764 21523 4098 13503 3922 72.3 MiB 0.62 0.01 9.32934 -687.124 -9.32934 9.32934 0.78 0.00551631 0.00500842 0.259632 0.236424 56 16775 37 8.06603e+06 4.7747e+06 1.11497e+06 3441.27 6.63 1.46602 1.29663 34036 275796 -1 13980 23 9350 10755 1348955 317758 8.77023 8.77023 -898.217 -8.77023 0 0 1.37338e+06 4238.83 0.34 0.53 0.24 -1 -1 0.34 0.233752 0.208772 845 661 513 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_29.v common 16.69 vpr 73.07 MiB 0.19 12476 -1 -1 1 0.36 -1 -1 37116 -1 -1 118 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 74828 22 19 2565 1853 1 1511 168 22 22 484 mult_36 auto 35.2 MiB 2.60 9948 31652 6879 21519 3254 73.1 MiB 0.77 0.01 9.31996 -692.815 -9.31996 9.31996 1.28 0.00488491 0.00446488 0.278446 0.250826 50 19158 34 1.31202e+07 5.22708e+06 1.59181e+06 3288.87 7.00 1.46714 1.2979 49674 382800 -1 14996 23 11360 12976 1660239 391147 8.81467 8.81467 -918.954 -8.81467 0 0 1.90554e+06 3937.06 0.51 0.61 0.34 -1 -1 0.51 0.238829 0.213143 881 694 532 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_30.v common 17.17 vpr 73.39 MiB 0.18 12660 -1 -1 1 0.37 -1 -1 37320 -1 -1 123 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75152 22 19 2639 1910 1 1548 173 22 22 484 mult_36 auto 35.8 MiB 2.42 9542 32881 6991 22506 3384 73.4 MiB 0.71 0.01 9.26617 -728.584 -9.26617 9.26617 1.19 0.00218694 0.001972 0.285336 0.25833 48 19580 38 1.31202e+07 5.29755e+06 1.52614e+06 3153.19 7.75 1.56872 1.38457 49190 371334 -1 15243 26 13014 14790 1866040 442392 8.73812 8.73812 -1114.85 -8.73812 0 0 1.85176e+06 3825.95 0.51 0.72 0.34 -1 -1 0.51 0.278832 0.248939 910 713 551 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_31.v common 17.12 vpr 73.88 MiB 0.22 13008 -1 -1 1 0.34 -1 -1 37388 -1 -1 128 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75652 22 19 2744 1981 1 1618 178 22 22 484 mult_36 auto 36.3 MiB 2.23 10316 35178 7031 23952 4195 73.9 MiB 0.97 0.01 9.59887 -815.227 -9.59887 9.59887 1.22 0.00501272 0.00456654 0.386801 0.350063 50 19789 33 1.31202e+07 5.36802e+06 1.59181e+06 3288.87 7.50 1.61243 1.42683 49674 382800 -1 15490 27 12044 14151 1818410 427333 9.02988 9.02988 -1082.14 -9.02988 0 0 1.90554e+06 3937.06 0.51 0.69 0.32 -1 -1 0.51 0.28382 0.251956 946 745 570 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_32.v common 18.10 vpr 73.72 MiB 0.19 12928 -1 -1 1 0.35 -1 -1 36972 -1 -1 131 22 0 9 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 75492 22 19 2818 2038 1 1656 181 22 22 484 mult_36 auto 36.0 MiB 2.74 10985 33396 7014 22006 4376 73.7 MiB 0.94 0.01 9.18872 -729.727 -9.18872 9.18872 1.22 0.00555682 0.00501678 0.391822 0.354063 52 21147 46 1.31202e+07 5.4103e+06 1.63434e+06 3376.74 7.78 1.89748 1.68336 50638 406276 -1 15805 26 12963 14588 1925572 461503 8.66113 8.66113 -888.638 -8.66113 0 0 2.01763e+06 4168.66 0.56 0.76 0.37 -1 -1 0.56 0.298184 0.266224 974 764 589 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_33.v common 18.09 vpr 74.57 MiB 0.18 13792 -1 -1 1 0.37 -1 -1 37332 -1 -1 137 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76356 22 19 2923 2109 1 1725 188 22 22 484 mult_36 auto 36.9 MiB 2.39 11534 41076 8921 25709 6446 74.6 MiB 1.05 0.01 10.2924 -835.387 -10.2924 10.2924 1.27 0.00546535 0.00497593 0.44184 0.40093 54 21231 38 1.31202e+07 5.89087e+06 1.67518e+06 3461.11 8.17 1.90087 1.69027 51122 416746 -1 16854 24 11734 13578 1615248 384384 9.39377 9.39377 -1134.87 -9.39377 0 0 2.06816e+06 4273.05 0.54 0.62 0.34 -1 -1 0.54 0.267121 0.2382 1009 796 608 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_34.v common 21.65 vpr 74.83 MiB 0.21 13772 -1 -1 1 0.38 -1 -1 37876 -1 -1 140 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76624 22 19 2997 2166 1 1764 191 22 22 484 mult_36 auto 37.2 MiB 3.66 12266 39170 8245 26892 4033 74.8 MiB 1.07 0.01 9.97834 -770.817 -9.97834 9.97834 1.21 0.00571216 0.0052044 0.426004 0.386425 56 21922 39 1.31202e+07 5.93316e+06 1.71605e+06 3545.56 10.32 1.86387 1.65418 51606 428054 -1 18215 24 13841 15896 2255928 507616 9.94227 9.94227 -1246.47 -9.94227 0 0 2.11301e+06 4365.72 0.54 0.76 0.35 -1 -1 0.54 0.281343 0.250097 1037 815 627 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_35.v common 19.19 vpr 75.42 MiB 0.15 13984 -1 -1 1 0.39 -1 -1 37592 -1 -1 145 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77228 22 19 3101 2236 1 1830 196 22 22 484 mult_36 auto 37.6 MiB 3.22 11422 38319 7965 26269 4085 75.4 MiB 1.02 0.01 9.90229 -825.692 -9.90229 9.90229 1.23 0.00568749 0.00517513 0.40807 0.368882 54 21987 30 1.31202e+07 6.00363e+06 1.67518e+06 3461.11 8.36 1.90347 1.6945 51122 416746 -1 17198 23 12943 14962 1754919 421016 9.26291 9.26291 -1135.22 -9.26291 0 0 2.06816e+06 4273.05 0.56 0.70 0.35 -1 -1 0.56 0.285813 0.255425 1072 846 646 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_36.v common 20.38 vpr 75.86 MiB 0.22 14128 -1 -1 1 0.42 -1 -1 37996 -1 -1 148 22 0 10 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 77684 22 19 3175 2293 1 1870 199 22 22 484 mult_36 auto 38.1 MiB 3.88 11959 40219 8453 27913 3853 75.9 MiB 1.07 0.01 10.2141 -827.99 -10.2141 10.2141 1.31 0.00641648 0.00585224 0.454477 0.413046 54 22244 37 1.31202e+07 6.04591e+06 1.67518e+06 3461.11 8.61 2.04337 1.8116 51122 416746 -1 17420 23 11578 13322 1482709 359973 9.58852 9.58852 -1256.36 -9.58852 0 0 2.06816e+06 4273.05 0.56 0.65 0.35 -1 -1 0.56 0.289012 0.258213 1100 865 665 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_37.v common 23.90 vpr 76.29 MiB 0.21 14464 -1 -1 1 0.45 -1 -1 37372 -1 -1 152 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78116 22 19 3280 2364 1 1940 204 24 24 576 mult_36 auto 38.6 MiB 3.56 12413 41604 8759 29253 3592 76.3 MiB 1.07 0.02 10.1414 -859.737 -10.1414 10.1414 1.64 0.00602109 0.00548311 0.412304 0.372312 50 25735 44 1.58331e+07 6.49829e+06 1.88759e+06 3277.06 11.57 2.03071 1.79344 58706 454005 -1 18389 25 12459 14636 1793419 425436 9.27766 9.27766 -1319.74 -9.27766 0 0 2.26035e+06 3924.22 0.60 0.75 0.36 -1 -1 0.60 0.334717 0.30042 1135 897 684 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_38.v common 21.64 vpr 76.78 MiB 0.24 14576 -1 -1 1 0.46 -1 -1 37976 -1 -1 157 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78620 22 19 3354 2421 1 1977 209 24 24 576 mult_36 auto 39.0 MiB 4.17 12700 43609 9545 30570 3494 76.8 MiB 1.19 0.02 10.0282 -917.593 -10.0282 10.0282 1.49 0.00602725 0.00545141 0.471712 0.425047 56 21119 26 1.58331e+07 6.56876e+06 2.03561e+06 3534.04 8.64 1.92611 1.70534 61006 507707 -1 18139 27 11695 13188 1690980 410021 9.18442 9.18442 -1340.55 -9.18442 0 0 2.50747e+06 4353.24 0.70 0.76 0.43 -1 -1 0.70 0.348213 0.310179 1164 916 703 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_39.v common 22.11 vpr 77.25 MiB 0.12 14688 -1 -1 1 0.46 -1 -1 38264 -1 -1 161 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79100 22 19 3457 2490 1 2042 213 24 24 576 mult_36 auto 39.5 MiB 3.72 12894 46568 10474 28732 7362 77.2 MiB 1.22 0.02 10.1583 -949.474 -10.1583 10.1583 1.43 0.00638264 0.00581139 0.510789 0.461121 54 24143 46 1.58331e+07 6.62513e+06 1.98675e+06 3449.22 9.80 2.23656 1.97751 60430 494267 -1 18677 25 12663 14801 1632827 390484 9.97257 9.97257 -1318.13 -9.97257 0 0 2.45377e+06 4260.01 0.65 0.67 0.41 -1 -1 0.65 0.310012 0.275893 1198 946 722 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_40.v common 23.85 vpr 77.45 MiB 0.21 14836 -1 -1 1 0.44 -1 -1 38836 -1 -1 164 22 0 11 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79312 22 19 3531 2547 1 2082 216 24 24 576 mult_36 auto 39.7 MiB 4.44 13807 43565 9165 30733 3667 77.5 MiB 1.09 0.02 9.99186 -925.764 -9.99186 9.99186 1.47 0.00646404 0.00579106 0.420358 0.377761 54 25418 49 1.58331e+07 6.66742e+06 1.98675e+06 3449.22 10.71 2.2341 1.9696 60430 494267 -1 20060 24 14263 16167 1965856 473886 9.29411 9.29411 -1401.97 -9.29411 0 0 2.45377e+06 4260.01 0.74 0.75 0.39 -1 -1 0.74 0.315228 0.279899 1226 965 741 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_41.v common 23.91 vpr 77.20 MiB 0.24 15228 -1 -1 1 0.65 -1 -1 37944 -1 -1 170 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79056 22 19 3634 2616 1 2147 223 24 24 576 mult_36 auto 39.6 MiB 4.10 14145 47543 9891 33901 3751 77.2 MiB 1.30 0.02 9.91159 -1035.36 -9.91159 9.91159 1.48 0.00623866 0.0056463 0.502007 0.454474 54 26939 44 1.58331e+07 7.14798e+06 1.98675e+06 3449.22 10.23 2.24742 1.98593 60430 494267 -1 20614 24 15058 17233 2074607 480593 9.79086 9.79086 -1391.86 -9.79086 0 0 2.45377e+06 4260.01 0.70 0.87 0.42 -1 -1 0.70 0.368238 0.329446 1261 995 760 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_42.v common 29.03 vpr 78.09 MiB 0.27 15328 -1 -1 1 0.65 -1 -1 38240 -1 -1 173 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79964 22 19 3708 2673 1 2186 226 24 24 576 mult_36 auto 40.3 MiB 4.74 16104 42194 8322 28032 5840 78.1 MiB 1.14 0.02 10.4136 -1012.01 -10.4136 10.4136 1.46 0.00636253 0.00575312 0.426379 0.385045 62 27815 40 1.58331e+07 7.19026e+06 2.19658e+06 3813.51 14.85 2.26474 2.0088 63306 560109 -1 21638 25 14219 16394 2291368 490734 9.41877 9.41877 -1577.24 -9.41877 0 0 2.72095e+06 4723.87 0.71 0.81 0.46 -1 -1 0.71 0.336207 0.29879 1289 1014 779 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_43.v common 27.74 vpr 78.05 MiB 0.25 15604 -1 -1 1 0.65 -1 -1 38608 -1 -1 178 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79920 22 19 3810 2741 1 2253 231 24 24 576 mult_36 auto 40.4 MiB 4.30 15296 41295 8139 29365 3791 78.0 MiB 1.20 0.02 10.16 -1063.97 -10.16 10.16 1.54 0.0070497 0.00641468 0.455071 0.409328 56 28472 50 1.58331e+07 7.26073e+06 2.03561e+06 3534.04 13.96 2.40374 2.12442 61006 507707 -1 22090 23 15206 17473 2444394 558097 9.42572 9.42572 -1494.13 -9.42572 0 0 2.50747e+06 4353.24 0.67 0.80 0.47 -1 -1 0.67 0.286418 0.257228 1323 1043 798 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_44.v common 24.56 vpr 78.46 MiB 0.26 15644 -1 -1 1 0.65 -1 -1 38452 -1 -1 181 22 0 12 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80348 22 19 3884 2798 1 2294 234 24 24 576 mult_36 auto 40.8 MiB 4.95 15489 47034 9365 34232 3437 78.5 MiB 1.31 0.02 10.121 -975.462 -10.121 10.121 1.62 0.00727244 0.00650432 0.51744 0.466063 60 24207 29 1.58331e+07 7.30301e+06 2.13333e+06 3703.69 9.52 2.28995 2.02781 62730 548095 -1 21032 24 12683 14355 1753295 422656 9.00722 9.00722 -1352.2 -9.00722 0 0 2.67122e+06 4637.53 0.78 0.80 0.47 -1 -1 0.78 0.37169 0.331744 1351 1062 817 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_45.v common 26.81 vpr 78.86 MiB 0.26 15956 -1 -1 1 0.66 -1 -1 40372 -1 -1 186 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80756 22 19 3989 2869 1 2359 240 24 24 576 mult_36 auto 41.1 MiB 4.54 16340 50155 10505 31575 8075 78.9 MiB 1.30 0.02 10.0722 -985.253 -10.0722 10.0722 1.55 0.0074032 0.00672801 0.525196 0.47423 62 27929 47 1.58331e+07 7.76948e+06 2.19658e+06 3813.51 12.50 2.45785 2.1786 63306 560109 -1 21607 23 12498 14826 1663854 396826 9.12307 9.12307 -1451.12 -9.12307 0 0 2.72095e+06 4723.87 0.75 0.75 0.44 -1 -1 0.75 0.359917 0.320931 1387 1094 836 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_46.v common 24.18 vpr 78.90 MiB 0.20 16108 -1 -1 1 0.65 -1 -1 40268 -1 -1 189 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80796 22 19 4063 2926 1 2398 243 24 24 576 mult_36 auto 41.3 MiB 5.27 16549 53303 11025 37595 4683 78.9 MiB 1.40 0.02 10.5357 -1123.54 -10.5357 10.5357 1.51 0.0077541 0.00706757 0.555707 0.499832 64 25587 38 1.58331e+07 7.81177e+06 2.26035e+06 3924.22 9.27 2.46726 2.18285 64454 586630 -1 22060 23 10577 12608 1472265 347313 9.67737 9.67737 -1524.22 -9.67737 0 0 2.84938e+06 4946.85 0.74 0.64 0.46 -1 -1 0.74 0.336775 0.30084 1414 1113 855 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_47.v common 26.84 vpr 79.67 MiB 0.30 16508 -1 -1 1 0.66 -1 -1 40548 -1 -1 194 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81580 22 19 4167 2996 1 2465 248 24 24 576 mult_36 auto 42.2 MiB 4.83 16473 59376 11937 40248 7191 79.7 MiB 1.55 0.02 10.4408 -1061.77 -10.4408 10.4408 1.55 0.00789307 0.00718347 0.613169 0.553732 60 26903 48 1.58331e+07 7.88224e+06 2.13333e+06 3703.69 11.83 2.78199 2.45451 62730 548095 -1 21754 23 12304 14126 1550289 380177 9.28402 9.28402 -1464.85 -9.28402 0 0 2.67122e+06 4637.53 0.76 0.75 0.47 -1 -1 0.76 0.374453 0.33403 1449 1144 874 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_48.v common 23.87 vpr 79.73 MiB 0.23 16660 -1 -1 1 0.66 -1 -1 40516 -1 -1 197 22 0 13 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81648 22 19 4241 3053 1 2504 251 24 24 576 mult_36 auto 42.1 MiB 5.61 16474 57994 11394 40219 6381 79.7 MiB 1.47 0.02 10.5013 -1047.39 -10.5013 10.5013 1.43 0.00738982 0.00668981 0.570981 0.514404 64 25175 29 1.58331e+07 7.92452e+06 2.26035e+06 3924.22 8.19 2.34248 2.06535 64454 586630 -1 22200 23 12490 14529 1711643 410861 9.39387 9.39387 -1359.3 -9.39387 0 0 2.84938e+06 4946.85 0.85 0.79 0.56 -1 -1 0.85 0.382435 0.340426 1477 1163 893 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_49.v common 27.24 vpr 80.15 MiB 0.31 17092 -1 -1 1 0.64 -1 -1 40920 -1 -1 204 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82076 22 19 4346 3124 1 2572 259 24 24 576 mult_36 auto 42.5 MiB 5.24 17944 60484 12294 40037 8153 80.2 MiB 1.62 0.02 10.2711 -1057.18 -10.2711 10.2711 1.51 0.00781659 0.00709654 0.633263 0.569606 60 28418 34 1.58331e+07 8.41918e+06 2.13333e+06 3703.69 11.70 2.65564 2.34723 62730 548095 -1 23860 21 13375 15404 1783547 434526 9.48426 9.48426 -1463.7 -9.48426 0 0 2.67122e+06 4637.53 0.72 0.75 0.47 -1 -1 0.72 0.348599 0.310883 1512 1195 912 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_50.v common 28.32 vpr 80.52 MiB 0.33 17004 -1 -1 1 0.63 -1 -1 40820 -1 -1 206 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 82452 22 19 4420 3181 1 2611 261 24 24 576 mult_36 auto 42.9 MiB 5.83 17532 50241 9749 32850 7642 80.5 MiB 1.23 0.02 10.0416 -1157.63 -10.0416 10.0416 1.43 0.00791432 0.00717592 0.494005 0.44298 58 28679 43 1.58331e+07 8.44736e+06 2.08734e+06 3623.85 12.76 2.75587 2.43133 62154 534210 -1 23883 25 16571 18768 2358557 558388 9.36196 9.36196 -1664.67 -9.36196 0 0 2.61600e+06 4541.67 0.71 0.94 0.36 -1 -1 0.71 0.411086 0.365325 1541 1214 931 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_51.v common 25.90 vpr 81.16 MiB 0.30 17344 -1 -1 1 0.66 -1 -1 40992 -1 -1 211 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83108 22 19 4524 3251 1 2680 266 24 24 576 mult_36 auto 43.7 MiB 5.40 18368 60116 11930 38131 10055 81.2 MiB 1.56 0.02 10.5845 -1178.84 -10.5845 10.5845 1.50 0.00810344 0.0073282 0.63031 0.566185 66 27293 26 1.58331e+07 8.51783e+06 2.33135e+06 4047.49 10.14 2.66231 2.36457 65030 601923 -1 23810 20 12167 13847 1609632 377723 9.57737 9.57737 -1575.72 -9.57737 0 0 2.91907e+06 5067.82 0.83 0.75 0.58 -1 -1 0.83 0.371055 0.333013 1576 1245 950 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_52.v common 39.44 vpr 81.29 MiB 0.31 17444 -1 -1 1 0.66 -1 -1 39540 -1 -1 215 22 0 14 success v8.0.0-10981-ge72dccf2d release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T17:16:23 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 83244 22 19 4598 3308 1 2717 270 24 24 576 mult_36 auto 43.9 MiB 6.37 18189 61310 12677 40484 8149 81.3 MiB 1.72 0.03 10.1072 -1112.57 -10.1072 10.1072 1.50 0.0101785 0.00922809 0.672075 0.603798 58 33606 48 1.58331e+07 8.57421e+06 2.08734e+06 3623.85 22.48 2.99387 2.64132 62154 534210 -1 25197 24 15147 17510 2264940 516528 9.45177 9.45177 -1662.09 -9.45177 0 0 2.61600e+06 4541.67 0.75 0.98 0.38 -1 -1 0.75 0.434057 0.386885 1605 1264 969 19 0 0 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/figure_8/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/figure_8/config/golden_results.txt index ea465de10bd..b1d6bdc1f04 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/figure_8/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/figure_8/config/golden_results.txt @@ -1,221 +1,221 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.20 vpr 62.62 MiB 0.01 6188 -1 -1 1 0.06 -1 -1 35296 -1 -1 2 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64124 7 4 21 25 1 15 13 17 17 289 -1 unnamed_device 24.3 MiB 0.01 50 298 76 216 6 62.6 MiB 0.00 0.00 0.701249 -6.72129 -0.701249 0.701249 0.91 4.934e-05 4.3388e-05 0.00125039 0.00110644 20 104 9 6.55708e+06 24110 394039. 1363.46 0.56 0.00381221 0.00338002 19870 87366 -1 112 6 35 35 1740 568 0.701248 0.701248 -7.34893 -0.701248 0 0 477104. 1650.88 0.21 0.01 0.09 -1 -1 0.21 0.00200878 0.00183244 10 4 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_004bits.v common 3.19 vpr 62.64 MiB 0.01 6016 -1 -1 2 0.06 -1 -1 35964 -1 -1 2 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64148 9 5 28 33 1 21 16 17 17 289 -1 unnamed_device 24.3 MiB 0.01 72 396 78 308 10 62.6 MiB 0.01 0.00 0.900447 -9.59862 -0.900447 0.900447 0.91 6.4942e-05 5.7912e-05 0.00158369 0.00142093 20 169 8 6.55708e+06 24110 394039. 1363.46 0.56 0.00440084 0.00393013 19870 87366 -1 180 11 79 85 5636 1605 0.819447 0.819447 -10.7972 -0.819447 0 0 477104. 1650.88 0.21 0.01 0.09 -1 -1 0.21 0.00277401 0.00246236 13 6 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_005bits.v common 4.58 vpr 62.79 MiB 0.01 6244 -1 -1 2 0.06 -1 -1 35444 -1 -1 2 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64296 11 6 34 40 1 24 19 17 17 289 -1 unnamed_device 24.4 MiB 0.01 72 444 121 288 35 62.8 MiB 0.01 0.00 0.900447 -12.0151 -0.900447 0.900447 0.91 7.49e-05 6.7232e-05 0.00171186 0.00153646 22 204 15 6.55708e+06 24110 420624. 1455.45 1.94 0.0170555 0.0141246 20158 92377 -1 147 12 75 76 3884 1338 0.819447 0.819447 -12.0716 -0.819447 0 0 500653. 1732.36 0.22 0.01 0.08 -1 -1 0.22 0.00313664 0.00277731 16 7 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_006bits.v common 4.06 vpr 62.61 MiB 0.01 6024 -1 -1 3 0.06 -1 -1 35860 -1 -1 3 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64112 13 7 41 48 1 32 23 17 17 289 -1 unnamed_device 24.2 MiB 0.01 91 855 163 648 44 62.6 MiB 0.01 0.00 1.58811 -16.2873 -1.58811 1.58811 0.90 8.9025e-05 7.9917e-05 0.00280932 0.00252139 24 292 10 6.55708e+06 36165 448715. 1552.65 1.37 0.0155051 0.0130859 20734 103517 -1 245 9 107 122 6698 2061 1.50711 1.50711 -17.293 -1.50711 0 0 554710. 1919.41 0.23 0.01 0.11 -1 -1 0.23 0.00326566 0.0029248 19 9 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_007bits.v common 4.72 vpr 62.85 MiB 0.01 6268 -1 -1 3 0.06 -1 -1 35512 -1 -1 3 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64356 15 8 47 55 1 38 26 17 17 289 -1 unnamed_device 24.4 MiB 0.01 99 1014 271 604 139 62.8 MiB 0.01 0.00 1.23151 -17.4525 -1.23151 1.23151 0.88 0.000102266 9.2036e-05 0.00320803 0.00288346 26 369 17 6.55708e+06 36165 477104. 1650.88 2.10 0.0297308 0.024652 21022 109990 -1 271 8 156 177 8338 2942 1.14085 1.14085 -18.4888 -1.14085 0 0 585099. 2024.56 0.24 0.01 0.11 -1 -1 0.24 0.00331748 0.0029772 23 10 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_008bits.v common 3.28 vpr 62.70 MiB 0.01 6044 -1 -1 3 0.06 -1 -1 35588 -1 -1 4 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64204 17 9 56 65 1 42 30 17 17 289 -1 unnamed_device 24.2 MiB 0.06 161 628 145 480 3 62.7 MiB 0.01 0.00 1.70831 -22.396 -1.70831 1.70831 0.93 0.000119892 0.000107789 0.00223036 0.0020268 20 378 18 6.55708e+06 48220 394039. 1363.46 0.57 0.00837438 0.00735488 19870 87366 -1 340 11 159 175 9179 2675 1.70831 1.70831 -22.6732 -1.70831 0 0 477104. 1650.88 0.21 0.01 0.09 -1 -1 0.21 0.00447442 0.00394897 25 14 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_009bits.v common 3.47 vpr 62.84 MiB 0.01 6228 -1 -1 4 0.07 -1 -1 35472 -1 -1 4 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64352 19 10 60 70 1 48 33 17 17 289 -1 unnamed_device 24.3 MiB 0.01 142 1229 224 959 46 62.8 MiB 0.01 0.00 1.58811 -24.8435 -1.58811 1.58811 0.93 0.000127937 0.000115116 0.00364293 0.0032979 26 456 17 6.55708e+06 48220 477104. 1650.88 0.72 0.0200252 0.0169994 21022 109990 -1 395 13 207 273 13090 4148 1.59011 1.59011 -26.0108 -1.59011 0 0 585099. 2024.56 0.25 0.01 0.11 -1 -1 0.25 0.00497309 0.00441198 29 13 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_010bits.v common 4.25 vpr 63.10 MiB 0.01 6060 -1 -1 4 0.07 -1 -1 35656 -1 -1 5 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64612 21 11 69 80 1 53 37 17 17 289 -1 unnamed_device 24.6 MiB 0.03 252 2965 1025 1339 601 63.1 MiB 0.02 0.00 1.68077 -28.9367 -1.68077 1.68077 0.89 0.000144046 0.000130305 0.00783564 0.0071037 24 601 15 6.55708e+06 60275 448715. 1552.65 1.48 0.031398 0.0269504 20734 103517 -1 553 9 193 247 17801 4504 1.46791 1.46791 -30.7514 -1.46791 0 0 554710. 1919.41 0.24 0.01 0.10 -1 -1 0.24 0.00479182 0.00430608 33 17 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_011bits.v common 3.63 vpr 62.82 MiB 0.01 6216 -1 -1 5 0.07 -1 -1 35940 -1 -1 5 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64328 23 12 73 85 1 58 40 17 17 289 -1 unnamed_device 24.3 MiB 0.02 278 3032 1045 1570 417 62.8 MiB 0.02 0.00 2.03736 -35.0243 -2.03736 2.03736 0.91 0.000159958 0.000145351 0.00755148 0.00685068 26 654 16 6.55708e+06 60275 477104. 1650.88 0.79 0.0271315 0.0234326 21022 109990 -1 587 14 251 363 22402 6027 1.95636 1.95636 -36.485 -1.95636 0 0 585099. 2024.56 0.26 0.02 0.11 -1 -1 0.26 0.00600589 0.00532512 35 16 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_012bits.v common 4.89 vpr 62.91 MiB 0.01 6260 -1 -1 5 0.07 -1 -1 36140 -1 -1 6 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64416 25 13 82 95 1 66 44 17 17 289 -1 unnamed_device 24.3 MiB 0.02 261 1738 345 1379 14 62.9 MiB 0.01 0.00 2.11777 -37.2851 -2.11777 2.11777 0.91 0.000175357 0.00015859 0.00469779 0.0042669 26 735 12 6.55708e+06 72330 477104. 1650.88 2.06 0.0473663 0.0403163 21022 109990 -1 622 15 260 355 32050 8929 1.9049 1.9049 -38.6675 -1.9049 0 0 585099. 2024.56 0.26 0.02 0.11 -1 -1 0.26 0.00666652 0.00586699 40 20 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_013bits.v common 4.40 vpr 62.90 MiB 0.01 6348 -1 -1 5 0.07 -1 -1 36164 -1 -1 7 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64412 27 14 91 105 1 70 48 17 17 289 -1 unnamed_device 24.6 MiB 0.02 361 1875 344 1504 27 62.9 MiB 0.01 0.00 1.70831 -38.0204 -1.70831 1.70831 0.91 0.000208712 0.000190757 0.00477525 0.00436761 26 813 14 6.55708e+06 84385 477104. 1650.88 1.59 0.0477638 0.0406076 21022 109990 -1 680 10 233 344 20207 5249 1.61564 1.61564 -40.3003 -1.61564 0 0 585099. 2024.56 0.26 0.02 0.11 -1 -1 0.26 0.00622713 0.00559873 42 24 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_014bits.v common 3.45 vpr 63.11 MiB 0.01 6232 -1 -1 6 0.07 -1 -1 35728 -1 -1 7 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64620 29 15 95 110 1 74 51 17 17 289 -1 unnamed_device 24.8 MiB 0.04 444 2495 549 1721 225 63.1 MiB 0.02 0.00 2.39596 -47.6713 -2.39596 2.39596 0.88 0.000174087 0.000157152 0.00552331 0.00499946 26 899 11 6.55708e+06 84385 477104. 1650.88 0.76 0.0283616 0.0244167 21022 109990 -1 825 13 237 341 23370 5645 2.2243 2.2243 -49.3822 -2.2243 0 0 585099. 2024.56 0.25 0.02 0.10 -1 -1 0.25 0.00668054 0.00593496 45 23 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_015bits.v common 5.48 vpr 63.18 MiB 0.01 6260 -1 -1 6 0.07 -1 -1 35952 -1 -1 9 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64692 31 16 104 120 1 80 56 17 17 289 -1 unnamed_device 24.8 MiB 0.14 378 5941 1874 2717 1350 63.2 MiB 0.03 0.00 2.19676 -46.103 -2.19676 2.19676 0.95 0.000221163 0.000201131 0.0129907 0.0118145 28 960 15 6.55708e+06 108495 500653. 1732.36 2.50 0.0569322 0.049 21310 115450 -1 798 10 326 485 26082 6953 2.07656 2.07656 -48.0486 -2.07656 0 0 612192. 2118.31 0.27 0.02 0.11 -1 -1 0.27 0.00684689 0.00614994 50 27 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_016bits.v common 5.58 vpr 62.88 MiB 0.01 6144 -1 -1 7 0.07 -1 -1 36096 -1 -1 7 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64392 33 17 108 125 1 86 57 17 17 289 -1 unnamed_device 24.5 MiB 0.02 565 6270 1776 3822 672 62.9 MiB 0.04 0.00 3.08362 -63.5746 -3.08362 3.08362 0.94 0.000219137 0.000198917 0.0135617 0.012313 30 1073 27 6.55708e+06 84385 526063. 1820.29 2.70 0.0789234 0.067897 21886 126133 -1 991 13 323 474 28238 6909 2.84322 2.84322 -63.1401 -2.84322 0 0 666494. 2306.21 0.29 0.02 0.12 -1 -1 0.29 0.00801713 0.00715334 51 26 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_018bits.v common 3.91 vpr 63.39 MiB 0.01 6176 -1 -1 7 0.08 -1 -1 35892 -1 -1 8 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64916 37 19 127 146 1 101 64 17 17 289 -1 unnamed_device 24.9 MiB 0.22 554 5144 1328 3388 428 63.4 MiB 0.03 0.00 2.78339 -65.1521 -2.78339 2.78339 0.96 0.000259737 0.000236197 0.0116574 0.0106263 26 1231 13 6.55708e+06 96440 477104. 1650.88 0.82 0.0420108 0.0367388 21022 109990 -1 1168 13 431 609 42782 10278 2.76622 2.76622 -70.7762 -2.76622 0 0 585099. 2024.56 0.25 0.02 0.11 -1 -1 0.25 0.0090704 0.0081078 59 35 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_020bits.v common 3.87 vpr 63.41 MiB 0.01 6208 -1 -1 8 0.09 -1 -1 35580 -1 -1 10 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64932 41 21 139 160 1 109 72 17 17 289 -1 unnamed_device 24.9 MiB 0.18 447 7224 1591 4752 881 63.4 MiB 0.04 0.00 3.28422 -74.213 -3.28422 3.28422 0.92 0.000289001 0.000263536 0.0150102 0.0136929 26 1141 11 6.55708e+06 120550 477104. 1650.88 0.86 0.0476491 0.041851 21022 109990 -1 951 13 375 502 29568 8047 2.92362 2.92362 -72.9932 -2.92362 0 0 585099. 2024.56 0.25 0.02 0.11 -1 -1 0.25 0.00982663 0.00878565 67 37 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_022bits.v common 5.03 vpr 63.32 MiB 0.01 6276 -1 -1 9 0.08 -1 -1 35992 -1 -1 11 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64836 45 23 152 175 1 124 79 17 17 289 -1 unnamed_device 24.7 MiB 0.05 733 10219 2597 6052 1570 63.3 MiB 0.05 0.00 3.23076 -86.0719 -3.23076 3.23076 0.92 0.000301393 0.000272492 0.0195763 0.0177577 26 1510 16 6.55708e+06 132605 477104. 1650.88 2.10 0.0817148 0.0713133 21022 109990 -1 1351 18 454 634 41713 9806 3.2191 3.2191 -90.5107 -3.2191 0 0 585099. 2024.56 0.25 0.03 0.11 -1 -1 0.25 0.012793 0.0113357 74 40 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_024bits.v common 5.79 vpr 63.50 MiB 0.01 6388 -1 -1 10 0.08 -1 -1 35872 -1 -1 11 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65028 49 25 165 190 1 131 85 17 17 289 -1 unnamed_device 25.0 MiB 0.29 533 10873 3248 5447 2178 63.5 MiB 0.06 0.00 3.72533 -95.3298 -3.72533 3.72533 0.95 0.00035263 0.000323229 0.0208282 0.0189843 28 1462 29 6.55708e+06 132605 500653. 1732.36 2.55 0.125623 0.109521 21310 115450 -1 1246 13 499 651 40056 11016 3.58796 3.58796 -98.146 -3.58796 0 0 612192. 2118.31 0.27 0.03 0.11 -1 -1 0.27 0.0112562 0.0101001 79 43 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_028bits.v common 6.08 vpr 63.92 MiB 0.01 6520 -1 -1 11 0.09 -1 -1 36448 -1 -1 14 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65452 57 29 199 228 1 157 100 17 17 289 -1 unnamed_device 25.5 MiB 0.26 728 11468 2977 6953 1538 63.9 MiB 0.06 0.00 4.49954 -124.266 -4.49954 4.49954 0.95 0.000378732 0.000344119 0.0211341 0.0192402 30 1670 37 6.55708e+06 168770 526063. 1820.29 2.87 0.130889 0.113889 21886 126133 -1 1428 13 558 793 44398 12038 4.09974 4.09974 -124.269 -4.09974 0 0 666494. 2306.21 0.28 0.03 0.13 -1 -1 0.28 0.0136095 0.0122457 93 57 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_032bits.v common 6.69 vpr 64.04 MiB 0.01 6400 -1 -1 13 0.10 -1 -1 36144 -1 -1 15 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65572 65 33 224 257 1 179 113 17 17 289 -1 unnamed_device 25.5 MiB 0.50 1038 16493 5318 8597 2578 64.0 MiB 0.08 0.00 4.53259 -150.281 -4.53259 4.53259 0.95 0.000443643 0.000404671 0.0280208 0.0255381 28 2156 19 6.55708e+06 180825 500653. 1732.36 3.16 0.168309 0.147404 21310 115450 -1 1901 12 641 845 55420 13951 4.42276 4.42276 -153.916 -4.42276 0 0 612192. 2118.31 0.26 0.03 0.12 -1 -1 0.26 0.0140709 0.0126374 107 62 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_048bits.v common 4.69 vpr 64.91 MiB 0.02 6684 -1 -1 19 0.11 -1 -1 36152 -1 -1 24 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 97 49 340 389 1 265 170 17 17 289 -1 unnamed_device 26.3 MiB 0.34 1334 34950 10414 20834 3702 64.9 MiB 0.15 0.00 7.26745 -288.28 -7.26745 7.26745 0.95 0.00063359 0.000575562 0.0496981 0.045154 28 3106 20 6.55708e+06 289320 500653. 1732.36 1.21 0.136388 0.121782 21310 115450 -1 2712 12 991 1362 97304 24271 6.78665 6.78665 -281.535 -6.78665 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0194669 0.0176509 160 98 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_064bits.v common 8.28 vpr 65.41 MiB 0.02 7008 -1 -1 26 0.14 -1 -1 36344 -1 -1 31 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66976 129 65 454 519 1 354 225 17 17 289 -1 unnamed_device 26.6 MiB 0.20 1718 54945 15410 32877 6658 65.4 MiB 0.22 0.00 9.81484 -466.455 -9.81484 9.81484 0.96 0.000717167 0.000654163 0.0704837 0.0641274 44 3610 38 6.55708e+06 373705 742403. 2568.87 4.46 0.387021 0.344732 24478 177802 -1 3026 36 1208 1726 246539 132031 9.21384 9.21384 -441.046 -9.21384 0 0 937218. 3242.97 0.41 0.15 0.18 -1 -1 0.41 0.0603243 0.0540948 213 132 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.16 abc 32.47 MiB 0.01 6444 -1 -1 1 0.02 -1 -1 33248 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24908 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.16 abc 32.78 MiB 0.01 6196 -1 -1 1 0.02 -1 -1 33564 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24960 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 2 2 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.16 abc 32.82 MiB 0.01 6216 -1 -1 1 0.02 -1 -1 33612 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25416 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 2 2 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.17 abc 32.55 MiB 0.01 6212 -1 -1 1 0.02 -1 -1 33328 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25316 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 2 2 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.16 abc 32.85 MiB 0.01 6128 -1 -1 1 0.02 -1 -1 33636 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25052 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 3 3 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.17 abc 32.61 MiB 0.01 6152 -1 -1 1 0.02 -1 -1 33396 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25156 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 3 3 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.17 abc 32.86 MiB 0.01 6324 -1 -1 1 0.02 -1 -1 33648 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25336 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 3 3 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.18 abc 33.00 MiB 0.01 6444 -1 -1 1 0.02 -1 -1 33796 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25100 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 3 3 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.17 abc 32.83 MiB 0.02 6508 -1 -1 1 0.02 -1 -1 33616 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25188 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 4 4 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.17 abc 32.88 MiB 0.01 6336 -1 -1 1 0.02 -1 -1 33668 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25220 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 4 4 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.17 abc 32.71 MiB 0.01 6364 -1 -1 1 0.02 -1 -1 33492 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24956 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 4 4 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.18 abc 32.73 MiB 0.01 6256 -1 -1 1 0.02 -1 -1 33512 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25424 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 4 4 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.17 abc 32.98 MiB 0.01 6260 -1 -1 1 0.02 -1 -1 33772 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25464 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 5 5 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.18 abc 32.88 MiB 0.01 6412 -1 -1 1 0.02 -1 -1 33668 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25296 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 5 5 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.18 abc 33.12 MiB 0.01 6408 -1 -1 1 0.02 -1 -1 33920 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25368 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 5 5 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.18 abc 32.99 MiB 0.02 6328 -1 -1 1 0.03 -1 -1 33784 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25256 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 6 6 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.18 abc 33.01 MiB 0.01 6552 -1 -1 1 0.03 -1 -1 33804 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25420 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 6 6 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.23 abc 33.07 MiB 0.01 6316 -1 -1 1 0.03 -1 -1 33864 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25700 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 7 7 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.21 abc 33.18 MiB 0.01 6660 -1 -1 1 0.03 -1 -1 33980 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25616 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 8 8 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.20 abc 33.16 MiB 0.01 6684 -1 -1 1 0.03 -1 -1 33960 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25460 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 9 9 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.20 abc 33.20 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 33992 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25824 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 13 13 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.22 abc 33.08 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 33872 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 26304 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 17 17 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.16 abc 32.83 MiB 0.01 6332 -1 -1 1 0.02 -1 -1 33616 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25044 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.17 abc 32.63 MiB 0.01 6204 -1 -1 1 0.02 -1 -1 33412 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24828 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 2 2 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.16 abc 32.81 MiB 0.01 6196 -1 -1 1 0.02 -1 -1 33596 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24956 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 2 2 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.17 abc 32.74 MiB 0.01 6208 -1 -1 1 0.02 -1 -1 33528 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24980 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 2 2 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.17 abc 32.86 MiB 0.01 6184 -1 -1 1 0.02 -1 -1 33648 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25008 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 3 3 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.17 abc 32.93 MiB 0.01 6264 -1 -1 1 0.02 -1 -1 33724 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25080 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 3 3 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.17 abc 32.68 MiB 0.01 6188 -1 -1 1 0.02 -1 -1 33464 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25116 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 3 3 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.17 abc 32.82 MiB 0.01 6500 -1 -1 1 0.02 -1 -1 33604 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 24972 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 3 3 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.17 abc 32.80 MiB 0.01 6224 -1 -1 1 0.02 -1 -1 33592 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25076 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 4 4 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.17 abc 32.67 MiB 0.01 6456 -1 -1 1 0.02 -1 -1 33452 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25084 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 4 4 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.17 abc 33.00 MiB 0.01 6216 -1 -1 1 0.02 -1 -1 33792 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25108 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 4 4 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.17 abc 32.91 MiB 0.01 6496 -1 -1 1 0.02 -1 -1 33704 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25248 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 4 4 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.18 abc 33.13 MiB 0.01 6208 -1 -1 1 0.02 -1 -1 33928 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25188 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 5 5 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.18 abc 32.87 MiB 0.01 6280 -1 -1 1 0.02 -1 -1 33656 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25228 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 5 5 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.17 abc 33.13 MiB 0.01 6248 -1 -1 1 0.02 -1 -1 33928 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25064 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 5 5 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.18 abc 32.97 MiB 0.01 6308 -1 -1 1 0.02 -1 -1 33760 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25376 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 6 6 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.18 abc 33.16 MiB 0.01 6564 -1 -1 1 0.02 -1 -1 33952 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25136 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 6 6 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.18 abc 33.00 MiB 0.01 6360 -1 -1 1 0.03 -1 -1 33788 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25504 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 7 7 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.18 abc 33.12 MiB 0.02 6640 -1 -1 1 0.03 -1 -1 33916 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25240 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 8 8 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.19 abc 33.03 MiB 0.02 6472 -1 -1 1 0.03 -1 -1 33820 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25240 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 9 9 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.20 abc 33.23 MiB 0.02 6732 -1 -1 1 0.03 -1 -1 34028 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25672 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 13 13 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.22 abc 33.23 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 34032 -1 -1 -1 -1 -1 -1 exited with return code 134 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 25912 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 17 17 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.01 vpr 63.07 MiB 0.01 6220 -1 -1 1 0.02 -1 -1 33580 -1 -1 2 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64584 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 24.6 MiB 0.01 56 223 48 166 9 63.1 MiB 0.00 0.00 0.770048 -7.07635 -0.770048 0.770048 0.88 4.4709e-05 3.9022e-05 0.00098015 0.000869806 20 108 3 6.64007e+06 25116 394039. 1363.46 0.53 0.00305549 0.00278375 20530 87850 -1 105 4 20 20 1195 324 0.649848 0.649848 -7.37773 -0.649848 0 0 477104. 1650.88 0.21 0.00 0.08 -1 -1 0.21 0.00179294 0.00166283 10 -1 5 5 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 3.18 vpr 63.11 MiB 0.01 6148 -1 -1 1 0.02 -1 -1 33448 -1 -1 2 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64620 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 24.7 MiB 0.01 47 376 71 284 21 63.1 MiB 0.00 0.00 0.792048 -9.53833 -0.792048 0.792048 0.92 6.5672e-05 5.9123e-05 0.00152974 0.00137185 20 146 13 6.64007e+06 25116 394039. 1363.46 0.56 0.00496404 0.00438659 20530 87850 -1 137 13 66 66 4050 1285 1.03245 1.03245 -11.1696 -1.03245 0 0 477104. 1650.88 0.21 0.01 0.09 -1 -1 0.21 0.00292897 0.00260144 13 -1 6 6 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 4.31 vpr 63.09 MiB 0.01 6220 -1 -1 1 0.02 -1 -1 33452 -1 -1 2 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64608 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 24.7 MiB 0.01 63 419 85 325 9 63.1 MiB 0.01 0.00 0.803048 -11.7113 -0.803048 0.803048 0.93 8.1511e-05 7.3727e-05 0.00168218 0.0015172 22 240 11 6.64007e+06 25116 420624. 1455.45 1.63 0.015154 0.0126563 20818 92861 -1 206 17 156 156 7240 2327 0.923248 0.923248 -13.6688 -0.923248 0 0 500653. 1732.36 0.24 0.01 0.09 -1 -1 0.24 0.00402613 0.00350417 16 -1 7 7 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 3.42 vpr 62.84 MiB 0.01 6144 -1 -1 1 0.02 -1 -1 33404 -1 -1 3 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64348 13 7 48 49 1 32 23 17 17 289 -1 unnamed_device 24.4 MiB 0.02 113 727 127 584 16 62.8 MiB 0.01 0.00 0.825048 -14.4294 -0.825048 0.825048 0.91 8.9108e-05 8.058e-05 0.00243738 0.00220449 26 251 10 6.64007e+06 37674 477104. 1650.88 0.71 0.0128257 0.0109201 21682 110474 -1 240 10 97 97 6879 1834 0.803048 0.803048 -15.3843 -0.803048 0 0 585099. 2024.56 0.26 0.01 0.11 -1 -1 0.26 0.00332747 0.00299228 19 -1 8 8 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 3.45 vpr 63.33 MiB 0.01 6272 -1 -1 1 0.02 -1 -1 33448 -1 -1 3 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64852 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 24.8 MiB 0.02 103 938 201 719 18 63.3 MiB 0.01 0.00 1.18536 -16.7279 -1.18536 1.18536 0.93 9.6372e-05 8.665e-05 0.00288071 0.00260335 26 293 17 6.64007e+06 37674 477104. 1650.88 0.71 0.015755 0.0133649 21682 110474 -1 254 12 171 171 8418 2727 1.03045 1.03045 -18.2904 -1.03045 0 0 585099. 2024.56 0.24 0.01 0.11 -1 -1 0.24 0.00371645 0.00331048 22 -1 9 9 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 3.42 vpr 63.30 MiB 0.01 6228 -1 -1 1 0.02 -1 -1 33664 -1 -1 4 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64820 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 24.7 MiB 0.02 174 858 170 673 15 63.3 MiB 0.01 0.00 1.19636 -20.4292 -1.19636 1.19636 0.93 0.000119387 0.00010893 0.00264547 0.0024143 26 363 14 6.64007e+06 50232 477104. 1650.88 0.71 0.016684 0.0142464 21682 110474 -1 334 15 138 138 7880 2232 0.921248 0.921248 -21.4136 -0.921248 0 0 585099. 2024.56 0.24 0.01 0.09 -1 -1 0.24 0.00454086 0.00399754 25 -1 10 10 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 4.84 vpr 63.36 MiB 0.01 6288 -1 -1 1 0.02 -1 -1 33340 -1 -1 4 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64884 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 24.8 MiB 0.03 216 1021 207 713 101 63.4 MiB 0.01 0.00 1.20736 -23.977 -1.20736 1.20736 0.90 0.000122368 0.000110904 0.00296234 0.00269754 26 453 11 6.64007e+06 50232 477104. 1650.88 2.13 0.0355347 0.0297649 21682 110474 -1 431 11 161 161 12008 3035 0.976248 0.976248 -25.6494 -0.976248 0 0 585099. 2024.56 0.25 0.01 0.11 -1 -1 0.25 0.00445206 0.00395443 28 -1 11 11 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 5.19 vpr 63.23 MiB 0.01 6424 -1 -1 1 0.02 -1 -1 33420 -1 -1 5 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64748 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 24.7 MiB 0.03 214 1623 338 1262 23 63.2 MiB 0.01 0.00 1.21836 -25.661 -1.21836 1.21836 0.88 0.000132002 0.00011897 0.004141 0.00376597 28 428 8 6.64007e+06 62790 500653. 1732.36 2.46 0.0282587 0.0240303 21970 115934 -1 413 6 121 121 8229 2288 0.867048 0.867048 -26.2925 -0.867048 0 0 612192. 2118.31 0.26 0.01 0.11 -1 -1 0.26 0.00375172 0.00341034 31 -1 12 12 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 4.29 vpr 63.21 MiB 0.01 6336 -1 -1 1 0.02 -1 -1 33348 -1 -1 5 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64724 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 24.7 MiB 0.03 261 1536 299 1189 48 63.2 MiB 0.01 0.00 1.22936 -29.0547 -1.22936 1.22936 0.90 0.000149104 0.000135351 0.00402643 0.00366104 22 564 12 6.64007e+06 62790 420624. 1455.45 1.60 0.0269977 0.0229688 20818 92861 -1 503 9 205 205 13600 3834 0.998248 0.998248 -31.0303 -0.998248 0 0 500653. 1732.36 0.21 0.01 0.08 -1 -1 0.21 0.00441116 0.00394672 34 -1 13 13 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 4.67 vpr 63.48 MiB 0.01 6164 -1 -1 1 0.02 -1 -1 33440 -1 -1 5 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65000 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 24.9 MiB 0.02 303 1618 294 1276 48 63.5 MiB 0.01 0.00 1.24036 -31.9481 -1.24036 1.24036 0.94 0.000153207 0.000138652 0.004112 0.00374957 26 657 15 6.64007e+06 62790 477104. 1650.88 1.92 0.0418531 0.0354291 21682 110474 -1 632 14 312 312 23908 5843 1.09645 1.09645 -35.1845 -1.09645 0 0 585099. 2024.56 0.24 0.02 0.10 -1 -1 0.24 0.00585893 0.00516795 37 -1 14 14 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 3.53 vpr 63.55 MiB 0.01 6316 -1 -1 1 0.02 -1 -1 33504 -1 -1 6 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65080 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 24.9 MiB 0.02 324 2231 466 1582 183 63.6 MiB 0.02 0.00 1.25136 -34.9134 -1.25136 1.25136 0.95 0.000167333 0.000152515 0.0052887 0.00483893 26 693 15 6.64007e+06 75348 477104. 1650.88 0.73 0.0254323 0.0220131 21682 110474 -1 628 11 195 195 13214 3449 1.06545 1.06545 -36.3397 -1.06545 0 0 585099. 2024.56 0.26 0.01 0.11 -1 -1 0.26 0.00545302 0.00487878 40 -1 15 15 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 3.70 vpr 63.59 MiB 0.01 6476 -1 -1 1 0.02 -1 -1 33892 -1 -1 6 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65120 29 15 104 105 1 73 50 17 17 289 -1 unnamed_device 25.3 MiB 0.02 332 2626 448 2137 41 63.6 MiB 0.02 0.00 1.26236 -36.933 -1.26236 1.26236 0.94 0.000193607 0.000176705 0.00588391 0.00537135 32 698 17 6.64007e+06 75348 554710. 1919.41 0.85 0.0277568 0.0239755 22834 132086 -1 675 16 376 376 26032 6628 0.998248 0.998248 -39.156 -0.998248 0 0 701300. 2426.64 0.30 0.02 0.12 -1 -1 0.30 0.00719807 0.00635794 43 -1 16 16 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 4.63 vpr 63.33 MiB 0.01 6232 -1 -1 1 0.02 -1 -1 34000 -1 -1 7 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64848 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 25.0 MiB 0.02 430 4134 883 2967 284 63.3 MiB 0.03 0.00 1.62267 -42.2033 -1.62267 1.62267 0.93 0.000189362 0.000172497 0.00864699 0.00788076 26 828 14 6.64007e+06 87906 477104. 1650.88 1.85 0.0566623 0.048472 21682 110474 -1 815 14 347 347 24515 6115 1.19345 1.19345 -44.9658 -1.19345 0 0 585099. 2024.56 0.26 0.02 0.11 -1 -1 0.26 0.00694294 0.00615243 46 -1 17 17 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 3.44 vpr 63.68 MiB 0.01 6384 -1 -1 1 0.02 -1 -1 33732 -1 -1 7 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65208 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 25.3 MiB 0.03 400 5507 1293 3991 223 63.7 MiB 0.04 0.00 1.63367 -44.5064 -1.63367 1.63367 0.89 0.0001971 0.0001778 0.0110831 0.0100984 26 860 24 6.64007e+06 87906 477104. 1650.88 0.74 0.0362001 0.0314403 21682 110474 -1 778 14 336 336 24186 6285 1.20445 1.20445 -47.1452 -1.20445 0 0 585099. 2024.56 0.25 0.02 0.10 -1 -1 0.25 0.00681078 0.00603341 49 -1 18 18 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 4.38 vpr 63.67 MiB 0.01 6472 -1 -1 1 0.03 -1 -1 33820 -1 -1 8 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65200 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 25.2 MiB 0.03 467 4001 820 3044 137 63.7 MiB 0.03 0.00 1.65567 -51.2944 -1.65567 1.65567 0.91 0.000220469 0.000201189 0.00797115 0.00728467 26 1031 13 6.64007e+06 100464 477104. 1650.88 1.59 0.0583748 0.0501088 21682 110474 -1 920 14 399 399 32346 7633 1.17145 1.17145 -51.7587 -1.17145 0 0 585099. 2024.56 0.26 0.02 0.11 -1 -1 0.26 0.00810206 0.00717777 55 -1 20 20 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 3.73 vpr 63.84 MiB 0.01 6304 -1 -1 1 0.03 -1 -1 33984 -1 -1 8 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65372 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 25.3 MiB 0.03 551 4966 1056 3737 173 63.8 MiB 0.03 0.00 1.67767 -59.443 -1.67767 1.67767 0.90 0.000244726 0.000221369 0.00976864 0.00892511 32 1113 15 6.64007e+06 100464 554710. 1919.41 0.85 0.0396035 0.0346295 22834 132086 -1 998 16 489 489 36790 8730 1.19345 1.19345 -57.8876 -1.19345 0 0 701300. 2426.64 0.28 0.03 0.13 -1 -1 0.28 0.00947379 0.00835677 61 -1 22 22 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 3.70 vpr 63.77 MiB 0.01 6584 -1 -1 1 0.03 -1 -1 33928 -1 -1 9 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65296 45 23 160 161 1 114 77 17 17 289 -1 unnamed_device 25.3 MiB 0.03 584 6760 1544 5011 205 63.8 MiB 0.04 0.00 1.69967 -63.9386 -1.69967 1.69967 0.92 0.000286836 0.000263466 0.0125466 0.0114894 28 1207 14 6.64007e+06 113022 500653. 1732.36 0.81 0.0440336 0.038696 21970 115934 -1 1103 13 524 524 42823 10298 1.21545 1.21545 -63.0116 -1.21545 0 0 612192. 2118.31 0.26 0.03 0.11 -1 -1 0.26 0.00938127 0.00833936 67 -1 24 24 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 4.87 vpr 63.84 MiB 0.01 6532 -1 -1 1 0.03 -1 -1 33988 -1 -1 10 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65376 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 25.4 MiB 0.03 754 12711 4339 7261 1111 63.8 MiB 0.06 0.00 2.07098 -75.5183 -2.07098 2.07098 0.94 0.00029178 0.000265804 0.0214227 0.0195411 30 1323 12 6.64007e+06 125580 526063. 1820.29 1.95 0.0868691 0.0759516 22546 126617 -1 1203 12 478 478 35824 8550 1.17025 1.17025 -69.9637 -1.17025 0 0 666494. 2306.21 0.28 0.03 0.13 -1 -1 0.28 0.00878316 0.00787116 73 -1 26 26 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 3.75 vpr 63.60 MiB 0.01 6636 -1 -1 1 0.03 -1 -1 33612 -1 -1 11 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65124 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 25.3 MiB 0.04 781 12973 3128 9205 640 63.6 MiB 0.06 0.00 2.11498 -88.6474 -2.11498 2.11498 0.89 0.000349457 0.000318236 0.0196779 0.0179586 28 1628 18 6.64007e+06 138138 500653. 1732.36 0.87 0.0608205 0.0535902 21970 115934 -1 1457 13 643 643 56575 13066 1.31365 1.31365 -83.018 -1.31365 0 0 612192. 2118.31 0.28 0.03 0.12 -1 -1 0.28 0.0110266 0.0098475 85 -1 30 30 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 5.96 vpr 64.11 MiB 0.02 6448 -1 -1 1 0.03 -1 -1 33744 -1 -1 13 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65652 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 25.7 MiB 0.04 1016 17401 7183 10118 100 64.1 MiB 0.09 0.00 2.50829 -106.175 -2.50829 2.50829 0.94 0.000385264 0.000351777 0.0269237 0.0246451 32 1842 16 6.64007e+06 163254 554710. 1919.41 2.94 0.133846 0.117253 22834 132086 -1 1697 11 665 665 61013 13904 1.30025 1.30025 -94.3297 -1.30025 0 0 701300. 2426.64 0.30 0.03 0.13 -1 -1 0.30 0.0113887 0.0102465 97 -1 34 34 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 4.14 vpr 65.15 MiB 0.02 6684 -1 -1 1 0.03 -1 -1 34044 -1 -1 19 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66712 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 26.4 MiB 0.06 1599 34969 13035 19621 2313 65.1 MiB 0.18 0.00 3.38291 -183.275 -3.38291 3.38291 0.92 0.000563992 0.000517736 0.0460072 0.0421305 30 2868 28 6.64007e+06 238602 526063. 1820.29 1.00 0.123948 0.11089 22546 126617 -1 2549 16 956 956 78864 17504 1.53945 1.53945 -150.446 -1.53945 0 0 666494. 2306.21 0.29 0.05 0.13 -1 -1 0.29 0.0199647 0.0178547 145 -1 50 50 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 4.51 vpr 65.69 MiB 0.02 7060 -1 -1 1 0.04 -1 -1 34296 -1 -1 25 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67264 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 26.8 MiB 0.10 1778 56234 21152 30749 4333 65.7 MiB 0.29 0.01 4.25753 -263.048 -4.25753 4.25753 0.92 0.000755887 0.000690492 0.0674384 0.0618433 32 3683 17 6.64007e+06 313950 554710. 1919.41 1.06 0.159393 0.143854 22834 132086 -1 3189 20 1386 1386 123576 28973 1.73225 1.73225 -198.225 -1.73225 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0314703 0.0283717 193 -1 66 66 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.17 vpr 62.39 MiB 0.01 6340 -1 -1 1 0.02 -1 -1 33324 -1 -1 2 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63892 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 23.9 MiB 0.01 53 208 48 152 8 62.4 MiB 0.00 0.00 0.770048 -7.13557 -0.770048 0.770048 0.92 5.1123e-05 4.5385e-05 0.00103219 0.000921968 20 105 7 6.65987e+06 25356 394039. 1363.46 0.54 0.00342455 0.00307341 20530 87850 -1 101 4 27 27 1478 468 0.649848 0.649848 -7.25753 -0.649848 0 0 477104. 1650.88 0.20 0.00 0.09 -1 -1 0.20 0.00189617 0.00176584 10 -1 5 5 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 3.17 vpr 62.43 MiB 0.01 6284 -1 -1 1 0.02 -1 -1 33420 -1 -1 2 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63932 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 24.0 MiB 0.01 48 356 62 287 7 62.4 MiB 0.01 0.00 0.792048 -9.65853 -0.792048 0.792048 0.92 6.427e-05 5.7611e-05 0.00150894 0.00135852 20 137 8 6.65987e+06 25356 394039. 1363.46 0.55 0.00422509 0.0037915 20530 87850 -1 133 7 56 56 3615 1157 0.901248 0.901248 -10.5436 -0.901248 0 0 477104. 1650.88 0.20 0.01 0.09 -1 -1 0.20 0.00237381 0.00215871 13 -1 6 6 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 4.25 vpr 62.78 MiB 0.01 6172 -1 -1 1 0.02 -1 -1 33400 -1 -1 2 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64284 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 24.3 MiB 0.01 67 419 80 331 8 62.8 MiB 0.01 0.00 0.803048 -11.78 -0.803048 0.803048 0.92 7.275e-05 6.5734e-05 0.0017297 0.00157043 22 232 11 6.65987e+06 25356 420624. 1455.45 1.61 0.0146338 0.0122211 20818 92861 -1 208 8 97 97 4971 1586 0.912248 0.912248 -13.6328 -0.912248 0 0 500653. 1732.36 0.23 0.01 0.09 -1 -1 0.23 0.00299225 0.00271506 16 -1 7 7 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 3.10 vpr 62.79 MiB 0.01 6400 -1 -1 1 0.02 -1 -1 33616 -1 -1 3 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64300 13 7 48 49 1 32 23 17 17 289 -1 unnamed_device 24.3 MiB 0.01 108 791 160 615 16 62.8 MiB 0.01 0.00 0.825048 -14.3383 -0.825048 0.825048 0.90 7.9073e-05 7.0629e-05 0.00246799 0.00221887 20 314 13 6.65987e+06 38034 394039. 1363.46 0.54 0.00644843 0.00570267 20530 87850 -1 289 16 188 188 12207 3416 1.09259 1.09259 -17.4602 -1.09259 0 0 477104. 1650.88 0.21 0.01 0.08 -1 -1 0.21 0.00412369 0.00360601 19 -1 8 8 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 3.41 vpr 62.91 MiB 0.01 6308 -1 -1 1 0.02 -1 -1 33512 -1 -1 3 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64420 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 24.4 MiB 0.01 103 938 195 725 18 62.9 MiB 0.01 0.00 1.18536 -16.8309 -1.18536 1.18536 0.91 9.937e-05 8.9456e-05 0.002902 0.00263199 26 303 10 6.65987e+06 38034 477104. 1650.88 0.73 0.0150671 0.0128553 21682 110474 -1 257 11 179 179 9420 3126 1.08545 1.08545 -19.6524 -1.08545 0 0 585099. 2024.56 0.24 0.01 0.11 -1 -1 0.24 0.00384554 0.00342566 22 -1 9 9 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 5.17 vpr 63.18 MiB 0.01 6320 -1 -1 1 0.02 -1 -1 33636 -1 -1 4 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64692 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 24.6 MiB 0.01 116 1180 259 878 43 63.2 MiB 0.01 0.00 1.19636 -19.5997 -1.19636 1.19636 0.94 0.000113727 0.000103237 0.00341435 0.00310136 28 339 18 6.65987e+06 50712 500653. 1732.36 2.43 0.0259578 0.0217222 21970 115934 -1 308 9 141 141 7647 2510 0.987248 0.987248 -22.1644 -0.987248 0 0 612192. 2118.31 0.27 0.01 0.11 -1 -1 0.27 0.00373752 0.00334311 25 -1 10 10 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 4.84 vpr 62.87 MiB 0.01 6412 -1 -1 1 0.02 -1 -1 33664 -1 -1 4 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64376 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 24.3 MiB 0.01 185 1229 259 944 26 62.9 MiB 0.01 0.00 1.20736 -22.7097 -1.20736 1.20736 0.90 0.000127831 0.000116734 0.00346603 0.00313436 24 419 13 6.65987e+06 50712 448715. 1552.65 2.18 0.0293941 0.0247227 21394 104001 -1 399 11 156 156 10769 2977 0.964189 0.964189 -24.6144 -0.964189 0 0 554710. 1919.41 0.23 0.01 0.10 -1 -1 0.23 0.00440556 0.00393628 28 -1 11 11 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 4.67 vpr 63.20 MiB 0.01 6196 -1 -1 1 0.02 -1 -1 33400 -1 -1 5 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64712 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 24.7 MiB 0.01 281 1379 251 1074 54 63.2 MiB 0.01 0.00 1.21836 -28.8147 -1.21836 1.21836 0.93 0.000132917 0.000120373 0.00362474 0.0033004 26 543 11 6.65987e+06 63390 477104. 1650.88 1.94 0.0277601 0.0234171 21682 110474 -1 501 11 209 209 17027 4135 0.876989 0.876989 -28.6537 -0.876989 0 0 585099. 2024.56 0.24 0.01 0.11 -1 -1 0.24 0.00485247 0.00432434 31 -1 12 12 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 4.36 vpr 63.21 MiB 0.01 6092 -1 -1 1 0.02 -1 -1 33724 -1 -1 5 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64724 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 24.7 MiB 0.01 256 1536 305 1173 58 63.2 MiB 0.01 0.00 1.22936 -28.8616 -1.22936 1.22936 0.94 0.000149568 0.000135722 0.00402834 0.00366452 22 571 11 6.65987e+06 63390 420624. 1455.45 1.65 0.0260329 0.0221989 20818 92861 -1 482 12 178 178 11148 3229 0.998248 0.998248 -31.0303 -0.998248 0 0 500653. 1732.36 0.24 0.01 0.09 -1 -1 0.24 0.00538751 0.00478475 34 -1 13 13 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 3.45 vpr 63.18 MiB 0.01 6316 -1 -1 1 0.02 -1 -1 33728 -1 -1 5 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64700 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 24.6 MiB 0.01 293 2293 540 1476 277 63.2 MiB 0.02 0.00 1.24036 -31.9104 -1.24036 1.24036 0.90 0.00016874 0.000155672 0.00548827 0.00501163 26 625 12 6.65987e+06 63390 477104. 1650.88 0.74 0.024164 0.0208711 21682 110474 -1 601 14 267 267 20803 5353 1.11845 1.11845 -35.1942 -1.11845 0 0 585099. 2024.56 0.24 0.02 0.11 -1 -1 0.24 0.00619609 0.00548674 37 -1 14 14 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 5.27 vpr 63.34 MiB 0.01 6304 -1 -1 1 0.02 -1 -1 33640 -1 -1 6 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64864 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 24.8 MiB 0.02 378 2231 478 1580 173 63.3 MiB 0.02 0.00 1.25136 -36.02 -1.25136 1.25136 0.91 0.00017183 0.000156063 0.00521937 0.0047468 30 680 15 6.65987e+06 76068 526063. 1820.29 2.52 0.0494045 0.0418845 22546 126617 -1 614 13 203 203 14128 3529 0.823989 0.823989 -33.7491 -0.823989 0 0 666494. 2306.21 0.28 0.02 0.12 -1 -1 0.28 0.00615368 0.00547452 40 -1 15 15 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 3.49 vpr 63.06 MiB 0.01 6236 -1 -1 1 0.02 -1 -1 33928 -1 -1 6 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64572 29 15 104 105 1 73 50 17 17 289 -1 unnamed_device 24.7 MiB 0.02 331 2442 412 1993 37 63.1 MiB 0.02 0.00 1.26236 -36.7774 -1.26236 1.26236 0.91 0.000181502 0.000165596 0.00558282 0.00510543 26 783 13 6.65987e+06 76068 477104. 1650.88 0.76 0.0267785 0.0232424 21682 110474 -1 715 14 363 363 28210 7353 1.05325 1.05325 -40.1788 -1.05325 0 0 585099. 2024.56 0.25 0.02 0.11 -1 -1 0.25 0.00680228 0.00601202 43 -1 16 16 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 3.47 vpr 63.25 MiB 0.01 6484 -1 -1 1 0.02 -1 -1 33808 -1 -1 7 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64768 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 24.9 MiB 0.02 435 3216 703 2283 230 63.2 MiB 0.02 0.00 1.62267 -42.4629 -1.62267 1.62267 0.91 0.000190058 0.000173346 0.00686968 0.00625575 26 851 10 6.65987e+06 88746 477104. 1650.88 0.74 0.0280972 0.0244307 21682 110474 -1 829 12 343 343 26674 6590 1.05019 1.05019 -43.2316 -1.05019 0 0 585099. 2024.56 0.25 0.02 0.11 -1 -1 0.25 0.00631787 0.00563301 46 -1 17 17 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 3.56 vpr 63.36 MiB 0.01 6496 -1 -1 1 0.02 -1 -1 33608 -1 -1 7 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64880 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 24.8 MiB 0.02 427 6052 1399 4413 240 63.4 MiB 0.04 0.00 1.63367 -46.0647 -1.63367 1.63367 0.92 0.000225428 0.000189698 0.0125015 0.0113944 26 902 14 6.65987e+06 88746 477104. 1650.88 0.79 0.0374154 0.0326808 21682 110474 -1 822 13 373 373 27589 7047 1.14945 1.14945 -45.9142 -1.14945 0 0 585099. 2024.56 0.26 0.02 0.11 -1 -1 0.26 0.00719575 0.00638616 49 -1 18 18 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 4.34 vpr 63.18 MiB 0.01 6520 -1 -1 1 0.02 -1 -1 34044 -1 -1 8 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64700 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 24.7 MiB 0.02 445 3874 792 2975 107 63.2 MiB 0.03 0.00 1.65567 -51.2172 -1.65567 1.65567 0.90 0.000228726 0.000209479 0.0079759 0.00729437 26 983 13 6.65987e+06 101424 477104. 1650.88 1.61 0.0575769 0.049474 21682 110474 -1 935 13 368 368 29996 7415 1.10625 1.10625 -52.2583 -1.10625 0 0 585099. 2024.56 0.25 0.02 0.11 -1 -1 0.25 0.00775718 0.00688314 55 -1 20 20 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 5.03 vpr 63.43 MiB 0.01 6404 -1 -1 1 0.03 -1 -1 33992 -1 -1 8 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64948 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 24.9 MiB 0.02 520 5398 1104 4106 188 63.4 MiB 0.03 0.00 1.67767 -57.8445 -1.67767 1.67767 0.89 0.00025264 0.000231052 0.0105566 0.00965907 26 1156 23 6.65987e+06 101424 477104. 1650.88 2.25 0.0774911 0.0667842 21682 110474 -1 1019 13 421 421 34928 8790 1.01905 1.01905 -54.8627 -1.01905 0 0 585099. 2024.56 0.26 0.03 0.11 -1 -1 0.26 0.0085354 0.00762679 61 -1 22 22 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 4.54 vpr 63.69 MiB 0.01 6276 -1 -1 1 0.03 -1 -1 34020 -1 -1 9 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65216 45 23 160 161 1 114 77 17 17 289 -1 unnamed_device 25.1 MiB 0.02 581 5945 1255 4536 154 63.7 MiB 0.04 0.00 1.69967 -64.3369 -1.69967 1.69967 0.89 0.000265639 0.000241985 0.0107435 0.00982013 26 1257 18 6.65987e+06 114102 477104. 1650.88 1.76 0.0748246 0.064671 21682 110474 -1 1222 13 508 508 48485 11816 1.15145 1.15145 -63.4346 -1.15145 0 0 585099. 2024.56 0.26 0.03 0.11 -1 -1 0.26 0.00928718 0.0083224 67 -1 24 24 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 4.77 vpr 63.68 MiB 0.01 6560 -1 -1 1 0.03 -1 -1 33700 -1 -1 10 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65208 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 25.2 MiB 0.03 752 12711 4741 7378 592 63.7 MiB 0.07 0.00 2.07098 -75.6352 -2.07098 2.07098 0.91 0.000292921 0.000266523 0.0214519 0.0195542 30 1337 16 6.65987e+06 126780 526063. 1820.29 1.87 0.087295 0.0762409 22546 126617 -1 1249 9 444 444 33278 7973 1.10625 1.10625 -68.1023 -1.10625 0 0 666494. 2306.21 0.29 0.02 0.12 -1 -1 0.29 0.00792107 0.00715039 73 -1 26 26 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 3.83 vpr 63.91 MiB 0.02 6488 -1 -1 1 0.03 -1 -1 33624 -1 -1 11 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65448 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 25.6 MiB 0.03 728 12751 3280 8876 595 63.9 MiB 0.06 0.00 2.11498 -85.6644 -2.11498 2.11498 0.92 0.00033439 0.000304753 0.0208259 0.0190436 32 1529 17 6.65987e+06 139458 554710. 1919.41 0.89 0.0603992 0.0533619 22834 132086 -1 1356 12 552 552 45804 11141 1.22525 1.22525 -78.1974 -1.22525 0 0 701300. 2426.64 0.29 0.03 0.13 -1 -1 0.29 0.0105695 0.00947916 85 -1 30 30 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 5.50 vpr 63.95 MiB 0.01 6708 -1 -1 1 0.03 -1 -1 33796 -1 -1 13 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65488 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 25.5 MiB 0.03 1003 17401 6715 9666 1020 64.0 MiB 0.08 0.00 2.50829 -107.27 -2.50829 2.50829 0.89 0.000344151 0.000312739 0.024857 0.0226233 30 1829 19 6.65987e+06 164814 526063. 1820.29 2.66 0.103186 0.0903274 22546 126617 -1 1640 10 577 577 52893 12186 1.19105 1.19105 -91.4283 -1.19105 0 0 666494. 2306.21 0.29 0.03 0.11 -1 -1 0.29 0.010664 0.00956719 97 -1 34 34 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 6.10 vpr 64.96 MiB 0.02 6684 -1 -1 1 0.03 -1 -1 34096 -1 -1 19 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66524 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 26.2 MiB 0.04 1557 34969 14570 20249 150 65.0 MiB 0.17 0.00 3.38291 -180.939 -3.38291 3.38291 0.92 0.000579275 0.000531858 0.0458838 0.0420167 32 2870 18 6.65987e+06 240882 554710. 1919.41 2.96 0.166531 0.148207 22834 132086 -1 2682 13 1006 1006 99871 23012 1.52845 1.52845 -148.883 -1.52845 0 0 701300. 2426.64 0.31 0.05 0.13 -1 -1 0.31 0.0180741 0.0163634 145 -1 50 50 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 6.47 vpr 65.55 MiB 0.02 7084 -1 -1 1 0.04 -1 -1 34136 -1 -1 25 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67124 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 27.0 MiB 0.06 1798 56234 20467 31758 4009 65.6 MiB 0.28 0.01 4.25753 -264.232 -4.25753 4.25753 0.93 0.000784109 0.000719633 0.0653853 0.0598632 32 3841 19 6.65987e+06 316950 554710. 1919.41 3.15 0.236976 0.212841 22834 132086 -1 3380 15 1402 1402 139818 32687 1.69925 1.69925 -198.529 -1.69925 0 0 701300. 2426.64 0.30 0.08 0.14 -1 -1 0.30 0.0268841 0.0244536 193 -1 66 66 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_003bits.v common 3.80 vpr 63.67 MiB 0.01 6212 -1 -1 1 0.02 -1 -1 33688 -1 -1 1 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65196 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 25.2 MiB 0.02 26 246 57 175 14 63.7 MiB 0.00 0.00 0.712895 -7.69589 -0.712895 0.712895 0.95 5.1081e-05 4.5482e-05 0.00127347 0.00113403 18 87 3 6.95648e+06 14475.7 376052. 1301.22 1.05 0.0125222 0.0103029 22882 88689 -1 82 3 14 14 578 201 0.712895 0.712895 -8.10503 -0.712895 0 0 470940. 1629.55 0.20 0.00 0.09 -1 -1 0.20 0.00178895 0.00167971 5 -1 5 5 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_004bits.v common 4.08 vpr 63.54 MiB 0.01 6128 -1 -1 1 0.02 -1 -1 33428 -1 -1 1 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65064 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 25.1 MiB 0.02 38 285 68 210 7 63.5 MiB 0.00 0.00 0.62144 -9.16928 -0.62144 0.62144 0.95 6.2903e-05 5.6229e-05 0.00136687 0.00123309 20 128 9 6.95648e+06 14475.7 414966. 1435.87 1.32 0.0224851 0.018407 23170 95770 -1 108 4 29 29 1573 491 0.74674 0.74674 -9.88017 -0.74674 0 0 503264. 1741.40 0.21 0.01 0.10 -1 -1 0.21 0.00227007 0.00211061 7 -1 6 6 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_005bits.v common 4.05 vpr 63.61 MiB 0.01 6332 -1 -1 1 0.02 -1 -1 33656 -1 -1 1 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65140 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 25.1 MiB 0.03 125 64 27 35 2 63.6 MiB 0.00 0.00 1.08519 -14.5503 -1.08519 1.08519 0.96 8.0934e-05 7.1401e-05 0.00060055 0.000551965 20 203 6 6.95648e+06 14475.7 414966. 1435.87 1.26 0.00559126 0.00488422 23170 95770 -1 198 6 33 33 2672 728 1.08519 1.08519 -14.5423 -1.08519 0 0 503264. 1741.40 0.22 0.01 0.09 -1 -1 0.22 0.00254749 0.00231937 8 -1 7 7 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_006bits.v common 4.26 vpr 63.85 MiB 0.01 6328 -1 -1 1 0.02 -1 -1 33600 -1 -1 2 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65384 13 7 48 49 1 25 22 17 17 289 -1 unnamed_device 25.3 MiB 0.04 66 622 147 459 16 63.9 MiB 0.01 0.00 0.830632 -14.7061 -0.830632 0.830632 0.96 8.8495e-05 7.9059e-05 0.00226702 0.00203068 18 251 26 6.95648e+06 28951.4 376052. 1301.22 1.51 0.0207927 0.0173184 22882 88689 -1 187 10 108 108 5704 1896 0.834592 0.834592 -16.5365 -0.834592 0 0 470940. 1629.55 0.19 0.01 0.09 -1 -1 0.19 0.00307285 0.00272968 10 -1 8 8 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_007bits.v common 5.08 vpr 63.94 MiB 0.01 6200 -1 -1 1 0.02 -1 -1 33488 -1 -1 2 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65472 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 25.4 MiB 0.04 82 673 149 507 17 63.9 MiB 0.01 0.00 0.830632 -16.8934 -0.830632 0.830632 0.97 9.8928e-05 8.9341e-05 0.00232423 0.00210969 26 247 10 6.95648e+06 28951.4 503264. 1741.40 2.21 0.027737 0.0230468 24322 120374 -1 231 9 134 134 8426 2714 0.927732 0.927732 -18.5311 -0.927732 0 0 618332. 2139.56 0.27 0.01 0.12 -1 -1 0.27 0.00355445 0.00319941 11 -1 9 9 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_008bits.v common 4.65 vpr 63.99 MiB 0.01 6424 -1 -1 1 0.02 -1 -1 33664 -1 -1 2 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65524 17 9 62 63 1 37 28 17 17 289 -1 unnamed_device 25.4 MiB 0.03 161 700 166 470 64 64.0 MiB 0.01 0.00 0.841632 -20.1922 -0.841632 0.841632 0.97 9.4145e-05 8.5497e-05 0.00223296 0.00202913 22 404 13 6.95648e+06 28951.4 443629. 1535.05 1.88 0.0313868 0.0261089 23458 102101 -1 378 16 199 199 16574 4115 1.20033 1.20033 -24.385 -1.20033 0 0 531479. 1839.03 0.23 0.02 0.10 -1 -1 0.23 0.00521935 0.00457752 13 -1 10 10 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_009bits.v common 4.48 vpr 64.06 MiB 0.01 6460 -1 -1 1 0.02 -1 -1 33488 -1 -1 2 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65600 19 10 69 70 1 44 31 17 17 289 -1 unnamed_device 25.5 MiB 0.04 117 847 190 628 29 64.1 MiB 0.01 0.00 0.874632 -21.9508 -0.874632 0.874632 0.95 0.000126287 0.000114144 0.00281113 0.00256103 20 368 14 6.95648e+06 28951.4 414966. 1435.87 1.70 0.0176449 0.0150784 23170 95770 -1 343 13 216 216 13837 4861 1.21133 1.21133 -27.3541 -1.21133 0 0 503264. 1741.40 0.22 0.01 0.10 -1 -1 0.22 0.00485519 0.00430862 14 -1 11 11 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_010bits.v common 4.73 vpr 64.15 MiB 0.01 6316 -1 -1 1 0.02 -1 -1 33616 -1 -1 2 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65688 21 11 76 77 1 49 34 17 17 289 -1 unnamed_device 25.5 MiB 0.04 316 859 151 690 18 64.1 MiB 0.01 0.00 0.896632 -29.5922 -0.896632 0.896632 0.94 0.000132578 0.000120055 0.00275297 0.00252102 30 647 18 6.95648e+06 28951.4 556674. 1926.21 1.81 0.0356196 0.029909 25186 138497 -1 604 13 282 282 30933 6493 1.09223 1.09223 -33.1784 -1.09223 0 0 706193. 2443.58 0.30 0.02 0.13 -1 -1 0.30 0.00541184 0.00475558 16 -1 12 12 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_011bits.v common 3.74 vpr 64.09 MiB 0.01 6452 -1 -1 1 0.02 -1 -1 33340 -1 -1 3 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65628 23 12 83 84 1 55 38 17 17 289 -1 unnamed_device 25.6 MiB 0.04 198 1298 273 1012 13 64.1 MiB 0.01 0.00 0.907632 -28.5647 -0.907632 0.907632 0.95 0.000145879 0.000128114 0.00377111 0.00341489 28 553 14 6.95648e+06 43427 531479. 1839.03 0.87 0.0220073 0.0188607 24610 126494 -1 471 15 302 302 21085 6088 1.20033 1.20033 -33.2543 -1.20033 0 0 648988. 2245.63 0.28 0.02 0.13 -1 -1 0.28 0.00623994 0.00547085 17 -1 13 13 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_012bits.v common 4.12 vpr 64.12 MiB 0.01 6356 -1 -1 1 0.02 -1 -1 33492 -1 -1 3 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65664 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 25.5 MiB 0.03 368 1441 285 1041 115 64.1 MiB 0.01 0.00 0.918632 -34.4491 -0.918632 0.918632 0.92 0.000154413 0.000139868 0.00398977 0.00362386 34 762 15 6.95648e+06 43427 618332. 2139.56 1.28 0.0327136 0.0276262 25762 151098 -1 724 14 288 288 32371 6998 1.26633 1.26633 -40.9449 -1.26633 0 0 787024. 2723.27 0.32 0.02 0.13 -1 -1 0.32 0.00587989 0.00522501 19 -1 14 14 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_013bits.v common 6.67 vpr 64.07 MiB 0.01 6364 -1 -1 1 0.02 -1 -1 33676 -1 -1 3 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65604 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 25.7 MiB 0.04 180 3971 1477 2086 408 64.1 MiB 0.03 0.00 0.951632 -32.5735 -0.951632 0.951632 0.93 0.000178927 0.000162799 0.00957581 0.00870643 36 604 37 6.95648e+06 43427 648988. 2245.63 3.70 0.0633626 0.0537408 26050 158493 -1 461 21 446 446 29099 8461 1.20033 1.20033 -33.884 -1.20033 0 0 828058. 2865.25 0.32 0.02 0.16 -1 -1 0.32 0.00828465 0.00722782 20 -1 15 15 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_014bits.v common 4.62 vpr 64.18 MiB 0.01 6472 -1 -1 1 0.02 -1 -1 33752 -1 -1 3 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65724 29 15 104 105 1 72 47 17 17 289 -1 unnamed_device 25.8 MiB 0.05 227 4331 1745 2561 25 64.2 MiB 0.03 0.00 0.962632 -36.3287 -0.962632 0.962632 0.91 0.000172884 0.000155569 0.00900761 0.00814775 36 762 35 6.95648e+06 43427 648988. 2245.63 1.63 0.043564 0.0374094 26050 158493 -1 621 38 650 650 81985 22744 1.30553 1.30553 -42.6186 -1.30553 0 0 828058. 2865.25 0.34 0.05 0.16 -1 -1 0.34 0.0139723 0.0121159 22 -1 16 16 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_015bits.v common 3.88 vpr 64.14 MiB 0.01 6504 -1 -1 1 0.02 -1 -1 33836 -1 -1 3 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65676 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 25.8 MiB 0.05 237 4098 1359 2534 205 64.1 MiB 0.03 0.00 1.33396 -39.0993 -1.33396 1.33396 0.94 0.000183667 0.00016647 0.00944646 0.00861097 32 891 25 6.95648e+06 43427 586450. 2029.24 0.90 0.0346613 0.030108 25474 144626 -1 684 14 437 437 36016 10344 1.18923 1.18923 -45.8745 -1.18923 0 0 744469. 2576.02 0.32 0.02 0.14 -1 -1 0.32 0.00743225 0.00661767 24 -1 17 17 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_016bits.v common 4.10 vpr 64.30 MiB 0.01 6500 -1 -1 1 0.03 -1 -1 33836 -1 -1 4 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65844 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 25.9 MiB 0.07 235 5052 1687 3325 40 64.3 MiB 0.03 0.00 1.34496 -41.9783 -1.34496 1.34496 0.94 0.000200447 0.000181771 0.0110017 0.0100343 28 1004 40 6.95648e+06 57902.7 531479. 1839.03 1.14 0.0473338 0.0411126 24610 126494 -1 741 17 514 514 40763 11957 1.51013 1.51013 -52.5916 -1.51013 0 0 648988. 2245.63 0.27 0.03 0.12 -1 -1 0.27 0.0087238 0.00773022 25 -1 18 18 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_018bits.v common 6.12 vpr 64.41 MiB 0.01 6536 -1 -1 1 0.03 -1 -1 33932 -1 -1 4 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65960 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 25.9 MiB 0.09 349 5325 1277 4015 33 64.4 MiB 0.03 0.00 1.36696 -48.5746 -1.36696 1.36696 0.97 0.000224102 0.00020473 0.0113793 0.010386 36 925 23 6.95648e+06 57902.7 648988. 2245.63 3.00 0.0805042 0.0689188 26050 158493 -1 769 18 464 464 37459 9272 1.21603 1.21603 -53.3054 -1.21603 0 0 828058. 2865.25 0.32 0.03 0.15 -1 -1 0.32 0.0100386 0.00884313 28 -1 20 20 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_020bits.v common 4.56 vpr 64.31 MiB 0.01 6352 -1 -1 1 0.03 -1 -1 33988 -1 -1 4 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65852 41 21 146 147 1 96 66 17 17 289 -1 unnamed_device 25.9 MiB 0.09 643 8312 2604 4958 750 64.3 MiB 0.05 0.00 1.38896 -61.9638 -1.38896 1.38896 0.98 0.000243532 0.000220963 0.0174424 0.0158489 34 1256 38 6.95648e+06 57902.7 618332. 2139.56 1.41 0.0761846 0.0660573 25762 151098 -1 1140 21 505 505 56093 11328 1.24423 1.24423 -65.9007 -1.24423 0 0 787024. 2723.27 0.32 0.03 0.15 -1 -1 0.32 0.0118487 0.0104379 31 -1 22 22 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_022bits.v common 6.89 vpr 64.58 MiB 0.01 6488 -1 -1 1 0.03 -1 -1 33860 -1 -1 5 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66132 45 23 160 161 1 107 73 17 17 289 -1 unnamed_device 26.1 MiB 0.10 465 7673 2070 5539 64 64.6 MiB 0.04 0.00 1.41096 -62.1793 -1.41096 1.41096 0.93 0.000262495 0.000240141 0.0142919 0.0129921 36 1143 23 6.95648e+06 72378.4 648988. 2245.63 3.79 0.0904554 0.0782133 26050 158493 -1 966 18 531 531 53203 12038 1.24903 1.24903 -65.2937 -1.24903 0 0 828058. 2865.25 0.33 0.03 0.15 -1 -1 0.33 0.0109944 0.00974254 34 -1 24 24 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_024bits.v common 4.62 vpr 64.48 MiB 0.01 6616 -1 -1 1 0.03 -1 -1 33860 -1 -1 5 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66032 49 25 174 175 1 119 79 17 17 289 -1 unnamed_device 26.0 MiB 0.10 477 11571 2984 8400 187 64.5 MiB 0.06 0.00 1.43296 -69.314 -1.43296 1.43296 0.94 0.000274857 0.00025047 0.0199111 0.018104 34 1341 25 6.95648e+06 72378.4 618332. 2139.56 1.48 0.0687088 0.0601759 25762 151098 -1 1106 18 625 625 55935 13824 1.41833 1.41833 -76.7982 -1.41833 0 0 787024. 2723.27 0.31 0.03 0.15 -1 -1 0.31 0.0125413 0.0111255 37 -1 26 26 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_028bits.v common 5.01 vpr 64.73 MiB 0.01 6368 -1 -1 1 0.03 -1 -1 33396 -1 -1 6 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66288 57 29 202 203 1 142 92 17 17 289 -1 unnamed_device 26.2 MiB 0.07 829 13133 5464 7620 49 64.7 MiB 0.06 0.00 1.47696 -85.3607 -1.47696 1.47696 0.99 0.000350135 0.000319471 0.0225319 0.0205519 36 1777 18 6.95648e+06 86854.1 648988. 2245.63 1.83 0.0967358 0.0849856 26050 158493 -1 1479 16 780 780 77652 17019 1.43083 1.43083 -88.687 -1.43083 0 0 828058. 2865.25 0.32 0.04 0.15 -1 -1 0.32 0.0128478 0.0114925 43 -1 30 30 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_032bits.v common 5.77 vpr 64.87 MiB 0.02 6652 -1 -1 1 0.03 -1 -1 33956 -1 -1 7 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66424 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 26.4 MiB 0.08 924 18136 7790 10245 101 64.9 MiB 0.09 0.00 1.88129 -101.424 -1.88129 1.88129 0.99 0.000381048 0.000346805 0.0298207 0.0272395 38 2012 48 6.95648e+06 101330 678818. 2348.85 2.51 0.135637 0.119153 26626 170182 -1 1722 18 870 870 108310 22027 1.52153 1.52153 -105.869 -1.52153 0 0 902133. 3121.57 0.33 0.05 0.16 -1 -1 0.33 0.0159375 0.0141512 49 -1 34 34 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_048bits.v common 5.82 vpr 65.69 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 33936 -1 -1 10 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67268 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 27.1 MiB 0.12 1600 30324 11596 17665 1063 65.7 MiB 0.14 0.00 2.41762 -168.85 -2.41762 2.41762 0.95 0.000552178 0.00050583 0.0435523 0.039911 46 2878 20 6.95648e+06 144757 828058. 2865.25 2.39 0.159045 0.141806 28066 200906 -1 2547 16 1110 1110 112719 24077 1.67833 1.67833 -165.325 -1.67833 0 0 1.01997e+06 3529.29 0.40 0.06 0.20 -1 -1 0.40 0.0215501 0.0194857 73 -1 50 50 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_064bits.v common 7.78 vpr 66.33 MiB 0.02 7092 -1 -1 1 0.04 -1 -1 34244 -1 -1 13 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67924 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 27.6 MiB 0.12 1899 46107 19065 26925 117 66.3 MiB 0.21 0.01 2.95395 -232.912 -2.95395 2.95395 0.96 0.00074664 0.000681018 0.0581521 0.0532987 58 3515 50 6.95648e+06 188184 997811. 3452.63 3.97 0.2707 0.243157 30370 251734 -1 3084 19 1524 1524 169319 35177 1.65673 1.65673 -200.632 -1.65673 0 0 1.25153e+06 4330.55 0.52 0.09 0.26 -1 -1 0.52 0.0332691 0.0301495 97 -1 66 66 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_003bits.v common 3.75 vpr 63.57 MiB 0.01 6312 -1 -1 1 0.02 -1 -1 33664 -1 -1 1 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65100 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 25.1 MiB 0.01 26 246 57 176 13 63.6 MiB 0.00 0.00 0.62144 -7.32583 -0.62144 0.62144 0.97 5.3771e-05 4.7922e-05 0.00128635 0.00113558 18 87 6 6.99608e+06 14715.7 376052. 1301.22 1.04 0.012344 0.0101275 22882 88689 -1 82 3 15 15 611 205 0.709292 0.709292 -7.73498 -0.709292 0 0 470940. 1629.55 0.21 0.00 0.09 -1 -1 0.21 0.00188364 0.00176169 5 -1 5 5 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_004bits.v common 3.87 vpr 63.55 MiB 0.01 6452 -1 -1 1 0.02 -1 -1 33376 -1 -1 1 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65072 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 25.1 MiB 0.01 42 285 67 217 1 63.5 MiB 0.00 0.00 0.601892 -8.86437 -0.601892 0.601892 0.91 5.3486e-05 4.7447e-05 0.00116844 0.00104059 18 113 11 6.99608e+06 14715.7 376052. 1301.22 1.28 0.0151884 0.0124618 22882 88689 -1 119 5 39 39 1883 714 0.709292 0.709292 -10.2606 -0.709292 0 0 470940. 1629.55 0.19 0.01 0.08 -1 -1 0.19 0.00222663 0.0020391 7 -1 6 6 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_005bits.v common 3.16 vpr 63.61 MiB 0.01 6304 -1 -1 1 0.02 -1 -1 33420 -1 -1 1 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65136 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 25.2 MiB 0.01 126 64 25 37 2 63.6 MiB 0.00 0.00 1.04807 -14.6563 -1.04807 1.04807 0.96 9.1815e-05 8.1268e-05 0.000596635 0.000547147 16 227 10 6.99608e+06 14715.7 332735. 1151.33 0.51 0.0042033 0.00376936 22306 75877 -1 209 6 47 47 4132 1005 1.12264 1.12264 -15.0613 -1.12264 0 0 414966. 1435.87 0.18 0.01 0.08 -1 -1 0.18 0.00265991 0.00243891 8 -1 7 7 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_006bits.v common 4.06 vpr 63.82 MiB 0.01 6420 -1 -1 1 0.02 -1 -1 33616 -1 -1 2 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65352 13 7 48 49 1 26 22 17 17 289 -1 unnamed_device 25.3 MiB 0.01 107 592 125 462 5 63.8 MiB 0.01 0.00 0.802432 -14.938 -0.802432 0.802432 0.95 8.6894e-05 7.8083e-05 0.00215717 0.00195296 18 267 16 6.99608e+06 29431.4 376052. 1301.22 1.35 0.0106288 0.00915561 22882 88689 -1 255 12 114 114 9655 2668 0.99734 0.99734 -17.1989 -0.99734 0 0 470940. 1629.55 0.19 0.01 0.09 -1 -1 0.19 0.00375061 0.00334937 10 -1 8 8 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_007bits.v common 5.33 vpr 63.77 MiB 0.01 6168 -1 -1 1 0.02 -1 -1 33456 -1 -1 2 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65304 15 8 55 56 1 31 25 17 17 289 -1 unnamed_device 25.2 MiB 0.01 87 673 163 490 20 63.8 MiB 0.01 0.00 0.813432 -16.9635 -0.813432 0.813432 0.94 0.000109372 0.000100072 0.00233589 0.00211367 28 230 14 6.99608e+06 29431.4 531479. 1839.03 2.54 0.0230815 0.0193425 24610 126494 -1 215 11 104 104 5084 1847 0.918679 0.918679 -18.8969 -0.918679 0 0 648988. 2245.63 0.26 0.01 0.13 -1 -1 0.26 0.00383091 0.00342376 11 -1 9 9 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_008bits.v common 4.88 vpr 63.77 MiB 0.01 6328 -1 -1 1 0.02 -1 -1 33736 -1 -1 2 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65300 17 9 62 63 1 36 28 17 17 289 -1 unnamed_device 25.3 MiB 0.01 89 868 259 545 64 63.8 MiB 0.01 0.00 0.835432 -19.044 -0.835432 0.835432 0.95 9.932e-05 8.9676e-05 0.00259516 0.00234705 26 315 19 6.99608e+06 29431.4 503264. 1741.40 2.07 0.0269362 0.0225407 24322 120374 -1 243 11 144 144 7930 2604 0.960732 0.960732 -19.8674 -0.960732 0 0 618332. 2139.56 0.27 0.01 0.12 -1 -1 0.27 0.00424109 0.00377799 13 -1 10 10 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_009bits.v common 4.52 vpr 63.81 MiB 0.01 6420 -1 -1 1 0.02 -1 -1 33712 -1 -1 2 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65344 19 10 69 70 1 43 31 17 17 289 -1 unnamed_device 25.3 MiB 0.01 117 799 181 587 31 63.8 MiB 0.01 0.00 0.846432 -21.5131 -0.846432 0.846432 0.94 0.000119418 0.000108189 0.0026288 0.00238087 20 339 11 6.99608e+06 29431.4 414966. 1435.87 1.77 0.0182183 0.0155316 23170 95770 -1 329 13 221 221 11947 4337 1.06598 1.06598 -26.0845 -1.06598 0 0 503264. 1741.40 0.22 0.01 0.10 -1 -1 0.22 0.00479389 0.00424972 14 -1 11 11 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_010bits.v common 4.17 vpr 63.77 MiB 0.01 6164 -1 -1 1 0.02 -1 -1 33560 -1 -1 2 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65300 21 11 76 77 1 48 34 17 17 289 -1 unnamed_device 25.2 MiB 0.02 206 1079 232 829 18 63.8 MiB 0.01 0.00 0.87204 -26.5938 -0.87204 0.87204 0.93 0.000139207 0.000125953 0.00328075 0.00299342 34 503 13 6.99608e+06 29431.4 618332. 2139.56 1.28 0.0297234 0.0250891 25762 151098 -1 457 15 218 218 17955 4154 1.09703 1.09703 -28.5074 -1.09703 0 0 787024. 2723.27 0.31 0.02 0.15 -1 -1 0.31 0.00538721 0.00473281 16 -1 12 12 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_011bits.v common 3.75 vpr 63.89 MiB 0.01 6248 -1 -1 1 0.02 -1 -1 33308 -1 -1 3 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65420 23 12 83 84 1 54 38 17 17 289 -1 unnamed_device 25.3 MiB 0.02 245 1298 255 1031 12 63.9 MiB 0.01 0.00 0.879432 -28.9525 -0.879432 0.879432 0.95 0.000150239 0.000136949 0.00368077 0.00335725 30 588 16 6.99608e+06 44147 556674. 1926.21 0.85 0.0219059 0.0187506 25186 138497 -1 516 17 295 295 25389 5702 0.962679 0.962679 -29.9404 -0.962679 0 0 706193. 2443.58 0.28 0.02 0.13 -1 -1 0.28 0.00611463 0.00535097 17 -1 13 13 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_012bits.v common 4.32 vpr 63.96 MiB 0.02 6292 -1 -1 1 0.02 -1 -1 33448 -1 -1 3 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65492 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 25.4 MiB 0.02 340 1441 266 1110 65 64.0 MiB 0.01 0.00 0.901432 -33.1271 -0.901432 0.901432 0.94 0.000151233 0.000137192 0.0038658 0.00353894 34 734 16 6.99608e+06 44147 618332. 2139.56 1.36 0.0363128 0.0307779 25762 151098 -1 672 17 298 298 30828 6689 0.995679 0.995679 -36.3908 -0.995679 0 0 787024. 2723.27 0.32 0.02 0.15 -1 -1 0.32 0.00700294 0.00614027 19 -1 14 14 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_013bits.v common 6.88 vpr 63.98 MiB 0.01 6272 -1 -1 1 0.02 -1 -1 33620 -1 -1 3 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65516 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 25.4 MiB 0.02 178 3971 1404 1915 652 64.0 MiB 0.02 0.00 0.912432 -32.1713 -0.912432 0.912432 0.94 0.00016624 0.000149948 0.00939053 0.00853297 38 565 19 6.99608e+06 44147 678818. 2348.85 3.83 0.0670098 0.0569515 26626 170182 -1 440 15 344 344 20536 6158 1.32563 1.32563 -33.3365 -1.32563 0 0 902133. 3121.57 0.37 0.02 0.17 -1 -1 0.37 0.00681655 0.0060376 20 -1 15 15 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_014bits.v common 6.69 vpr 63.79 MiB 0.01 6520 -1 -1 1 0.02 -1 -1 33948 -1 -1 3 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65320 29 15 104 105 1 72 47 17 17 289 -1 unnamed_device 25.2 MiB 0.02 198 4331 1522 2096 713 63.8 MiB 0.03 0.00 0.934432 -35.1872 -0.934432 0.934432 0.96 0.000171057 0.000154699 0.00981475 0.00891004 36 654 34 6.99608e+06 44147 648988. 2245.63 3.70 0.064249 0.0547523 26050 158493 -1 548 20 467 467 34898 9736 1.26633 1.26633 -40.0321 -1.26633 0 0 828058. 2865.25 0.34 0.03 0.16 -1 -1 0.34 0.00842789 0.00737766 22 -1 16 16 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_015bits.v common 5.27 vpr 64.14 MiB 0.01 6428 -1 -1 1 0.02 -1 -1 33800 -1 -1 3 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65684 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 25.8 MiB 0.02 227 4098 1263 2618 217 64.1 MiB 0.03 0.00 1.30576 -38.4531 -1.30576 1.30576 0.95 0.000197113 0.000180571 0.00939772 0.00857117 30 876 26 6.99608e+06 44147 556674. 1926.21 2.33 0.0649107 0.0556513 25186 138497 -1 637 15 451 451 29328 8604 1.18303 1.18303 -44.5858 -1.18303 0 0 706193. 2443.58 0.30 0.02 0.13 -1 -1 0.30 0.00769128 0.00682018 24 -1 17 17 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_016bits.v common 5.97 vpr 64.09 MiB 0.01 6360 -1 -1 1 0.02 -1 -1 33648 -1 -1 4 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65624 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 25.7 MiB 0.02 362 3012 639 2325 48 64.1 MiB 0.02 0.00 1.31676 -43.8553 -1.31676 1.31676 0.96 0.000199985 0.00018122 0.0069032 0.00631369 34 996 25 6.99608e+06 58862.7 618332. 2139.56 3.00 0.0682852 0.0581572 25762 151098 -1 835 13 435 435 43110 9791 1.29733 1.29733 -50.4756 -1.29733 0 0 787024. 2723.27 0.32 0.02 0.15 -1 -1 0.32 0.00740151 0.00658773 25 -1 18 18 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_018bits.v common 4.48 vpr 64.04 MiB 0.01 6408 -1 -1 1 0.03 -1 -1 33576 -1 -1 4 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65576 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 25.6 MiB 0.02 307 4623 989 3596 38 64.0 MiB 0.03 0.00 1.33876 -48.0718 -1.33876 1.33876 0.95 0.000231384 0.0002111 0.0100568 0.00919626 34 892 21 6.99608e+06 58862.7 618332. 2139.56 1.53 0.0591213 0.0509398 25762 151098 -1 743 18 453 453 54600 17208 1.25333 1.25333 -52.5295 -1.25333 0 0 787024. 2723.27 0.30 0.03 0.15 -1 -1 0.30 0.00966733 0.00850864 28 -1 20 20 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_020bits.v common 6.03 vpr 64.16 MiB 0.01 6416 -1 -1 1 0.03 -1 -1 33964 -1 -1 4 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65700 41 21 146 147 1 94 66 17 17 289 -1 unnamed_device 25.7 MiB 0.02 643 8179 2647 4716 816 64.2 MiB 0.04 0.00 1.36076 -60.9293 -1.36076 1.36076 0.97 0.000247746 0.000219727 0.0163938 0.0149015 34 1259 14 6.99608e+06 58862.7 618332. 2139.56 3.02 0.0840374 0.0726775 25762 151098 -1 1135 19 484 484 55026 10916 1.28633 1.28633 -65.219 -1.28633 0 0 787024. 2723.27 0.32 0.03 0.15 -1 -1 0.32 0.0108669 0.00958193 31 -1 22 22 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_022bits.v common 5.58 vpr 64.14 MiB 0.01 6292 -1 -1 1 0.03 -1 -1 33980 -1 -1 5 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65676 45 23 160 161 1 106 73 17 17 289 -1 unnamed_device 25.7 MiB 0.03 375 8585 2269 6036 280 64.1 MiB 0.05 0.00 1.38276 -61.0669 -1.38276 1.38276 0.92 0.000252522 0.000228976 0.0157736 0.01435 30 1104 21 6.99608e+06 73578.4 556674. 1926.21 2.63 0.0895564 0.0776405 25186 138497 -1 889 16 515 515 38257 10993 1.42263 1.42263 -67.9213 -1.42263 0 0 706193. 2443.58 0.28 0.03 0.13 -1 -1 0.28 0.0107357 0.00949631 34 -1 24 24 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_024bits.v common 5.88 vpr 64.35 MiB 0.01 6348 -1 -1 1 0.02 -1 -1 33988 -1 -1 5 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65892 49 25 174 175 1 118 79 17 17 289 -1 unnamed_device 25.9 MiB 0.03 470 11571 3015 8364 192 64.3 MiB 0.06 0.00 1.40476 -68.6401 -1.40476 1.40476 0.92 0.000253836 0.00022924 0.0195177 0.0177145 30 1426 29 6.99608e+06 73578.4 556674. 1926.21 3.00 0.0994874 0.0862182 25186 138497 -1 1100 19 636 636 58611 14920 1.40733 1.40733 -76.4389 -1.40733 0 0 706193. 2443.58 0.29 0.03 0.12 -1 -1 0.29 0.0116427 0.0102617 37 -1 26 26 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_028bits.v common 5.10 vpr 64.49 MiB 0.02 6416 -1 -1 1 0.03 -1 -1 33388 -1 -1 6 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66036 57 29 202 203 1 141 92 17 17 289 -1 unnamed_device 25.9 MiB 0.03 983 13754 5168 7361 1225 64.5 MiB 0.07 0.00 1.44876 -89.273 -1.44876 1.44876 0.97 0.000319905 0.000289832 0.0234226 0.0213551 36 1966 24 6.99608e+06 88294.1 648988. 2245.63 1.97 0.0846334 0.0744237 26050 158493 -1 1703 21 737 737 93588 18352 1.40733 1.40733 -95.7329 -1.40733 0 0 828058. 2865.25 0.34 0.05 0.15 -1 -1 0.34 0.0155888 0.0138602 43 -1 30 30 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_032bits.v common 7.40 vpr 64.58 MiB 0.02 6680 -1 -1 1 0.03 -1 -1 33680 -1 -1 7 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66132 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 26.2 MiB 0.04 938 18136 7666 10324 146 64.6 MiB 0.09 0.00 1.85309 -100.228 -1.85309 1.85309 0.96 0.000392039 0.000358177 0.0298154 0.027257 42 1817 22 6.99608e+06 103010 744469. 2576.02 4.19 0.160161 0.139936 27202 183097 -1 1568 15 722 722 69332 15432 1.43833 1.43833 -99.5694 -1.43833 0 0 949917. 3286.91 0.39 0.04 0.18 -1 -1 0.39 0.0141564 0.0127067 49 -1 34 34 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_048bits.v common 5.50 vpr 65.57 MiB 0.02 6804 -1 -1 1 0.03 -1 -1 33888 -1 -1 10 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67140 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 27.0 MiB 0.06 1600 30324 10676 17928 1720 65.6 MiB 0.14 0.00 2.38942 -168.824 -2.38942 2.38942 0.93 0.000521855 0.00047729 0.0424954 0.0388885 44 2966 18 6.99608e+06 147157 787024. 2723.27 2.14 0.144347 0.128648 27778 195446 -1 2595 17 1040 1040 106871 21889 1.48273 1.48273 -157.19 -1.48273 0 0 997811. 3452.63 0.39 0.06 0.19 -1 -1 0.39 0.0226762 0.0205133 73 -1 50 50 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_064bits.v common 9.99 vpr 66.21 MiB 0.02 6988 -1 -1 1 0.04 -1 -1 33908 -1 -1 13 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67796 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 27.5 MiB 0.07 1882 46107 19193 26799 115 66.2 MiB 0.21 0.01 2.92575 -230.221 -2.92575 2.92575 0.95 0.000729309 0.00066795 0.0580233 0.0531496 58 3296 34 6.99608e+06 191304 997811. 3452.63 6.29 0.316033 0.282702 30370 251734 -1 2999 17 1311 1311 131174 27568 1.78203 1.78203 -207.312 -1.78203 0 0 1.25153e+06 4330.55 0.51 0.08 0.25 -1 -1 0.51 0.0310362 0.0282374 97 -1 66 66 0 0 - fixed_k6_frac_N8_22nm.xml adder_003bits.v common 3.22 vpr 63.00 MiB 0.01 6156 -1 -1 1 0.06 -1 -1 35560 -1 -1 1 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64516 7 4 21 25 1 11 12 17 17 289 -1 unnamed_device 24.6 MiB 0.01 33 272 66 196 10 63.0 MiB 0.00 0.00 0.62144 -7.45301 -0.62144 0.62144 0.93 4.7472e-05 4.1796e-05 0.00130424 0.00114134 18 91 5 6.79088e+06 13472 376052. 1301.22 0.54 0.00354982 0.00319881 22222 88205 -1 103 13 53 53 3060 1078 0.87204 0.87204 -8.56281 -0.87204 0 0 470940. 1629.55 0.19 0.01 0.09 -1 -1 0.19 0.00266329 0.00237767 6 4 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_004bits.v common 4.47 vpr 63.05 MiB 0.01 6292 -1 -1 2 0.06 -1 -1 36260 -1 -1 1 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64568 9 5 28 33 1 16 15 17 17 289 -1 unnamed_device 24.6 MiB 0.01 38 321 80 225 16 63.1 MiB 0.00 0.00 0.883748 -10.0404 -0.883748 0.883748 0.92 6.4223e-05 5.7261e-05 0.00137309 0.00123747 26 113 8 6.79088e+06 13472 503264. 1741.40 1.71 0.0166728 0.0137111 23662 119890 -1 130 7 44 44 2386 718 0.883748 0.883748 -11.0965 -0.883748 0 0 618332. 2139.56 0.25 0.01 0.12 -1 -1 0.25 0.00244806 0.00222894 8 6 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_005bits.v common 3.23 vpr 62.95 MiB 0.01 6288 -1 -1 2 0.06 -1 -1 35668 -1 -1 2 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64460 11 6 34 40 1 23 19 17 17 289 -1 unnamed_device 24.5 MiB 0.01 171 94 40 54 0 62.9 MiB 0.00 0.00 1.02368 -16.5872 -1.02368 1.02368 0.93 7.9071e-05 7.0726e-05 0.00064143 0.000590125 18 270 10 6.79088e+06 26944 376052. 1301.22 0.53 0.0040681 0.00362498 22222 88205 -1 285 8 86 96 7378 1861 1.02368 1.02368 -17.6836 -1.02368 0 0 470940. 1629.55 0.20 0.01 0.09 -1 -1 0.20 0.00297028 0.00267167 10 7 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_006bits.v common 3.42 vpr 63.09 MiB 0.01 6256 -1 -1 3 0.06 -1 -1 35988 -1 -1 2 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64600 13 7 41 48 1 30 22 17 17 289 -1 unnamed_device 24.7 MiB 0.01 78 532 122 389 21 63.1 MiB 0.01 0.00 1.14898 -15.9596 -1.14898 1.14898 0.95 8.5752e-05 7.7e-05 0.00198038 0.00179639 22 238 12 6.79088e+06 26944 443629. 1535.05 0.65 0.0127949 0.0108212 22798 101617 -1 228 7 87 91 5654 1778 1.05944 1.05944 -17.4573 -1.05944 0 0 531479. 1839.03 0.23 0.01 0.10 -1 -1 0.23 0.00294869 0.00268775 11 9 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_007bits.v common 4.83 vpr 63.02 MiB 0.01 6200 -1 -1 3 0.06 -1 -1 35624 -1 -1 2 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64532 15 8 47 55 1 36 25 17 17 289 -1 unnamed_device 24.6 MiB 0.01 107 781 172 592 17 63.0 MiB 0.01 0.00 1.35273 -19.9506 -1.35273 1.35273 0.93 0.000102419 9.127e-05 0.00267954 0.0024272 22 388 19 6.79088e+06 26944 443629. 1535.05 2.05 0.023286 0.0195794 22798 101617 -1 287 8 128 140 8164 2621 1.35273 1.35273 -22.2818 -1.35273 0 0 531479. 1839.03 0.23 0.01 0.10 -1 -1 0.23 0.00367237 0.00334488 13 10 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_008bits.v common 3.63 vpr 62.98 MiB 0.01 6300 -1 -1 3 0.06 -1 -1 35788 -1 -1 2 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64496 17 9 56 65 1 43 28 17 17 289 -1 unnamed_device 24.5 MiB 0.04 115 994 199 767 28 63.0 MiB 0.01 0.00 1.52493 -22.3533 -1.52493 1.52493 0.96 0.000117726 0.000105647 0.00343062 0.00311292 26 423 12 6.79088e+06 26944 503264. 1741.40 0.75 0.0176506 0.0150363 23662 119890 -1 330 10 170 180 9918 3232 1.27433 1.27433 -23.6217 -1.27433 0 0 618332. 2139.56 0.27 0.01 0.12 -1 -1 0.27 0.00443749 0.00398505 16 14 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_009bits.v common 4.71 vpr 63.43 MiB 0.01 6292 -1 -1 4 0.06 -1 -1 35536 -1 -1 3 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64956 19 10 60 70 1 49 32 17 17 289 -1 unnamed_device 24.9 MiB 0.05 196 1232 436 745 51 63.4 MiB 0.01 0.00 1.31348 -26.7556 -1.31348 1.31348 0.94 0.000124493 0.000111952 0.00376208 0.00341456 30 494 12 6.79088e+06 40416 556674. 1926.21 1.79 0.0328371 0.0275615 24526 138013 -1 414 9 173 181 14564 3725 1.1736 1.1736 -26.8517 -1.1736 0 0 706193. 2443.58 0.28 0.01 0.13 -1 -1 0.28 0.00429025 0.00385055 17 13 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_010bits.v common 4.73 vpr 63.32 MiB 0.01 6056 -1 -1 4 0.06 -1 -1 35460 -1 -1 3 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64844 21 11 69 80 1 55 35 17 17 289 -1 unnamed_device 24.8 MiB 0.18 167 1403 308 1078 17 63.3 MiB 0.01 0.00 1.85398 -30.8307 -1.85398 1.85398 0.95 0.000152512 0.000138378 0.00437455 0.00395967 22 636 19 6.79088e+06 40416 443629. 1535.05 1.76 0.0325839 0.027558 22798 101617 -1 499 26 247 301 52635 30633 1.77553 1.77553 -34.6899 -1.77553 0 0 531479. 1839.03 0.22 0.03 0.10 -1 -1 0.22 0.00848782 0.00738311 21 17 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_011bits.v common 5.74 vpr 63.44 MiB 0.01 6152 -1 -1 5 0.07 -1 -1 35580 -1 -1 3 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64960 23 12 73 85 1 60 38 17 17 289 -1 unnamed_device 24.8 MiB 0.08 255 1424 308 1101 15 63.4 MiB 0.01 0.00 1.8114 -35.123 -1.8114 1.8114 0.95 0.000163433 0.000149183 0.00420729 0.00383591 34 627 12 6.79088e+06 40416 618332. 2139.56 2.70 0.0539075 0.0453943 25102 150614 -1 590 11 218 261 21089 5045 1.8114 1.8114 -36.9307 -1.8114 0 0 787024. 2723.27 0.33 0.02 0.15 -1 -1 0.33 0.00555562 0.00498549 20 16 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_012bits.v common 6.02 vpr 63.27 MiB 0.01 6152 -1 -1 5 0.07 -1 -1 35896 -1 -1 3 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64784 25 13 82 95 1 66 41 17 17 289 -1 unnamed_device 24.7 MiB 0.20 315 1721 363 1322 36 63.3 MiB 0.01 0.00 2.11577 -41.2814 -2.11577 2.11577 0.95 0.000179557 0.000163077 0.00508558 0.00463116 34 722 13 6.79088e+06 40416 618332. 2139.56 2.87 0.0483575 0.0410831 25102 150614 -1 685 12 261 302 26706 6169 1.85403 1.85403 -42.0346 -1.85403 0 0 787024. 2723.27 0.32 0.02 0.14 -1 -1 0.32 0.00644387 0.00578283 24 20 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_013bits.v common 6.15 vpr 63.70 MiB 0.01 6240 -1 -1 5 0.07 -1 -1 36044 -1 -1 4 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65224 27 14 91 105 1 72 45 17 17 289 -1 unnamed_device 25.1 MiB 0.32 235 2285 486 1742 57 63.7 MiB 0.02 0.00 2.15497 -43.2975 -2.15497 2.15497 0.96 0.000187483 0.000170465 0.00593734 0.00541395 34 710 15 6.79088e+06 53888 618332. 2139.56 2.86 0.0540965 0.0460033 25102 150614 -1 553 12 262 334 19107 5406 1.81483 1.81483 -42.2354 -1.81483 0 0 787024. 2723.27 0.32 0.02 0.15 -1 -1 0.32 0.00668248 0.00596723 27 24 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_014bits.v common 5.18 vpr 63.36 MiB 0.01 6164 -1 -1 6 0.07 -1 -1 35624 -1 -1 4 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64876 29 15 95 110 1 77 48 17 17 289 -1 unnamed_device 25.0 MiB 0.23 239 3267 703 2442 122 63.4 MiB 0.02 0.00 2.36642 -47.1965 -2.36642 2.36642 0.95 0.000194395 0.000176309 0.00836353 0.00760866 30 731 21 6.79088e+06 53888 556674. 1926.21 2.01 0.0571882 0.048921 24526 138013 -1 541 10 271 314 15952 4903 2.06549 2.06549 -46.056 -2.06549 0 0 706193. 2443.58 0.31 0.02 0.13 -1 -1 0.31 0.00675009 0.00610497 28 23 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_015bits.v common 5.88 vpr 63.67 MiB 0.01 6132 -1 -1 6 0.07 -1 -1 35404 -1 -1 5 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65200 31 16 104 120 1 83 52 17 17 289 -1 unnamed_device 25.3 MiB 0.64 331 4611 1094 3483 34 63.7 MiB 0.03 0.00 2.65628 -53.9613 -2.65628 2.65628 0.93 0.000216062 0.000195749 0.0115408 0.0104841 28 992 32 6.79088e+06 67360 531479. 1839.03 2.37 0.0756737 0.064659 23950 126010 -1 810 15 371 500 32029 8445 2.36648 2.36648 -53.8759 -2.36648 0 0 648988. 2245.63 0.26 0.02 0.12 -1 -1 0.26 0.00826953 0.007369 32 27 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_016bits.v common 4.48 vpr 63.43 MiB 0.01 6248 -1 -1 7 0.07 -1 -1 35988 -1 -1 4 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64956 33 17 108 125 1 88 54 17 17 289 -1 unnamed_device 25.1 MiB 0.60 608 5154 1451 2664 1039 63.4 MiB 0.03 0.00 2.69548 -63.6839 -2.69548 2.69548 0.96 0.000223551 0.000203058 0.0122443 0.0111497 30 1166 35 6.79088e+06 53888 556674. 1926.21 0.93 0.0465961 0.0404923 24526 138013 -1 1040 14 324 396 29623 6626 2.39454 2.39454 -63.6762 -2.39454 0 0 706193. 2443.58 0.29 0.02 0.13 -1 -1 0.29 0.00850595 0.00757582 32 26 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_018bits.v common 5.57 vpr 63.72 MiB 0.01 6396 -1 -1 7 0.08 -1 -1 35912 -1 -1 5 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65252 37 19 127 146 1 100 61 17 17 289 -1 unnamed_device 25.3 MiB 1.12 661 3781 906 2518 357 63.7 MiB 0.03 0.00 3.03567 -75.9544 -3.03567 3.03567 0.95 0.000267149 0.000243861 0.00950899 0.0086982 34 1284 30 6.79088e+06 67360 618332. 2139.56 1.43 0.0671995 0.0579081 25102 150614 -1 1205 10 376 518 39041 8849 2.62057 2.62057 -74.2458 -2.62057 0 0 787024. 2723.27 0.33 0.02 0.15 -1 -1 0.33 0.00834769 0.0075474 37 35 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_020bits.v common 5.43 vpr 63.79 MiB 0.01 6428 -1 -1 8 0.08 -1 -1 35752 -1 -1 6 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65320 41 21 139 160 1 110 68 17 17 289 -1 unnamed_device 25.3 MiB 0.81 560 5864 1353 4034 477 63.8 MiB 0.04 0.00 2.82083 -78.2516 -2.82083 2.82083 0.96 0.000276729 0.000253458 0.01358 0.0124079 34 1357 25 6.79088e+06 80832 618332. 2139.56 1.58 0.0773033 0.0672916 25102 150614 -1 1150 12 405 550 39512 9521 2.60599 2.60599 -79.2746 -2.60599 0 0 787024. 2723.27 0.32 0.02 0.15 -1 -1 0.32 0.00937103 0.0084475 42 37 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_022bits.v common 5.08 vpr 63.93 MiB 0.01 6328 -1 -1 9 0.08 -1 -1 35640 -1 -1 6 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65468 45 23 152 175 1 121 74 17 17 289 -1 unnamed_device 25.4 MiB 1.29 569 6429 1548 4565 316 63.9 MiB 0.04 0.00 3.45087 -87.8964 -3.45087 3.45087 0.91 0.000293452 0.000266907 0.0134365 0.0122496 30 1394 14 6.79088e+06 80832 556674. 1926.21 0.87 0.0478657 0.0420292 24526 138013 -1 1202 9 452 617 33101 8688 3.20027 3.20027 -91.2201 -3.20027 0 0 706193. 2443.58 0.30 0.02 0.13 -1 -1 0.30 0.00902548 0.00819959 45 40 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_024bits.v common 8.64 vpr 63.93 MiB 0.01 6344 -1 -1 10 0.09 -1 -1 35844 -1 -1 6 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65464 49 25 165 190 1 131 80 17 17 289 -1 unnamed_device 25.4 MiB 1.31 490 11088 4620 6440 28 63.9 MiB 0.06 0.00 3.70153 -100.305 -3.70153 3.70153 0.95 0.000319679 0.000288567 0.0220534 0.0200264 38 1320 30 6.79088e+06 80832 678818. 2348.85 4.21 0.12922 0.112824 25966 169698 -1 993 11 491 673 40582 10948 3.40059 3.40059 -93.3223 -3.40059 0 0 902133. 3121.57 0.34 0.03 0.17 -1 -1 0.34 0.0108739 0.00986447 48 43 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_028bits.v common 8.70 vpr 64.11 MiB 0.01 6556 -1 -1 11 0.08 -1 -1 36308 -1 -1 9 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65648 57 29 199 228 1 156 95 17 17 289 -1 unnamed_device 25.7 MiB 2.47 858 13919 3611 9607 701 64.1 MiB 0.07 0.00 4.45687 -136.905 -4.45687 4.45687 0.90 0.000350533 0.000318253 0.0252307 0.0228984 30 1973 31 6.79088e+06 121248 556674. 1926.21 3.33 0.157635 0.13784 24526 138013 -1 1693 13 584 811 66463 15195 3.99143 3.99143 -133.711 -3.99143 0 0 706193. 2443.58 0.28 0.03 0.12 -1 -1 0.28 0.0132363 0.0119229 59 57 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_032bits.v common 10.83 vpr 64.33 MiB 0.02 6448 -1 -1 13 0.10 -1 -1 36072 -1 -1 9 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65872 65 33 224 257 1 176 107 17 17 289 -1 unnamed_device 25.9 MiB 1.59 636 20347 6786 10007 3554 64.3 MiB 0.10 0.00 5.42361 -161.246 -5.42361 5.42361 0.95 0.000426181 0.000387945 0.0368307 0.0335017 40 1557 43 6.79088e+06 121248 706193. 2443.58 6.05 0.249587 0.217981 26254 175826 -1 1306 12 624 804 56626 15767 4.92241 4.92241 -150.904 -4.92241 0 0 926341. 3205.33 0.35 0.04 0.17 -1 -1 0.35 0.0156009 0.0141382 65 62 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_048bits.v common 6.98 vpr 65.22 MiB 0.02 6600 -1 -1 19 0.12 -1 -1 36000 -1 -1 14 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66784 97 49 340 389 1 266 160 17 17 289 -1 unnamed_device 26.4 MiB 1.95 1414 32276 9655 19397 3224 65.2 MiB 0.14 0.00 7.54987 -303.629 -7.54987 7.54987 0.95 0.000620251 0.000563661 0.0503785 0.0458113 34 3175 15 6.79088e+06 188608 618332. 2139.56 1.75 0.150034 0.133859 25102 150614 -1 2906 15 1053 1462 123114 27886 6.95914 6.95914 -294.188 -6.95914 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0251194 0.0227943 100 98 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_064bits.v common 11.46 vpr 65.85 MiB 0.02 6824 -1 -1 26 0.15 -1 -1 36316 -1 -1 19 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67428 129 65 454 519 1 356 213 17 17 289 -1 unnamed_device 27.1 MiB 5.66 1780 46568 16006 26324 4238 65.8 MiB 0.19 0.00 9.37941 -468.754 -9.37941 9.37941 0.95 0.000718859 0.000654508 0.0648786 0.0590813 34 4075 44 6.79088e+06 255968 618332. 2139.56 2.41 0.248669 0.222825 25102 150614 -1 3492 13 1362 1751 124320 30645 8.75291 8.75291 -446.593 -8.75291 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.030907 0.028222 133 132 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_003bits.v common 3.14 vpr 63.33 MiB 0.01 6312 -1 -1 1 0.02 -1 -1 33608 -1 -1 1 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64848 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 24.9 MiB 0.02 29 285 62 205 18 63.3 MiB 0.01 0.00 0.62144 -7.02012 -0.62144 0.62144 0.91 5.1514e-05 4.5752e-05 0.00144079 0.00127488 18 105 10 6.87369e+06 13973.8 376052. 1301.22 0.54 0.00411615 0.00364904 22882 88689 -1 95 3 17 17 922 285 0.74674 0.74674 -8.09412 -0.74674 0 0 470940. 1629.55 0.18 0.00 0.09 -1 -1 0.18 0.00178927 0.00167682 8 -1 5 5 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_004bits.v common 3.24 vpr 63.44 MiB 0.01 6428 -1 -1 1 0.02 -1 -1 33568 -1 -1 2 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64960 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 25.0 MiB 0.04 77 376 88 272 16 63.4 MiB 0.01 0.00 0.789073 -10.1499 -0.789073 0.789073 0.94 6.4696e-05 5.7895e-05 0.00142779 0.00127755 18 171 14 6.87369e+06 27947.7 376052. 1301.22 0.53 0.0048851 0.004309 22882 88689 -1 147 11 70 70 2831 990 0.914373 0.914373 -11.3046 -0.914373 0 0 470940. 1629.55 0.19 0.01 0.09 -1 -1 0.19 0.00285873 0.00255846 10 -1 6 6 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_005bits.v common 3.25 vpr 63.23 MiB 0.01 6308 -1 -1 1 0.02 -1 -1 33568 -1 -1 2 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64744 11 6 41 42 1 27 19 17 17 289 -1 unnamed_device 24.8 MiB 0.05 78 444 92 346 6 63.2 MiB 0.01 0.00 0.811073 -13.1985 -0.811073 0.811073 0.94 9.547e-05 7.1272e-05 0.00174962 0.00155584 18 240 12 6.87369e+06 27947.7 376052. 1301.22 0.55 0.00550006 0.00486386 22882 88689 -1 206 10 105 105 5319 1714 1.06167 1.06167 -15.482 -1.06167 0 0 470940. 1629.55 0.20 0.01 0.09 -1 -1 0.20 0.00290675 0.0025924 12 -1 7 7 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_006bits.v common 4.89 vpr 63.63 MiB 0.01 6252 -1 -1 1 0.02 -1 -1 33444 -1 -1 2 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65160 13 7 48 49 1 33 22 17 17 289 -1 unnamed_device 25.2 MiB 0.05 164 1102 278 658 166 63.6 MiB 0.01 0.00 0.833073 -17.1401 -0.833073 0.833073 0.95 8.671e-05 7.8168e-05 0.00364705 0.00328934 26 351 16 6.87369e+06 27947.7 503264. 1741.40 2.03 0.0204285 0.0171232 24322 120374 -1 343 11 186 186 18457 4349 1.07267 1.07267 -19.5437 -1.07267 0 0 618332. 2139.56 0.25 0.01 0.12 -1 -1 0.25 0.00351275 0.00311367 14 -1 8 8 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_007bits.v common 3.66 vpr 63.59 MiB 0.01 6420 -1 -1 1 0.02 -1 -1 33688 -1 -1 3 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65116 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 25.1 MiB 0.08 117 862 186 627 49 63.6 MiB 0.01 0.00 1.38906 -18.532 -1.38906 1.38906 0.95 0.000100407 9.0634e-05 0.00273605 0.00248204 26 346 25 6.87369e+06 41921.5 503264. 1741.40 0.76 0.0174265 0.0146934 24322 120374 -1 288 12 187 187 11008 3537 1.10367 1.10367 -21.2078 -1.10367 0 0 618332. 2139.56 0.27 0.01 0.12 -1 -1 0.27 0.00393407 0.00348151 17 -1 9 9 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_008bits.v common 5.46 vpr 63.47 MiB 0.01 6236 -1 -1 1 0.02 -1 -1 33644 -1 -1 3 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64996 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 25.0 MiB 0.06 109 1525 373 1057 95 63.5 MiB 0.01 0.00 1.2154 -20.8491 -1.2154 1.2154 0.97 0.000108244 9.8883e-05 0.00427666 0.00387959 30 293 20 6.87369e+06 41921.5 556674. 1926.21 2.54 0.0355673 0.0296296 25186 138497 -1 210 11 172 172 6133 2359 1.08167 1.08167 -22.7239 -1.08167 0 0 706193. 2443.58 0.28 0.01 0.13 -1 -1 0.28 0.00404829 0.00358905 18 -1 10 10 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_009bits.v common 4.47 vpr 63.72 MiB 0.01 6256 -1 -1 1 0.02 -1 -1 33540 -1 -1 3 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65248 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 25.2 MiB 0.06 195 882 180 665 37 63.7 MiB 0.01 0.00 1.2264 -24.8855 -1.2264 1.2264 0.96 0.000138161 0.000126238 0.00274333 0.00250659 26 465 12 6.87369e+06 41921.5 503264. 1741.40 1.59 0.0302112 0.0254031 24322 120374 -1 419 16 249 249 19688 4968 1.07067 1.07067 -27.4458 -1.07067 0 0 618332. 2139.56 0.26 0.02 0.12 -1 -1 0.26 0.00555425 0.00486184 20 -1 11 11 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_010bits.v common 4.61 vpr 63.73 MiB 0.01 6216 -1 -1 1 0.02 -1 -1 33736 -1 -1 3 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65264 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 25.2 MiB 0.06 144 2885 1076 1578 231 63.7 MiB 0.02 0.00 1.2374 -27.0881 -1.2374 1.2374 0.97 0.000136942 0.000123776 0.00744396 0.00673649 26 520 43 6.87369e+06 41921.5 503264. 1741.40 1.69 0.0455658 0.0384381 24322 120374 -1 445 18 292 292 30167 7791 1.22897 1.22897 -32.0191 -1.22897 0 0 618332. 2139.56 0.26 0.02 0.12 -1 -1 0.26 0.00622709 0.0054163 22 -1 12 12 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_011bits.v common 5.63 vpr 63.80 MiB 0.01 6308 -1 -1 1 0.02 -1 -1 33548 -1 -1 4 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65328 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 25.3 MiB 0.06 161 3141 1140 1427 574 63.8 MiB 0.02 0.00 1.2484 -30.254 -1.2484 1.2484 0.98 0.000143082 0.000129182 0.00747344 0.00676493 30 489 15 6.87369e+06 55895.4 556674. 1926.21 2.67 0.0401214 0.0340358 25186 138497 -1 415 15 304 304 21459 5885 1.27297 1.27297 -32.8811 -1.27297 0 0 706193. 2443.58 0.29 0.02 0.13 -1 -1 0.29 0.00587869 0.00517864 24 -1 13 13 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_012bits.v common 3.85 vpr 63.84 MiB 0.01 6284 -1 -1 1 0.02 -1 -1 33644 -1 -1 4 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65368 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 25.3 MiB 0.10 257 1698 288 1343 67 63.8 MiB 0.01 0.00 1.2594 -33.773 -1.2594 1.2594 0.95 0.000156179 0.000141982 0.00442249 0.00403104 30 624 21 6.87369e+06 55895.4 556674. 1926.21 0.85 0.0251418 0.0215169 25186 138497 -1 565 12 253 253 17566 4388 1.29497 1.29497 -39.1934 -1.29497 0 0 706193. 2443.58 0.29 0.02 0.13 -1 -1 0.29 0.00534912 0.00475642 26 -1 14 14 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_013bits.v common 4.82 vpr 63.60 MiB 0.01 6392 -1 -1 1 0.02 -1 -1 33668 -1 -1 4 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65124 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 25.1 MiB 0.07 199 2525 555 1893 77 63.6 MiB 0.02 0.00 1.2704 -35.5781 -1.2704 1.2704 0.92 0.00014041 0.000126323 0.00511038 0.00460585 26 660 12 6.87369e+06 55895.4 503264. 1741.40 2.01 0.0369959 0.0312992 24322 120374 -1 582 16 375 375 25326 7733 1.25097 1.25097 -41.3722 -1.25097 0 0 618332. 2139.56 0.25 0.02 0.11 -1 -1 0.25 0.00645483 0.00561676 28 -1 15 15 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_014bits.v common 6.63 vpr 64.04 MiB 0.01 6312 -1 -1 1 0.02 -1 -1 33968 -1 -1 4 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65580 29 15 104 105 1 74 48 17 17 289 -1 unnamed_device 25.5 MiB 0.11 254 5703 2371 3279 53 64.0 MiB 0.03 0.00 1.2814 -38.5865 -1.2814 1.2814 0.94 9.7322e-05 8.7352e-05 0.0103174 0.00935564 36 702 20 6.87369e+06 55895.4 648988. 2245.63 3.60 0.0608578 0.0518653 26050 158493 -1 568 18 472 472 31841 8530 1.13667 1.13667 -38.7057 -1.13667 0 0 828058. 2865.25 0.32 0.02 0.15 -1 -1 0.32 0.00770017 0.00674658 31 -1 16 16 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_015bits.v common 5.74 vpr 63.83 MiB 0.01 6216 -1 -1 1 0.02 -1 -1 33660 -1 -1 5 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65364 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 25.5 MiB 0.20 339 2768 498 2177 93 63.8 MiB 0.02 0.00 1.65273 -43.0941 -1.65273 1.65273 0.96 0.000194962 0.000177895 0.00617715 0.00564437 30 835 17 6.87369e+06 69869.2 556674. 1926.21 2.67 0.048312 0.0411972 25186 138497 -1 753 11 366 366 26181 6493 1.22267 1.22267 -46.833 -1.22267 0 0 706193. 2443.58 0.28 0.02 0.14 -1 -1 0.28 0.00607182 0.00540608 33 -1 17 17 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_016bits.v common 5.30 vpr 63.94 MiB 0.01 6332 -1 -1 1 0.02 -1 -1 33948 -1 -1 5 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65472 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 25.6 MiB 0.10 294 6191 2575 3554 62 63.9 MiB 0.04 0.00 1.66373 -46.2163 -1.66373 1.66373 0.96 0.00021031 0.000191722 0.0127814 0.0116036 28 784 25 6.87369e+06 69869.2 531479. 1839.03 2.34 0.0715045 0.0611282 24610 126494 -1 656 16 428 428 37045 9877 1.22267 1.22267 -47.9339 -1.22267 0 0 648988. 2245.63 0.26 0.02 0.12 -1 -1 0.26 0.00813031 0.00715189 34 -1 18 18 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_018bits.v common 3.86 vpr 63.86 MiB 0.01 6404 -1 -1 1 0.02 -1 -1 33972 -1 -1 5 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65392 37 19 132 133 1 89 61 17 17 289 -1 unnamed_device 25.5 MiB 0.10 394 3301 624 2568 109 63.9 MiB 0.02 0.00 1.68573 -53.1175 -1.68573 1.68573 0.96 0.000200946 0.000182272 0.00670338 0.0061047 30 911 17 6.87369e+06 69869.2 556674. 1926.21 0.85 0.0326345 0.0283215 25186 138497 -1 785 18 412 412 25547 6746 1.23997 1.23997 -53.6315 -1.23997 0 0 706193. 2443.58 0.29 0.02 0.13 -1 -1 0.29 0.00952428 0.00834799 38 -1 20 20 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_020bits.v common 4.38 vpr 64.02 MiB 0.01 6384 -1 -1 1 0.02 -1 -1 34080 -1 -1 6 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65552 41 21 146 147 1 101 68 17 17 289 -1 unnamed_device 25.6 MiB 0.10 378 8210 2985 4229 996 64.0 MiB 0.04 0.00 1.70773 -58.8485 -1.70773 1.70773 0.93 0.000208773 0.000189716 0.0156952 0.014311 32 1030 21 6.87369e+06 83843 586450. 2029.24 1.34 0.0537248 0.0467921 25474 144626 -1 813 15 509 509 39243 10494 1.21167 1.21167 -58.4197 -1.21167 0 0 744469. 2576.02 0.29 0.03 0.14 -1 -1 0.29 0.00912619 0.00803474 42 -1 22 22 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_022bits.v common 4.56 vpr 64.06 MiB 0.01 6476 -1 -1 1 0.03 -1 -1 33996 -1 -1 6 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65600 45 23 160 161 1 115 74 17 17 289 -1 unnamed_device 25.6 MiB 0.16 726 8754 2873 4502 1379 64.1 MiB 0.05 0.00 1.72973 -73.6047 -1.72973 1.72973 0.96 0.000263661 0.000239796 0.016186 0.014727 34 1447 13 6.87369e+06 83843 618332. 2139.56 1.37 0.0685902 0.0596989 25762 151098 -1 1325 13 528 528 52983 11455 1.18067 1.18067 -70.7274 -1.18067 0 0 787024. 2723.27 0.32 0.03 0.15 -1 -1 0.32 0.0089609 0.00795295 47 -1 24 24 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_024bits.v common 4.52 vpr 64.35 MiB 0.01 6360 -1 -1 1 0.03 -1 -1 33976 -1 -1 7 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65896 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 25.9 MiB 0.10 625 7256 1774 5266 216 64.4 MiB 0.04 0.00 2.11206 -76.8475 -2.11206 2.11206 0.93 0.000298509 0.000273864 0.01326 0.0121315 34 1483 24 6.87369e+06 97816.9 618332. 2139.56 1.45 0.0753698 0.0654615 25762 151098 -1 1269 12 607 607 61231 14407 1.34167 1.34167 -77.3866 -1.34167 0 0 787024. 2723.27 0.32 0.03 0.15 -1 -1 0.32 0.00941673 0.0084171 50 -1 26 26 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_028bits.v common 4.52 vpr 64.37 MiB 0.02 6640 -1 -1 1 0.03 -1 -1 33604 -1 -1 8 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65912 57 29 202 203 1 142 94 17 17 289 -1 unnamed_device 25.8 MiB 0.10 776 15004 5726 8363 915 64.4 MiB 0.08 0.00 2.15606 -94.9711 -2.15606 2.15606 0.92 0.000352245 0.000322769 0.0252866 0.0230873 34 1641 15 6.87369e+06 111791 618332. 2139.56 1.44 0.0922476 0.0808134 25762 151098 -1 1535 15 747 747 68960 15615 1.40297 1.40297 -91.3803 -1.40297 0 0 787024. 2723.27 0.32 0.04 0.15 -1 -1 0.32 0.0113982 0.0101367 58 -1 30 30 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_032bits.v common 4.47 vpr 64.40 MiB 0.01 6480 -1 -1 1 0.03 -1 -1 33760 -1 -1 9 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65944 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 26.0 MiB 0.10 954 16046 4777 9693 1576 64.4 MiB 0.08 0.00 2.56039 -113.756 -2.56039 2.56039 0.92 0.000344595 0.000314094 0.0235193 0.0214248 34 2081 18 6.87369e+06 125765 618332. 2139.56 1.41 0.0948947 0.0828019 25762 151098 -1 1795 16 796 796 77662 17471 1.44967 1.44967 -107.41 -1.44967 0 0 787024. 2723.27 0.32 0.04 0.13 -1 -1 0.32 0.0130108 0.0115067 66 -1 34 34 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_048bits.v common 5.42 vpr 65.25 MiB 0.02 6808 -1 -1 1 0.04 -1 -1 33832 -1 -1 13 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 26.4 MiB 0.12 1267 31119 10636 17936 2547 65.2 MiB 0.16 0.00 3.45705 -187.252 -3.45705 3.45705 0.98 0.000573894 0.000526249 0.0435726 0.0398806 34 3096 20 6.87369e+06 181660 618332. 2139.56 2.07 0.170584 0.151813 25762 151098 -1 2637 18 1230 1230 128973 28866 1.65467 1.65467 -159.38 -1.65467 0 0 787024. 2723.27 0.32 0.07 0.14 -1 -1 0.32 0.022702 0.0203571 98 -1 50 50 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_064bits.v common 8.13 vpr 65.70 MiB 0.02 6896 -1 -1 1 0.04 -1 -1 34220 -1 -1 17 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67280 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 27.0 MiB 0.14 1676 49117 18403 27988 2726 65.7 MiB 0.27 0.01 4.35372 -277.769 -4.35372 4.35372 0.94 0.000824605 0.000760153 0.0637668 0.0586057 36 4299 31 6.87369e+06 237555 648988. 2245.63 4.60 0.309065 0.277661 26050 158493 -1 3453 14 1530 1530 167344 37295 1.87067 1.87067 -218.282 -1.87067 0 0 828058. 2865.25 0.34 0.08 0.15 -1 -1 0.34 0.0247294 0.0224273 130 -1 66 66 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_003bits.v common 3.23 vpr 63.29 MiB 0.01 6308 -1 -1 1 0.02 -1 -1 33584 -1 -1 1 7 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64804 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 24.9 MiB 0.02 29 285 62 205 18 63.3 MiB 0.00 0.00 0.62144 -7.02012 -0.62144 0.62144 0.94 5.1172e-05 4.5432e-05 0.00137615 0.00122233 18 105 10 6.89349e+06 14093.8 376052. 1301.22 0.54 0.00400659 0.00355929 22882 88689 -1 95 3 17 17 922 285 0.74674 0.74674 -8.09412 -0.74674 0 0 470940. 1629.55 0.20 0.00 0.09 -1 -1 0.20 0.00191149 0.00178658 8 -1 5 5 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_004bits.v common 3.23 vpr 63.30 MiB 0.01 6256 -1 -1 1 0.02 -1 -1 33304 -1 -1 2 9 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64820 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 24.9 MiB 0.04 78 376 85 271 20 63.3 MiB 0.01 0.00 0.828273 -10.1712 -0.828273 0.828273 0.94 6.2702e-05 5.5881e-05 0.0015013 0.00134535 18 169 7 6.89349e+06 28187.7 376052. 1301.22 0.54 0.00425163 0.00381041 22882 88689 -1 162 10 57 57 2758 959 0.87204 0.87204 -11.6748 -0.87204 0 0 470940. 1629.55 0.20 0.01 0.09 -1 -1 0.20 0.0027811 0.00247817 10 -1 6 6 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_005bits.v common 3.87 vpr 63.25 MiB 0.01 6392 -1 -1 1 0.02 -1 -1 33372 -1 -1 2 11 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64764 11 6 41 42 1 27 19 17 17 289 -1 unnamed_device 24.8 MiB 0.04 78 444 92 346 6 63.2 MiB 0.01 0.00 0.850273 -13.3945 -0.850273 0.850273 0.95 8.3684e-05 7.5434e-05 0.00180938 0.0016312 18 251 8 6.89349e+06 28187.7 376052. 1301.22 1.14 0.00771263 0.00664309 22882 88689 -1 204 10 111 111 5940 1840 0.942573 0.942573 -14.4899 -0.942573 0 0 470940. 1629.55 0.20 0.01 0.09 -1 -1 0.20 0.00311622 0.00276712 12 -1 7 7 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_006bits.v common 4.85 vpr 63.11 MiB 0.01 6232 -1 -1 1 0.02 -1 -1 33720 -1 -1 2 13 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64620 13 7 48 49 1 33 22 17 17 289 -1 unnamed_device 24.7 MiB 0.05 200 1012 243 655 114 63.1 MiB 0.01 0.00 0.872273 -18.5692 -0.872273 0.872273 0.96 8.6826e-05 7.7913e-05 0.0033086 0.00299157 26 415 10 6.89349e+06 28187.7 503264. 1741.40 2.01 0.0211196 0.017611 24322 120374 -1 369 9 114 114 9110 2005 1.06167 1.06167 -20.8311 -1.06167 0 0 618332. 2139.56 0.26 0.01 0.12 -1 -1 0.26 0.0031544 0.00282515 14 -1 8 8 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_007bits.v common 3.72 vpr 63.55 MiB 0.01 6144 -1 -1 1 0.02 -1 -1 33488 -1 -1 3 15 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65080 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 25.1 MiB 0.08 118 862 183 616 63 63.6 MiB 0.01 0.00 1.2657 -18.4312 -1.2657 1.2657 0.97 9.6642e-05 8.7168e-05 0.00271573 0.00244928 28 342 16 6.89349e+06 42281.5 531479. 1839.03 0.81 0.0157696 0.0133393 24610 126494 -1 278 14 188 188 9539 2950 1.10367 1.10367 -21.2097 -1.10367 0 0 648988. 2245.63 0.27 0.01 0.13 -1 -1 0.27 0.00422291 0.00371733 17 -1 9 9 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_008bits.v common 5.45 vpr 63.51 MiB 0.01 6140 -1 -1 1 0.02 -1 -1 33724 -1 -1 3 17 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65032 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 25.0 MiB 0.05 149 1217 254 894 69 63.5 MiB 0.01 0.00 1.2326 -21.9687 -1.2326 1.2326 0.97 0.000117258 0.000106435 0.0035972 0.00326123 30 363 10 6.89349e+06 42281.5 556674. 1926.21 2.53 0.033343 0.0277944 25186 138497 -1 320 10 169 169 10676 3270 0.87702 0.87702 -22.7498 -0.87702 0 0 706193. 2443.58 0.29 0.01 0.13 -1 -1 0.29 0.0037372 0.00332269 18 -1 10 10 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_009bits.v common 4.47 vpr 63.58 MiB 0.01 6264 -1 -1 1 0.02 -1 -1 33644 -1 -1 3 19 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65104 19 10 69 70 1 46 32 17 17 289 -1 unnamed_device 25.1 MiB 0.05 200 932 174 705 53 63.6 MiB 0.01 0.00 1.2436 -25.1484 -1.2436 1.2436 0.95 0.000124841 0.000113617 0.0029234 0.00267483 26 430 15 6.89349e+06 42281.5 503264. 1741.40 1.59 0.0304566 0.0254773 24322 120374 -1 409 12 191 191 15491 3855 1.00037 1.00037 -27.0113 -1.00037 0 0 618332. 2139.56 0.26 0.01 0.12 -1 -1 0.26 0.00470651 0.00415777 20 -1 11 11 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_010bits.v common 3.79 vpr 63.34 MiB 0.01 6296 -1 -1 1 0.02 -1 -1 33504 -1 -1 3 21 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64856 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 24.8 MiB 0.06 144 2828 1054 1431 343 63.3 MiB 0.02 0.00 1.2546 -27.4315 -1.2546 1.2546 0.95 0.000140746 0.000128122 0.00756181 0.00684497 32 386 10 6.89349e+06 42281.5 586450. 2029.24 0.86 0.023002 0.019825 25474 144626 -1 349 12 188 188 12437 3505 1.01137 1.01137 -27.3524 -1.01137 0 0 744469. 2576.02 0.31 0.01 0.14 -1 -1 0.31 0.00491039 0.00435064 22 -1 12 12 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_011bits.v common 4.47 vpr 63.62 MiB 0.01 6308 -1 -1 1 0.02 -1 -1 33596 -1 -1 4 23 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65152 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 25.1 MiB 0.05 160 3141 1095 1440 606 63.6 MiB 0.02 0.00 1.2656 -30.185 -1.2656 1.2656 0.91 0.000126484 0.000113872 0.00667671 0.00599203 30 477 16 6.89349e+06 56375.4 556674. 1926.21 1.68 0.0376824 0.031553 25186 138497 -1 387 8 199 199 11652 3220 1.15867 1.15867 -31.0113 -1.15867 0 0 706193. 2443.58 0.29 0.01 0.12 -1 -1 0.29 0.00405889 0.00364615 24 -1 13 13 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_012bits.v common 4.68 vpr 63.53 MiB 0.01 6356 -1 -1 1 0.02 -1 -1 33668 -1 -1 4 25 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65052 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 25.0 MiB 0.05 266 2346 496 1701 149 63.5 MiB 0.02 0.00 1.2766 -33.6936 -1.2766 1.2766 0.96 0.000159508 0.0001449 0.00559323 0.00508435 30 629 11 6.89349e+06 56375.4 556674. 1926.21 1.77 0.0401808 0.0341161 25186 138497 -1 559 11 249 249 17575 4310 1.14287 1.14287 -36.1241 -1.14287 0 0 706193. 2443.58 0.30 0.01 0.14 -1 -1 0.30 0.0052376 0.00467221 26 -1 14 14 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_013bits.v common 4.63 vpr 63.55 MiB 0.01 6204 -1 -1 1 0.02 -1 -1 33748 -1 -1 4 27 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65080 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 25.0 MiB 0.05 176 2845 630 2149 66 63.6 MiB 0.02 0.00 1.2876 -35.1215 -1.2876 1.2876 0.94 0.000171791 0.000156768 0.006787 0.00615809 28 590 11 6.89349e+06 56375.4 531479. 1839.03 1.76 0.0442054 0.0376142 24610 126494 -1 531 14 345 345 20534 6365 1.32317 1.32317 -41.0078 -1.32317 0 0 648988. 2245.63 0.27 0.02 0.12 -1 -1 0.27 0.00626471 0.00551831 28 -1 15 15 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_014bits.v common 5.13 vpr 63.59 MiB 0.01 6536 -1 -1 1 0.02 -1 -1 34064 -1 -1 4 29 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65112 29 15 104 105 1 74 48 17 17 289 -1 unnamed_device 25.0 MiB 0.09 407 5703 1643 3514 546 63.6 MiB 0.03 0.00 1.2986 -43.2206 -1.2986 1.2986 0.88 0.000174316 0.00015757 0.0117213 0.0105648 32 883 15 6.89349e+06 56375.4 586450. 2029.24 2.21 0.0644078 0.0548997 25474 144626 -1 763 17 331 331 28881 6761 1.17597 1.17597 -43.8861 -1.17597 0 0 744469. 2576.02 0.31 0.02 0.14 -1 -1 0.31 0.0076237 0.0067189 31 -1 16 16 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_015bits.v common 3.86 vpr 63.79 MiB 0.01 6384 -1 -1 1 0.03 -1 -1 33860 -1 -1 5 31 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65324 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 25.2 MiB 0.19 339 2477 446 1968 63 63.8 MiB 0.02 0.00 1.66993 -43.2794 -1.66993 1.66993 0.91 0.000190595 0.000173267 0.00557479 0.00506579 30 830 16 6.89349e+06 70469.2 556674. 1926.21 0.85 0.0285554 0.024654 25186 138497 -1 759 14 343 343 24379 5974 1.33217 1.33217 -47.9201 -1.33217 0 0 706193. 2443.58 0.28 0.02 0.13 -1 -1 0.28 0.0064729 0.00570519 33 -1 17 17 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_016bits.v common 3.86 vpr 63.89 MiB 0.01 6228 -1 -1 1 0.02 -1 -1 33620 -1 -1 5 33 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65424 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 25.5 MiB 0.09 533 6191 2070 2945 1176 63.9 MiB 0.04 0.00 1.68093 -51.8948 -1.68093 1.68093 0.93 0.00019917 0.000181002 0.0130179 0.0118749 32 1010 15 6.89349e+06 70469.2 586450. 2029.24 0.88 0.0371633 0.0324911 25474 144626 -1 936 12 393 393 37426 8327 1.10837 1.10837 -51.6103 -1.10837 0 0 744469. 2576.02 0.29 0.02 0.14 -1 -1 0.29 0.00658969 0.00584631 34 -1 18 18 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_018bits.v common 3.87 vpr 63.97 MiB 0.01 6360 -1 -1 1 0.02 -1 -1 33956 -1 -1 5 37 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65504 37 19 132 133 1 90 61 17 17 289 -1 unnamed_device 25.6 MiB 0.08 387 3901 827 2954 120 64.0 MiB 0.03 0.00 1.70293 -53.0623 -1.70293 1.70293 0.93 0.00024808 0.000228087 0.00827255 0.00753339 32 958 23 6.89349e+06 70469.2 586450. 2029.24 0.91 0.0376724 0.0326319 25474 144626 -1 802 13 405 405 31387 8277 1.14962 1.14962 -52.5808 -1.14962 0 0 744469. 2576.02 0.30 0.02 0.14 -1 -1 0.30 0.00758695 0.00671331 38 -1 20 20 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_020bits.v common 4.36 vpr 63.80 MiB 0.01 6344 -1 -1 1 0.03 -1 -1 33952 -1 -1 6 41 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65328 41 21 146 147 1 102 68 17 17 289 -1 unnamed_device 25.4 MiB 0.08 542 9176 2598 5872 706 63.8 MiB 0.05 0.00 1.72493 -64.2553 -1.72493 1.72493 0.94 0.000242363 0.000219651 0.0176069 0.0159986 34 1216 15 6.89349e+06 84563 618332. 2139.56 1.34 0.0655553 0.05684 25762 151098 -1 1073 13 431 431 36077 8208 1.14757 1.14757 -62.5674 -1.14757 0 0 787024. 2723.27 0.32 0.02 0.15 -1 -1 0.32 0.0083803 0.00744624 42 -1 22 22 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_022bits.v common 4.47 vpr 64.09 MiB 0.01 6568 -1 -1 1 0.03 -1 -1 33784 -1 -1 6 45 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65628 45 23 160 161 1 115 74 17 17 289 -1 unnamed_device 25.6 MiB 0.12 723 8754 3239 4614 901 64.1 MiB 0.05 0.00 1.74693 -73.4399 -1.74693 1.74693 0.95 0.000273124 0.000249788 0.0163658 0.0149141 34 1403 18 6.89349e+06 84563 618332. 2139.56 1.38 0.0710061 0.0616981 25762 151098 -1 1306 16 531 531 49975 10849 1.17437 1.17437 -70.21 -1.17437 0 0 787024. 2723.27 0.31 0.03 0.15 -1 -1 0.31 0.0102386 0.00905132 47 -1 24 24 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_024bits.v common 4.41 vpr 63.92 MiB 0.01 6500 -1 -1 1 0.03 -1 -1 33944 -1 -1 7 49 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65456 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 25.5 MiB 0.11 631 6906 1526 5153 227 63.9 MiB 0.04 0.00 2.12926 -78.3694 -2.12926 2.12926 0.92 0.000296433 0.000270844 0.0123489 0.0112596 34 1448 16 6.89349e+06 98656.9 618332. 2139.56 1.37 0.0689374 0.0598093 25762 151098 -1 1287 20 606 606 60874 13470 1.24467 1.24467 -74.9117 -1.24467 0 0 787024. 2723.27 0.32 0.03 0.15 -1 -1 0.32 0.0123211 0.0108181 50 -1 26 26 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_028bits.v common 4.51 vpr 64.19 MiB 0.01 6436 -1 -1 1 0.03 -1 -1 33744 -1 -1 8 57 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65728 57 29 202 203 1 143 94 17 17 289 -1 unnamed_device 25.7 MiB 0.10 807 15217 5536 8453 1228 64.2 MiB 0.08 0.00 2.17326 -96.6426 -2.17326 2.17326 0.92 0.000337474 0.000307496 0.0253261 0.0231261 34 1701 22 6.89349e+06 112751 618332. 2139.56 1.43 0.0947111 0.0829757 25762 151098 -1 1478 15 668 668 60022 13415 1.23367 1.23367 -85.4602 -1.23367 0 0 787024. 2723.27 0.31 0.03 0.15 -1 -1 0.31 0.0117658 0.0104448 58 -1 30 30 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_032bits.v common 6.25 vpr 64.41 MiB 0.02 6428 -1 -1 1 0.03 -1 -1 33860 -1 -1 9 65 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65952 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 26.1 MiB 0.12 932 16046 5153 9164 1729 64.4 MiB 0.08 0.00 2.57759 -112.715 -2.57759 2.57759 0.96 0.000376753 0.000344502 0.0257559 0.0235665 34 1944 21 6.89349e+06 126845 618332. 2139.56 3.06 0.133407 0.116516 25762 151098 -1 1725 16 700 700 61178 13677 1.47797 1.47797 -104.784 -1.47797 0 0 787024. 2723.27 0.32 0.04 0.15 -1 -1 0.32 0.0138471 0.012256 66 -1 34 34 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_048bits.v common 5.03 vpr 65.23 MiB 0.02 6716 -1 -1 1 0.03 -1 -1 33964 -1 -1 13 97 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66796 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 26.4 MiB 0.14 1295 31119 10716 17608 2795 65.2 MiB 0.16 0.00 3.47425 -188.48 -3.47425 3.47425 0.94 0.000573484 0.000524761 0.0423617 0.0386876 34 3116 22 6.89349e+06 183220 618332. 2139.56 1.72 0.1668 0.148191 25762 151098 -1 2663 17 1156 1156 111931 25302 1.90527 1.90527 -172.787 -1.90527 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0209883 0.0187235 98 -1 50 50 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_064bits.v common 7.71 vpr 65.79 MiB 0.02 6940 -1 -1 1 0.03 -1 -1 34172 -1 -1 17 129 0 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67364 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 27.1 MiB 0.14 1716 49117 18160 27971 2986 65.8 MiB 0.25 0.01 4.37092 -279.363 -4.37092 4.37092 0.96 0.000781841 0.000717769 0.0612675 0.0562118 36 4039 24 6.89349e+06 239595 648988. 2245.63 4.22 0.285795 0.255792 26050 158493 -1 3391 14 1456 1456 151151 33724 1.79097 1.79097 -212.298 -1.79097 0 0 828058. 2865.25 0.35 0.08 0.15 -1 -1 0.35 0.026466 0.0240558 130 -1 66 66 0 0 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_003bits.v common 2.51 vpr 60.38 MiB 0.03 5768 -1 -1 1 0.06 -1 -1 31688 -1 -1 2 7 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 61824 7 4 21 25 1 15 13 17 17 289 -1 unnamed_device 21.8 MiB 0.01 50 298 76 216 6 60.4 MiB 0.01 0.00 0.701249 -6.72129 -0.701249 0.701249 0.63 7.8233e-05 6.9941e-05 0.00178144 0.00158683 20 111 5 6.55708e+06 24110 394039. 1363.46 0.44 0.00409794 0.00368897 19870 87366 -1 112 7 31 31 1537 535 0.701248 0.701248 -7.34893 -0.701248 0 0 477104. 1650.88 0.14 0.01 0.06 -1 -1 0.14 0.00228777 0.0020842 10 4 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_004bits.v common 2.52 vpr 60.50 MiB 0.01 5728 -1 -1 2 0.05 -1 -1 31844 -1 -1 2 9 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 61952 9 5 28 33 1 21 16 17 17 289 -1 unnamed_device 21.9 MiB 0.01 72 396 78 308 10 60.5 MiB 0.01 0.00 0.900447 -9.59862 -0.900447 0.900447 0.63 8.6191e-05 7.8103e-05 0.00197393 0.00179135 20 170 8 6.55708e+06 24110 394039. 1363.46 0.44 0.0051719 0.0046466 19870 87366 -1 175 6 62 67 3812 1117 0.819447 0.819447 -10.677 -0.819447 0 0 477104. 1650.88 0.14 0.01 0.09 -1 -1 0.14 0.00274377 0.00248632 13 6 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_005bits.v common 2.67 vpr 60.70 MiB 0.01 5836 -1 -1 2 0.05 -1 -1 31856 -1 -1 2 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62160 11 6 34 40 1 24 19 17 17 289 -1 unnamed_device 22.1 MiB 0.01 72 444 121 288 35 60.7 MiB 0.01 0.00 0.900447 -12.0151 -0.900447 0.900447 0.66 0.000123561 0.000112673 0.00255951 0.00232796 22 204 10 6.55708e+06 24110 420624. 1455.45 0.53 0.0151535 0.0127839 20158 92377 -1 156 10 82 85 4128 1402 0.819447 0.819447 -12.0716 -0.819447 0 0 500653. 1732.36 0.14 0.01 0.08 -1 -1 0.14 0.00336148 0.00296954 16 7 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_006bits.v common 2.85 vpr 60.48 MiB 0.03 5752 -1 -1 3 0.05 -1 -1 31912 -1 -1 3 13 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 61928 13 7 41 48 1 32 23 17 17 289 -1 unnamed_device 21.9 MiB 0.01 91 855 163 648 44 60.5 MiB 0.01 0.00 1.58811 -16.2873 -1.58811 1.58811 0.65 0.0001491 0.000136362 0.00443541 0.00405993 24 290 10 6.55708e+06 36165 448715. 1552.65 0.56 0.0201013 0.0171004 20734 103517 -1 237 9 111 124 7071 2166 1.50711 1.50711 -17.1728 -1.50711 0 0 554710. 1919.41 0.15 0.01 0.09 -1 -1 0.15 0.00392995 0.00345491 19 9 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_007bits.v common 2.88 vpr 60.57 MiB 0.03 5728 -1 -1 3 0.05 -1 -1 32332 -1 -1 3 15 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62020 15 8 47 55 1 38 26 17 17 289 -1 unnamed_device 21.9 MiB 0.01 99 1014 271 604 139 60.6 MiB 0.01 0.00 1.23151 -17.4525 -1.23151 1.23151 0.65 0.000144848 0.000133009 0.004309 0.00394922 26 398 20 6.55708e+06 36165 477104. 1650.88 0.60 0.023269 0.01964 21022 109990 -1 272 8 150 171 7737 2724 1.14085 1.14085 -18.4888 -1.14085 0 0 585099. 2024.56 0.16 0.01 0.11 -1 -1 0.16 0.00390435 0.0034638 23 10 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_008bits.v common 2.66 vpr 60.57 MiB 0.02 5800 -1 -1 3 0.06 -1 -1 32040 -1 -1 4 17 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62020 17 9 56 65 1 42 30 17 17 289 -1 unnamed_device 21.8 MiB 0.06 161 628 145 480 3 60.6 MiB 0.01 0.00 1.70831 -22.396 -1.70831 1.70831 0.65 0.000181793 0.000168122 0.00292564 0.00270391 20 373 18 6.55708e+06 48220 394039. 1363.46 0.45 0.0108414 0.00951698 19870 87366 -1 332 10 141 157 6947 2096 1.70831 1.70831 -22.553 -1.70831 0 0 477104. 1650.88 0.14 0.01 0.09 -1 -1 0.14 0.00538985 0.0047002 25 14 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_009bits.v common 2.90 vpr 60.71 MiB 0.01 5748 -1 -1 4 0.06 -1 -1 31928 -1 -1 4 19 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62164 19 10 60 70 1 48 33 17 17 289 -1 unnamed_device 22.2 MiB 0.02 142 1229 224 959 46 60.7 MiB 0.02 0.00 1.58811 -24.8435 -1.58811 1.58811 0.65 0.000225508 0.000208897 0.00584583 0.00538251 26 433 14 6.55708e+06 48220 477104. 1650.88 0.62 0.0299412 0.0253474 21022 109990 -1 380 12 196 260 11751 3722 1.59011 1.59011 -25.8906 -1.59011 0 0 585099. 2024.56 0.17 0.02 0.10 -1 -1 0.17 0.00573217 0.00499572 29 13 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_010bits.v common 2.87 vpr 60.69 MiB 0.03 5856 -1 -1 4 0.07 -1 -1 32004 -1 -1 5 21 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62144 21 11 69 80 1 53 37 17 17 289 -1 unnamed_device 22.2 MiB 0.03 252 2965 1025 1339 601 60.7 MiB 0.02 0.00 1.68077 -28.9367 -1.68077 1.68077 0.64 0.000207824 0.00019209 0.0107856 0.00995365 24 594 13 6.55708e+06 60275 448715. 1552.65 0.59 0.0352373 0.0303719 20734 103517 -1 554 14 206 272 22917 5650 1.46791 1.46791 -30.8716 -1.46791 0 0 554710. 1919.41 0.16 0.02 0.12 -1 -1 0.16 0.00697795 0.00602941 33 17 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_011bits.v common 2.89 vpr 60.69 MiB 0.03 5836 -1 -1 5 0.06 -1 -1 32540 -1 -1 5 23 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62144 23 12 73 85 1 58 40 17 17 289 -1 unnamed_device 22.2 MiB 0.02 278 3032 1045 1570 417 60.7 MiB 0.03 0.00 2.03736 -35.0243 -2.03736 2.03736 0.64 0.000257423 0.000237469 0.0115634 0.0106791 26 659 17 6.55708e+06 60275 477104. 1650.88 0.61 0.0369173 0.031842 21022 109990 -1 581 12 230 328 22222 5685 2.03937 2.03937 -36.8236 -2.03937 0 0 585099. 2024.56 0.16 0.02 0.11 -1 -1 0.16 0.00650193 0.00565059 35 16 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_012bits.v common 4.36 vpr 60.73 MiB 0.01 5796 -1 -1 5 0.06 -1 -1 31836 -1 -1 6 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62188 25 13 82 95 1 66 44 17 17 289 -1 unnamed_device 22.3 MiB 0.02 261 1738 345 1379 14 60.7 MiB 0.02 0.00 2.11777 -37.2851 -2.11777 2.11777 0.64 0.000242956 0.000224674 0.00619192 0.00572665 28 714 10 6.55708e+06 72330 500653. 1732.36 2.07 0.0489346 0.0413803 21310 115450 -1 580 11 224 306 19281 5020 1.7847 1.7847 -37.4656 -1.7847 0 0 612192. 2118.31 0.18 0.02 0.11 -1 -1 0.18 0.00672584 0.00589076 40 20 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_013bits.v common 3.07 vpr 60.81 MiB 0.01 5964 -1 -1 5 0.07 -1 -1 32072 -1 -1 7 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62268 27 14 91 105 1 70 48 17 17 289 -1 unnamed_device 22.3 MiB 0.02 361 1875 344 1504 27 60.8 MiB 0.02 0.00 1.70831 -38.0204 -1.70831 1.70831 0.64 0.00027381 0.000254101 0.00676226 0.0062794 26 785 27 6.55708e+06 84385 477104. 1650.88 0.73 0.0488077 0.0415323 21022 109990 -1 675 10 237 340 18614 4888 1.61564 1.61564 -40.3003 -1.61564 0 0 585099. 2024.56 0.17 0.02 0.10 -1 -1 0.17 0.00709087 0.00623777 42 24 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_014bits.v common 2.88 vpr 60.81 MiB 0.02 5796 -1 -1 6 0.06 -1 -1 31740 -1 -1 7 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62272 29 15 95 110 1 74 51 17 17 289 -1 unnamed_device 22.3 MiB 0.04 444 2495 549 1721 225 60.8 MiB 0.02 0.00 2.39596 -47.6713 -2.39596 2.39596 0.64 0.000291843 0.000270602 0.00838045 0.0077761 26 907 16 6.55708e+06 84385 477104. 1650.88 0.62 0.0401185 0.0344513 21022 109990 -1 838 12 239 341 22464 5496 2.2243 2.2243 -49.1418 -2.2243 0 0 585099. 2024.56 0.17 0.02 0.11 -1 -1 0.17 0.00810516 0.00706014 45 23 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_015bits.v common 3.10 vpr 60.83 MiB 0.03 5876 -1 -1 6 0.06 -1 -1 31756 -1 -1 9 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62288 31 16 104 120 1 80 56 17 17 289 -1 unnamed_device 22.3 MiB 0.12 378 5941 1874 2717 1350 60.8 MiB 0.04 0.00 2.19676 -46.103 -2.19676 2.19676 0.63 0.000368713 0.000341861 0.0187097 0.0173553 28 910 12 6.55708e+06 108495 500653. 1732.36 0.78 0.0547701 0.0475579 21310 115450 -1 831 11 376 558 32554 8498 2.07656 2.07656 -49.0102 -2.07656 0 0 612192. 2118.31 0.17 0.02 0.07 -1 -1 0.17 0.00857879 0.00751845 50 27 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_016bits.v common 3.19 vpr 60.95 MiB 0.03 5824 -1 -1 7 0.06 -1 -1 31836 -1 -1 7 33 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62412 33 17 108 125 1 86 57 17 17 289 -1 unnamed_device 22.4 MiB 0.03 565 6270 1776 3822 672 60.9 MiB 0.05 0.00 3.08362 -63.5746 -3.08362 3.08362 0.63 0.000384404 0.00035665 0.0223606 0.0207758 30 1078 12 6.55708e+06 84385 526063. 1820.29 0.73 0.0642799 0.0560957 21886 126133 -1 998 13 303 449 26508 6458 2.84322 2.84322 -62.7775 -2.84322 0 0 666494. 2306.21 0.21 0.03 0.11 -1 -1 0.21 0.0118703 0.0103099 51 26 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_018bits.v common 3.19 vpr 61.12 MiB 0.03 5972 -1 -1 7 0.07 -1 -1 32416 -1 -1 8 37 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62588 37 19 127 146 1 101 64 17 17 289 -1 unnamed_device 22.5 MiB 0.18 554 5144 1328 3388 428 61.1 MiB 0.04 0.00 2.78339 -65.1521 -2.78339 2.78339 0.63 0.000436208 0.00040536 0.0176434 0.0163838 26 1306 16 6.55708e+06 96440 477104. 1650.88 0.77 0.0655914 0.0570889 21022 109990 -1 1190 11 396 566 39406 9328 2.64602 2.64602 -69.1724 -2.64602 0 0 585099. 2024.56 0.17 0.03 0.10 -1 -1 0.17 0.0099263 0.00873413 59 35 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_020bits.v common 3.17 vpr 61.10 MiB 0.03 5880 -1 -1 8 0.07 -1 -1 31992 -1 -1 10 41 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62564 41 21 139 160 1 109 72 17 17 289 -1 unnamed_device 22.7 MiB 0.15 447 7224 1591 4752 881 61.1 MiB 0.05 0.00 3.28422 -74.213 -3.28422 3.28422 0.64 0.00047421 0.000440946 0.0239498 0.0222625 26 1153 17 6.55708e+06 120550 477104. 1650.88 0.67 0.070125 0.0616521 21022 109990 -1 988 13 413 556 34410 9054 2.92362 2.92362 -72.9932 -2.92362 0 0 585099. 2024.56 0.17 0.03 0.11 -1 -1 0.17 0.0125504 0.0109522 67 37 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_022bits.v common 3.07 vpr 61.21 MiB 0.02 6084 -1 -1 9 0.07 -1 -1 32268 -1 -1 11 45 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62676 45 23 152 175 1 124 79 17 17 289 -1 unnamed_device 22.7 MiB 0.05 733 10219 2597 6052 1570 61.2 MiB 0.06 0.00 3.23076 -86.0719 -3.23076 3.23076 0.63 0.00043351 0.000402155 0.0275242 0.0255513 26 1549 12 6.55708e+06 132605 477104. 1650.88 0.65 0.0739214 0.0654238 21022 109990 -1 1353 16 472 658 45777 10612 3.1381 3.1381 -89.3858 -3.1381 0 0 585099. 2024.56 0.24 0.04 0.10 -1 -1 0.24 0.0159154 0.0140296 74 40 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_024bits.v common 3.49 vpr 61.52 MiB 0.01 6052 -1 -1 10 0.07 -1 -1 32588 -1 -1 11 49 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63000 49 25 165 190 1 131 85 17 17 289 -1 unnamed_device 23.1 MiB 0.24 533 10873 3248 5447 2178 61.5 MiB 0.08 0.00 3.72533 -95.3298 -3.72533 3.72533 0.63 0.000549556 0.000509726 0.0333018 0.0309075 28 1427 44 6.55708e+06 132605 500653. 1732.36 0.81 0.105563 0.0930731 21310 115450 -1 1256 12 528 701 45892 12260 3.58796 3.58796 -98.6308 -3.58796 0 0 612192. 2118.31 0.20 0.04 0.11 -1 -1 0.20 0.0130757 0.0115871 79 43 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_028bits.v common 3.61 vpr 61.63 MiB 0.02 6056 -1 -1 11 0.08 -1 -1 32604 -1 -1 14 57 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63112 57 29 199 228 1 157 100 17 17 289 -1 unnamed_device 23.0 MiB 0.24 728 11468 2977 6953 1538 61.6 MiB 0.08 0.00 4.49954 -124.266 -4.49954 4.49954 0.66 0.000572876 0.000533883 0.032729 0.0304463 30 1687 32 6.55708e+06 168770 526063. 1820.29 0.91 0.114573 0.101415 21886 126133 -1 1419 13 569 828 47790 12858 4.09974 4.09974 -124.39 -4.09974 0 0 666494. 2306.21 0.19 0.04 0.11 -1 -1 0.19 0.0171017 0.015168 93 57 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_032bits.v common 3.92 vpr 61.71 MiB 0.02 6200 -1 -1 13 0.10 -1 -1 32124 -1 -1 15 65 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63192 65 33 224 257 1 179 113 17 17 289 -1 unnamed_device 23.2 MiB 0.41 1038 16493 5318 8597 2578 61.7 MiB 0.09 0.00 4.53259 -150.281 -4.53259 4.53259 0.64 0.000643715 0.000599629 0.0409332 0.0381518 28 2173 41 6.55708e+06 180825 500653. 1732.36 1.04 0.136214 0.120605 21310 115450 -1 1884 12 621 817 57982 14048 4.42276 4.42276 -153.676 -4.42276 0 0 612192. 2118.31 0.17 0.04 0.10 -1 -1 0.17 0.0156487 0.013988 107 62 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_048bits.v common 4.24 vpr 62.60 MiB 0.03 6296 -1 -1 19 0.12 -1 -1 32440 -1 -1 24 97 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 97 49 340 389 1 265 170 17 17 289 -1 unnamed_device 23.8 MiB 0.29 1334 34950 10414 20834 3702 62.6 MiB 0.18 0.00 7.26745 -288.28 -7.26745 7.26745 0.63 0.00097962 0.000913283 0.0760972 0.0709664 28 3171 27 6.55708e+06 289320 500653. 1732.36 1.23 0.206918 0.186572 21310 115450 -1 2696 11 990 1365 95731 23807 6.78665 6.78665 -282.016 -6.78665 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0249715 0.022515 160 98 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_064bits.v common 7.41 vpr 63.51 MiB 0.04 6624 -1 -1 26 0.11 -1 -1 32520 -1 -1 31 129 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 129 65 454 519 1 354 225 17 17 289 -1 unnamed_device 24.7 MiB 0.19 1718 54945 15410 32877 6658 63.5 MiB 0.26 0.00 9.81484 -466.455 -9.81484 9.81484 0.63 0.00135053 0.0012653 0.113027 0.105839 48 3235 34 6.55708e+06 373705 816265. 2824.45 4.22 0.553116 0.497642 25054 189045 -1 3027 28 1189 1684 209050 94655 9.09364 9.09364 -438.041 -9.09364 0 0 986792. 3414.50 0.26 0.14 0.17 -1 -1 0.26 0.071187 0.063916 213 132 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.44 abc 29.25 MiB 0.03 6168 -1 -1 1 0.02 -1 -1 29948 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22676 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.45 abc 29.45 MiB 0.03 6088 -1 -1 1 0.02 -1 -1 30152 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22712 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.41 abc 29.29 MiB 0.02 5980 -1 -1 1 0.02 -1 -1 29996 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22732 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.46 abc 29.32 MiB 0.06 6116 -1 -1 1 0.02 -1 -1 30028 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22952 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.42 abc 29.35 MiB 0.02 6044 -1 -1 1 0.03 -1 -1 30052 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22716 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.41 abc 29.33 MiB 0.02 6000 -1 -1 1 0.02 -1 -1 30032 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22712 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.42 abc 29.28 MiB 0.02 6104 -1 -1 1 0.02 -1 -1 29980 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22860 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.42 abc 29.36 MiB 0.02 6000 -1 -1 1 0.02 -1 -1 30064 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22680 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.41 abc 29.32 MiB 0.02 6068 -1 -1 1 0.02 -1 -1 30024 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23012 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.45 abc 29.46 MiB 0.02 6032 -1 -1 1 0.02 -1 -1 30164 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22852 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.39 abc 29.29 MiB 0.01 6164 -1 -1 1 0.02 -1 -1 29992 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22904 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.40 abc 29.36 MiB 0.03 6152 -1 -1 1 0.02 -1 -1 30068 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22896 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.38 abc 29.29 MiB 0.02 6216 -1 -1 1 0.02 -1 -1 29992 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22872 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 5 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.41 abc 29.60 MiB 0.03 6148 -1 -1 1 0.02 -1 -1 30308 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22872 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 5 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.42 abc 29.62 MiB 0.03 6244 -1 -1 1 0.02 -1 -1 30332 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22820 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 5 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.43 abc 29.53 MiB 0.02 6172 -1 -1 1 0.03 -1 -1 30236 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22936 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 6 6 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.43 abc 29.65 MiB 0.03 6204 -1 -1 1 0.02 -1 -1 30360 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22892 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 6 6 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.45 abc 29.72 MiB 0.04 6264 -1 -1 1 0.03 -1 -1 30432 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22952 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 7 7 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.41 abc 29.65 MiB 0.02 6200 -1 -1 1 0.03 -1 -1 30364 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23412 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 8 8 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.47 abc 29.64 MiB 0.01 6356 -1 -1 1 0.03 -1 -1 30348 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23160 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 9 9 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.42 abc 29.63 MiB 0.02 6496 -1 -1 1 0.03 -1 -1 30344 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23504 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 13 13 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.53 abc 29.67 MiB 0.03 6752 -1 -1 1 0.03 -1 -1 30384 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23848 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 17 17 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.41 abc 29.36 MiB 0.01 6108 -1 -1 1 0.03 -1 -1 30068 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22392 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.36 abc 29.30 MiB 0.01 6200 -1 -1 1 0.03 -1 -1 30000 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22384 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.37 abc 29.31 MiB 0.02 6088 -1 -1 1 0.02 -1 -1 30016 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22508 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.37 abc 29.37 MiB 0.01 6152 -1 -1 1 0.03 -1 -1 30076 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22692 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 2 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.43 abc 29.50 MiB 0.03 5996 -1 -1 1 0.02 -1 -1 30208 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22420 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.42 abc 29.52 MiB 0.01 6100 -1 -1 1 0.02 -1 -1 30228 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22444 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.40 abc 29.28 MiB 0.03 6128 -1 -1 1 0.02 -1 -1 29980 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22520 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.39 abc 29.34 MiB 0.02 6168 -1 -1 1 0.02 -1 -1 30048 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22472 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 3 3 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.42 abc 29.35 MiB 0.01 6124 -1 -1 1 0.03 -1 -1 30052 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22524 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.42 abc 29.34 MiB 0.01 6024 -1 -1 1 0.03 -1 -1 30040 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22608 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.41 abc 29.30 MiB 0.01 6196 -1 -1 1 0.02 -1 -1 30000 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22504 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.40 abc 29.52 MiB 0.02 6092 -1 -1 1 0.02 -1 -1 30228 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22740 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 4 4 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.36 abc 29.41 MiB 0.01 6052 -1 -1 1 0.02 -1 -1 30120 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22544 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 5 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.42 abc 29.53 MiB 0.02 6164 -1 -1 1 0.02 -1 -1 30240 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22868 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 5 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.33 abc 29.54 MiB 0.01 6084 -1 -1 1 0.02 -1 -1 30248 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22696 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 5 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.35 abc 29.63 MiB 0.01 6232 -1 -1 1 0.03 -1 -1 30340 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22692 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 6 6 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.44 abc 29.59 MiB 0.01 6240 -1 -1 1 0.03 -1 -1 30300 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22728 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 6 6 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.52 abc 29.61 MiB 0.03 6272 -1 -1 1 0.03 -1 -1 30316 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22844 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 7 7 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.39 abc 29.63 MiB 0.01 6368 -1 -1 1 0.03 -1 -1 30344 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23116 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 8 8 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.38 abc 29.61 MiB 0.03 6268 -1 -1 1 0.02 -1 -1 30320 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 22944 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 9 9 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.42 abc 29.62 MiB 0.02 6544 -1 -1 1 0.03 -1 -1 30328 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23076 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 13 13 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.45 abc 29.82 MiB 0.03 6784 -1 -1 1 0.03 -1 -1 30540 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 23440 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 17 17 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 2.64 vpr 60.75 MiB 0.02 5940 -1 -1 1 0.02 -1 -1 29912 -1 -1 2 7 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62208 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 22.2 MiB 0.01 56 223 48 166 9 60.8 MiB 0.00 0.00 0.770048 -7.07635 -0.770048 0.770048 0.64 5.7054e-05 4.9685e-05 0.00116196 0.00102006 20 108 7 6.64007e+06 25116 394039. 1363.46 0.45 0.00406712 0.00363286 20530 87850 -1 104 4 20 20 1157 330 0.649848 0.649848 -7.37773 -0.649848 0 0 477104. 1650.88 0.18 0.00 0.09 -1 -1 0.18 0.00162848 0.00152727 10 2 5 5 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 2.70 vpr 60.82 MiB 0.01 6084 -1 -1 1 0.03 -1 -1 29948 -1 -1 2 9 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62280 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.2 MiB 0.01 47 376 71 284 21 60.8 MiB 0.01 0.00 0.792048 -9.53833 -0.792048 0.792048 0.70 0.000103916 9.413e-05 0.00227711 0.00205846 20 155 13 6.64007e+06 25116 394039. 1363.46 0.52 0.00633052 0.00557166 20530 87850 -1 146 11 65 65 4138 1278 1.02145 1.02145 -10.9042 -1.02145 0 0 477104. 1650.88 0.14 0.01 0.08 -1 -1 0.14 0.00334457 0.00296098 13 2 6 6 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 2.62 vpr 60.79 MiB 0.03 6032 -1 -1 1 0.02 -1 -1 30096 -1 -1 2 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62252 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 22.1 MiB 0.01 63 419 85 325 9 60.8 MiB 0.01 0.00 0.803048 -11.7113 -0.803048 0.803048 0.64 0.000104643 9.5583e-05 0.00208821 0.00190656 22 226 12 6.64007e+06 25116 420624. 1455.45 0.51 0.0141196 0.011857 20818 92861 -1 195 15 135 135 5924 1892 0.923248 0.923248 -13.4284 -0.923248 0 0 500653. 1732.36 0.14 0.01 0.08 -1 -1 0.14 0.00416611 0.00361402 16 2 7 7 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 2.81 vpr 60.79 MiB 0.01 6072 -1 -1 1 0.02 -1 -1 30064 -1 -1 3 13 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62248 13 7 48 49 1 32 23 17 17 289 -1 unnamed_device 22.2 MiB 0.02 113 727 127 584 16 60.8 MiB 0.01 0.00 0.825048 -14.4294 -0.825048 0.825048 0.72 0.000121988 0.000111861 0.0031635 0.00289369 26 251 10 6.64007e+06 37674 477104. 1650.88 0.59 0.0163143 0.013821 21682 110474 -1 241 10 93 93 6258 1676 0.803048 0.803048 -15.3843 -0.803048 0 0 585099. 2024.56 0.16 0.01 0.10 -1 -1 0.16 0.00372128 0.0032873 19 2 8 8 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 2.83 vpr 60.88 MiB 0.01 6004 -1 -1 1 0.02 -1 -1 29980 -1 -1 3 15 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62344 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 22.2 MiB 0.02 103 938 201 719 18 60.9 MiB 0.01 0.00 1.18536 -16.7279 -1.18536 1.18536 0.64 0.000165104 0.000151572 0.00440018 0.00405035 26 307 12 6.64007e+06 37674 477104. 1650.88 0.58 0.0198738 0.016881 21682 110474 -1 264 10 159 159 7367 2381 1.04145 1.04145 -18.7822 -1.04145 0 0 585099. 2024.56 0.17 0.01 0.10 -1 -1 0.17 0.00418514 0.00369326 22 2 9 9 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 2.86 vpr 61.16 MiB 0.03 6124 -1 -1 1 0.02 -1 -1 30144 -1 -1 4 17 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62632 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 22.7 MiB 0.02 174 858 170 673 15 61.2 MiB 0.01 0.00 1.19636 -20.4292 -1.19636 1.19636 0.67 0.000158832 0.000146554 0.00345142 0.00318281 26 361 14 6.64007e+06 50232 477104. 1650.88 0.62 0.0226356 0.0191262 21682 110474 -1 348 15 139 139 8493 2401 1.09645 1.09645 -23.2864 -1.09645 0 0 585099. 2024.56 0.17 0.02 0.10 -1 -1 0.17 0.00565725 0.00490607 25 2 10 10 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 2.96 vpr 61.04 MiB 0.01 6152 -1 -1 1 0.02 -1 -1 30056 -1 -1 4 19 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62500 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 22.6 MiB 0.03 216 1021 207 713 101 61.0 MiB 0.01 0.00 1.20736 -23.977 -1.20736 1.20736 0.67 0.000208756 0.000193226 0.00467284 0.00431874 26 453 9 6.64007e+06 50232 477104. 1650.88 0.66 0.0203026 0.0173873 21682 110474 -1 430 11 129 129 8914 2350 0.976248 0.976248 -25.7696 -0.976248 0 0 585099. 2024.56 0.17 0.01 0.10 -1 -1 0.17 0.00526413 0.00461704 28 2 11 11 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 2.94 vpr 61.06 MiB 0.02 5972 -1 -1 1 0.02 -1 -1 30068 -1 -1 5 21 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62524 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 22.6 MiB 0.03 214 1623 338 1262 23 61.1 MiB 0.02 0.00 1.21836 -25.661 -1.21836 1.21836 0.64 0.000201527 0.000186586 0.005828 0.00539649 28 435 13 6.64007e+06 62790 500653. 1732.36 0.62 0.0273561 0.023338 21970 115934 -1 423 6 113 113 7584 2083 0.867048 0.867048 -26.4126 -0.867048 0 0 612192. 2118.31 0.18 0.01 0.10 -1 -1 0.18 0.00425419 0.00382007 31 2 12 12 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 2.95 vpr 60.93 MiB 0.01 6100 -1 -1 1 0.02 -1 -1 30040 -1 -1 5 23 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62388 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 22.5 MiB 0.03 261 1536 299 1189 48 60.9 MiB 0.02 0.00 1.22936 -29.0547 -1.22936 1.22936 0.66 0.00021051 0.000194798 0.00538852 0.00499001 22 565 12 6.64007e+06 62790 420624. 1455.45 0.53 0.0286661 0.0243633 20818 92861 -1 510 14 235 235 17099 4766 0.998248 0.998248 -31.1505 -0.998248 0 0 500653. 1732.36 0.20 0.02 0.09 -1 -1 0.20 0.00691385 0.00597895 34 2 13 13 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 2.88 vpr 61.17 MiB 0.01 6112 -1 -1 1 0.02 -1 -1 30212 -1 -1 5 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62636 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 22.7 MiB 0.05 303 1618 294 1276 48 61.2 MiB 0.02 0.00 1.24036 -31.9481 -1.24036 1.24036 0.64 0.000231175 0.000213977 0.00560327 0.0051964 26 651 12 6.64007e+06 62790 477104. 1650.88 0.62 0.0317461 0.0273743 21682 110474 -1 645 13 289 289 22692 5466 1.15145 1.15145 -36.3737 -1.15145 0 0 585099. 2024.56 0.17 0.02 0.13 -1 -1 0.17 0.00692078 0.00600881 37 2 14 14 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 2.93 vpr 61.27 MiB 0.02 6016 -1 -1 1 0.02 -1 -1 30096 -1 -1 6 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62736 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 22.8 MiB 0.03 324 2231 466 1582 183 61.3 MiB 0.02 0.00 1.25136 -34.9134 -1.25136 1.25136 0.66 0.000240978 0.000223059 0.00709511 0.00656626 26 667 16 6.64007e+06 75348 477104. 1650.88 0.63 0.0353692 0.0303031 21682 110474 -1 637 9 201 201 14423 3637 0.976248 0.976248 -36.0679 -0.976248 0 0 585099. 2024.56 0.17 0.02 0.10 -1 -1 0.17 0.00636036 0.00559834 40 2 15 15 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 3.01 vpr 61.13 MiB 0.03 6200 -1 -1 1 0.03 -1 -1 30364 -1 -1 6 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62596 29 15 104 105 1 73 50 17 17 289 -1 unnamed_device 22.6 MiB 0.02 332 2626 448 2137 41 61.1 MiB 0.02 0.00 1.26236 -36.933 -1.26236 1.26236 0.64 0.000258901 0.000240377 0.0079943 0.00742419 32 685 10 6.64007e+06 75348 554710. 1919.41 0.67 0.0342689 0.0297017 22834 132086 -1 655 16 350 350 24099 6153 0.998248 0.998248 -38.555 -0.998248 0 0 701300. 2426.64 0.19 0.02 0.12 -1 -1 0.19 0.00805388 0.0070684 43 2 16 16 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 3.02 vpr 61.25 MiB 0.03 6144 -1 -1 1 0.02 -1 -1 30304 -1 -1 7 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62716 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 22.7 MiB 0.03 430 4134 883 2967 284 61.2 MiB 0.04 0.00 1.62267 -42.2033 -1.62267 1.62267 0.66 0.000322715 0.000299779 0.013224 0.0122769 26 817 11 6.64007e+06 87906 477104. 1650.88 0.62 0.0422818 0.0369375 21682 110474 -1 816 12 321 321 24472 5936 1.20445 1.20445 -45.4834 -1.20445 0 0 585099. 2024.56 0.17 0.03 0.11 -1 -1 0.17 0.012112 0.0105526 46 2 17 17 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 2.98 vpr 61.38 MiB 0.01 6172 -1 -1 1 0.03 -1 -1 30264 -1 -1 7 33 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62856 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 22.8 MiB 0.04 400 5507 1293 3991 223 61.4 MiB 0.04 0.00 1.63367 -44.5064 -1.63367 1.63367 0.64 0.000291081 0.000270084 0.0154438 0.0143365 26 881 17 6.64007e+06 87906 477104. 1650.88 0.62 0.0480119 0.0419197 21682 110474 -1 768 16 357 357 26049 6710 1.04025 1.04025 -44.3414 -1.04025 0 0 585099. 2024.56 0.16 0.03 0.10 -1 -1 0.16 0.0113143 0.00978266 49 2 18 18 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 2.95 vpr 61.39 MiB 0.02 6072 -1 -1 1 0.03 -1 -1 30312 -1 -1 8 37 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62864 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 22.8 MiB 0.04 467 4001 820 3044 137 61.4 MiB 0.03 0.00 1.65567 -51.2944 -1.65567 1.65567 0.64 0.000259328 0.000235758 0.0112207 0.0104382 26 1045 16 6.64007e+06 100464 477104. 1650.88 0.62 0.047727 0.0413558 21682 110474 -1 931 11 386 386 29872 7060 1.22645 1.22645 -53.9411 -1.22645 0 0 585099. 2024.56 0.20 0.01 0.10 -1 -1 0.20 0.00529279 0.00474067 55 2 20 20 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 3.13 vpr 61.50 MiB 0.03 6252 -1 -1 1 0.03 -1 -1 30300 -1 -1 8 41 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62972 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 22.9 MiB 0.04 551 4966 1056 3737 173 61.5 MiB 0.04 0.00 1.67767 -59.443 -1.67767 1.67767 0.61 0.00036004 0.000335223 0.0134188 0.0125014 32 1078 19 6.64007e+06 100464 554710. 1919.41 0.71 0.0557602 0.0484539 22834 132086 -1 981 15 498 498 37438 8919 1.12945 1.12945 -56.3501 -1.12945 0 0 701300. 2426.64 0.20 0.04 0.12 -1 -1 0.20 0.0138908 0.0120278 61 2 22 22 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 3.15 vpr 61.55 MiB 0.01 6296 -1 -1 1 0.03 -1 -1 30308 -1 -1 9 45 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63028 45 23 160 161 1 114 77 17 17 289 -1 unnamed_device 23.1 MiB 0.04 584 6760 1544 5011 205 61.6 MiB 0.05 0.00 1.69967 -63.9386 -1.69967 1.69967 0.64 0.000388774 0.00036212 0.0198359 0.0184574 28 1191 18 6.64007e+06 113022 500653. 1732.36 0.66 0.0643785 0.0565769 21970 115934 -1 1118 14 528 528 42588 10256 1.17345 1.17345 -62.9174 -1.17345 0 0 612192. 2118.31 0.18 0.03 0.13 -1 -1 0.18 0.0120803 0.0105928 67 2 24 24 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 3.30 vpr 61.61 MiB 0.02 6132 -1 -1 1 0.03 -1 -1 30324 -1 -1 10 49 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63088 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 23.0 MiB 0.05 754 12711 4339 7261 1111 61.6 MiB 0.09 0.00 2.07098 -75.5183 -2.07098 2.07098 0.67 0.000516549 0.000475216 0.0364987 0.0339557 30 1319 18 6.64007e+06 125580 526063. 1820.29 0.75 0.091485 0.0811039 22546 126617 -1 1197 10 456 456 32568 7809 1.13725 1.13725 -68.9549 -1.13725 0 0 666494. 2306.21 0.19 0.05 0.12 -1 -1 0.19 0.0161491 0.0146901 73 2 26 26 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 3.18 vpr 61.81 MiB 0.02 6268 -1 -1 1 0.03 -1 -1 29972 -1 -1 11 57 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63296 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 23.3 MiB 0.07 781 12973 3128 9205 640 61.8 MiB 0.08 0.00 2.11498 -88.6474 -2.11498 2.11498 0.63 0.00057425 0.000535294 0.0299399 0.0278951 28 1610 16 6.64007e+06 138138 500653. 1732.36 0.70 0.0812357 0.0722514 21970 115934 -1 1440 16 675 675 56617 12982 1.23625 1.23625 -81.6086 -1.23625 0 0 612192. 2118.31 0.21 0.04 0.11 -1 -1 0.21 0.0171077 0.0151214 85 2 30 30 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 3.32 vpr 62.25 MiB 0.02 6380 -1 -1 1 0.03 -1 -1 30396 -1 -1 13 65 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 23.6 MiB 0.05 1016 17401 7183 10118 100 62.2 MiB 0.10 0.00 2.50829 -106.175 -2.50829 2.50829 0.64 0.000570335 0.000531733 0.0391163 0.0364378 32 1805 17 6.64007e+06 163254 554710. 1919.41 0.76 0.102725 0.0916771 22834 132086 -1 1704 12 705 705 62663 14354 1.25625 1.25625 -92.5407 -1.25625 0 0 701300. 2426.64 0.19 0.05 0.13 -1 -1 0.19 0.0149432 0.0132416 97 2 34 34 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 3.62 vpr 62.81 MiB 0.02 6568 -1 -1 1 0.03 -1 -1 30516 -1 -1 19 97 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 24.0 MiB 0.07 1599 34969 13035 19621 2313 62.8 MiB 0.21 0.00 3.38291 -183.275 -3.38291 3.38291 0.66 0.00087185 0.00081747 0.071019 0.0665787 30 2865 25 6.64007e+06 238602 526063. 1820.29 0.87 0.180668 0.163879 22546 126617 -1 2528 17 979 979 83243 18564 1.50525 1.50525 -147.947 -1.50525 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0254108 0.0227919 145 2 50 50 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 3.93 vpr 63.53 MiB 0.04 6768 -1 -1 1 0.03 -1 -1 30280 -1 -1 25 129 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65052 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 24.7 MiB 0.09 1778 56234 21152 30749 4333 63.5 MiB 0.34 0.01 4.25753 -263.048 -4.25753 4.25753 0.65 0.00143797 0.00135245 0.109537 0.10293 32 3823 21 6.64007e+06 313950 554710. 1919.41 0.95 0.255285 0.233655 22834 132086 -1 3145 14 1364 1364 117954 27514 1.67725 1.67725 -193.473 -1.67725 0 0 701300. 2426.64 0.19 0.09 0.09 -1 -1 0.19 0.0339395 0.0307304 193 2 66 66 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 2.56 vpr 60.57 MiB 0.01 6052 -1 -1 1 0.02 -1 -1 29936 -1 -1 2 7 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62020 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 22.0 MiB 0.01 53 208 48 152 8 60.6 MiB 0.00 0.00 0.770048 -7.13557 -0.770048 0.770048 0.67 7.0194e-05 6.3198e-05 0.00121824 0.00109391 20 105 7 6.65987e+06 25356 394039. 1363.46 0.46 0.00434455 0.00388801 20530 87850 -1 101 4 27 27 1472 482 0.649848 0.649848 -7.25753 -0.649848 0 0 477104. 1650.88 0.14 0.01 0.08 -1 -1 0.14 0.00211419 0.00194723 10 2 5 5 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 2.73 vpr 60.68 MiB 0.02 6056 -1 -1 1 0.03 -1 -1 30064 -1 -1 2 9 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62136 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.0 MiB 0.01 48 356 62 287 7 60.7 MiB 0.01 0.00 0.792048 -9.65853 -0.792048 0.792048 0.69 0.000100988 9.1023e-05 0.00228958 0.00206068 20 138 8 6.65987e+06 25356 394039. 1363.46 0.49 0.00603489 0.00539628 20530 87850 -1 136 7 59 59 3823 1204 0.901248 0.901248 -10.5436 -0.901248 0 0 477104. 1650.88 0.16 0.02 0.09 -1 -1 0.16 0.00508408 0.00445247 13 2 6 6 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 2.69 vpr 60.64 MiB 0.01 6048 -1 -1 1 0.02 -1 -1 30188 -1 -1 2 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62100 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 22.0 MiB 0.01 67 419 80 331 8 60.6 MiB 0.01 0.00 0.803048 -11.78 -0.803048 0.803048 0.63 0.000123989 0.00011327 0.00247149 0.00225446 22 251 10 6.65987e+06 25356 420624. 1455.45 0.54 0.0143506 0.0120942 20818 92861 -1 198 8 93 93 4666 1476 1.04345 1.04345 -14.1496 -1.04345 0 0 500653. 1732.36 0.17 0.01 0.09 -1 -1 0.17 0.00311836 0.00279109 16 2 7 7 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 2.61 vpr 60.81 MiB 0.01 6084 -1 -1 1 0.02 -1 -1 29932 -1 -1 3 13 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62268 13 7 48 49 1 32 23 17 17 289 -1 unnamed_device 22.2 MiB 0.01 108 791 160 615 16 60.8 MiB 0.01 0.00 0.825048 -14.3383 -0.825048 0.825048 0.65 0.00014443 0.000132406 0.00380301 0.00347454 20 313 15 6.65987e+06 38034 394039. 1363.46 0.45 0.00899405 0.00796735 20530 87850 -1 281 9 139 139 8104 2382 1.02145 1.02145 -16.3994 -1.02145 0 0 477104. 1650.88 0.14 0.01 0.09 -1 -1 0.14 0.0040076 0.00352364 19 2 8 8 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 2.78 vpr 60.63 MiB 0.03 6084 -1 -1 1 0.02 -1 -1 30096 -1 -1 3 15 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62084 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 22.0 MiB 0.01 103 938 195 725 18 60.6 MiB 0.01 0.00 1.18536 -16.8309 -1.18536 1.18536 0.64 0.000139992 0.000128755 0.0039058 0.00359818 26 287 16 6.65987e+06 38034 477104. 1650.88 0.58 0.020877 0.0177356 21682 110474 -1 248 11 169 169 8146 2707 1.08545 1.08545 -19.412 -1.08545 0 0 585099. 2024.56 0.18 0.01 0.06 -1 -1 0.18 0.00442988 0.00389257 22 2 9 9 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 2.85 vpr 60.83 MiB 0.02 6140 -1 -1 1 0.02 -1 -1 29980 -1 -1 4 17 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62292 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 22.4 MiB 0.01 116 1180 259 878 43 60.8 MiB 0.01 0.00 1.19636 -19.5997 -1.19636 1.19636 0.65 0.000183371 0.000168841 0.00529865 0.00486947 28 333 16 6.65987e+06 50712 500653. 1732.36 0.62 0.0235706 0.0200056 21970 115934 -1 308 11 150 150 8272 2668 0.987248 0.987248 -22.2846 -0.987248 0 0 612192. 2118.31 0.18 0.02 0.10 -1 -1 0.18 0.00536488 0.00467309 25 2 10 10 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 2.79 vpr 60.80 MiB 0.02 6080 -1 -1 1 0.02 -1 -1 30004 -1 -1 4 19 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62260 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 22.4 MiB 0.01 185 1229 259 944 26 60.8 MiB 0.02 0.00 1.20736 -22.7097 -1.20736 1.20736 0.65 0.000207691 0.000192241 0.00559207 0.00515681 24 425 11 6.65987e+06 50712 448715. 1552.65 0.54 0.017351 0.0149956 21394 104001 -1 406 13 165 165 11227 3104 1.10639 1.10639 -26.3209 -1.10639 0 0 554710. 1919.41 0.16 0.03 0.12 -1 -1 0.16 0.010994 0.0093014 28 2 11 11 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 2.88 vpr 61.06 MiB 0.03 6156 -1 -1 1 0.02 -1 -1 30000 -1 -1 5 21 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62524 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 22.6 MiB 0.02 281 1379 251 1074 54 61.1 MiB 0.02 0.00 1.21836 -28.8147 -1.21836 1.21836 0.65 0.000230226 0.000213324 0.00569793 0.0052778 26 553 11 6.65987e+06 63390 477104. 1650.88 0.60 0.0290014 0.0244234 21682 110474 -1 516 16 243 243 19764 4661 0.953189 0.953189 -28.9809 -0.953189 0 0 585099. 2024.56 0.17 0.04 0.10 -1 -1 0.17 0.0126333 0.0106948 31 2 12 12 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 2.72 vpr 60.95 MiB 0.02 5992 -1 -1 1 0.02 -1 -1 30060 -1 -1 5 23 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62412 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 22.5 MiB 0.02 256 1536 305 1173 58 60.9 MiB 0.02 0.00 1.22936 -28.8616 -1.22936 1.22936 0.65 0.000210529 0.000195075 0.00540677 0.00500413 22 571 9 6.65987e+06 63390 420624. 1455.45 0.55 0.0296563 0.0252741 20818 92861 -1 486 10 168 168 9773 2816 0.998248 0.998248 -30.9101 -0.998248 0 0 500653. 1732.36 0.14 0.02 0.09 -1 -1 0.14 0.00563844 0.00495521 34 2 13 13 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 2.88 vpr 60.93 MiB 0.03 5992 -1 -1 1 0.02 -1 -1 30216 -1 -1 5 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62396 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 22.5 MiB 0.02 293 2293 540 1476 277 60.9 MiB 0.02 0.00 1.24036 -31.9104 -1.24036 1.24036 0.65 0.000222672 0.000206134 0.00743351 0.00686839 26 641 17 6.65987e+06 63390 477104. 1650.88 0.62 0.0357066 0.0304535 21682 110474 -1 609 15 298 298 24129 6114 1.02025 1.02025 -34.3265 -1.02025 0 0 585099. 2024.56 0.17 0.04 0.10 -1 -1 0.17 0.0130701 0.0110951 37 2 14 14 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 2.95 vpr 60.84 MiB 0.01 6116 -1 -1 1 0.02 -1 -1 30048 -1 -1 6 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62304 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 22.3 MiB 0.02 378 2231 478 1580 173 60.8 MiB 0.02 0.00 1.25136 -36.02 -1.25136 1.25136 0.64 0.000239386 0.000221863 0.00703961 0.0065221 30 672 13 6.65987e+06 76068 526063. 1820.29 0.67 0.0362539 0.0310859 22546 126617 -1 625 13 204 204 14424 3555 0.830189 0.830189 -33.8569 -0.830189 0 0 666494. 2306.21 0.19 0.02 0.12 -1 -1 0.19 0.00843239 0.00737555 40 2 15 15 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 2.88 vpr 61.00 MiB 0.01 6180 -1 -1 1 0.02 -1 -1 30256 -1 -1 6 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62460 29 15 104 105 1 73 50 17 17 289 -1 unnamed_device 22.5 MiB 0.02 331 2442 412 1993 37 61.0 MiB 0.02 0.00 1.26236 -36.7774 -1.26236 1.26236 0.64 0.000255304 0.000237109 0.00755612 0.00701514 26 771 9 6.65987e+06 76068 477104. 1650.88 0.66 0.0333346 0.0288117 21682 110474 -1 710 14 333 333 25907 6618 1.10745 1.10745 -39.5458 -1.10745 0 0 585099. 2024.56 0.16 0.02 0.10 -1 -1 0.16 0.00819036 0.00715065 43 2 16 16 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 2.87 vpr 60.96 MiB 0.01 6088 -1 -1 1 0.02 -1 -1 30316 -1 -1 7 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62428 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 22.4 MiB 0.01 435 3216 703 2283 230 61.0 MiB 0.03 0.00 1.62267 -42.4629 -1.62267 1.62267 0.66 0.000271837 0.000252099 0.00926702 0.00858249 26 863 13 6.65987e+06 88746 477104. 1650.88 0.63 0.0394741 0.0338256 21682 110474 -1 843 19 379 379 32055 7576 1.08425 1.08425 -44.4016 -1.08425 0 0 585099. 2024.56 0.16 0.03 0.11 -1 -1 0.16 0.0106269 0.00917959 46 2 17 17 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 3.02 vpr 61.07 MiB 0.03 6052 -1 -1 1 0.02 -1 -1 30392 -1 -1 7 33 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62540 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 22.5 MiB 0.03 427 6052 1399 4413 240 61.1 MiB 0.05 0.00 1.63367 -46.0647 -1.63367 1.63367 0.63 0.000290848 0.000270182 0.0170463 0.0158264 26 868 18 6.65987e+06 88746 477104. 1650.88 0.69 0.0516348 0.0450852 21682 110474 -1 835 14 381 381 30131 7304 1.09525 1.09525 -46.3516 -1.09525 0 0 585099. 2024.56 0.16 0.03 0.10 -1 -1 0.16 0.010369 0.00898596 49 2 18 18 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 2.98 vpr 61.11 MiB 0.03 6164 -1 -1 1 0.03 -1 -1 30292 -1 -1 8 37 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62576 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 22.5 MiB 0.03 445 3874 792 2975 107 61.1 MiB 0.03 0.00 1.65567 -51.2172 -1.65567 1.65567 0.66 0.000328031 0.000305277 0.0109131 0.0101502 26 976 16 6.65987e+06 101424 477104. 1650.88 0.63 0.0510882 0.0441096 21682 110474 -1 924 13 340 340 29716 7266 1.10625 1.10625 -51.6573 -1.10625 0 0 585099. 2024.56 0.20 0.03 0.10 -1 -1 0.20 0.00984489 0.00861976 55 2 20 20 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 3.05 vpr 61.21 MiB 0.01 6256 -1 -1 1 0.02 -1 -1 30232 -1 -1 8 41 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62676 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 22.6 MiB 0.03 520 5398 1104 4106 188 61.2 MiB 0.05 0.00 1.67767 -57.8445 -1.67767 1.67767 0.65 0.000358143 0.000333992 0.0166746 0.0155228 26 1149 26 6.65987e+06 101424 477104. 1650.88 0.72 0.0667134 0.0579531 21682 110474 -1 1013 17 534 534 43733 10882 1.14045 1.14045 -56.1815 -1.14045 0 0 585099. 2024.56 0.17 0.03 0.10 -1 -1 0.17 0.0108919 0.00954009 61 2 22 22 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 3.05 vpr 61.33 MiB 0.03 6204 -1 -1 1 0.02 -1 -1 30400 -1 -1 9 45 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62804 45 23 160 161 1 114 77 17 17 289 -1 unnamed_device 22.9 MiB 0.05 581 5945 1255 4536 154 61.3 MiB 0.05 0.00 1.69967 -64.3369 -1.69967 1.69967 0.64 0.000391801 0.000365514 0.0178984 0.0166756 26 1314 13 6.65987e+06 114102 477104. 1650.88 0.72 0.061083 0.0537634 21682 110474 -1 1253 12 524 524 50504 12257 1.24965 1.24965 -65.9318 -1.24965 0 0 585099. 2024.56 0.17 0.04 0.10 -1 -1 0.17 0.0118207 0.0104351 67 2 24 24 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 3.14 vpr 61.73 MiB 0.01 6148 -1 -1 1 0.03 -1 -1 30320 -1 -1 10 49 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63212 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 23.3 MiB 0.03 752 12711 4741 7378 592 61.7 MiB 0.08 0.00 2.07098 -75.6352 -2.07098 2.07098 0.63 0.000427824 0.000398094 0.0310486 0.0289262 30 1352 10 6.65987e+06 126780 526063. 1820.29 0.70 0.0743441 0.0662081 22546 126617 -1 1255 12 439 439 32408 7889 1.13725 1.13725 -68.7144 -1.13725 0 0 666494. 2306.21 0.19 0.04 0.14 -1 -1 0.19 0.0164274 0.014357 73 2 26 26 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 3.16 vpr 61.59 MiB 0.01 6380 -1 -1 1 0.03 -1 -1 29976 -1 -1 11 57 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63068 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 23.1 MiB 0.04 728 12751 3280 8876 595 61.6 MiB 0.08 0.00 2.11498 -85.6644 -2.11498 2.11498 0.63 0.000486355 0.000452393 0.0293639 0.0273297 32 1544 18 6.65987e+06 139458 554710. 1919.41 0.74 0.08403 0.074682 22834 132086 -1 1389 12 547 547 45634 11155 1.22525 1.22525 -78.7984 -1.22525 0 0 701300. 2426.64 0.19 0.04 0.12 -1 -1 0.19 0.0136703 0.0121766 85 2 30 30 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 3.30 vpr 61.71 MiB 0.01 6380 -1 -1 1 0.03 -1 -1 30268 -1 -1 13 65 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63192 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 23.1 MiB 0.04 1003 17401 6715 9666 1020 61.7 MiB 0.10 0.00 2.50829 -107.27 -2.50829 2.50829 0.64 0.000564995 0.000527365 0.0385892 0.0359922 30 1826 11 6.65987e+06 164814 526063. 1820.29 0.74 0.0970331 0.0868303 22546 126617 -1 1671 14 611 611 49547 11052 1.19105 1.19105 -91.9091 -1.19105 0 0 666494. 2306.21 0.18 0.05 0.14 -1 -1 0.18 0.0170892 0.0151981 97 2 34 34 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 3.52 vpr 62.68 MiB 0.02 6456 -1 -1 1 0.04 -1 -1 30520 -1 -1 19 97 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 23.8 MiB 0.06 1557 34969 14570 20249 150 62.7 MiB 0.21 0.00 3.38291 -180.939 -3.38291 3.38291 0.64 0.000870246 0.000815025 0.0706 0.0660776 32 2889 16 6.65987e+06 240882 554710. 1919.41 0.83 0.16844 0.153 22834 132086 -1 2667 14 986 986 94568 21634 1.39605 1.39605 -143.167 -1.39605 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.025671 0.0230992 145 2 50 50 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 4.05 vpr 63.27 MiB 0.04 6752 -1 -1 1 0.04 -1 -1 30256 -1 -1 25 129 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 24.5 MiB 0.08 1798 56234 20467 31758 4009 63.3 MiB 0.33 0.01 4.25753 -264.232 -4.25753 4.25753 0.68 0.00119776 0.00112604 0.105122 0.0987456 32 3834 29 6.65987e+06 316950 554710. 1919.41 1.08 0.266956 0.243996 22834 132086 -1 3326 14 1339 1339 128475 30100 1.63419 1.63419 -193.674 -1.63419 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0344429 0.0312212 193 2 66 66 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_003bits.v common 2.61 vpr 61.47 MiB 0.01 6144 -1 -1 1 0.02 -1 -1 29964 -1 -1 1 7 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62948 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 22.9 MiB 0.02 26 246 57 175 14 61.5 MiB 0.01 0.00 0.712895 -7.69589 -0.712895 0.712895 0.67 6.9947e-05 6.2765e-05 0.0015447 0.00138309 18 88 3 6.95648e+06 14475.7 376052. 1301.22 0.45 0.00914952 0.00773228 22882 88689 -1 82 3 14 14 509 178 0.712895 0.712895 -8.10503 -0.712895 0 0 470940. 1629.55 0.13 0.00 0.09 -1 -1 0.13 0.00201732 0.00188308 5 2 5 5 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_004bits.v common 2.63 vpr 61.44 MiB 0.01 5972 -1 -1 1 0.02 -1 -1 29920 -1 -1 1 9 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62916 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 22.8 MiB 0.02 38 285 68 210 7 61.4 MiB 0.01 0.00 0.62144 -9.16928 -0.62144 0.62144 0.66 8.7356e-05 7.9246e-05 0.00168539 0.00152823 20 128 9 6.95648e+06 14475.7 414966. 1435.87 0.49 0.0116541 0.00983442 23170 95770 -1 110 3 26 26 1366 430 0.74674 0.74674 -9.88017 -0.74674 0 0 503264. 1741.40 0.14 0.01 0.09 -1 -1 0.14 0.00215121 0.00200017 7 2 6 6 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_005bits.v common 2.67 vpr 61.58 MiB 0.01 6180 -1 -1 1 0.02 -1 -1 30056 -1 -1 1 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63056 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 23.0 MiB 0.03 125 64 27 35 2 61.6 MiB 0.00 0.00 1.08519 -14.5503 -1.08519 1.08519 0.66 5.2999e-05 4.556e-05 0.000416598 0.000380347 20 207 6 6.95648e+06 14475.7 414966. 1435.87 0.47 0.00392962 0.00355543 23170 95770 -1 195 6 30 30 2480 654 1.08519 1.08519 -14.5423 -1.08519 0 0 503264. 1741.40 0.14 0.01 0.09 -1 -1 0.14 0.00288477 0.00260521 8 2 7 7 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_006bits.v common 2.71 vpr 61.65 MiB 0.03 6128 -1 -1 1 0.02 -1 -1 29908 -1 -1 2 13 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63128 13 7 48 49 1 25 22 17 17 289 -1 unnamed_device 23.3 MiB 0.03 66 622 147 459 16 61.6 MiB 0.01 0.00 0.830632 -14.7061 -0.830632 0.830632 0.67 0.000121979 0.000111163 0.00291241 0.00266782 18 238 27 6.95648e+06 28951.4 376052. 1301.22 0.50 0.020427 0.0171527 22882 88689 -1 187 10 110 110 5614 1939 0.834592 0.834592 -16.5365 -0.834592 0 0 470940. 1629.55 0.13 0.01 0.08 -1 -1 0.13 0.00395424 0.0035081 10 2 8 8 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_007bits.v common 2.84 vpr 61.58 MiB 0.03 6020 -1 -1 1 0.02 -1 -1 30060 -1 -1 2 15 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63060 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 23.1 MiB 0.03 82 673 149 507 17 61.6 MiB 0.01 0.00 0.830632 -16.8934 -0.830632 0.830632 0.66 0.000164823 0.000151701 0.00359663 0.0033135 26 242 10 6.95648e+06 28951.4 503264. 1741.40 0.60 0.0192516 0.0164359 24322 120374 -1 237 10 145 145 9314 2936 1.06403 1.06403 -19.2829 -1.06403 0 0 618332. 2139.56 0.17 0.01 0.11 -1 -1 0.17 0.00419556 0.00370297 11 2 9 9 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_008bits.v common 2.80 vpr 61.75 MiB 0.01 6104 -1 -1 1 0.02 -1 -1 30044 -1 -1 2 17 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63236 17 9 62 63 1 37 28 17 17 289 -1 unnamed_device 23.3 MiB 0.04 161 700 166 470 64 61.8 MiB 0.01 0.00 0.841632 -20.1922 -0.841632 0.841632 0.67 0.000186935 0.000172121 0.00362371 0.00334311 22 438 17 6.95648e+06 28951.4 443629. 1535.05 0.56 0.0222666 0.0187582 23458 102101 -1 363 12 183 183 14497 3745 1.08603 1.08603 -23.7915 -1.08603 0 0 531479. 1839.03 0.15 0.01 0.09 -1 -1 0.15 0.00509427 0.00444436 13 2 10 10 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_009bits.v common 2.79 vpr 61.70 MiB 0.01 6044 -1 -1 1 0.02 -1 -1 30036 -1 -1 2 19 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63184 19 10 69 70 1 44 31 17 17 289 -1 unnamed_device 23.2 MiB 0.04 117 847 190 628 29 61.7 MiB 0.01 0.00 0.874632 -21.9508 -0.874632 0.874632 0.67 0.000174808 0.000161463 0.00366503 0.00338234 20 355 15 6.95648e+06 28951.4 414966. 1435.87 0.52 0.0106783 0.00947492 23170 95770 -1 330 12 210 210 12303 4472 0.999932 0.999932 -25.9604 -0.999932 0 0 503264. 1741.40 0.14 0.02 0.08 -1 -1 0.14 0.00549472 0.00480486 14 2 11 11 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_010bits.v common 3.07 vpr 61.71 MiB 0.03 6172 -1 -1 1 0.02 -1 -1 29992 -1 -1 2 21 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63192 21 11 76 77 1 49 34 17 17 289 -1 unnamed_device 23.2 MiB 0.04 316 859 151 690 18 61.7 MiB 0.01 0.00 0.896632 -29.5922 -0.896632 0.896632 0.67 0.000219763 0.000200525 0.00426958 0.00392151 30 637 14 6.95648e+06 28951.4 556674. 1926.21 0.71 0.0261548 0.0220875 25186 138497 -1 566 12 243 243 22941 4952 1.12523 1.12523 -32.2796 -1.12523 0 0 706193. 2443.58 0.18 0.02 0.13 -1 -1 0.18 0.00595595 0.00518014 16 2 12 12 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_011bits.v common 3.79 vpr 61.82 MiB 0.01 6112 -1 -1 1 0.02 -1 -1 30132 -1 -1 3 23 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63300 23 12 83 84 1 55 38 17 17 289 -1 unnamed_device 23.4 MiB 0.04 198 1298 273 1012 13 61.8 MiB 0.01 0.00 0.907632 -28.5647 -0.907632 0.907632 0.67 0.000200397 0.000180041 0.00504197 0.00467091 26 593 49 6.95648e+06 43427 503264. 1741.40 1.43 0.0617798 0.0514438 24322 120374 -1 497 14 301 301 20908 6200 1.13003 1.13003 -33.6466 -1.13003 0 0 618332. 2139.56 0.16 0.02 0.13 -1 -1 0.16 0.00710317 0.00613599 17 2 13 13 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_012bits.v common 3.45 vpr 61.82 MiB 0.03 6220 -1 -1 1 0.02 -1 -1 30028 -1 -1 3 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63308 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 23.4 MiB 0.04 368 1441 285 1041 115 61.8 MiB 0.02 0.00 0.918632 -34.4491 -0.918632 0.918632 0.66 0.000270384 0.000250782 0.00622358 0.00576231 34 760 18 6.95648e+06 43427 618332. 2139.56 1.08 0.0517101 0.0435088 25762 151098 -1 716 18 330 330 35885 7608 1.20033 1.20033 -38.8217 -1.20033 0 0 787024. 2723.27 0.22 0.03 0.10 -1 -1 0.22 0.00962408 0.00827676 19 2 14 14 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_013bits.v common 5.44 vpr 61.83 MiB 0.01 6132 -1 -1 1 0.03 -1 -1 30036 -1 -1 3 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63316 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 23.3 MiB 0.04 180 3971 1477 2086 408 61.8 MiB 0.03 0.00 0.951632 -32.5735 -0.951632 0.951632 0.67 0.000249923 0.000231776 0.0131599 0.0121796 38 531 27 6.95648e+06 43427 678818. 2348.85 2.99 0.0859414 0.0726927 26626 170182 -1 411 18 458 458 23093 7175 1.18933 1.18933 -32.3759 -1.18933 0 0 902133. 3121.57 0.22 0.03 0.15 -1 -1 0.22 0.01093 0.00943138 20 2 15 15 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_014bits.v common 4.22 vpr 61.84 MiB 0.03 6168 -1 -1 1 0.02 -1 -1 30300 -1 -1 3 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63328 29 15 104 105 1 72 47 17 17 289 -1 unnamed_device 23.3 MiB 0.05 227 4331 1745 2561 25 61.8 MiB 0.05 0.00 0.962632 -36.3287 -0.962632 0.962632 0.74 0.000300889 0.000277981 0.0210961 0.0195028 36 812 35 6.95648e+06 43427 648988. 2245.63 1.60 0.0806471 0.0694036 26050 158493 -1 643 28 535 535 56901 13609 1.31033 1.31033 -44.9186 -1.31033 0 0 828058. 2865.25 0.21 0.04 0.15 -1 -1 0.21 0.0141115 0.0120837 22 2 16 16 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_015bits.v common 3.26 vpr 62.06 MiB 0.03 6180 -1 -1 1 0.03 -1 -1 30280 -1 -1 3 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63548 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 23.5 MiB 0.05 237 4098 1359 2534 205 62.1 MiB 0.03 0.00 1.33396 -39.0993 -1.33396 1.33396 0.66 0.000367682 0.000335894 0.0140384 0.0130146 32 918 36 6.95648e+06 43427 586450. 2029.24 0.80 0.0559332 0.0483107 25474 144626 -1 677 19 440 440 44023 13407 1.18303 1.18303 -45.5742 -1.18303 0 0 744469. 2576.02 0.20 0.03 0.14 -1 -1 0.20 0.011618 0.0100114 24 2 17 17 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_016bits.v common 3.37 vpr 61.86 MiB 0.01 6236 -1 -1 1 0.02 -1 -1 30384 -1 -1 4 33 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63348 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 23.3 MiB 0.08 235 5052 1687 3325 40 61.9 MiB 0.04 0.00 1.34496 -41.9783 -1.34496 1.34496 0.66 0.000288455 0.000267371 0.015275 0.0141791 28 1051 35 6.95648e+06 57902.7 531479. 1839.03 0.93 0.0574984 0.0497961 24610 126494 -1 750 18 536 536 48167 15656 1.43363 1.43363 -51.9406 -1.43363 0 0 648988. 2245.63 0.18 0.03 0.11 -1 -1 0.18 0.011302 0.00977742 25 2 18 18 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_018bits.v common 3.67 vpr 61.97 MiB 0.03 6244 -1 -1 1 0.02 -1 -1 30288 -1 -1 4 37 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63460 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 23.4 MiB 0.08 349 5325 1277 4015 33 62.0 MiB 0.04 0.00 1.36696 -48.5746 -1.36696 1.36696 0.66 0.000386862 0.000360155 0.017502 0.0162807 34 928 20 6.95648e+06 57902.7 618332. 2139.56 1.17 0.0672604 0.0582211 25762 151098 -1 827 14 438 438 35697 8995 1.28633 1.28633 -54.7132 -1.28633 0 0 787024. 2723.27 0.23 0.03 0.14 -1 -1 0.23 0.0108629 0.00945842 28 2 20 20 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_020bits.v common 3.66 vpr 62.03 MiB 0.01 6224 -1 -1 1 0.02 -1 -1 30240 -1 -1 4 41 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63516 41 21 146 147 1 96 66 17 17 289 -1 unnamed_device 23.4 MiB 0.08 643 8312 2604 4958 750 62.0 MiB 0.06 0.00 1.38896 -61.9638 -1.38896 1.38896 0.65 0.000423859 0.000394491 0.0262633 0.0244319 34 1235 30 6.95648e+06 57902.7 618332. 2139.56 1.17 0.10186 0.0884186 25762 151098 -1 1155 19 493 493 55302 11323 1.40253 1.40253 -68.9159 -1.40253 0 0 787024. 2723.27 0.20 0.04 0.14 -1 -1 0.20 0.0138833 0.0120554 31 2 22 22 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_022bits.v common 4.07 vpr 62.13 MiB 0.03 6232 -1 -1 1 0.02 -1 -1 30376 -1 -1 5 45 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63620 45 23 160 161 1 107 73 17 17 289 -1 unnamed_device 23.5 MiB 0.11 465 7673 2070 5539 64 62.1 MiB 0.06 0.00 1.41096 -62.1793 -1.41096 1.41096 0.70 0.000492411 0.000459888 0.0245599 0.0228408 36 1080 17 6.95648e+06 72378.4 648988. 2245.63 1.36 0.104985 0.0916039 26050 158493 -1 993 12 490 490 43701 10133 1.40733 1.40733 -69.3961 -1.40733 0 0 828058. 2865.25 0.21 0.05 0.14 -1 -1 0.21 0.0173266 0.0151157 34 2 24 24 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_024bits.v common 3.81 vpr 62.23 MiB 0.02 6152 -1 -1 1 0.03 -1 -1 30388 -1 -1 5 49 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63720 49 25 174 175 1 119 79 17 17 289 -1 unnamed_device 23.5 MiB 0.11 477 11571 2984 8400 187 62.2 MiB 0.08 0.00 1.43296 -69.314 -1.43296 1.43296 0.66 0.000502504 0.000468129 0.0359599 0.0334848 34 1312 19 6.95648e+06 72378.4 618332. 2139.56 1.22 0.12085 0.106199 25762 151098 -1 1111 17 638 638 57936 14329 1.42933 1.42933 -77.4161 -1.42933 0 0 787024. 2723.27 0.21 0.04 0.13 -1 -1 0.21 0.0148322 0.0129957 37 2 26 26 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_028bits.v common 4.37 vpr 62.38 MiB 0.03 6340 -1 -1 1 0.03 -1 -1 30148 -1 -1 6 57 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63872 57 29 202 203 1 142 92 17 17 289 -1 unnamed_device 23.8 MiB 0.07 829 13133 5464 7620 49 62.4 MiB 0.08 0.00 1.47696 -85.3607 -1.47696 1.47696 0.66 0.000484852 0.000451039 0.0324261 0.0302189 34 1902 33 6.95648e+06 86854.1 618332. 2139.56 1.70 0.123759 0.108937 25762 151098 -1 1551 17 816 816 83921 18675 1.58283 1.58283 -95.4552 -1.58283 0 0 787024. 2723.27 0.23 0.10 0.14 -1 -1 0.23 0.0316181 0.0276675 43 2 30 30 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_032bits.v common 4.83 vpr 62.60 MiB 0.04 6476 -1 -1 1 0.03 -1 -1 30316 -1 -1 7 65 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 23.9 MiB 0.08 924 18136 7790 10245 101 62.6 MiB 0.11 0.00 1.88129 -101.424 -1.88129 1.88129 0.67 0.000591594 0.000553338 0.0433945 0.0404864 38 1980 34 6.95648e+06 101330 678818. 2348.85 2.03 0.16943 0.149247 26626 170182 -1 1707 19 920 920 123833 24957 1.47763 1.47763 -102.723 -1.47763 0 0 902133. 3121.57 0.24 0.07 0.15 -1 -1 0.24 0.0214973 0.0189327 49 2 34 34 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_048bits.v common 5.50 vpr 63.39 MiB 0.04 6468 -1 -1 1 0.03 -1 -1 30356 -1 -1 10 97 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 24.6 MiB 0.10 1600 30324 11596 17665 1063 63.4 MiB 0.17 0.00 2.41762 -168.85 -2.41762 2.41762 0.68 0.000867666 0.000812541 0.065513 0.0613541 46 2899 27 6.95648e+06 144757 828058. 2865.25 2.55 0.250531 0.225129 28066 200906 -1 2592 17 1092 1092 113477 24045 1.72233 1.72233 -168.337 -1.72233 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0303212 0.0272155 73 2 50 50 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_064bits.v common 6.40 vpr 64.04 MiB 0.02 6844 -1 -1 1 0.04 -1 -1 30300 -1 -1 13 129 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65580 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 25.3 MiB 0.12 1899 46107 19065 26925 117 64.0 MiB 0.26 0.01 2.95395 -232.912 -2.95395 2.95395 0.68 0.00143093 0.00134648 0.0952555 0.089571 58 3425 26 6.95648e+06 188184 997811. 3452.63 3.10 0.358972 0.326315 30370 251734 -1 3165 18 1575 1575 181293 37864 1.79303 1.79303 -210.904 -1.79303 0 0 1.25153e+06 4330.55 0.36 0.13 0.23 -1 -1 0.36 0.0507539 0.0460313 97 2 66 66 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_003bits.v common 2.63 vpr 61.28 MiB 0.01 6024 -1 -1 1 0.02 -1 -1 29928 -1 -1 1 7 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62752 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 22.7 MiB 0.01 26 246 57 176 13 61.3 MiB 0.01 0.00 0.62144 -7.32583 -0.62144 0.62144 0.67 6.9842e-05 6.2759e-05 0.00155698 0.00139369 18 87 6 6.99608e+06 14715.7 376052. 1301.22 0.48 0.0139151 0.0115 22882 88689 -1 82 3 15 15 542 184 0.709292 0.709292 -7.73498 -0.709292 0 0 470940. 1629.55 0.13 0.01 0.09 -1 -1 0.13 0.00197342 0.00184307 5 2 5 5 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_004bits.v common 2.61 vpr 61.43 MiB 0.02 6072 -1 -1 1 0.02 -1 -1 30064 -1 -1 1 9 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62900 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 22.8 MiB 0.01 42 285 67 217 1 61.4 MiB 0.01 0.00 0.601892 -8.86437 -0.601892 0.601892 0.65 8.8766e-05 8.0653e-05 0.00169653 0.00153446 18 115 6 6.99608e+06 14715.7 376052. 1301.22 0.46 0.0114069 0.00966204 22882 88689 -1 116 5 38 38 1967 715 0.709292 0.709292 -10.2606 -0.709292 0 0 470940. 1629.55 0.12 0.01 0.09 -1 -1 0.12 0.0023735 0.00216778 7 2 6 6 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_005bits.v common 2.51 vpr 61.35 MiB 0.03 6100 -1 -1 1 0.02 -1 -1 30032 -1 -1 1 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62824 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 22.7 MiB 0.01 126 64 25 37 2 61.4 MiB 0.00 0.00 1.04807 -14.6563 -1.04807 1.04807 0.65 8.0867e-05 6.817e-05 0.000600532 0.000549054 16 214 10 6.99608e+06 14715.7 332735. 1151.33 0.42 0.00459504 0.00409087 22306 75877 -1 208 8 49 49 3850 981 1.12264 1.12264 -15.0613 -1.12264 0 0 414966. 1435.87 0.11 0.01 0.05 -1 -1 0.11 0.00230967 0.00211558 8 2 7 7 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_006bits.v common 2.57 vpr 61.35 MiB 0.01 6020 -1 -1 1 0.02 -1 -1 29976 -1 -1 2 13 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62820 13 7 48 49 1 26 22 17 17 289 -1 unnamed_device 22.7 MiB 0.02 107 592 125 462 5 61.3 MiB 0.01 0.00 0.802432 -14.938 -0.802432 0.802432 0.66 0.000119744 0.000109232 0.00281145 0.00257676 18 269 16 6.99608e+06 29431.4 376052. 1301.22 0.44 0.00818808 0.00723898 22882 88689 -1 254 13 108 108 9334 2541 0.99734 0.99734 -17.0736 -0.99734 0 0 470940. 1629.55 0.12 0.01 0.05 -1 -1 0.12 0.00293911 0.00263407 10 2 8 8 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_007bits.v common 2.93 vpr 61.57 MiB 0.02 6080 -1 -1 1 0.02 -1 -1 29988 -1 -1 2 15 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63052 15 8 55 56 1 31 25 17 17 289 -1 unnamed_device 23.2 MiB 0.02 87 673 163 490 20 61.6 MiB 0.01 0.00 0.813432 -16.9635 -0.813432 0.813432 0.65 0.000139655 0.000128416 0.00304784 0.00279712 28 210 10 6.99608e+06 29431.4 531479. 1839.03 0.66 0.0200743 0.0169411 24610 126494 -1 213 16 100 100 4797 1745 0.938732 0.938732 -19.0323 -0.938732 0 0 648988. 2245.63 0.17 0.01 0.11 -1 -1 0.17 0.0053958 0.00467712 11 2 9 9 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_008bits.v common 2.86 vpr 61.56 MiB 0.01 6024 -1 -1 1 0.02 -1 -1 30092 -1 -1 2 17 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63036 17 9 62 63 1 36 28 17 17 289 -1 unnamed_device 23.1 MiB 0.02 89 868 259 545 64 61.6 MiB 0.01 0.00 0.835432 -19.044 -0.835432 0.835432 0.68 0.000155982 0.000143549 0.00376903 0.00346645 26 304 21 6.99608e+06 29431.4 503264. 1741.40 0.62 0.0252732 0.0212531 24322 120374 -1 230 8 137 137 6902 2290 0.960732 0.960732 -19.4915 -0.960732 0 0 618332. 2139.56 0.17 0.01 0.11 -1 -1 0.17 0.00512295 0.00464949 13 2 10 10 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_009bits.v common 2.67 vpr 61.44 MiB 0.01 6116 -1 -1 1 0.02 -1 -1 30172 -1 -1 2 19 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62916 19 10 69 70 1 43 31 17 17 289 -1 unnamed_device 23.0 MiB 0.01 117 799 181 587 31 61.4 MiB 0.01 0.00 0.846432 -21.5131 -0.846432 0.846432 0.69 0.000174756 0.00016156 0.00344098 0.00316589 20 328 9 6.99608e+06 29431.4 414966. 1435.87 0.47 0.00892035 0.00801893 23170 95770 -1 323 12 204 204 10994 3934 1.05303 1.05303 -25.6719 -1.05303 0 0 503264. 1741.40 0.14 0.02 0.09 -1 -1 0.14 0.00551696 0.00480719 14 2 11 11 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_010bits.v common 3.40 vpr 61.74 MiB 0.01 6096 -1 -1 1 0.02 -1 -1 30052 -1 -1 2 21 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63220 21 11 76 77 1 48 34 17 17 289 -1 unnamed_device 23.3 MiB 0.02 206 1079 232 829 18 61.7 MiB 0.01 0.00 0.87204 -26.5938 -0.87204 0.87204 0.66 0.000194966 0.000180194 0.00439512 0.00407367 34 516 14 6.99608e+06 29431.4 618332. 2139.56 1.05 0.0420951 0.0352119 25762 151098 -1 452 14 214 214 17119 4048 1.10803 1.10803 -28.824 -1.10803 0 0 787024. 2723.27 0.20 0.02 0.14 -1 -1 0.20 0.00696141 0.00606586 16 2 12 12 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_011bits.v common 3.09 vpr 61.66 MiB 0.03 6060 -1 -1 1 0.03 -1 -1 30012 -1 -1 3 23 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63144 23 12 83 84 1 54 38 17 17 289 -1 unnamed_device 23.2 MiB 0.01 245 1298 255 1031 12 61.7 MiB 0.01 0.00 0.879432 -28.9525 -0.879432 0.879432 0.72 0.000210764 0.000195225 0.0049803 0.00461522 30 597 29 6.99608e+06 44147 556674. 1926.21 0.71 0.032753 0.027673 25186 138497 -1 502 13 273 273 20339 4722 1.08603 1.08603 -30.5153 -1.08603 0 0 706193. 2443.58 0.19 0.02 0.12 -1 -1 0.19 0.00670618 0.00582973 17 2 13 13 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_012bits.v common 3.61 vpr 61.82 MiB 0.01 6228 -1 -1 1 0.02 -1 -1 30040 -1 -1 3 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63300 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 23.4 MiB 0.02 340 1441 266 1110 65 61.8 MiB 0.01 0.00 0.901432 -33.1271 -0.901432 0.901432 0.68 0.000100838 9.1709e-05 0.00258159 0.00236179 34 746 15 6.99608e+06 44147 618332. 2139.56 1.18 0.0449851 0.03759 25762 151098 -1 681 16 316 316 34407 7368 1.02388 1.02388 -36.7038 -1.02388 0 0 787024. 2723.27 0.23 0.03 0.13 -1 -1 0.23 0.0116346 0.00995567 19 2 14 14 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_013bits.v common 5.53 vpr 61.71 MiB 0.01 6140 -1 -1 1 0.03 -1 -1 30044 -1 -1 3 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63188 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 23.2 MiB 0.01 178 3971 1404 1915 652 61.7 MiB 0.05 0.00 0.912432 -32.1713 -0.912432 0.912432 0.67 0.000236169 0.000216707 0.0215494 0.0198926 40 457 37 6.99608e+06 44147 706193. 2443.58 3.14 0.0951369 0.0809945 26914 176310 -1 466 15 378 378 25966 7634 1.15203 1.15203 -33.8446 -1.15203 0 0 926341. 3205.33 0.23 0.02 0.15 -1 -1 0.23 0.00815911 0.00709359 20 2 15 15 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_014bits.v common 5.37 vpr 61.79 MiB 0.01 6216 -1 -1 1 0.03 -1 -1 30228 -1 -1 3 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63268 29 15 104 105 1 72 47 17 17 289 -1 unnamed_device 23.2 MiB 0.02 198 4331 1522 2096 713 61.8 MiB 0.05 0.00 0.934432 -35.1872 -0.934432 0.934432 0.66 0.000337412 0.000312213 0.0234828 0.021747 38 613 23 6.99608e+06 44147 678818. 2348.85 2.90 0.0889024 0.0762483 26626 170182 -1 476 15 417 417 29276 8251 1.17403 1.17403 -37.004 -1.17403 0 0 902133. 3121.57 0.22 0.03 0.15 -1 -1 0.22 0.00865225 0.00753462 22 2 16 16 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_015bits.v common 4.44 vpr 61.74 MiB 0.01 6156 -1 -1 1 0.03 -1 -1 30384 -1 -1 3 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63224 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 23.2 MiB 0.02 227 4098 1263 2618 217 61.7 MiB 0.03 0.00 1.30576 -38.4531 -1.30576 1.30576 0.66 0.00031954 0.000296037 0.0132527 0.0122946 28 919 23 6.99608e+06 44147 531479. 1839.03 2.08 0.0771915 0.0658074 24610 126494 -1 742 39 524 524 136090 87091 1.34133 1.34133 -49.6429 -1.34133 0 0 648988. 2245.63 0.18 0.07 0.12 -1 -1 0.18 0.0187748 0.015963 24 2 17 17 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_016bits.v common 3.62 vpr 61.70 MiB 0.02 6216 -1 -1 1 0.03 -1 -1 30260 -1 -1 4 33 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63184 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 23.1 MiB 0.03 362 3012 639 2325 48 61.7 MiB 0.03 0.00 1.31676 -43.8553 -1.31676 1.31676 0.66 0.000342281 0.00031786 0.011086 0.0103099 34 957 15 6.99608e+06 58862.7 618332. 2139.56 1.17 0.0655455 0.0559129 25762 151098 -1 859 18 455 455 51906 11341 1.41163 1.41163 -51.4029 -1.41163 0 0 787024. 2723.27 0.21 0.04 0.14 -1 -1 0.21 0.0132415 0.0114455 25 2 18 18 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_018bits.v common 3.83 vpr 61.83 MiB 0.01 6212 -1 -1 1 0.02 -1 -1 30296 -1 -1 4 37 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63316 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 23.2 MiB 0.03 307 4623 989 3596 38 61.8 MiB 0.04 0.00 1.33876 -48.0718 -1.33876 1.33876 0.62 0.0003311 0.000308307 0.0140394 0.0130778 34 914 47 6.99608e+06 58862.7 618332. 2139.56 1.23 0.0916112 0.0782119 25762 151098 -1 737 20 476 476 51891 12523 1.14288 1.14288 -52.6321 -1.14288 0 0 787024. 2723.27 0.23 0.04 0.14 -1 -1 0.23 0.0138672 0.0119163 28 2 20 20 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_020bits.v common 3.60 vpr 61.93 MiB 0.01 6108 -1 -1 1 0.03 -1 -1 30388 -1 -1 4 41 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63416 41 21 146 147 1 94 66 17 17 289 -1 unnamed_device 23.3 MiB 0.03 643 8179 2647 4716 816 61.9 MiB 0.05 0.00 1.36076 -60.9293 -1.36076 1.36076 0.68 0.000362028 0.000337194 0.0234688 0.0218212 34 1237 19 6.99608e+06 58862.7 618332. 2139.56 1.16 0.0945724 0.0819346 25762 151098 -1 1130 12 378 378 38925 8003 1.18303 1.18303 -64.131 -1.18303 0 0 787024. 2723.27 0.20 0.03 0.13 -1 -1 0.20 0.0100629 0.0088598 31 2 22 22 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_022bits.v common 3.36 vpr 62.26 MiB 0.02 6200 -1 -1 1 0.03 -1 -1 30472 -1 -1 5 45 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63752 45 23 160 161 1 106 73 17 17 289 -1 unnamed_device 23.6 MiB 0.03 375 8585 2269 6036 280 62.3 MiB 0.07 0.00 1.38276 -61.0669 -1.38276 1.38276 0.67 0.000390752 0.000363715 0.0276593 0.0257255 30 1103 19 6.99608e+06 73578.4 556674. 1926.21 0.84 0.0730901 0.0646184 25186 138497 -1 878 18 524 524 37288 10581 1.28633 1.28633 -65.5063 -1.28633 0 0 706193. 2443.58 0.19 0.04 0.11 -1 -1 0.19 0.0143167 0.012504 34 2 24 24 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_024bits.v common 3.33 vpr 62.02 MiB 0.03 6212 -1 -1 1 0.02 -1 -1 30280 -1 -1 5 49 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63512 49 25 174 175 1 118 79 17 17 289 -1 unnamed_device 23.4 MiB 0.04 470 11571 3015 8364 192 62.0 MiB 0.08 0.00 1.40476 -68.6401 -1.40476 1.40476 0.67 0.000499094 0.000464533 0.0348574 0.0324337 30 1355 26 6.99608e+06 73578.4 556674. 1926.21 0.82 0.0901059 0.0797751 25186 138497 -1 1108 15 630 630 55373 14311 1.53263 1.53263 -81.075 -1.53263 0 0 706193. 2443.58 0.20 0.06 0.12 -1 -1 0.20 0.0144373 0.012727 37 2 26 26 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_028bits.v common 4.58 vpr 62.40 MiB 0.01 6424 -1 -1 1 0.03 -1 -1 30052 -1 -1 6 57 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63896 57 29 202 203 1 141 92 17 17 289 -1 unnamed_device 23.9 MiB 0.04 983 13754 5168 7361 1225 62.4 MiB 0.08 0.00 1.44876 -89.273 -1.44876 1.44876 0.66 0.000495102 0.000460905 0.0338365 0.0315384 36 1932 26 6.99608e+06 88294.1 648988. 2245.63 2.04 0.136573 0.120347 26050 158493 -1 1709 14 732 732 88262 17454 1.38533 1.38533 -95.1897 -1.38533 0 0 828058. 2865.25 0.22 0.05 0.14 -1 -1 0.22 0.0147174 0.013013 43 2 30 30 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_032bits.v common 6.51 vpr 62.25 MiB 0.03 6444 -1 -1 1 0.03 -1 -1 30296 -1 -1 7 65 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63740 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 23.7 MiB 0.05 938 18136 7666 10324 146 62.2 MiB 0.11 0.00 1.85309 -100.228 -1.85309 1.85309 0.67 0.000565693 0.000528359 0.0433505 0.0404764 44 1753 37 6.99608e+06 103010 787024. 2723.27 3.77 0.211064 0.185461 27778 195446 -1 1506 22 822 822 76229 16603 1.22073 1.22073 -93.7336 -1.22073 0 0 997811. 3452.63 0.25 0.06 0.16 -1 -1 0.25 0.0249645 0.0219304 49 2 34 34 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_048bits.v common 11.48 vpr 63.16 MiB 0.02 6600 -1 -1 1 0.03 -1 -1 30484 -1 -1 10 97 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 24.4 MiB 0.06 1600 30324 10676 17928 1720 63.2 MiB 0.17 0.00 2.38942 -168.824 -2.38942 2.38942 0.67 0.00090045 0.000846311 0.067848 0.063699 40 2938 41 6.99608e+06 147157 706193. 2443.58 8.62 0.445449 0.397933 26914 176310 -1 2764 20 1241 1241 273195 94637 1.51533 1.51533 -157.71 -1.51533 0 0 926341. 3205.33 0.23 0.12 0.16 -1 -1 0.23 0.0345075 0.0309253 73 2 50 50 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_064bits.v common 6.45 vpr 63.91 MiB 0.02 6824 -1 -1 1 0.03 -1 -1 30308 -1 -1 13 129 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65440 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 25.0 MiB 0.09 1882 46107 19193 26799 115 63.9 MiB 0.26 0.01 2.92575 -230.221 -2.92575 2.92575 0.67 0.00119577 0.00112328 0.0941022 0.0883698 56 3324 21 6.99608e+06 191304 973134. 3367.25 3.31 0.393861 0.356914 29794 239141 -1 3177 17 1483 1483 176827 36520 1.66733 1.66733 -201.755 -1.66733 0 0 1.19926e+06 4149.71 0.30 0.11 0.22 -1 -1 0.30 0.0418622 0.0378945 97 2 66 66 0 0 +fixed_k6_frac_N8_22nm.xml adder_003bits.v common 2.63 vpr 60.92 MiB 0.01 5732 -1 -1 1 0.06 -1 -1 31692 -1 -1 1 7 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62380 7 4 21 25 1 11 12 17 17 289 -1 unnamed_device 22.3 MiB 0.02 33 272 66 196 10 60.9 MiB 0.01 0.00 0.62144 -7.45301 -0.62144 0.62144 0.67 6.6187e-05 5.925e-05 0.00162367 0.00144416 18 89 5 6.79088e+06 13472 376052. 1301.22 0.43 0.00477332 0.00436651 22222 88205 -1 96 12 56 56 3434 1195 0.87204 0.87204 -8.56281 -0.87204 0 0 470940. 1629.55 0.16 0.01 0.08 -1 -1 0.16 0.00288475 0.00256578 6 4 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_004bits.v common 2.86 vpr 60.86 MiB 0.01 5768 -1 -1 2 0.06 -1 -1 31784 -1 -1 1 9 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62316 9 5 28 33 1 16 15 17 17 289 -1 unnamed_device 22.3 MiB 0.02 38 321 80 225 16 60.9 MiB 0.01 0.00 0.883748 -10.0404 -0.883748 0.883748 0.69 9.3326e-05 8.4893e-05 0.00186552 0.00169598 26 115 8 6.79088e+06 13472 503264. 1741.40 0.58 0.0132945 0.0114371 23662 119890 -1 128 5 34 34 1890 580 0.883748 0.883748 -11.0965 -0.883748 0 0 618332. 2139.56 0.17 0.01 0.11 -1 -1 0.17 0.00267052 0.00242806 8 6 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_005bits.v common 2.64 vpr 61.00 MiB 0.03 5732 -1 -1 2 0.06 -1 -1 31860 -1 -1 2 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62464 11 6 34 40 1 23 19 17 17 289 -1 unnamed_device 22.4 MiB 0.01 171 94 40 54 0 61.0 MiB 0.00 0.00 1.02368 -16.5872 -1.02368 1.02368 0.66 0.000107051 9.7386e-05 0.00073107 0.000675006 18 265 9 6.79088e+06 26944 376052. 1301.22 0.44 0.00473124 0.00423882 22222 88205 -1 288 9 87 100 7075 1832 1.02368 1.02368 -17.1824 -1.02368 0 0 470940. 1629.55 0.15 0.01 0.09 -1 -1 0.15 0.00330608 0.00294248 10 7 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_006bits.v common 2.87 vpr 60.88 MiB 0.01 5800 -1 -1 3 0.06 -1 -1 31956 -1 -1 2 13 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62336 13 7 41 48 1 30 22 17 17 289 -1 unnamed_device 22.3 MiB 0.01 78 532 122 389 21 60.9 MiB 0.01 0.00 1.14898 -15.9596 -1.14898 1.14898 0.79 0.000126434 0.000115978 0.00267124 0.00244984 22 254 10 6.79088e+06 26944 443629. 1535.05 0.53 0.0161963 0.0136579 22798 101617 -1 235 6 82 86 5455 1694 1.05944 1.05944 -17.5826 -1.05944 0 0 531479. 1839.03 0.15 0.01 0.10 -1 -1 0.15 0.00311086 0.00279428 11 9 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_007bits.v common 2.87 vpr 60.90 MiB 0.03 5740 -1 -1 3 0.06 -1 -1 32336 -1 -1 2 15 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62360 15 8 47 55 1 36 25 17 17 289 -1 unnamed_device 22.3 MiB 0.01 107 781 172 592 17 60.9 MiB 0.01 0.00 1.35273 -19.9506 -1.35273 1.35273 0.70 0.000175034 0.000157087 0.00433218 0.00398709 22 364 10 6.79088e+06 26944 443629. 1535.05 0.55 0.0197656 0.0168178 22798 101617 -1 282 8 119 134 7269 2325 1.35273 1.35273 -22.4071 -1.35273 0 0 531479. 1839.03 0.16 0.01 0.09 -1 -1 0.16 0.00390393 0.00347587 13 10 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_008bits.v common 3.00 vpr 61.07 MiB 0.03 5780 -1 -1 3 0.06 -1 -1 32044 -1 -1 2 17 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62536 17 9 56 65 1 43 28 17 17 289 -1 unnamed_device 22.7 MiB 0.04 115 994 199 767 28 61.1 MiB 0.01 0.00 1.52493 -22.3533 -1.52493 1.52493 0.73 0.000181298 0.000167565 0.00470021 0.00434725 26 395 12 6.79088e+06 26944 503264. 1741.40 0.61 0.0258358 0.0218753 23662 119890 -1 347 9 163 176 8572 2816 1.27433 1.27433 -24.248 -1.27433 0 0 618332. 2139.56 0.17 0.01 0.11 -1 -1 0.17 0.0048104 0.00422768 16 14 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_009bits.v common 3.14 vpr 61.05 MiB 0.03 5760 -1 -1 4 0.07 -1 -1 31856 -1 -1 3 19 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62516 19 10 60 70 1 49 32 17 17 289 -1 unnamed_device 22.6 MiB 0.04 196 1232 436 745 51 61.1 MiB 0.02 0.00 1.31348 -26.7556 -1.31348 1.31348 0.66 0.000217759 0.000200929 0.00596662 0.0055114 30 497 16 6.79088e+06 40416 556674. 1926.21 0.77 0.0286625 0.0242314 24526 138013 -1 413 9 189 200 13868 3596 1.1736 1.1736 -27.3921 -1.1736 0 0 706193. 2443.58 0.19 0.01 0.12 -1 -1 0.19 0.00502343 0.00442599 17 13 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_010bits.v common 3.18 vpr 60.99 MiB 0.02 5840 -1 -1 4 0.06 -1 -1 31772 -1 -1 3 21 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62452 21 11 69 80 1 55 35 17 17 289 -1 unnamed_device 22.5 MiB 0.16 167 1403 308 1078 17 61.0 MiB 0.02 0.00 1.85398 -30.8307 -1.85398 1.85398 0.67 0.000245931 0.000226799 0.00647482 0.00597646 22 674 49 6.79088e+06 40416 443629. 1535.05 0.66 0.049205 0.0415479 22798 101617 -1 501 10 241 288 16885 5398 1.65028 1.65028 -34.1026 -1.65028 0 0 531479. 1839.03 0.21 0.02 0.09 -1 -1 0.21 0.0059691 0.00525898 21 17 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_011bits.v common 3.50 vpr 61.17 MiB 0.01 5852 -1 -1 5 0.06 -1 -1 32492 -1 -1 3 23 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62640 23 12 73 85 1 60 38 17 17 289 -1 unnamed_device 22.7 MiB 0.07 255 1424 308 1101 15 61.2 MiB 0.02 0.00 1.8114 -35.123 -1.8114 1.8114 0.69 0.000260287 0.000240887 0.00679788 0.00629437 34 666 12 6.79088e+06 40416 618332. 2139.56 1.08 0.050825 0.0428367 25102 150614 -1 580 11 233 283 23212 5544 1.8114 1.8114 -36.8915 -1.8114 0 0 787024. 2723.27 0.20 0.02 0.13 -1 -1 0.20 0.00643536 0.00565564 20 16 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_012bits.v common 3.65 vpr 61.20 MiB 0.03 5936 -1 -1 5 0.07 -1 -1 31872 -1 -1 3 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62664 25 13 82 95 1 66 41 17 17 289 -1 unnamed_device 22.7 MiB 0.18 315 1721 363 1322 36 61.2 MiB 0.02 0.00 2.11577 -41.2814 -2.11577 2.11577 0.68 0.000240218 0.000222282 0.00673743 0.00623216 34 735 13 6.79088e+06 40416 618332. 2139.56 1.06 0.0555511 0.0470063 25102 150614 -1 669 13 240 272 22872 5348 1.85403 1.85403 -41.6979 -1.85403 0 0 787024. 2723.27 0.21 0.02 0.14 -1 -1 0.21 0.00757687 0.0066196 24 20 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_013bits.v common 3.19 vpr 61.12 MiB 0.03 5872 -1 -1 5 0.06 -1 -1 32112 -1 -1 4 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62588 27 14 91 105 1 72 45 17 17 289 -1 unnamed_device 22.6 MiB 0.23 235 2285 486 1742 57 61.1 MiB 0.01 0.00 2.15497 -43.2975 -2.15497 2.15497 0.56 0.000146093 0.000133421 0.00493531 0.00451688 34 681 36 6.79088e+06 53888 618332. 2139.56 0.81 0.0343123 0.02901 25102 150614 -1 554 11 255 319 17452 5001 1.81483 1.81483 -42.4861 -1.81483 0 0 787024. 2723.27 0.20 0.02 0.13 -1 -1 0.20 0.00770394 0.00677641 27 24 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_014bits.v common 3.22 vpr 61.20 MiB 0.01 5856 -1 -1 6 0.07 -1 -1 31936 -1 -1 4 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62664 29 15 95 110 1 77 48 17 17 289 -1 unnamed_device 22.7 MiB 0.19 239 3267 703 2442 122 61.2 MiB 0.03 0.00 2.36642 -47.1965 -2.36642 2.36642 0.65 0.00028241 0.000261892 0.0115008 0.0106796 30 708 16 6.79088e+06 53888 556674. 1926.21 0.71 0.0432284 0.0373342 24526 138013 -1 556 12 292 335 17825 5336 2.06549 2.06549 -46.1813 -2.06549 0 0 706193. 2443.58 0.19 0.02 0.12 -1 -1 0.19 0.00824659 0.00721058 28 23 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_015bits.v common 3.59 vpr 61.33 MiB 0.01 5776 -1 -1 6 0.06 -1 -1 31908 -1 -1 5 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62800 31 16 104 120 1 83 52 17 17 289 -1 unnamed_device 22.8 MiB 0.51 331 4611 1094 3483 34 61.3 MiB 0.04 0.00 2.65628 -53.9613 -2.65628 2.65628 0.65 0.000311256 0.000288717 0.0158324 0.0146876 28 928 18 6.79088e+06 67360 531479. 1839.03 0.74 0.0520143 0.0450422 23950 126010 -1 775 13 341 470 30157 7825 2.36648 2.36648 -53.8367 -2.36648 0 0 648988. 2245.63 0.18 0.03 0.11 -1 -1 0.18 0.00956828 0.00834612 32 27 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_016bits.v common 3.60 vpr 61.31 MiB 0.01 5912 -1 -1 7 0.06 -1 -1 31824 -1 -1 4 33 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62784 33 17 108 125 1 88 54 17 17 289 -1 unnamed_device 22.8 MiB 0.48 608 5154 1451 2664 1039 61.3 MiB 0.04 0.00 2.69548 -63.6839 -2.69548 2.69548 0.66 0.000385285 0.000358152 0.0205307 0.01908 30 1143 21 6.79088e+06 53888 556674. 1926.21 0.71 0.0590489 0.0515864 24526 138013 -1 1043 11 317 384 26198 6012 2.39454 2.39454 -63.3864 -2.39454 0 0 706193. 2443.58 0.19 0.02 0.13 -1 -1 0.19 0.00881388 0.00775075 32 26 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_018bits.v common 4.43 vpr 61.29 MiB 0.01 5884 -1 -1 7 0.09 -1 -1 32484 -1 -1 5 37 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62764 37 19 127 146 1 100 61 17 17 289 -1 unnamed_device 22.7 MiB 0.88 661 3781 906 2518 357 61.3 MiB 0.03 0.00 3.03567 -75.9544 -3.03567 3.03567 0.68 0.000367577 0.000341109 0.0128341 0.0119164 34 1285 30 6.79088e+06 67360 618332. 2139.56 1.18 0.0903352 0.0772856 25102 150614 -1 1211 14 379 531 37075 8541 2.62057 2.62057 -74.747 -2.62057 0 0 787024. 2723.27 0.20 0.03 0.09 -1 -1 0.20 0.0116955 0.010211 37 35 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_020bits.v common 4.32 vpr 61.82 MiB 0.01 5900 -1 -1 8 0.08 -1 -1 32236 -1 -1 6 41 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63308 41 21 139 160 1 110 68 17 17 289 -1 unnamed_device 23.4 MiB 0.62 560 5864 1353 4034 477 61.8 MiB 0.04 0.00 2.82083 -78.2516 -2.82083 2.82083 0.65 0.000398447 0.000370144 0.0182796 0.016993 34 1359 37 6.79088e+06 80832 618332. 2139.56 1.25 0.105956 0.0913965 25102 150614 -1 1162 13 425 576 48317 11363 2.60599 2.60599 -79.9872 -2.60599 0 0 787024. 2723.27 0.20 0.03 0.14 -1 -1 0.20 0.0120408 0.0106331 42 37 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_022bits.v common 4.17 vpr 61.50 MiB 0.03 6044 -1 -1 9 0.07 -1 -1 32312 -1 -1 6 45 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62972 45 23 152 175 1 121 74 17 17 289 -1 unnamed_device 23.1 MiB 0.99 569 6429 1548 4565 316 61.5 MiB 0.05 0.00 3.45087 -87.8964 -3.45087 3.45087 0.65 0.00051247 0.000475924 0.0202475 0.0187956 30 1346 15 6.79088e+06 80832 556674. 1926.21 0.74 0.0679099 0.0596845 24526 138013 -1 1199 10 435 591 33788 8803 3.20027 3.20027 -91.596 -3.20027 0 0 706193. 2443.58 0.21 0.03 0.11 -1 -1 0.21 0.0118123 0.0104744 45 40 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_024bits.v common 5.06 vpr 61.68 MiB 0.01 5952 -1 -1 10 0.08 -1 -1 32656 -1 -1 6 49 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63156 49 25 165 190 1 131 80 17 17 289 -1 unnamed_device 23.2 MiB 1.04 490 11088 4620 6440 28 61.7 MiB 0.08 0.00 3.70153 -100.305 -3.70153 3.70153 0.65 0.00055466 0.000514496 0.035894 0.0332878 36 1543 32 6.79088e+06 80832 648988. 2245.63 1.51 0.112577 0.0991462 25390 158009 -1 1146 12 527 713 45707 11961 3.40059 3.40059 -96.9203 -3.40059 0 0 828058. 2865.25 0.21 0.04 0.14 -1 -1 0.21 0.0135838 0.0120854 48 43 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_028bits.v common 5.87 vpr 61.81 MiB 0.03 5960 -1 -1 11 0.07 -1 -1 32692 -1 -1 9 57 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63292 57 29 199 228 1 156 95 17 17 289 -1 unnamed_device 23.3 MiB 2.03 858 13919 3611 9607 701 61.8 MiB 0.11 0.00 4.45687 -136.905 -4.45687 4.45687 0.79 0.000680964 0.000634009 0.0527421 0.0490878 30 1959 44 6.79088e+06 121248 556674. 1926.21 1.16 0.139955 0.124106 24526 138013 -1 1696 13 587 803 53198 12346 3.99143 3.99143 -133.711 -3.99143 0 0 706193. 2443.58 0.20 0.04 0.12 -1 -1 0.20 0.0170538 0.0150973 59 57 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_032bits.v common 5.99 vpr 61.79 MiB 0.02 6180 -1 -1 13 0.09 -1 -1 31948 -1 -1 9 65 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63272 65 33 224 257 1 176 107 17 17 289 -1 unnamed_device 23.2 MiB 1.30 636 20347 6786 10007 3554 61.8 MiB 0.12 0.00 5.42361 -161.246 -5.42361 5.42361 0.66 0.000797114 0.00072738 0.0586558 0.0546299 40 1688 41 6.79088e+06 121248 706193. 2443.58 1.98 0.214939 0.190014 26254 175826 -1 1351 20 710 934 110100 45329 4.92241 4.92241 -150.99 -4.92241 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0262457 0.0232549 65 62 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_048bits.v common 6.04 vpr 62.90 MiB 0.02 6352 -1 -1 19 0.10 -1 -1 32464 -1 -1 14 97 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 97 49 340 389 1 266 160 17 17 289 -1 unnamed_device 24.2 MiB 1.61 1414 32276 9655 19397 3224 62.9 MiB 0.17 0.00 7.54987 -303.629 -7.54987 7.54987 0.66 0.000980362 0.00091467 0.0773462 0.0721599 34 3140 17 6.79088e+06 188608 618332. 2139.56 1.59 0.268783 0.240646 25102 150614 -1 2897 31 1069 1507 318632 156581 6.95914 6.95914 -294.439 -6.95914 0 0 787024. 2723.27 0.20 0.16 0.15 -1 -1 0.20 0.0556205 0.0494543 100 98 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_064bits.v common 10.92 vpr 63.64 MiB 0.04 6584 -1 -1 26 0.15 -1 -1 32604 -1 -1 19 129 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 129 65 454 519 1 356 213 17 17 289 -1 unnamed_device 24.7 MiB 4.34 1780 46568 16006 26324 4238 63.6 MiB 0.25 0.00 9.37941 -468.754 -9.37941 9.37941 0.67 0.00135586 0.00126941 0.109716 0.102823 36 3957 39 6.79088e+06 255968 648988. 2245.63 3.58 0.49778 0.448354 25390 158009 -1 3260 14 1249 1621 102007 25537 8.75291 8.75291 -440.979 -8.75291 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.0394467 0.0357159 133 132 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_003bits.v common 2.62 vpr 61.15 MiB 0.02 6100 -1 -1 1 0.02 -1 -1 30060 -1 -1 1 7 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62616 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 22.6 MiB 0.02 29 285 62 205 18 61.1 MiB 0.01 0.00 0.62144 -7.02012 -0.62144 0.62144 0.71 7.0308e-05 6.3187e-05 0.00176289 0.00157812 18 105 9 6.87369e+06 13973.8 376052. 1301.22 0.44 0.0047689 0.00427134 22882 88689 -1 95 3 18 18 989 319 0.74674 0.74674 -8.09412 -0.74674 0 0 470940. 1629.55 0.13 0.01 0.09 -1 -1 0.13 0.00279541 0.00253068 8 2 5 5 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_004bits.v common 2.63 vpr 61.18 MiB 0.01 6176 -1 -1 1 0.02 -1 -1 30044 -1 -1 2 9 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62644 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.6 MiB 0.03 77 376 88 272 16 61.2 MiB 0.01 0.00 0.789073 -10.1499 -0.789073 0.789073 0.65 8.7824e-05 7.9843e-05 0.00193658 0.00175777 18 164 14 6.87369e+06 27947.7 376052. 1301.22 0.44 0.00578992 0.00509344 22882 88689 -1 147 11 71 71 2907 994 0.914373 0.914373 -11.3046 -0.914373 0 0 470940. 1629.55 0.15 0.01 0.09 -1 -1 0.15 0.00365629 0.00322932 10 2 6 6 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_005bits.v common 2.71 vpr 61.23 MiB 0.01 6080 -1 -1 1 0.02 -1 -1 30032 -1 -1 2 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62700 11 6 41 42 1 27 19 17 17 289 -1 unnamed_device 22.6 MiB 0.04 78 444 92 346 6 61.2 MiB 0.01 0.00 0.811073 -13.1985 -0.811073 0.811073 0.68 0.000104357 9.5107e-05 0.00217775 0.00198031 18 261 23 6.87369e+06 27947.7 376052. 1301.22 0.45 0.00846248 0.00733992 22882 88689 -1 206 10 111 111 5751 1825 1.06167 1.06167 -15.482 -1.06167 0 0 470940. 1629.55 0.13 0.01 0.08 -1 -1 0.13 0.00338245 0.00298701 12 2 7 7 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_006bits.v common 2.92 vpr 61.31 MiB 0.01 6080 -1 -1 1 0.03 -1 -1 29848 -1 -1 2 13 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62780 13 7 48 49 1 33 22 17 17 289 -1 unnamed_device 22.7 MiB 0.05 164 1102 278 658 166 61.3 MiB 0.02 0.00 0.833073 -17.1401 -0.833073 0.833073 0.67 0.000150045 0.000137523 0.00588988 0.00537748 26 350 12 6.87369e+06 27947.7 503264. 1741.40 0.62 0.019408 0.016588 24322 120374 -1 344 11 172 172 16807 3937 1.05067 1.05067 -19.2271 -1.05067 0 0 618332. 2139.56 0.17 0.01 0.11 -1 -1 0.17 0.00399244 0.00349402 14 2 8 8 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_007bits.v common 2.91 vpr 61.46 MiB 0.03 6080 -1 -1 1 0.03 -1 -1 29972 -1 -1 3 15 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62940 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 22.8 MiB 0.06 117 862 186 627 49 61.5 MiB 0.01 0.00 1.38906 -18.532 -1.38906 1.38906 0.65 0.000138896 0.000127612 0.00358769 0.00330198 26 367 24 6.87369e+06 41921.5 503264. 1741.40 0.59 0.0195547 0.0164235 24322 120374 -1 302 12 192 192 11322 3550 1.11467 1.11467 -21.4021 -1.11467 0 0 618332. 2139.56 0.18 0.01 0.12 -1 -1 0.18 0.0042945 0.00374442 17 2 9 9 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_008bits.v common 2.93 vpr 61.27 MiB 0.02 6076 -1 -1 1 0.03 -1 -1 30192 -1 -1 3 17 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62736 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 22.6 MiB 0.05 109 1525 373 1057 95 61.3 MiB 0.02 0.00 1.2154 -20.8491 -1.2154 1.2154 0.65 0.000156775 0.000144444 0.00591041 0.00544482 30 288 13 6.87369e+06 41921.5 556674. 1926.21 0.65 0.0231395 0.0197269 25186 138497 -1 215 15 199 199 7654 2862 1.08167 1.08167 -22.8352 -1.08167 0 0 706193. 2443.58 0.19 0.02 0.12 -1 -1 0.19 0.00633098 0.00540553 18 2 10 10 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_009bits.v common 3.08 vpr 61.20 MiB 0.03 6100 -1 -1 1 0.02 -1 -1 30044 -1 -1 3 19 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62668 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 22.8 MiB 0.05 195 882 180 665 37 61.2 MiB 0.01 0.00 1.2264 -24.8855 -1.2264 1.2264 0.71 0.000209462 0.000193512 0.00415639 0.00382763 26 454 15 6.87369e+06 41921.5 503264. 1741.40 0.64 0.0250019 0.0211696 24322 120374 -1 422 13 236 236 19643 4836 1.00037 1.00037 -27.4072 -1.00037 0 0 618332. 2139.56 0.19 0.02 0.11 -1 -1 0.19 0.00583501 0.00506691 20 2 11 11 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_010bits.v common 3.04 vpr 61.43 MiB 0.02 6120 -1 -1 1 0.03 -1 -1 30004 -1 -1 3 21 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62908 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 23.0 MiB 0.06 144 2885 1076 1578 231 61.4 MiB 0.03 0.00 1.2374 -27.0881 -1.2374 1.2374 0.66 0.000229592 0.000212414 0.011456 0.0105854 26 522 24 6.87369e+06 41921.5 503264. 1741.40 0.66 0.036044 0.0309881 24322 120374 -1 432 11 246 246 25419 6521 1.27297 1.27297 -32.5697 -1.27297 0 0 618332. 2139.56 0.17 0.03 0.11 -1 -1 0.17 0.00892762 0.00759384 22 2 12 12 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_011bits.v common 3.14 vpr 61.39 MiB 0.01 6160 -1 -1 1 0.02 -1 -1 30032 -1 -1 4 23 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62860 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 22.7 MiB 0.06 161 3141 1140 1427 574 61.4 MiB 0.03 0.00 1.2484 -30.254 -1.2484 1.2484 0.67 0.000249444 0.000230864 0.0127135 0.0117698 30 483 13 6.87369e+06 55895.4 556674. 1926.21 0.68 0.0357906 0.031048 25186 138497 -1 417 18 332 332 25461 6749 1.23997 1.23997 -32.3745 -1.23997 0 0 706193. 2443.58 0.19 0.02 0.13 -1 -1 0.19 0.00813288 0.0069899 24 2 13 13 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_012bits.v common 3.08 vpr 61.46 MiB 0.03 6176 -1 -1 1 0.03 -1 -1 30008 -1 -1 4 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62936 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 23.1 MiB 0.06 257 1698 288 1343 67 61.5 MiB 0.02 0.00 1.2594 -33.773 -1.2594 1.2594 0.65 0.000224753 0.000208541 0.0059376 0.00550688 30 636 21 6.87369e+06 55895.4 556674. 1926.21 0.67 0.0338937 0.0289757 25186 138497 -1 556 13 252 252 17457 4364 1.16967 1.16967 -37.8151 -1.16967 0 0 706193. 2443.58 0.22 0.03 0.12 -1 -1 0.22 0.00956834 0.00822968 26 2 14 14 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_013bits.v common 3.23 vpr 61.54 MiB 0.01 6132 -1 -1 1 0.02 -1 -1 30124 -1 -1 4 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63016 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 23.1 MiB 0.07 199 2525 555 1893 77 61.5 MiB 0.03 0.00 1.2704 -35.5781 -1.2704 1.2704 0.66 0.000295296 0.000274169 0.00987626 0.00915734 26 688 26 6.87369e+06 55895.4 503264. 1741.40 0.69 0.0431168 0.0371423 24322 120374 -1 552 13 342 342 21118 6466 1.12567 1.12567 -39.0948 -1.12567 0 0 618332. 2139.56 0.21 0.01 0.12 -1 -1 0.21 0.0057059 0.00496797 28 2 15 15 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_014bits.v common 3.87 vpr 61.66 MiB 0.02 6084 -1 -1 1 0.03 -1 -1 30344 -1 -1 4 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63144 29 15 104 105 1 74 48 17 17 289 -1 unnamed_device 23.2 MiB 0.11 254 5703 2371 3279 53 61.7 MiB 0.05 0.00 1.2814 -38.5865 -1.2814 1.2814 0.66 0.000304379 0.000282065 0.0205001 0.0189797 36 743 32 6.87369e+06 55895.4 648988. 2245.63 1.28 0.0728403 0.0627058 26050 158493 -1 559 22 432 432 29016 7596 1.17597 1.17597 -38.2444 -1.17597 0 0 828058. 2865.25 0.21 0.03 0.16 -1 -1 0.21 0.0110775 0.00951649 31 2 16 16 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_015bits.v common 3.17 vpr 61.57 MiB 0.03 6208 -1 -1 1 0.02 -1 -1 30244 -1 -1 5 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63044 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 23.0 MiB 0.16 339 2768 498 2177 93 61.6 MiB 0.03 0.00 1.65273 -43.0941 -1.65273 1.65273 0.65 0.000319723 0.000296981 0.00974148 0.00904919 30 844 15 6.87369e+06 69869.2 556674. 1926.21 0.69 0.0394877 0.0341834 25186 138497 -1 747 16 341 341 24842 6127 1.22267 1.22267 -46.5824 -1.22267 0 0 706193. 2443.58 0.19 0.02 0.12 -1 -1 0.19 0.00926254 0.00801814 33 2 17 17 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_016bits.v common 3.32 vpr 61.62 MiB 0.01 6232 -1 -1 1 0.03 -1 -1 30228 -1 -1 5 33 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63100 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 23.0 MiB 0.08 294 6191 2575 3554 62 61.6 MiB 0.05 0.00 1.66373 -46.2163 -1.66373 1.66373 0.68 0.000340842 0.000315743 0.0211013 0.0195687 28 838 43 6.87369e+06 69869.2 531479. 1839.03 0.78 0.0679041 0.0590003 24610 126494 -1 690 17 444 444 39147 10286 1.30397 1.30397 -48.7671 -1.30397 0 0 648988. 2245.63 0.18 0.03 0.12 -1 -1 0.18 0.0110976 0.00957938 34 2 18 18 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_018bits.v common 3.34 vpr 61.80 MiB 0.01 6188 -1 -1 1 0.03 -1 -1 30480 -1 -1 5 37 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63280 37 19 132 133 1 89 61 17 17 289 -1 unnamed_device 23.2 MiB 0.08 394 3301 624 2568 109 61.8 MiB 0.03 0.00 1.68573 -53.1175 -1.68573 1.68573 0.66 0.000328768 0.000306067 0.00997869 0.00930126 30 904 14 6.87369e+06 69869.2 556674. 1926.21 0.72 0.0475417 0.0410943 25186 138497 -1 797 14 388 388 23146 6118 1.15867 1.15867 -53.1603 -1.15867 0 0 706193. 2443.58 0.19 0.03 0.12 -1 -1 0.19 0.0101719 0.00881235 38 2 20 20 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_020bits.v common 3.34 vpr 61.74 MiB 0.01 6208 -1 -1 1 0.04 -1 -1 30344 -1 -1 6 41 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63224 41 21 146 147 1 101 68 17 17 289 -1 unnamed_device 23.2 MiB 0.10 378 8210 2985 4229 996 61.7 MiB 0.06 0.00 1.70773 -58.8485 -1.70773 1.70773 0.68 0.00042459 0.000394706 0.0249675 0.0232242 32 984 15 6.87369e+06 83843 586450. 2029.24 0.77 0.0684882 0.0601848 25474 144626 -1 837 15 474 474 34249 9299 1.25567 1.25567 -59.9491 -1.25567 0 0 744469. 2576.02 0.20 0.03 0.13 -1 -1 0.20 0.0125641 0.0109129 42 2 22 22 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_022bits.v common 3.84 vpr 61.85 MiB 0.01 6128 -1 -1 1 0.03 -1 -1 30300 -1 -1 6 45 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63336 45 23 160 161 1 115 74 17 17 289 -1 unnamed_device 23.2 MiB 0.13 726 8754 2873 4502 1379 61.9 MiB 0.06 0.00 1.72973 -73.6047 -1.72973 1.72973 0.68 0.000465959 0.000433528 0.0261596 0.0243438 34 1433 18 6.87369e+06 83843 618332. 2139.56 1.19 0.105255 0.091708 25762 151098 -1 1320 19 593 593 59737 12698 1.19167 1.19167 -70.5448 -1.19167 0 0 787024. 2723.27 0.20 0.04 0.14 -1 -1 0.20 0.0157244 0.0136661 47 2 24 24 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_024bits.v common 3.87 vpr 61.85 MiB 0.03 6244 -1 -1 1 0.03 -1 -1 30356 -1 -1 7 49 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63336 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 23.3 MiB 0.09 625 7256 1774 5266 216 61.9 MiB 0.06 0.00 2.11206 -76.8475 -2.11206 2.11206 0.69 0.000422817 0.000393817 0.0209851 0.0195604 34 1477 19 6.87369e+06 97816.9 618332. 2139.56 1.19 0.104641 0.0910665 25762 151098 -1 1234 15 608 608 61449 14229 1.34167 1.34167 -76.3842 -1.34167 0 0 787024. 2723.27 0.21 0.04 0.15 -1 -1 0.21 0.0140436 0.0123091 50 2 26 26 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_028bits.v common 3.97 vpr 62.08 MiB 0.03 6284 -1 -1 1 0.03 -1 -1 30108 -1 -1 8 57 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63572 57 29 202 203 1 142 94 17 17 289 -1 unnamed_device 23.6 MiB 0.11 776 15004 5726 8363 915 62.1 MiB 0.10 0.00 2.15606 -94.9711 -2.15606 2.15606 0.68 0.00049284 0.00045922 0.038032 0.0353989 34 1613 19 6.87369e+06 111791 618332. 2139.56 1.21 0.133854 0.117878 25762 151098 -1 1483 17 717 717 66075 14749 1.33697 1.33697 -88.3319 -1.33697 0 0 787024. 2723.27 0.23 0.05 0.14 -1 -1 0.23 0.0188411 0.0166286 58 2 30 30 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_032bits.v common 4.15 vpr 62.26 MiB 0.02 6316 -1 -1 1 0.03 -1 -1 30400 -1 -1 9 65 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63752 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 23.7 MiB 0.11 954 16046 4777 9693 1576 62.3 MiB 0.09 0.00 2.56039 -113.756 -2.56039 2.56039 0.68 0.000416276 0.000382484 0.0323641 0.030007 34 2130 16 6.87369e+06 125765 618332. 2139.56 1.43 0.127044 0.11157 25762 151098 -1 1787 15 792 792 74414 16730 1.39467 1.39467 -104.5 -1.39467 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0267273 0.0237342 66 2 34 34 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_048bits.v common 4.80 vpr 63.08 MiB 0.04 6680 -1 -1 1 0.03 -1 -1 30260 -1 -1 13 97 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 24.3 MiB 0.11 1267 31119 10636 17936 2547 63.1 MiB 0.19 0.00 3.45705 -187.252 -3.45705 3.45705 0.67 0.000866354 0.000811486 0.0652057 0.0611076 34 3112 27 6.87369e+06 181660 618332. 2139.56 1.87 0.246571 0.221407 25762 151098 -1 2639 15 1172 1172 115640 25841 1.66097 1.66097 -158.316 -1.66097 0 0 787024. 2723.27 0.21 0.08 0.15 -1 -1 0.21 0.0272897 0.024447 98 2 50 50 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_064bits.v common 7.11 vpr 63.58 MiB 0.03 6748 -1 -1 1 0.04 -1 -1 30320 -1 -1 17 129 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65108 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 24.7 MiB 0.14 1676 49117 18403 27988 2726 63.6 MiB 0.30 0.01 4.35372 -277.769 -4.35372 4.35372 0.67 0.00138414 0.00129463 0.0958201 0.0898955 38 3774 17 6.87369e+06 237555 678818. 2348.85 4.00 0.434922 0.393102 26626 170182 -1 3207 16 1541 1541 147996 32812 1.85967 1.85967 -213.59 -1.85967 0 0 902133. 3121.57 0.23 0.10 0.15 -1 -1 0.23 0.0382639 0.0345451 130 2 66 66 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_003bits.v common 2.64 vpr 60.99 MiB 0.02 6072 -1 -1 1 0.02 -1 -1 29900 -1 -1 1 7 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62452 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 22.4 MiB 0.02 29 285 62 205 18 61.0 MiB 0.01 0.00 0.62144 -7.02012 -0.62144 0.62144 0.66 7.0281e-05 6.3174e-05 0.00177475 0.00158971 18 105 9 6.89349e+06 14093.8 376052. 1301.22 0.46 0.00486865 0.00436213 22882 88689 -1 95 3 18 18 989 319 0.74674 0.74674 -8.09412 -0.74674 0 0 470940. 1629.55 0.13 0.01 0.09 -1 -1 0.13 0.00193885 0.00180429 8 2 5 5 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_004bits.v common 2.74 vpr 61.37 MiB 0.01 6128 -1 -1 1 0.03 -1 -1 29896 -1 -1 2 9 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62844 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.8 MiB 0.05 78 376 85 271 20 61.4 MiB 0.01 0.00 0.828273 -10.1712 -0.828273 0.828273 0.66 8.7255e-05 7.9141e-05 0.00195941 0.00177683 18 170 7 6.89349e+06 28187.7 376052. 1301.22 0.50 0.00661946 0.0060564 22882 88689 -1 164 10 60 60 2719 975 0.87204 0.87204 -11.6748 -0.87204 0 0 470940. 1629.55 0.13 0.01 0.08 -1 -1 0.13 0.0032222 0.00287079 10 2 6 6 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_005bits.v common 2.73 vpr 61.13 MiB 0.03 5976 -1 -1 1 0.03 -1 -1 30044 -1 -1 2 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62596 11 6 41 42 1 27 19 17 17 289 -1 unnamed_device 22.5 MiB 0.04 78 444 92 346 6 61.1 MiB 0.01 0.00 0.850273 -13.3945 -0.850273 0.850273 0.68 0.000123469 0.00011253 0.00251789 0.00228139 18 265 10 6.89349e+06 28187.7 376052. 1301.22 0.45 0.00629213 0.00559388 22882 88689 -1 213 11 119 119 6760 2059 0.975573 0.975573 -15.1768 -0.975573 0 0 470940. 1629.55 0.15 0.01 0.10 -1 -1 0.15 0.00367489 0.00328141 12 2 7 7 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_006bits.v common 3.49 vpr 61.22 MiB 0.01 6012 -1 -1 1 0.02 -1 -1 30056 -1 -1 2 13 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62688 13 7 48 49 1 33 22 17 17 289 -1 unnamed_device 22.6 MiB 0.04 200 1012 243 655 114 61.2 MiB 0.01 0.00 0.872273 -18.5692 -0.872273 0.872273 0.65 0.000121904 0.000111517 0.00448231 0.00411053 24 432 15 6.89349e+06 28187.7 470940. 1629.55 1.25 0.0376156 0.0310544 24034 113901 -1 407 11 172 172 14117 3086 1.06167 1.06167 -21.3831 -1.06167 0 0 586450. 2029.24 0.16 0.01 0.11 -1 -1 0.16 0.00429559 0.0037877 14 2 8 8 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_007bits.v common 3.05 vpr 61.16 MiB 0.01 6028 -1 -1 1 0.02 -1 -1 29964 -1 -1 3 15 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62632 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 22.5 MiB 0.09 118 862 183 616 63 61.2 MiB 0.01 0.00 1.2657 -18.4312 -1.2657 1.2657 0.66 0.000140098 0.000128724 0.00356136 0.00327094 28 343 16 6.89349e+06 42281.5 531479. 1839.03 0.70 0.0197091 0.0166329 24610 126494 -1 278 12 173 173 9204 2785 1.08787 1.08787 -20.7701 -1.08787 0 0 648988. 2245.63 0.17 0.01 0.12 -1 -1 0.17 0.0049179 0.00429209 17 2 9 9 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_008bits.v common 3.07 vpr 61.41 MiB 0.01 5972 -1 -1 1 0.02 -1 -1 30076 -1 -1 3 17 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62888 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 22.8 MiB 0.06 149 1217 254 894 69 61.4 MiB 0.01 0.00 1.2326 -21.9687 -1.2326 1.2326 0.67 0.000160338 0.000147814 0.0049584 0.00458339 30 358 10 6.89349e+06 42281.5 556674. 1926.21 0.68 0.0246886 0.0212999 25186 138497 -1 321 16 186 186 12484 3682 1.00232 1.00232 -23.8775 -1.00232 0 0 706193. 2443.58 0.19 0.02 0.13 -1 -1 0.19 0.005796 0.0049871 18 2 10 10 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_009bits.v common 3.07 vpr 61.27 MiB 0.01 6080 -1 -1 1 0.03 -1 -1 30080 -1 -1 3 19 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62744 19 10 69 70 1 46 32 17 17 289 -1 unnamed_device 22.8 MiB 0.06 200 932 174 705 53 61.3 MiB 0.01 0.00 1.2436 -25.1484 -1.2436 1.2436 0.68 0.000174877 0.00016186 0.003772 0.00349402 26 461 11 6.89349e+06 42281.5 503264. 1741.40 0.63 0.023094 0.0196071 24322 120374 -1 420 11 219 219 14780 3879 1.00037 1.00037 -27.3852 -1.00037 0 0 618332. 2139.56 0.18 0.02 0.11 -1 -1 0.18 0.00780658 0.00688177 20 2 11 11 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_010bits.v common 3.13 vpr 61.19 MiB 0.03 6060 -1 -1 1 0.02 -1 -1 30008 -1 -1 3 21 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62660 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 22.8 MiB 0.05 144 2828 1054 1431 343 61.2 MiB 0.02 0.00 1.2546 -27.4315 -1.2546 1.2546 0.66 0.000191502 0.00017707 0.0101408 0.00937194 32 374 10 6.89349e+06 42281.5 586450. 2029.24 0.68 0.0304 0.0262275 25474 144626 -1 343 12 206 206 13022 3666 1.02237 1.02237 -27.4544 -1.02237 0 0 744469. 2576.02 0.21 0.03 0.13 -1 -1 0.21 0.00951205 0.00812297 22 2 12 12 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_011bits.v common 3.13 vpr 61.35 MiB 0.02 6048 -1 -1 1 0.03 -1 -1 29988 -1 -1 4 23 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62824 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 22.7 MiB 0.05 160 3141 1095 1440 606 61.4 MiB 0.03 0.00 1.2656 -30.185 -1.2656 1.2656 0.66 0.000245974 0.00022759 0.011324 0.0104815 30 467 12 6.89349e+06 56375.4 556674. 1926.21 0.67 0.0337847 0.0291761 25186 138497 -1 386 14 243 243 14853 3925 1.15867 1.15867 -31.0145 -1.15867 0 0 706193. 2443.58 0.26 0.02 0.13 -1 -1 0.26 0.0068877 0.00603854 24 2 13 13 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_012bits.v common 3.17 vpr 61.41 MiB 0.02 6224 -1 -1 1 0.02 -1 -1 30084 -1 -1 4 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62884 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 23.0 MiB 0.05 266 2346 496 1701 149 61.4 MiB 0.02 0.00 1.2766 -33.6936 -1.2766 1.2766 0.72 0.000263537 0.000243992 0.00937388 0.00868446 30 630 15 6.89349e+06 56375.4 556674. 1926.21 0.69 0.0355263 0.0306465 25186 138497 -1 552 10 238 238 15903 3959 1.14287 1.14287 -36.6551 -1.14287 0 0 706193. 2443.58 0.19 0.03 0.08 -1 -1 0.19 0.0107139 0.00920244 26 2 14 14 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_013bits.v common 4.02 vpr 61.32 MiB 0.03 6140 -1 -1 1 0.03 -1 -1 30112 -1 -1 4 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62796 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 22.8 MiB 0.06 176 2845 630 2149 66 61.3 MiB 0.04 0.00 1.2876 -35.1215 -1.2876 1.2876 0.66 0.000317056 0.000293655 0.0164775 0.0152256 26 673 35 6.89349e+06 56375.4 503264. 1741.40 1.52 0.0811743 0.0691527 24322 120374 -1 579 12 333 333 22000 6590 1.27917 1.27917 -40.8337 -1.27917 0 0 618332. 2139.56 0.22 0.02 0.13 -1 -1 0.22 0.00899422 0.00797406 28 2 15 15 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_014bits.v common 3.17 vpr 61.52 MiB 0.03 6028 -1 -1 1 0.02 -1 -1 30236 -1 -1 4 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63000 29 15 104 105 1 74 48 17 17 289 -1 unnamed_device 23.0 MiB 0.07 407 5703 1643 3514 546 61.5 MiB 0.04 0.00 1.2986 -43.2206 -1.2986 1.2986 0.66 0.000252206 0.000233258 0.0192145 0.0177633 32 861 15 6.89349e+06 56375.4 586450. 2029.24 0.71 0.0471833 0.0413288 25474 144626 -1 772 16 354 354 33051 7619 1.17597 1.17597 -43.3002 -1.17597 0 0 744469. 2576.02 0.19 0.03 0.14 -1 -1 0.19 0.00894542 0.00776425 31 2 16 16 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_015bits.v common 3.17 vpr 61.59 MiB 0.02 6160 -1 -1 1 0.03 -1 -1 30240 -1 -1 5 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63068 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 23.1 MiB 0.15 339 2477 446 1968 63 61.6 MiB 0.02 0.00 1.66993 -43.2794 -1.66993 1.66993 0.66 0.000275121 0.00025543 0.00767111 0.00711693 30 841 17 6.89349e+06 70469.2 556674. 1926.21 0.70 0.0389343 0.0334446 25186 138497 -1 753 13 329 329 22766 5542 1.33217 1.33217 -47.2275 -1.33217 0 0 706193. 2443.58 0.19 0.02 0.11 -1 -1 0.19 0.00812679 0.00708604 33 2 17 17 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_016bits.v common 3.31 vpr 61.48 MiB 0.02 6176 -1 -1 1 0.02 -1 -1 30280 -1 -1 5 33 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62960 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 23.0 MiB 0.08 533 6191 2070 2945 1176 61.5 MiB 0.04 0.00 1.68093 -51.8948 -1.68093 1.68093 0.66 0.000290552 0.000269498 0.0182119 0.0168976 32 1018 16 6.89349e+06 70469.2 586450. 2029.24 0.72 0.0526262 0.0460119 25474 144626 -1 972 16 402 402 40039 8856 1.34797 1.34797 -56.3309 -1.34797 0 0 744469. 2576.02 0.23 0.04 0.13 -1 -1 0.23 0.0131992 0.0115226 34 2 18 18 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_018bits.v common 3.19 vpr 61.73 MiB 0.01 6196 -1 -1 1 0.02 -1 -1 30264 -1 -1 5 37 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63212 37 19 132 133 1 90 61 17 17 289 -1 unnamed_device 23.2 MiB 0.07 387 3901 827 2954 120 61.7 MiB 0.04 0.00 1.70293 -53.0623 -1.70293 1.70293 0.66 0.000389504 0.000362966 0.0140394 0.0130766 32 965 15 6.89349e+06 70469.2 586450. 2029.24 0.73 0.0497377 0.0431747 25474 144626 -1 812 13 414 414 32698 8490 1.11467 1.11467 -51.9686 -1.11467 0 0 744469. 2576.02 0.20 0.03 0.14 -1 -1 0.20 0.00981715 0.00856157 38 2 20 20 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_020bits.v common 3.84 vpr 61.52 MiB 0.02 6156 -1 -1 1 0.03 -1 -1 30352 -1 -1 6 41 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62996 41 21 146 147 1 102 68 17 17 289 -1 unnamed_device 22.9 MiB 0.08 542 9176 2598 5872 706 61.5 MiB 0.07 0.00 1.72493 -64.2553 -1.72493 1.72493 0.68 0.000427384 0.000398049 0.0292834 0.0272484 34 1221 18 6.89349e+06 84563 618332. 2139.56 1.20 0.107211 0.0930607 25762 151098 -1 1089 13 448 448 37853 8705 1.18067 1.18067 -62.7217 -1.18067 0 0 787024. 2723.27 0.21 0.03 0.14 -1 -1 0.21 0.0103702 0.00904003 42 2 22 22 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_022bits.v common 3.81 vpr 61.78 MiB 0.01 6192 -1 -1 1 0.03 -1 -1 30444 -1 -1 6 45 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63260 45 23 160 161 1 115 74 17 17 289 -1 unnamed_device 23.2 MiB 0.12 723 8754 3239 4614 901 61.8 MiB 0.06 0.00 1.74693 -73.4399 -1.74693 1.74693 0.66 0.000389849 0.000362479 0.0231872 0.0215623 34 1405 14 6.89349e+06 84563 618332. 2139.56 1.23 0.104966 0.0908459 25762 151098 -1 1319 12 478 478 44532 9854 1.16487 1.16487 -69.1891 -1.16487 0 0 787024. 2723.27 0.21 0.03 0.15 -1 -1 0.21 0.00899502 0.00792887 47 2 24 24 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_024bits.v common 3.72 vpr 61.84 MiB 0.03 6368 -1 -1 1 0.03 -1 -1 30312 -1 -1 7 49 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63320 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 23.2 MiB 0.10 631 6906 1526 5153 227 61.8 MiB 0.05 0.00 2.12926 -78.3694 -2.12926 2.12926 0.65 0.000415919 0.000386967 0.017901 0.016691 34 1472 17 6.89349e+06 98656.9 618332. 2139.56 1.14 0.0987786 0.085825 25762 151098 -1 1305 16 554 554 53475 11899 1.20067 1.20067 -74.546 -1.20067 0 0 787024. 2723.27 0.20 0.04 0.14 -1 -1 0.20 0.0137468 0.0120008 50 2 26 26 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_028bits.v common 3.93 vpr 61.91 MiB 0.03 6408 -1 -1 1 0.03 -1 -1 29984 -1 -1 8 57 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63396 57 29 202 203 1 143 94 17 17 289 -1 unnamed_device 23.5 MiB 0.09 807 15217 5536 8453 1228 61.9 MiB 0.09 0.00 2.17326 -96.6426 -2.17326 2.17326 0.67 0.000488645 0.000454915 0.0362765 0.033811 34 1706 22 6.89349e+06 112751 618332. 2139.56 1.24 0.134486 0.118283 25762 151098 -1 1506 13 634 634 52882 12034 1.38087 1.38087 -90.2802 -1.38087 0 0 787024. 2723.27 0.22 0.04 0.14 -1 -1 0.22 0.0136986 0.0121331 58 2 30 30 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_032bits.v common 3.93 vpr 61.96 MiB 0.02 6308 -1 -1 1 0.03 -1 -1 30472 -1 -1 9 65 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63444 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 23.5 MiB 0.10 932 16046 5153 9164 1729 62.0 MiB 0.10 0.00 2.57759 -112.715 -2.57759 2.57759 0.66 0.000567205 0.000529745 0.0376243 0.035133 34 1931 21 6.89349e+06 126845 618332. 2139.56 1.21 0.148713 0.131075 25762 151098 -1 1724 12 674 674 55073 12631 1.42297 1.42297 -103.442 -1.42297 0 0 787024. 2723.27 0.21 0.05 0.14 -1 -1 0.21 0.0156217 0.0138238 66 2 34 34 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_048bits.v common 4.24 vpr 62.80 MiB 0.03 6468 -1 -1 1 0.03 -1 -1 30308 -1 -1 13 97 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 24.1 MiB 0.09 1295 31119 10716 17608 2795 62.8 MiB 0.19 0.00 3.47425 -188.48 -3.47425 3.47425 0.66 0.000876758 0.000822682 0.0660818 0.0619761 34 3041 16 6.89349e+06 183220 618332. 2139.56 1.49 0.235846 0.212257 25762 151098 -1 2661 17 1201 1201 117945 26410 1.80817 1.80817 -167.482 -1.80817 0 0 787024. 2723.27 0.21 0.08 0.11 -1 -1 0.21 0.0294933 0.0263278 98 2 50 50 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_064bits.v common 5.21 vpr 63.39 MiB 0.04 6768 -1 -1 1 0.05 -1 -1 30248 -1 -1 17 129 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 24.6 MiB 0.14 1716 49117 18160 27971 2986 63.4 MiB 0.31 0.01 4.37092 -279.363 -4.37092 4.37092 0.66 0.00119557 0.00112429 0.0996286 0.0936119 34 4563 35 6.89349e+06 239595 618332. 2139.56 2.07 0.317301 0.288503 25762 151098 -1 3491 15 1497 1497 159197 35778 1.79097 1.79097 -213.79 -1.79097 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0361634 0.0326969 130 2 66 66 0 0 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt index 6a9e4fa3a92..18e7b6ae191 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt @@ -1,1025 +1,1025 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 5.68 vpr 64.76 MiB 0.02 7264 -1 -1 14 0.33 -1 -1 36340 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66312 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 26.4 MiB 0.31 1354 8532 2094 5512 926 64.8 MiB 0.08 0.00 8.19013 -165.934 -8.19013 8.19013 0.88 0.000657261 0.000596344 0.0316801 0.0287868 28 3693 28 6.55708e+06 313430 500653. 1732.36 2.13 0.140935 0.125205 21310 115450 -1 3181 20 1654 5188 314521 70762 7.3219 7.3219 -163.86 -7.3219 0 0 612192. 2118.31 0.26 0.10 0.11 -1 -1 0.26 0.0324905 0.0290406 186 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 5.25 vpr 65.10 MiB 0.02 7056 -1 -1 14 0.36 -1 -1 36724 -1 -1 30 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 30 32 277 309 1 215 92 17 17 289 -1 unnamed_device 26.6 MiB 0.50 1292 15824 4267 9033 2524 65.1 MiB 0.13 0.00 8.12966 -162.719 -8.12966 8.12966 0.88 0.000635406 0.000576175 0.0526901 0.0478039 30 3485 28 6.55708e+06 361650 526063. 1820.29 1.41 0.15268 0.135394 21886 126133 -1 2805 18 1296 3712 184432 43269 7.1187 7.1187 -155.263 -7.1187 0 0 666494. 2306.21 0.29 0.08 0.12 -1 -1 0.29 0.0292306 0.0262469 189 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 13.70 vpr 64.70 MiB 0.02 7044 -1 -1 11 0.25 -1 -1 36540 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66248 32 32 274 306 1 208 89 17 17 289 -1 unnamed_device 26.2 MiB 0.40 1266 13157 3416 7667 2074 64.7 MiB 0.11 0.00 6.4728 -136.716 -6.4728 6.4728 0.83 0.000559967 0.000507814 0.0436372 0.0393037 36 3746 35 6.55708e+06 301375 612192. 2118.31 10.14 0.295029 0.257182 22750 144809 -1 3090 21 1352 4535 306541 80605 6.05052 6.05052 -138.923 -6.05052 0 0 782063. 2706.10 0.32 0.11 0.14 -1 -1 0.32 0.0329843 0.0294305 180 179 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 8.21 vpr 65.20 MiB 0.02 6964 -1 -1 12 0.43 -1 -1 36344 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 29 32 269 301 1 203 90 17 17 289 -1 unnamed_device 26.6 MiB 0.40 1320 8130 2002 5291 837 65.2 MiB 0.08 0.00 7.77357 -147.192 -7.77357 7.77357 0.88 0.000638125 0.000579509 0.0298693 0.0271446 36 3542 23 6.55708e+06 349595 612192. 2118.31 4.39 0.185227 0.16273 22750 144809 -1 3059 17 1320 4139 245035 54560 6.78704 6.78704 -139.257 -6.78704 0 0 782063. 2706.10 0.31 0.08 0.15 -1 -1 0.31 0.0280351 0.0250909 185 180 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 13.59 vpr 65.23 MiB 0.02 7172 -1 -1 13 0.40 -1 -1 36800 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66796 32 32 317 349 1 246 96 17 17 289 -1 unnamed_device 26.6 MiB 0.52 1568 9951 2486 6481 984 65.2 MiB 0.10 0.00 7.68511 -161.036 -7.68511 7.68511 0.88 0.000741385 0.00067202 0.0377881 0.0342051 30 4458 47 6.55708e+06 385760 526063. 1820.29 9.69 0.310363 0.271257 21886 126133 -1 3448 19 1948 5673 274739 64317 6.90984 6.90984 -157.869 -6.90984 0 0 666494. 2306.21 0.28 0.10 0.13 -1 -1 0.28 0.035431 0.0316869 223 222 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 6.35 vpr 64.97 MiB 0.02 7144 -1 -1 12 0.33 -1 -1 36568 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66532 32 32 299 331 1 232 98 17 17 289 -1 unnamed_device 26.4 MiB 0.52 1500 9773 2280 6498 995 65.0 MiB 0.09 0.00 7.53766 -152.093 -7.53766 7.53766 0.84 0.000668187 0.000607104 0.0328987 0.0299084 36 3688 23 6.55708e+06 409870 612192. 2118.31 2.62 0.206389 0.182686 22750 144809 -1 3225 15 1319 4177 239203 54214 6.91184 6.91184 -150.91 -6.91184 0 0 782063. 2706.10 0.31 0.08 0.13 -1 -1 0.31 0.0278912 0.0252433 209 204 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 5.39 vpr 64.46 MiB 0.02 6824 -1 -1 12 0.23 -1 -1 35948 -1 -1 27 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66004 27 32 210 242 1 167 86 17 17 289 -1 unnamed_device 26.1 MiB 0.30 1024 5945 1385 4013 547 64.5 MiB 0.05 0.00 7.15274 -128.455 -7.15274 7.15274 0.89 0.000503189 0.000457449 0.018819 0.0171675 28 3014 27 6.55708e+06 325485 500653. 1732.36 2.05 0.0971561 0.0856053 21310 115450 -1 2471 17 1100 3184 192242 43720 6.17638 6.17638 -122.787 -6.17638 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0219233 0.0196568 136 125 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 5.03 vpr 64.58 MiB 0.02 7096 -1 -1 11 0.22 -1 -1 36468 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66132 31 32 264 296 1 199 91 17 17 289 -1 unnamed_device 26.0 MiB 0.30 1220 9679 2547 5973 1159 64.6 MiB 0.08 0.00 6.45772 -132.139 -6.45772 6.45772 0.88 0.000614174 0.00055733 0.0322605 0.0292834 30 3114 33 6.55708e+06 337540 526063. 1820.29 1.60 0.129909 0.11459 21886 126133 -1 2648 14 1146 3627 182841 42517 5.46178 5.46178 -127.489 -5.46178 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0233138 0.0210195 175 171 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 5.37 vpr 64.50 MiB 0.02 6892 -1 -1 12 0.21 -1 -1 36092 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66052 31 32 234 266 1 190 88 17 17 289 -1 unnamed_device 26.1 MiB 0.41 1146 12373 3633 6385 2355 64.5 MiB 0.09 0.00 7.00181 -148.703 -7.00181 7.00181 0.88 0.000538219 0.000488169 0.0378616 0.0343728 28 3391 24 6.55708e+06 301375 500653. 1732.36 1.89 0.123973 0.109987 21310 115450 -1 2708 18 1148 2832 193593 43225 6.33838 6.33838 -146.498 -6.33838 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0252092 0.0225416 145 141 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 9.95 vpr 64.33 MiB 0.02 6820 -1 -1 13 0.24 -1 -1 36532 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65876 32 32 253 285 1 194 89 17 17 289 -1 unnamed_device 25.9 MiB 0.49 1098 10979 3065 6306 1608 64.3 MiB 0.09 0.00 7.23855 -159.771 -7.23855 7.23855 0.88 0.000588148 0.000534566 0.0361331 0.0327642 30 3034 26 6.55708e+06 301375 526063. 1820.29 6.30 0.243039 0.211844 21886 126133 -1 2486 17 1202 3260 160850 38687 6.18864 6.18864 -152.069 -6.18864 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0255811 0.0229929 162 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 4.89 vpr 64.16 MiB 0.02 6820 -1 -1 12 0.20 -1 -1 36568 -1 -1 22 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65700 30 32 217 249 1 169 84 17 17 289 -1 unnamed_device 25.6 MiB 0.37 1073 8868 2309 4974 1585 64.2 MiB 0.06 0.00 7.23424 -146.32 -7.23424 7.23424 0.83 0.000451438 0.000409494 0.0251306 0.0229147 28 2862 44 6.55708e+06 265210 500653. 1732.36 1.65 0.117036 0.103231 21310 115450 -1 2498 16 977 2436 149415 34745 6.47024 6.47024 -144.559 -6.47024 0 0 612192. 2118.31 0.25 0.05 0.11 -1 -1 0.25 0.0192463 0.0172858 132 126 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 5.38 vpr 64.51 MiB 0.02 6828 -1 -1 12 0.16 -1 -1 36228 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66060 32 32 227 259 1 176 85 17 17 289 -1 unnamed_device 25.9 MiB 0.21 971 12175 3572 6038 2565 64.5 MiB 0.09 0.00 6.75009 -143.946 -6.75009 6.75009 0.84 0.000494624 0.000447686 0.0363852 0.0330014 36 2632 22 6.55708e+06 253155 612192. 2118.31 2.19 0.161805 0.142746 22750 144809 -1 2147 14 895 2464 130147 31127 5.82038 5.82038 -139.659 -5.82038 0 0 782063. 2706.10 0.32 0.05 0.13 -1 -1 0.32 0.0195984 0.0176579 138 132 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 10.99 vpr 65.00 MiB 0.02 7132 -1 -1 13 0.34 -1 -1 36888 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66560 32 32 306 338 1 235 94 17 17 289 -1 unnamed_device 26.4 MiB 0.39 1456 5419 862 4216 341 65.0 MiB 0.06 0.00 7.90792 -162.801 -7.90792 7.90792 0.88 0.000682656 0.000619001 0.0216922 0.0197294 28 4018 41 6.55708e+06 361650 500653. 1732.36 7.37 0.28464 0.248131 21310 115450 -1 3487 18 1567 4568 296201 66664 7.0809 7.0809 -157.254 -7.0809 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.0312352 0.0281004 212 211 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 7.79 vpr 65.09 MiB 0.02 7040 -1 -1 14 0.42 -1 -1 36540 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66656 32 32 302 334 1 235 93 17 17 289 -1 unnamed_device 26.5 MiB 0.55 1487 7653 1685 5037 931 65.1 MiB 0.07 0.00 8.67599 -179.222 -8.67599 8.67599 0.87 0.000703972 0.00063672 0.0288754 0.0262577 34 4030 26 6.55708e+06 349595 585099. 2024.56 3.85 0.259422 0.225824 22462 138074 -1 3285 20 1626 4702 256491 60555 7.53782 7.53782 -169.858 -7.53782 0 0 742403. 2568.87 0.30 0.09 0.14 -1 -1 0.30 0.0336823 0.0301929 208 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 12.07 vpr 64.38 MiB 0.02 6968 -1 -1 11 0.21 -1 -1 36004 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65920 29 32 238 270 1 186 90 17 17 289 -1 unnamed_device 26.0 MiB 0.26 1095 15366 4454 8585 2327 64.4 MiB 0.11 0.00 6.42654 -129.9 -6.42654 6.42654 0.88 0.000543967 0.000494622 0.0448371 0.0406828 28 3139 21 6.55708e+06 349595 500653. 1732.36 8.69 0.202385 0.177063 21310 115450 -1 2830 20 1432 4043 278896 69092 5.81012 5.81012 -131.609 -5.81012 0 0 612192. 2118.31 0.26 0.09 0.12 -1 -1 0.26 0.0259074 0.0230507 160 149 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 9.02 vpr 65.25 MiB 0.02 7176 -1 -1 12 0.35 -1 -1 36816 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66820 32 32 306 338 1 235 98 17 17 289 -1 unnamed_device 26.8 MiB 0.65 1497 7523 1547 5261 715 65.3 MiB 0.07 0.00 7.78498 -159.33 -7.78498 7.78498 0.87 0.000688937 0.000619313 0.0280334 0.0252945 36 3844 37 6.55708e+06 409870 612192. 2118.31 5.02 0.215027 0.188769 22750 144809 -1 3492 17 1523 4766 293540 65007 6.8013 6.8013 -151.57 -6.8013 0 0 782063. 2706.10 0.32 0.10 0.14 -1 -1 0.32 0.0318788 0.0287585 213 211 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 5.52 vpr 65.39 MiB 0.02 6896 -1 -1 13 0.33 -1 -1 36824 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66956 32 32 311 343 1 239 96 17 17 289 -1 unnamed_device 26.7 MiB 0.35 1448 9075 2050 5697 1328 65.4 MiB 0.08 0.00 8.28129 -168.719 -8.28129 8.28129 0.87 0.000739797 0.000643904 0.0330358 0.0298594 30 3798 28 6.55708e+06 385760 526063. 1820.29 1.90 0.142558 0.125861 21886 126133 -1 2884 18 1330 3984 181686 43984 7.0769 7.0769 -158.369 -7.0769 0 0 666494. 2306.21 0.27 0.08 0.12 -1 -1 0.27 0.0313818 0.0282247 217 216 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 5.29 vpr 64.21 MiB 0.02 6912 -1 -1 12 0.19 -1 -1 36476 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65752 32 32 230 262 1 182 86 17 17 289 -1 unnamed_device 25.9 MiB 0.59 1089 8402 1864 6112 426 64.2 MiB 0.07 0.00 7.26292 -158.375 -7.26292 7.26292 0.89 0.000534375 0.00048597 0.0268433 0.0244213 28 3024 19 6.55708e+06 265210 500653. 1732.36 1.64 0.103237 0.091284 21310 115450 -1 2550 16 1033 2869 170747 40245 6.2029 6.2029 -151.096 -6.2029 0 0 612192. 2118.31 0.26 0.06 0.12 -1 -1 0.26 0.0227377 0.0204666 139 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 4.18 vpr 63.83 MiB 0.02 6684 -1 -1 10 0.12 -1 -1 36104 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65364 30 32 176 208 1 139 82 17 17 289 -1 unnamed_device 25.3 MiB 0.12 786 5244 1130 3909 205 63.8 MiB 0.04 0.00 5.1986 -117.15 -5.1986 5.1986 0.85 0.000384601 0.000351407 0.0138827 0.012659 30 2126 24 6.55708e+06 241100 526063. 1820.29 1.26 0.0738163 0.0647887 21886 126133 -1 1800 21 731 1861 102932 24553 4.7502 4.7502 -115.743 -4.7502 0 0 666494. 2306.21 0.28 0.05 0.11 -1 -1 0.28 0.0190561 0.0168781 96 85 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 6.19 vpr 64.44 MiB 0.02 6852 -1 -1 13 0.20 -1 -1 36456 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65984 31 32 226 258 1 176 87 17 17 289 -1 unnamed_device 26.1 MiB 0.36 1123 5079 946 3658 475 64.4 MiB 0.05 0.00 7.44701 -156.373 -7.44701 7.44701 0.87 0.000551174 0.000501842 0.0171734 0.0155969 26 3256 40 6.55708e+06 289320 477104. 1650.88 2.86 0.11522 0.10123 21022 109990 -1 2517 19 1006 2610 161976 37475 6.69638 6.69638 -154.813 -6.69638 0 0 585099. 2024.56 0.24 0.07 0.11 -1 -1 0.24 0.0247319 0.0220963 139 133 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 13.90 vpr 65.09 MiB 0.02 7068 -1 -1 13 0.37 -1 -1 36904 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66656 32 32 302 334 1 228 95 17 17 289 -1 unnamed_device 26.6 MiB 0.43 1494 10031 2522 6626 883 65.1 MiB 0.09 0.00 7.77584 -154.394 -7.77584 7.77584 0.88 0.000679906 0.000616415 0.0364133 0.0329169 28 4288 44 6.55708e+06 373705 500653. 1732.36 10.15 0.274453 0.24094 21310 115450 -1 3706 21 2129 6858 440821 99786 6.7621 6.7621 -155.774 -6.7621 0 0 612192. 2118.31 0.26 0.13 0.11 -1 -1 0.26 0.0365174 0.0327572 208 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 10.32 vpr 64.95 MiB 0.02 7092 -1 -1 13 0.37 -1 -1 36240 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 32 32 299 331 1 237 98 17 17 289 -1 unnamed_device 26.3 MiB 0.54 1626 7973 1601 5735 637 65.0 MiB 0.08 0.00 7.9648 -163.763 -7.9648 7.9648 0.89 0.000683327 0.000618792 0.0278582 0.0252713 34 4543 38 6.55708e+06 409870 585099. 2024.56 6.33 0.309492 0.271938 22462 138074 -1 3646 28 1614 5176 556730 217601 6.9607 6.9607 -155.121 -6.9607 0 0 742403. 2568.87 0.31 0.18 0.13 -1 -1 0.31 0.0413607 0.0365921 207 204 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 4.33 vpr 63.68 MiB 0.02 6712 -1 -1 9 0.11 -1 -1 36016 -1 -1 21 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65212 26 32 149 181 1 119 79 17 17 289 -1 unnamed_device 25.2 MiB 0.34 710 10557 2762 6888 907 63.7 MiB 0.06 0.00 4.66154 -94.5374 -4.66154 4.66154 0.88 0.000347263 0.00031622 0.0234775 0.0213855 28 1909 33 6.55708e+06 253155 500653. 1732.36 1.13 0.0760791 0.0667796 21310 115450 -1 1723 14 613 1618 108492 24712 4.12668 4.12668 -93.2747 -4.12668 0 0 612192. 2118.31 0.26 0.04 0.11 -1 -1 0.26 0.013182 0.0118144 83 66 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 11.38 vpr 65.19 MiB 0.02 6824 -1 -1 13 0.39 -1 -1 36360 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66756 32 32 304 336 1 228 94 17 17 289 -1 unnamed_device 26.5 MiB 0.24 1530 4780 793 3650 337 65.2 MiB 0.05 0.00 7.84695 -156.636 -7.84695 7.84695 0.86 0.000672342 0.000606416 0.019812 0.0180403 26 4457 46 6.55708e+06 361650 477104. 1650.88 7.34 0.262615 0.230228 21022 109990 -1 3674 77 4873 15394 2166006 1013891 6.8431 6.8431 -156.396 -6.8431 0 0 585099. 2024.56 0.25 0.70 0.10 -1 -1 0.25 0.103168 0.0903474 211 209 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 6.40 vpr 63.79 MiB 0.02 6636 -1 -1 8 0.10 -1 -1 36248 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65324 32 32 155 187 1 113 81 17 17 289 -1 unnamed_device 25.4 MiB 0.22 436 8831 2193 4716 1922 63.8 MiB 0.05 0.00 4.66158 -87.3613 -4.66158 4.66158 0.85 0.000357053 0.000326 0.0196455 0.0179105 30 1374 37 6.55708e+06 204935 526063. 1820.29 3.44 0.15735 0.136417 21886 126133 -1 1041 13 558 1070 51330 16054 3.84606 3.84606 -87.0064 -3.84606 0 0 666494. 2306.21 0.28 0.03 0.11 -1 -1 0.28 0.0121387 0.0108899 77 60 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 9.87 vpr 64.59 MiB 0.02 7200 -1 -1 15 0.29 -1 -1 36492 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66144 32 32 253 285 1 192 89 17 17 289 -1 unnamed_device 26.1 MiB 0.26 1127 8999 2110 5455 1434 64.6 MiB 0.08 0.00 8.78748 -168.447 -8.78748 8.78748 0.87 0.00059795 0.000542151 0.0305556 0.0278162 30 3036 31 6.55708e+06 301375 526063. 1820.29 6.41 0.230169 0.20215 21886 126133 -1 2468 19 1238 3712 182654 43019 7.41762 7.41762 -157.962 -7.41762 0 0 666494. 2306.21 0.29 0.08 0.12 -1 -1 0.29 0.0282852 0.0253076 161 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 7.92 vpr 64.88 MiB 0.02 6884 -1 -1 12 0.32 -1 -1 36676 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66440 32 32 309 341 1 232 95 17 17 289 -1 unnamed_device 26.4 MiB 0.27 1426 7871 1871 5355 645 64.9 MiB 0.08 0.00 6.97141 -150.212 -6.97141 6.97141 0.87 0.0006774 0.000613375 0.0294893 0.0266976 40 3289 24 6.55708e+06 373705 666494. 2306.21 4.32 0.220439 0.192017 23614 160646 -1 3177 16 1303 4124 231796 53025 6.49978 6.49978 -146.896 -6.49978 0 0 872365. 3018.56 0.34 0.08 0.16 -1 -1 0.34 0.0296525 0.0267676 218 214 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 7.93 vpr 64.82 MiB 0.02 7200 -1 -1 13 0.35 -1 -1 36336 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 32 32 289 321 1 218 92 17 17 289 -1 unnamed_device 26.4 MiB 0.40 1403 8993 2077 6178 738 64.8 MiB 0.09 0.00 7.73601 -160.617 -7.73601 7.73601 0.86 0.000635737 0.000576022 0.0319806 0.029007 34 3435 20 6.55708e+06 337540 585099. 2024.56 4.23 0.246028 0.214699 22462 138074 -1 3243 21 1558 4932 279333 63756 6.8823 6.8823 -157.372 -6.8823 0 0 742403. 2568.87 0.29 0.09 0.14 -1 -1 0.29 0.0310018 0.0277398 196 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 9.39 vpr 64.69 MiB 0.02 7012 -1 -1 12 0.21 -1 -1 36136 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66240 32 32 239 271 1 188 86 17 17 289 -1 unnamed_device 26.3 MiB 0.28 1093 9158 2327 6239 592 64.7 MiB 0.08 0.00 6.471 -143.803 -6.471 6.471 0.88 0.000552938 0.000492674 0.0303349 0.0274899 28 3047 45 6.55708e+06 265210 500653. 1732.36 6.04 0.212006 0.185354 21310 115450 -1 2474 19 1018 2717 197086 59712 5.83566 5.83566 -141.372 -5.83566 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0249324 0.0223175 146 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 4.33 vpr 64.12 MiB 0.02 6792 -1 -1 11 0.19 -1 -1 36440 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65660 30 32 213 245 1 162 85 17 17 289 -1 unnamed_device 25.6 MiB 0.21 1045 6781 1469 4387 925 64.1 MiB 0.05 0.00 6.28146 -130.954 -6.28146 6.28146 0.90 0.000471266 0.00042699 0.0208323 0.0189259 30 2354 17 6.55708e+06 277265 526063. 1820.29 1.08 0.0871462 0.0767089 21886 126133 -1 2021 12 791 2190 98726 24085 5.56972 5.56972 -126.582 -5.56972 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0175723 0.0159159 128 122 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 4.79 vpr 64.38 MiB 0.02 6832 -1 -1 11 0.19 -1 -1 36840 -1 -1 27 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65920 28 32 221 253 1 183 87 17 17 289 -1 unnamed_device 26.0 MiB 0.28 1079 8535 1915 5707 913 64.4 MiB 0.06 0.00 6.57292 -128.193 -6.57292 6.57292 0.88 0.000546411 0.000492914 0.0253194 0.022973 30 2815 48 6.55708e+06 325485 526063. 1820.29 1.45 0.122294 0.106994 21886 126133 -1 2388 26 1218 3712 282058 98410 5.74138 5.74138 -125.741 -5.74138 0 0 666494. 2306.21 0.29 0.11 0.11 -1 -1 0.29 0.0309427 0.0273595 142 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 6.77 vpr 64.86 MiB 0.02 6788 -1 -1 12 0.24 -1 -1 36080 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66416 32 32 273 305 1 210 92 17 17 289 -1 unnamed_device 26.1 MiB 0.24 1327 6716 1263 5020 433 64.9 MiB 0.06 0.00 7.20375 -160.021 -7.20375 7.20375 0.89 0.000613597 0.000555754 0.0235428 0.0214568 30 3050 19 6.55708e+06 337540 526063. 1820.29 3.39 0.204461 0.17904 21886 126133 -1 2691 19 1273 3474 162936 39368 6.22984 6.22984 -154.18 -6.22984 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0283828 0.0253794 180 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 4.61 vpr 64.36 MiB 0.02 6776 -1 -1 11 0.20 -1 -1 36176 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65904 31 32 238 270 1 182 86 17 17 289 -1 unnamed_device 26.0 MiB 0.31 1072 4244 722 3315 207 64.4 MiB 0.04 0.00 6.41894 -136.128 -6.41894 6.41894 0.88 0.000570978 0.000508379 0.0162316 0.0147758 28 2847 26 6.55708e+06 277265 500653. 1732.36 1.28 0.103077 0.0907546 21310 115450 -1 2367 22 1328 3668 183355 45773 5.95786 5.95786 -137.356 -5.95786 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0283022 0.0251569 147 145 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 4.32 vpr 64.38 MiB 0.02 6988 -1 -1 10 0.18 -1 -1 36304 -1 -1 24 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65920 29 32 221 253 1 165 85 17 17 289 -1 unnamed_device 25.8 MiB 0.26 967 12733 4051 6442 2240 64.4 MiB 0.09 0.00 6.08886 -123.876 -6.08886 6.08886 0.89 0.00051278 0.000466814 0.0375863 0.0340485 32 2471 22 6.55708e+06 289320 554710. 1919.41 0.97 0.106615 0.0938331 22174 131602 -1 2206 14 801 2338 151536 34935 5.30638 5.30638 -118.227 -5.30638 0 0 701300. 2426.64 0.28 0.06 0.13 -1 -1 0.28 0.0205929 0.0185686 138 132 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 6.77 vpr 65.36 MiB 0.02 7300 -1 -1 13 0.40 -1 -1 37072 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66924 32 32 333 365 1 249 97 17 17 289 -1 unnamed_device 26.9 MiB 0.37 1621 5869 1104 4212 553 65.4 MiB 0.06 0.00 7.46683 -155.207 -7.46683 7.46683 0.85 0.000726646 0.000659513 0.0241858 0.0220094 30 3995 44 6.55708e+06 397815 526063. 1820.29 3.13 0.173011 0.153227 21886 126133 -1 3247 17 1408 4754 234861 53197 6.6419 6.6419 -150.395 -6.6419 0 0 666494. 2306.21 0.27 0.09 0.13 -1 -1 0.27 0.0337152 0.0303871 239 238 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 15.62 vpr 64.96 MiB 0.02 6880 -1 -1 13 0.40 -1 -1 36732 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66516 32 32 297 329 1 227 93 17 17 289 -1 unnamed_device 26.4 MiB 0.48 1508 8283 1888 5355 1040 65.0 MiB 0.08 0.00 8.09706 -175.077 -8.09706 8.09706 0.88 0.0006953 0.000629304 0.0317491 0.0287333 36 3925 27 6.55708e+06 349595 612192. 2118.31 11.69 0.317302 0.276431 22750 144809 -1 3320 18 1479 5044 281064 62523 7.1599 7.1599 -166.383 -7.1599 0 0 782063. 2706.10 0.33 0.09 0.14 -1 -1 0.33 0.0316136 0.0283521 203 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 5.87 vpr 64.18 MiB 0.02 6788 -1 -1 12 0.17 -1 -1 36500 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65720 31 32 234 266 1 181 88 17 17 289 -1 unnamed_device 25.8 MiB 0.36 1096 12568 3446 6926 2196 64.2 MiB 0.09 0.00 6.66868 -144.132 -6.66868 6.66868 0.88 0.000545618 0.000496232 0.0373115 0.033746 36 2895 29 6.55708e+06 301375 612192. 2118.31 2.42 0.164005 0.143131 22750 144809 -1 2369 14 1000 2801 155714 35509 5.70218 5.70218 -135.308 -5.70218 0 0 782063. 2706.10 0.31 0.06 0.14 -1 -1 0.31 0.0201427 0.0180951 150 141 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 7.46 vpr 65.25 MiB 0.02 7076 -1 -1 12 0.31 -1 -1 36948 -1 -1 34 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66816 31 32 310 342 1 234 97 17 17 289 -1 unnamed_device 26.6 MiB 0.24 1489 8977 2020 5913 1044 65.2 MiB 0.08 0.00 8.10558 -165.766 -8.10558 8.10558 0.89 0.000697906 0.000632517 0.0326623 0.0295744 36 3566 22 6.55708e+06 409870 612192. 2118.31 3.98 0.254761 0.222733 22750 144809 -1 3177 15 1286 3966 226508 50828 7.1965 7.1965 -161.557 -7.1965 0 0 782063. 2706.10 0.31 0.08 0.13 -1 -1 0.31 0.0290705 0.0263913 219 217 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 17.10 vpr 65.10 MiB 0.02 7084 -1 -1 14 0.42 -1 -1 36632 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 31 32 284 316 1 221 91 17 17 289 -1 unnamed_device 26.7 MiB 0.26 1460 6211 1289 4295 627 65.1 MiB 0.06 0.00 8.35283 -161.679 -8.35283 8.35283 0.88 0.000630232 0.000571478 0.0233589 0.0212348 30 3894 50 6.55708e+06 337540 526063. 1820.29 13.50 0.321495 0.280289 21886 126133 -1 3049 17 1301 3796 180761 41849 7.32956 7.32956 -155.157 -7.32956 0 0 666494. 2306.21 0.29 0.07 0.12 -1 -1 0.29 0.0302645 0.0273606 194 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 4.86 vpr 64.77 MiB 0.02 7024 -1 -1 13 0.31 -1 -1 36720 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 31 32 271 303 1 212 91 17 17 289 -1 unnamed_device 26.2 MiB 0.29 1364 9271 2151 5683 1437 64.8 MiB 0.08 0.00 7.40806 -157.551 -7.40806 7.40806 0.87 0.000695272 0.00062579 0.0321074 0.0288526 30 3656 29 6.55708e+06 337540 526063. 1820.29 1.32 0.130389 0.114748 21886 126133 -1 2977 17 1505 4283 207121 49411 6.45598 6.45598 -150.636 -6.45598 0 0 666494. 2306.21 0.28 0.08 0.11 -1 -1 0.28 0.0282251 0.0254221 181 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 7.36 vpr 64.72 MiB 0.02 7008 -1 -1 12 0.30 -1 -1 36652 -1 -1 30 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 31 32 280 312 1 211 93 17 17 289 -1 unnamed_device 26.4 MiB 0.59 1374 13743 3666 8130 1947 64.7 MiB 0.12 0.00 6.76701 -143.203 -6.76701 6.76701 0.89 0.000546336 0.000496419 0.0462809 0.0419554 34 4200 50 6.55708e+06 361650 585099. 2024.56 3.45 0.206292 0.181897 22462 138074 -1 3213 21 1381 4314 250002 57093 6.05052 6.05052 -141.872 -6.05052 0 0 742403. 2568.87 0.31 0.09 0.14 -1 -1 0.31 0.0335776 0.0301731 189 187 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 4.48 vpr 64.81 MiB 0.02 7252 -1 -1 12 0.23 -1 -1 36160 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66364 32 32 264 296 1 194 88 17 17 289 -1 unnamed_device 26.3 MiB 0.31 1252 8278 1977 5044 1257 64.8 MiB 0.07 0.00 7.19338 -143.847 -7.19338 7.19338 0.88 0.000596896 0.00054042 0.0289704 0.0263679 30 3079 17 6.55708e+06 289320 526063. 1820.29 1.06 0.108296 0.0956367 21886 126133 -1 2609 17 1076 3072 145494 34382 6.1631 6.1631 -137.248 -6.1631 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0256697 0.023087 172 169 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 7.88 vpr 65.16 MiB 0.02 7320 -1 -1 14 0.56 -1 -1 36580 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 32 32 339 371 1 259 98 17 17 289 -1 unnamed_device 26.9 MiB 0.44 1757 10673 2583 7118 972 65.2 MiB 0.10 0.00 8.08019 -170.094 -8.08019 8.08019 0.89 0.000753529 0.000681101 0.0411513 0.037239 38 4328 19 6.55708e+06 409870 638502. 2209.35 3.74 0.243408 0.215783 23326 155178 -1 3689 18 1672 5907 302681 66882 7.0815 7.0815 -159.011 -7.0815 0 0 851065. 2944.86 0.34 0.11 0.15 -1 -1 0.34 0.0383377 0.0347298 245 244 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 7.20 vpr 64.71 MiB 0.02 6948 -1 -1 11 0.24 -1 -1 36056 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66268 31 32 246 278 1 188 89 17 17 289 -1 unnamed_device 26.3 MiB 0.28 1212 8009 2047 5116 846 64.7 MiB 0.07 0.00 6.43815 -136.573 -6.43815 6.43815 0.88 0.000587889 0.000536735 0.026969 0.0245314 30 3062 33 6.55708e+06 313430 526063. 1820.29 3.78 0.218733 0.190255 21886 126133 -1 2590 18 1146 3284 165082 37542 5.53052 5.53052 -131.48 -5.53052 0 0 666494. 2306.21 0.29 0.07 0.12 -1 -1 0.29 0.0262272 0.0235702 160 153 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 7.23 vpr 64.80 MiB 0.02 7208 -1 -1 13 0.35 -1 -1 37148 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66352 31 32 268 300 1 203 90 17 17 289 -1 unnamed_device 26.5 MiB 0.48 1339 4512 785 3381 346 64.8 MiB 0.05 0.00 8.23298 -156.44 -8.23298 8.23298 0.87 0.000609447 0.000538976 0.0175338 0.0159232 36 3361 29 6.55708e+06 325485 612192. 2118.31 3.49 0.170605 0.148973 22750 144809 -1 2821 16 1119 3725 204036 46190 7.0815 7.0815 -147.855 -7.0815 0 0 782063. 2706.10 0.31 0.07 0.14 -1 -1 0.31 0.0265662 0.02395 177 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 7.06 vpr 65.22 MiB 0.02 7084 -1 -1 12 0.33 -1 -1 36436 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66788 32 32 318 350 1 229 98 17 17 289 -1 unnamed_device 26.6 MiB 0.43 1513 7973 1697 5548 728 65.2 MiB 0.08 0.00 7.05697 -153.444 -7.05697 7.05697 0.88 0.000727944 0.00066096 0.0295827 0.0268942 34 4231 45 6.55708e+06 409870 585099. 2024.56 3.21 0.219685 0.193351 22462 138074 -1 3578 28 1731 6789 581214 199837 6.38158 6.38158 -150.391 -6.38158 0 0 742403. 2568.87 0.30 0.19 0.14 -1 -1 0.30 0.0461859 0.0411452 227 223 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 5.83 vpr 64.77 MiB 0.02 7064 -1 -1 13 0.30 -1 -1 36672 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66320 32 32 273 305 1 205 92 17 17 289 -1 unnamed_device 26.2 MiB 0.22 1286 13340 3362 8056 1922 64.8 MiB 0.10 0.00 7.57452 -156.038 -7.57452 7.57452 0.86 0.000574535 0.000522922 0.043143 0.0389735 34 3373 23 6.55708e+06 337540 585099. 2024.56 2.32 0.170333 0.150043 22462 138074 -1 2915 19 1362 3783 211070 50825 6.63024 6.63024 -152.551 -6.63024 0 0 742403. 2568.87 0.31 0.08 0.14 -1 -1 0.31 0.0308871 0.0277319 184 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 5.49 vpr 64.69 MiB 0.02 7184 -1 -1 13 0.27 -1 -1 36752 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66244 32 32 269 301 1 197 89 17 17 289 -1 unnamed_device 26.1 MiB 0.34 1203 12563 3367 6823 2373 64.7 MiB 0.10 0.00 7.77281 -162.033 -7.77281 7.77281 0.87 0.00055409 0.000498284 0.0406328 0.0364801 34 3219 28 6.55708e+06 301375 585099. 2024.56 1.96 0.162711 0.14224 22462 138074 -1 2591 15 1077 3323 184134 43944 6.7229 6.7229 -148.248 -6.7229 0 0 742403. 2568.87 0.30 0.07 0.13 -1 -1 0.30 0.0254938 0.0230753 175 174 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 8.65 vpr 65.23 MiB 0.02 7024 -1 -1 12 0.34 -1 -1 37012 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66800 32 32 298 330 1 223 95 17 17 289 -1 unnamed_device 26.7 MiB 0.80 1416 10679 2747 6565 1367 65.2 MiB 0.10 0.00 6.86528 -151.049 -6.86528 6.86528 0.89 0.000689551 0.000624171 0.0382311 0.0346166 36 3519 46 6.55708e+06 373705 612192. 2118.31 4.52 0.301432 0.263503 22750 144809 -1 2974 16 1200 4296 232211 52518 6.01898 6.01898 -141.834 -6.01898 0 0 782063. 2706.10 0.31 0.08 0.13 -1 -1 0.31 0.0303523 0.0275092 205 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 8.79 vpr 65.09 MiB 0.02 6992 -1 -1 13 0.35 -1 -1 36920 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66648 32 32 299 331 1 235 93 17 17 289 -1 unnamed_device 26.5 MiB 0.41 1584 11223 2635 7117 1471 65.1 MiB 0.10 0.00 7.96921 -159.229 -7.96921 7.96921 0.89 0.000674197 0.000610161 0.0407528 0.0368819 36 3876 21 6.55708e+06 349595 612192. 2118.31 5.00 0.276012 0.242248 22750 144809 -1 3352 17 1445 4276 256567 56929 7.1201 7.1201 -153.032 -7.1201 0 0 782063. 2706.10 0.33 0.09 0.14 -1 -1 0.33 0.0319526 0.0288673 205 204 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 6.14 vpr 64.59 MiB 0.02 7140 -1 -1 14 0.34 -1 -1 36652 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66136 32 32 259 291 1 193 89 17 17 289 -1 unnamed_device 26.1 MiB 0.47 1228 9197 2464 5958 775 64.6 MiB 0.08 0.00 7.91369 -163.421 -7.91369 7.91369 0.89 0.000633527 0.000565783 0.0332443 0.03004 28 3563 32 6.55708e+06 301375 500653. 1732.36 2.42 0.135454 0.119627 21310 115450 -1 3051 21 1512 4831 274990 63994 7.14824 7.14824 -160.088 -7.14824 0 0 612192. 2118.31 0.26 0.09 0.12 -1 -1 0.26 0.0300125 0.0266673 167 164 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 6.17 vpr 65.17 MiB 0.02 7056 -1 -1 13 0.33 -1 -1 36828 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66732 32 32 293 325 1 226 94 17 17 289 -1 unnamed_device 26.6 MiB 0.60 1537 7336 1683 5066 587 65.2 MiB 0.07 0.00 8.38432 -170.174 -8.38432 8.38432 0.84 0.000653558 0.000586287 0.027109 0.0245719 30 3969 38 6.55708e+06 361650 526063. 1820.29 2.45 0.152094 0.135058 21886 126133 -1 3163 16 1446 4156 214013 48953 7.21136 7.21136 -158.492 -7.21136 0 0 666494. 2306.21 0.28 0.08 0.11 -1 -1 0.28 0.0281518 0.025426 199 198 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 5.61 vpr 65.18 MiB 0.02 7148 -1 -1 13 0.33 -1 -1 36608 -1 -1 32 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66740 31 32 311 343 1 231 95 17 17 289 -1 unnamed_device 26.7 MiB 0.34 1531 8951 1993 6087 871 65.2 MiB 0.09 0.00 8.45326 -176.134 -8.45326 8.45326 0.82 0.000722972 0.000651275 0.0343673 0.0309918 30 3859 27 6.55708e+06 385760 526063. 1820.29 2.12 0.145241 0.128214 21886 126133 -1 3179 14 1309 4204 206454 47477 7.48636 7.48636 -165.351 -7.48636 0 0 666494. 2306.21 0.29 0.08 0.12 -1 -1 0.29 0.0289858 0.0262274 221 218 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 8.02 vpr 65.33 MiB 0.02 7212 -1 -1 12 0.37 -1 -1 36348 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66900 32 32 324 356 1 240 96 17 17 289 -1 unnamed_device 26.7 MiB 0.49 1599 7323 1463 5208 652 65.3 MiB 0.08 0.00 7.47193 -159.786 -7.47193 7.47193 0.89 0.000731269 0.000665029 0.0291549 0.0265002 36 4072 27 6.55708e+06 385760 612192. 2118.31 4.16 0.226601 0.200897 22750 144809 -1 3352 17 1551 4973 264330 61331 6.8843 6.8843 -158.012 -6.8843 0 0 782063. 2706.10 0.32 0.09 0.14 -1 -1 0.32 0.0331224 0.0299295 231 229 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 4.33 vpr 64.36 MiB 0.02 7004 -1 -1 11 0.16 -1 -1 36452 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65900 32 32 216 248 1 165 83 17 17 289 -1 unnamed_device 25.8 MiB 0.24 1043 10883 2916 6057 1910 64.4 MiB 0.08 0.00 5.95009 -133.303 -5.95009 5.95009 0.84 0.000493867 0.000447631 0.0328425 0.0297586 30 2668 32 6.55708e+06 229045 526063. 1820.29 1.10 0.108252 0.0950164 21886 126133 -1 2161 17 907 2533 119548 28213 5.21172 5.21172 -128.769 -5.21172 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0216674 0.0193412 127 121 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 5.59 vpr 64.69 MiB 0.02 6848 -1 -1 13 0.24 -1 -1 36384 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66244 32 32 245 277 1 195 91 17 17 289 -1 unnamed_device 26.2 MiB 0.57 1281 6211 1217 4524 470 64.7 MiB 0.06 0.00 7.73937 -166.104 -7.73937 7.73937 0.88 0.000594048 0.000540216 0.0217191 0.0197785 28 3459 26 6.55708e+06 325485 500653. 1732.36 1.92 0.108892 0.0959491 21310 115450 -1 3044 23 1179 3248 221073 50907 6.82684 6.82684 -159.687 -6.82684 0 0 612192. 2118.31 0.25 0.08 0.12 -1 -1 0.25 0.0304846 0.0270348 156 150 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 7.03 vpr 65.31 MiB 0.02 7184 -1 -1 14 0.57 -1 -1 36412 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66876 32 32 361 393 1 263 100 17 17 289 -1 unnamed_device 27.0 MiB 0.47 1818 9380 1999 6471 910 65.3 MiB 0.09 0.00 8.82888 -183.788 -8.82888 8.82888 0.87 0.000795982 0.000720186 0.0369206 0.0333693 30 4907 35 6.55708e+06 433980 526063. 1820.29 2.99 0.172542 0.152274 21886 126133 -1 3812 17 1794 5584 296408 67225 7.76595 7.76595 -174.414 -7.76595 0 0 666494. 2306.21 0.28 0.10 0.12 -1 -1 0.28 0.0360445 0.0325778 267 266 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 7.21 vpr 64.95 MiB 0.02 6964 -1 -1 13 0.41 -1 -1 36760 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66504 32 32 318 350 1 241 95 17 17 289 -1 unnamed_device 26.4 MiB 0.55 1477 8735 1981 6002 752 64.9 MiB 0.09 0.00 7.79483 -168.531 -7.79483 7.79483 0.89 0.000721475 0.000663386 0.0348369 0.0314579 26 4757 42 6.55708e+06 373705 477104. 1650.88 3.21 0.175231 0.154996 21022 109990 -1 3635 37 1743 4947 476492 172939 6.74984 6.74984 -161.687 -6.74984 0 0 585099. 2024.56 0.25 0.18 0.11 -1 -1 0.25 0.0564916 0.0499559 224 223 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 7.21 vpr 64.30 MiB 0.02 6920 -1 -1 11 0.21 -1 -1 36496 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65840 30 32 223 255 1 165 85 17 17 289 -1 unnamed_device 25.7 MiB 0.24 916 9943 3248 5072 1623 64.3 MiB 0.07 0.00 6.47975 -131.851 -6.47975 6.47975 0.87 0.000524251 0.000473886 0.0308031 0.027809 36 2386 24 6.55708e+06 277265 612192. 2118.31 3.87 0.183611 0.158725 22750 144809 -1 1953 16 887 2571 135686 32427 5.54018 5.54018 -123.221 -5.54018 0 0 782063. 2706.10 0.32 0.06 0.14 -1 -1 0.32 0.0211898 0.0190049 137 132 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 9.37 vpr 65.04 MiB 0.02 7276 -1 -1 15 0.56 -1 -1 37136 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66596 32 32 335 367 1 253 97 17 17 289 -1 unnamed_device 26.6 MiB 0.41 1670 7867 1614 5465 788 65.0 MiB 0.08 0.00 8.70958 -179.837 -8.70958 8.70958 0.89 0.00078475 0.000710106 0.032678 0.0296288 36 4552 44 6.55708e+06 397815 612192. 2118.31 5.31 0.343647 0.300652 22750 144809 -1 3787 21 2018 6815 375358 85536 7.67329 7.67329 -171.304 -7.67329 0 0 782063. 2706.10 0.33 0.12 0.14 -1 -1 0.33 0.0404618 0.036293 241 240 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 8.11 vpr 65.18 MiB 0.02 7120 -1 -1 13 0.40 -1 -1 36440 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 32 32 301 333 1 226 93 17 17 289 -1 unnamed_device 26.6 MiB 0.41 1370 12483 3068 7076 2339 65.2 MiB 0.10 0.00 7.72925 -154.988 -7.72925 7.72925 0.88 0.000648593 0.000583475 0.0432747 0.0391496 44 3462 16 6.55708e+06 349595 742403. 2568.87 4.21 0.266557 0.233025 24478 177802 -1 2769 17 1202 3731 190942 44305 7.0025 7.0025 -148.322 -7.0025 0 0 937218. 3242.97 0.39 0.08 0.16 -1 -1 0.39 0.0297763 0.026826 207 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 5.07 vpr 64.38 MiB 0.02 6788 -1 -1 11 0.16 -1 -1 36600 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65928 32 32 238 270 1 183 88 17 17 289 -1 unnamed_device 26.0 MiB 0.26 1161 6718 1477 4583 658 64.4 MiB 0.06 0.00 6.62468 -135.028 -6.62468 6.62468 0.88 0.000522376 0.000474578 0.021072 0.0191787 28 3179 30 6.55708e+06 289320 500653. 1732.36 1.77 0.106385 0.0936932 21310 115450 -1 2732 20 1110 3078 249082 79074 6.09938 6.09938 -138.109 -6.09938 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.0258625 0.0230995 149 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 8.21 vpr 64.93 MiB 0.02 7244 -1 -1 12 0.37 -1 -1 36724 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66488 32 32 308 340 1 230 95 17 17 289 -1 unnamed_device 26.4 MiB 0.39 1540 8735 2140 5810 785 64.9 MiB 0.08 0.00 7.17512 -150.872 -7.17512 7.17512 0.86 0.000683751 0.000621904 0.0321645 0.0292495 38 3444 21 6.55708e+06 373705 638502. 2209.35 4.47 0.260452 0.2275 23326 155178 -1 2888 15 1226 3932 189527 43326 6.31224 6.31224 -142.735 -6.31224 0 0 851065. 2944.86 0.33 0.07 0.15 -1 -1 0.33 0.0293112 0.0264809 217 213 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 8.86 vpr 64.43 MiB 0.02 6704 -1 -1 12 0.25 -1 -1 36068 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65972 32 32 253 285 1 192 90 17 17 289 -1 unnamed_device 25.9 MiB 0.29 1252 5517 962 4221 334 64.4 MiB 0.05 0.00 7.41221 -152.744 -7.41221 7.41221 0.88 0.000597848 0.000543308 0.0199453 0.0182452 30 2953 20 6.55708e+06 313430 526063. 1820.29 5.44 0.221067 0.193362 21886 126133 -1 2560 17 1155 3176 147387 35186 6.3623 6.3623 -144.661 -6.3623 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0259914 0.0233987 164 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 6.18 vpr 64.49 MiB 0.02 6820 -1 -1 12 0.23 -1 -1 36284 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66036 30 32 227 259 1 163 83 17 17 289 -1 unnamed_device 25.9 MiB 0.26 998 6383 1524 4361 498 64.5 MiB 0.05 0.00 7.15324 -144.822 -7.15324 7.15324 0.87 0.000517613 0.000469322 0.0214834 0.0195178 28 2443 17 6.55708e+06 253155 500653. 1732.36 2.88 0.150313 0.130484 21310 115450 -1 2221 21 890 2542 144249 33719 6.51204 6.51204 -140.888 -6.51204 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0269337 0.0240449 139 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 6.23 vpr 65.02 MiB 0.02 7092 -1 -1 12 0.37 -1 -1 36636 -1 -1 32 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 29 32 292 324 1 222 93 17 17 289 -1 unnamed_device 26.5 MiB 0.33 1315 14583 4048 7926 2609 65.0 MiB 0.12 0.00 7.005 -132.757 -7.005 7.005 0.89 0.000689106 0.000623377 0.0518808 0.0469204 34 3574 37 6.55708e+06 385760 585099. 2024.56 2.48 0.210888 0.186483 22462 138074 -1 3016 19 1567 5039 296847 68171 6.43304 6.43304 -129.751 -6.43304 0 0 742403. 2568.87 0.31 0.10 0.13 -1 -1 0.31 0.0329477 0.0296294 208 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 12.22 vpr 65.43 MiB 0.02 7132 -1 -1 14 0.40 -1 -1 36664 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66996 32 32 316 348 1 253 96 17 17 289 -1 unnamed_device 26.8 MiB 0.60 1622 11046 2782 7202 1062 65.4 MiB 0.10 0.00 8.27143 -173.321 -8.27143 8.27143 0.89 0.000752975 0.000686794 0.0413702 0.0375226 30 4187 27 6.55708e+06 385760 526063. 1820.29 8.20 0.25383 0.223183 21886 126133 -1 3343 18 1685 4777 229368 53349 7.21136 7.21136 -165.703 -7.21136 0 0 666494. 2306.21 0.28 0.09 0.12 -1 -1 0.28 0.0342564 0.0308777 227 221 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 5.58 vpr 64.87 MiB 0.02 7228 -1 -1 12 0.28 -1 -1 36420 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66424 32 32 286 318 1 212 91 17 17 289 -1 unnamed_device 26.4 MiB 0.46 1318 5191 912 3744 535 64.9 MiB 0.05 0.00 7.44045 -154.388 -7.44045 7.44045 0.88 0.00068343 0.000613477 0.0197312 0.0178566 28 3868 27 6.55708e+06 325485 500653. 1732.36 2.00 0.125219 0.110569 21310 115450 -1 3223 18 1659 5094 315415 70126 6.55124 6.55124 -152.734 -6.55124 0 0 612192. 2118.31 0.26 0.10 0.10 -1 -1 0.26 0.0294652 0.0264496 192 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 6.36 vpr 64.21 MiB 0.02 7000 -1 -1 12 0.17 -1 -1 36504 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65748 32 32 221 253 1 168 87 17 17 289 -1 unnamed_device 25.7 MiB 0.45 1100 6615 1512 4600 503 64.2 MiB 0.05 0.00 6.69922 -140.427 -6.69922 6.69922 0.84 0.000459645 0.000417988 0.0183922 0.0167888 30 2478 18 6.55708e+06 277265 526063. 1820.29 2.97 0.162448 0.14105 21886 126133 -1 2223 17 844 2545 122053 29057 5.85958 5.85958 -134.543 -5.85958 0 0 666494. 2306.21 0.28 0.05 0.13 -1 -1 0.28 0.0215901 0.019256 133 126 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 5.93 vpr 64.54 MiB 0.02 7072 -1 -1 12 0.27 -1 -1 36028 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66092 31 32 261 293 1 199 88 17 17 289 -1 unnamed_device 26.1 MiB 0.29 1148 11398 2849 6739 1810 64.5 MiB 0.09 0.00 7.39043 -143.264 -7.39043 7.39043 0.88 0.000587797 0.000533156 0.0385076 0.0349446 28 3477 38 6.55708e+06 301375 500653. 1732.36 2.49 0.143097 0.126276 21310 115450 -1 2746 20 1328 3866 226239 54192 6.4825 6.4825 -142.699 -6.4825 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.0296358 0.0265365 170 168 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 11.32 vpr 64.83 MiB 0.02 7152 -1 -1 11 0.24 -1 -1 36572 -1 -1 28 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66384 30 32 277 309 1 208 90 17 17 289 -1 unnamed_device 26.5 MiB 0.26 1267 6723 1289 4852 582 64.8 MiB 0.06 0.00 6.0378 -125.718 -6.0378 6.0378 0.86 0.000593211 0.000536921 0.023764 0.0215914 28 3807 32 6.55708e+06 337540 500653. 1732.36 7.99 0.253965 0.221426 21310 115450 -1 3191 21 1678 5748 373702 80485 5.69192 5.69192 -132.007 -5.69192 0 0 612192. 2118.31 0.25 0.11 0.11 -1 -1 0.25 0.0315563 0.0280872 189 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 6.05 vpr 64.32 MiB 0.02 7184 -1 -1 11 0.26 -1 -1 36476 -1 -1 28 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65860 28 32 251 283 1 194 88 17 17 289 -1 unnamed_device 25.8 MiB 0.40 1153 14128 4158 7800 2170 64.3 MiB 0.11 0.00 6.59995 -118.466 -6.59995 6.59995 0.87 0.00058991 0.000534805 0.0453766 0.0411279 38 2640 22 6.55708e+06 337540 638502. 2209.35 2.39 0.178282 0.156252 23326 155178 -1 2512 16 1076 3436 166755 38643 5.62118 5.62118 -114.287 -5.62118 0 0 851065. 2944.86 0.34 0.07 0.15 -1 -1 0.34 0.0257339 0.0232293 171 164 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 6.64 vpr 64.57 MiB 0.02 7064 -1 -1 13 0.23 -1 -1 36332 -1 -1 25 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66120 30 32 223 255 1 182 87 17 17 289 -1 unnamed_device 26.2 MiB 0.51 1112 5463 1180 3669 614 64.6 MiB 0.05 0.00 7.87624 -151.634 -7.87624 7.87624 0.86 0.000517028 0.000470452 0.0177415 0.0162008 30 2565 19 6.55708e+06 301375 526063. 1820.29 3.17 0.163715 0.143092 21886 126133 -1 2212 14 872 2355 114212 26889 6.8803 6.8803 -142.823 -6.8803 0 0 666494. 2306.21 0.27 0.05 0.11 -1 -1 0.27 0.020446 0.0184965 142 132 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 4.49 vpr 64.99 MiB 0.02 7012 -1 -1 12 0.25 -1 -1 36268 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 32 32 269 301 1 211 91 17 17 289 -1 unnamed_device 26.4 MiB 0.41 1245 6211 1266 4515 430 65.0 MiB 0.06 0.00 7.2362 -155.292 -7.2362 7.2362 0.83 0.000574248 0.000521145 0.0218835 0.0199148 30 3044 16 6.55708e+06 325485 526063. 1820.29 1.06 0.0989836 0.0871693 21886 126133 -1 2579 17 1186 3221 154686 37072 6.38924 6.38924 -147.46 -6.38924 0 0 666494. 2306.21 0.27 0.06 0.12 -1 -1 0.27 0.0253861 0.022832 180 174 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 6.35 vpr 65.03 MiB 0.02 7180 -1 -1 13 0.36 -1 -1 36444 -1 -1 30 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 31 32 283 315 1 212 93 17 17 289 -1 unnamed_device 26.5 MiB 0.43 1187 15843 5382 8046 2415 65.0 MiB 0.13 0.00 7.69912 -151.004 -7.69912 7.69912 0.87 0.000645015 0.000583889 0.0528338 0.0478669 32 3890 40 6.55708e+06 361650 554710. 1919.41 2.53 0.23108 0.204608 22174 131602 -1 3026 22 1746 5358 342109 79126 6.9215 6.9215 -149.417 -6.9215 0 0 701300. 2426.64 0.29 0.11 0.13 -1 -1 0.29 0.0364059 0.0325953 195 190 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 5.22 vpr 64.82 MiB 0.02 6972 -1 -1 14 0.36 -1 -1 36576 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66376 32 32 308 340 1 227 95 17 17 289 -1 unnamed_device 26.3 MiB 0.35 1371 16295 4299 9326 2670 64.8 MiB 0.14 0.00 7.90558 -162.398 -7.90558 7.90558 0.87 0.000646086 0.000580606 0.0582393 0.0526675 30 3631 37 6.55708e+06 373705 526063. 1820.29 1.56 0.176439 0.155902 21886 126133 -1 2871 18 1304 3991 183379 43990 6.9979 6.9979 -154.335 -6.9979 0 0 666494. 2306.21 0.27 0.07 0.12 -1 -1 0.27 0.0305851 0.027553 215 213 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 7.57 vpr 64.71 MiB 0.02 7216 -1 -1 14 0.32 -1 -1 37020 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66268 32 32 277 309 1 210 91 17 17 289 -1 unnamed_device 26.3 MiB 0.49 1364 9067 2106 6307 654 64.7 MiB 0.08 0.00 7.8859 -150.917 -7.8859 7.8859 0.88 0.000615141 0.000549056 0.031617 0.0284792 36 3364 28 6.55708e+06 325485 612192. 2118.31 3.81 0.193513 0.169957 22750 144809 -1 3007 18 1223 4136 234389 53065 6.6399 6.6399 -143.555 -6.6399 0 0 782063. 2706.10 0.32 0.08 0.13 -1 -1 0.32 0.0288511 0.0258864 183 182 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 8.17 vpr 65.12 MiB 0.02 7172 -1 -1 13 0.44 -1 -1 37200 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 32 32 288 320 1 218 91 17 17 289 -1 unnamed_device 26.7 MiB 0.48 1350 6211 1219 4577 415 65.1 MiB 0.06 0.00 7.98147 -162.621 -7.98147 7.98147 0.88 0.000666365 0.000604762 0.0250502 0.0228215 36 3253 20 6.55708e+06 325485 612192. 2118.31 4.27 0.229702 0.200999 22750 144809 -1 2796 16 1241 3854 246490 70969 6.8797 6.8797 -146.954 -6.8797 0 0 782063. 2706.10 0.31 0.09 0.14 -1 -1 0.31 0.0284208 0.0255424 195 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 7.02 vpr 64.30 MiB 0.02 6824 -1 -1 13 0.22 -1 -1 36588 -1 -1 24 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65848 30 32 230 262 1 183 86 17 17 289 -1 unnamed_device 25.9 MiB 0.32 1092 10670 2647 6412 1611 64.3 MiB 0.08 0.00 7.9674 -161.443 -7.9674 7.9674 0.87 0.000528723 0.000479815 0.0326828 0.0297214 32 2870 34 6.55708e+06 289320 554710. 1919.41 3.60 0.206204 0.179028 22174 131602 -1 2503 15 952 2360 174427 41477 6.98624 6.98624 -151.984 -6.98624 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0217491 0.0195854 146 139 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 5.82 vpr 65.05 MiB 0.02 7036 -1 -1 13 0.56 -1 -1 36316 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66608 30 32 294 326 1 230 93 17 17 289 -1 unnamed_device 26.5 MiB 0.37 1304 7653 1748 5033 872 65.0 MiB 0.08 0.00 8.34953 -161.953 -8.34953 8.34953 0.90 0.000700204 0.000634179 0.0298871 0.0270967 30 3707 24 6.55708e+06 373705 526063. 1820.29 1.92 0.144596 0.128294 21886 126133 -1 3068 19 1860 5367 251317 61007 7.0417 7.0417 -151.716 -7.0417 0 0 666494. 2306.21 0.29 0.09 0.12 -1 -1 0.29 0.033089 0.0296835 208 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 15.03 vpr 64.96 MiB 0.02 7220 -1 -1 14 0.35 -1 -1 36696 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66516 32 32 276 308 1 206 94 17 17 289 -1 unnamed_device 26.4 MiB 0.37 1332 7336 1480 5450 406 65.0 MiB 0.07 0.00 7.42283 -159.831 -7.42283 7.42283 0.88 0.000643591 0.000580467 0.0252973 0.022889 28 3869 50 6.55708e+06 361650 500653. 1732.36 11.04 0.251818 0.220909 21310 115450 -1 3312 59 3355 11627 1396668 594014 7.22158 7.22158 -165.843 -7.22158 0 0 612192. 2118.31 0.27 0.45 0.12 -1 -1 0.27 0.0774615 0.0681637 184 181 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 7.47 vpr 64.90 MiB 0.02 7188 -1 -1 12 0.30 -1 -1 37116 -1 -1 32 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66460 31 32 293 325 1 227 95 17 17 289 -1 unnamed_device 26.5 MiB 0.29 1420 6575 1256 4964 355 64.9 MiB 0.06 0.00 8.28906 -160.635 -8.28906 8.28906 0.84 0.00066065 0.000602757 0.0237706 0.0216357 34 3727 35 6.55708e+06 385760 585099. 2024.56 4.04 0.266242 0.234254 22462 138074 -1 3257 17 1353 4070 243878 54829 7.0769 7.0769 -153.016 -7.0769 0 0 742403. 2568.87 0.30 0.09 0.12 -1 -1 0.30 0.0301948 0.0272846 203 200 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 12.44 vpr 64.71 MiB 0.02 7200 -1 -1 13 0.32 -1 -1 36744 -1 -1 28 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66260 30 32 273 305 1 212 90 17 17 289 -1 unnamed_device 26.1 MiB 0.30 1315 6522 1420 4675 427 64.7 MiB 0.06 0.00 7.42898 -137.517 -7.42898 7.42898 0.89 0.000634757 0.000577349 0.0246663 0.0224077 30 3356 18 6.55708e+06 337540 526063. 1820.29 8.90 0.222883 0.195671 21886 126133 -1 2695 17 1177 3415 163878 38950 6.63224 6.63224 -133.24 -6.63224 0 0 666494. 2306.21 0.29 0.07 0.12 -1 -1 0.29 0.0280267 0.025289 186 182 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 6.45 vpr 64.99 MiB 0.02 7064 -1 -1 14 0.45 -1 -1 37136 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 32 32 310 342 1 239 96 17 17 289 -1 unnamed_device 26.4 MiB 0.59 1483 8199 1652 5918 629 65.0 MiB 0.08 0.00 8.85275 -170.114 -8.85275 8.85275 0.89 0.000739651 0.000663224 0.0318251 0.0288631 34 4006 46 6.55708e+06 385760 585099. 2024.56 2.38 0.199987 0.176475 22462 138074 -1 3349 16 1484 4433 238013 55460 7.78082 7.78082 -164.519 -7.78082 0 0 742403. 2568.87 0.31 0.09 0.14 -1 -1 0.31 0.0324482 0.0293748 220 215 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 11.09 vpr 64.85 MiB 0.02 7032 -1 -1 11 0.36 -1 -1 36352 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66404 29 32 259 291 1 190 90 17 17 289 -1 unnamed_device 26.2 MiB 0.44 1183 4512 917 3199 396 64.8 MiB 0.05 0.00 6.95549 -133.856 -6.95549 6.95549 0.88 0.000625503 0.000568284 0.0175193 0.0159945 28 3440 40 6.55708e+06 349595 500653. 1732.36 7.34 0.216957 0.188969 21310 115450 -1 2817 26 1197 3892 395829 159184 6.11164 6.11164 -132.051 -6.11164 0 0 612192. 2118.31 0.26 0.14 0.12 -1 -1 0.26 0.0353854 0.0313793 174 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 5.50 vpr 64.38 MiB 0.02 6948 -1 -1 13 0.21 -1 -1 36412 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65924 32 32 225 257 1 185 87 17 17 289 -1 unnamed_device 25.7 MiB 0.36 1098 6999 1531 4700 768 64.4 MiB 0.06 0.00 7.85907 -167.622 -7.85907 7.85907 0.89 0.00054066 0.000491796 0.0225741 0.0205974 26 3154 29 6.55708e+06 277265 477104. 1650.88 2.11 0.106246 0.0935075 21022 109990 -1 2672 19 1204 2963 191796 45593 6.5197 6.5197 -157.748 -6.5197 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0255493 0.0228914 142 130 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 5.56 vpr 64.82 MiB 0.02 7136 -1 -1 14 0.30 -1 -1 36244 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66380 32 32 273 305 1 209 91 17 17 289 -1 unnamed_device 26.5 MiB 0.29 1308 7027 1497 5027 503 64.8 MiB 0.06 0.00 8.02087 -160.438 -8.02087 8.02087 0.86 0.000598186 0.000535332 0.0249604 0.0226131 28 3737 36 6.55708e+06 325485 500653. 1732.36 2.07 0.135127 0.119003 21310 115450 -1 3207 21 1605 4752 274452 62236 7.1599 7.1599 -156.902 -7.1599 0 0 612192. 2118.31 0.27 0.10 0.11 -1 -1 0.27 0.0317314 0.0282558 183 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 5.98 vpr 65.37 MiB 0.02 7196 -1 -1 15 0.47 -1 -1 36640 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66940 32 32 322 354 1 251 96 17 17 289 -1 unnamed_device 26.7 MiB 0.68 1579 7323 1484 5148 691 65.4 MiB 0.07 0.00 9.31018 -193.267 -9.31018 9.31018 0.84 0.000763492 0.000689403 0.0284269 0.0258059 28 4344 42 6.55708e+06 385760 500653. 1732.36 1.95 0.165949 0.146669 21310 115450 -1 3724 18 1666 4513 251464 59186 8.13481 8.13481 -184.204 -8.13481 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.0339856 0.0306986 228 227 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 5.80 vpr 64.23 MiB 0.02 7032 -1 -1 11 0.20 -1 -1 36324 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65772 32 32 218 250 1 164 86 17 17 289 -1 unnamed_device 25.7 MiB 0.74 1088 7079 1594 5001 484 64.2 MiB 0.06 0.00 6.82798 -137.917 -6.82798 6.82798 0.88 0.00051595 0.000469597 0.0218468 0.0198758 38 2286 15 6.55708e+06 265210 638502. 2209.35 1.93 0.131874 0.115511 23326 155178 -1 2053 17 798 2444 119607 27783 5.83204 5.83204 -129.113 -5.83204 0 0 851065. 2944.86 0.33 0.06 0.15 -1 -1 0.33 0.0219228 0.0196377 126 123 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 7.45 vpr 64.39 MiB 0.02 7000 -1 -1 12 0.23 -1 -1 35780 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65932 31 32 244 276 1 192 89 17 17 289 -1 unnamed_device 26.0 MiB 0.44 1155 8207 1978 5141 1088 64.4 MiB 0.07 0.00 7.38032 -154.384 -7.38032 7.38032 0.88 0.000523306 0.000470179 0.0257635 0.0233043 46 2574 16 6.55708e+06 313430 782063. 2706.10 3.78 0.188342 0.163256 24766 183262 -1 2168 17 929 2778 124629 29449 6.47024 6.47024 -143.196 -6.47024 0 0 958460. 3316.47 0.39 0.06 0.17 -1 -1 0.39 0.0242504 0.0217671 157 151 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 6.55 vpr 64.61 MiB 0.02 6944 -1 -1 12 0.39 -1 -1 36592 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66164 32 32 301 333 1 231 95 17 17 289 -1 unnamed_device 26.2 MiB 0.42 1424 7439 1505 5396 538 64.6 MiB 0.08 0.00 7.41461 -164.576 -7.41461 7.41461 0.89 0.000739564 0.000652504 0.029513 0.0267026 28 4519 45 6.55708e+06 373705 500653. 1732.36 2.80 0.17049 0.150894 21310 115450 -1 3481 18 1714 5153 317181 70391 6.7249 6.7249 -164.1 -6.7249 0 0 612192. 2118.31 0.26 0.11 0.11 -1 -1 0.26 0.0344738 0.0310972 209 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 13.58 vpr 64.75 MiB 0.02 7024 -1 -1 12 0.30 -1 -1 36876 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66308 32 32 278 310 1 215 92 17 17 289 -1 unnamed_device 26.4 MiB 0.58 1429 8579 2186 5781 612 64.8 MiB 0.08 0.00 7.42022 -157.463 -7.42022 7.42022 0.86 0.000638278 0.000578843 0.0300281 0.0271642 30 3708 20 6.55708e+06 337540 526063. 1820.29 9.81 0.205583 0.179895 21886 126133 -1 3055 18 1323 4149 205466 48529 6.62964 6.62964 -153.129 -6.62964 0 0 666494. 2306.21 0.27 0.08 0.12 -1 -1 0.27 0.0298828 0.0269087 186 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 8.52 vpr 65.36 MiB 0.02 7216 -1 -1 14 0.58 -1 -1 36908 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66932 32 32 333 365 1 247 99 17 17 289 -1 unnamed_device 26.9 MiB 0.33 1656 14691 3485 9017 2189 65.4 MiB 0.13 0.00 8.55829 -177.042 -8.55829 8.55829 0.85 0.000753537 0.000680517 0.0538974 0.0487575 38 3905 20 6.55708e+06 421925 638502. 2209.35 4.54 0.305952 0.269331 23326 155178 -1 3322 17 1561 4973 239144 54910 7.28776 7.28776 -161.226 -7.28776 0 0 851065. 2944.86 0.33 0.09 0.14 -1 -1 0.33 0.0352957 0.0319755 241 238 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 5.46 vpr 64.91 MiB 0.02 7204 -1 -1 11 0.29 -1 -1 36624 -1 -1 27 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 30 32 261 293 1 202 89 17 17 289 -1 unnamed_device 26.3 MiB 0.56 1210 13157 4017 6643 2497 64.9 MiB 0.11 0.00 6.86503 -131.636 -6.86503 6.86503 0.90 0.000628558 0.00057132 0.0448767 0.0407529 30 3211 36 6.55708e+06 325485 526063. 1820.29 1.65 0.153615 0.136242 21886 126133 -1 2592 16 1207 3568 175162 41377 6.03524 6.03524 -127.253 -6.03524 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.02628 0.0237199 176 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 4.52 vpr 64.53 MiB 0.02 6904 -1 -1 11 0.21 -1 -1 36476 -1 -1 25 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66076 27 32 217 249 1 157 84 17 17 289 -1 unnamed_device 25.9 MiB 0.27 858 9234 2019 6554 661 64.5 MiB 0.07 0.00 6.39815 -115.858 -6.39815 6.39815 0.87 0.000520228 0.00047469 0.0291498 0.0265279 28 2584 24 6.55708e+06 301375 500653. 1732.36 1.21 0.104752 0.0923252 21310 115450 -1 2127 23 1370 3807 202400 48141 5.45152 5.45152 -113.59 -5.45152 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.027146 0.0240699 138 132 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 10.16 vpr 65.40 MiB 0.02 7196 -1 -1 13 0.55 -1 -1 36868 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66968 32 32 373 405 1 274 104 17 17 289 -1 unnamed_device 27.2 MiB 0.33 1915 8888 1943 6342 603 65.4 MiB 0.09 0.00 7.96961 -161.89 -7.96961 7.96961 0.86 0.00081509 0.000724596 0.0350445 0.0316994 36 5494 32 6.55708e+06 482200 612192. 2118.31 6.20 0.255231 0.224426 22750 144809 -1 4157 17 1833 6325 347640 77835 7.03004 7.03004 -153.974 -7.03004 0 0 782063. 2706.10 0.33 0.11 0.15 -1 -1 0.33 0.0387206 0.0349219 280 278 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 8.52 vpr 64.64 MiB 0.02 7096 -1 -1 14 0.34 -1 -1 36644 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66196 31 32 269 301 1 201 89 17 17 289 -1 unnamed_device 26.1 MiB 0.32 1307 6821 1398 4713 710 64.6 MiB 0.06 0.00 8.63003 -171.716 -8.63003 8.63003 0.89 0.000634635 0.000576546 0.0254051 0.0231036 28 3653 27 6.55708e+06 313430 500653. 1732.36 4.95 0.224415 0.196812 21310 115450 -1 3148 17 1242 3485 216176 48959 7.69016 7.69016 -161.531 -7.69016 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0276179 0.024831 178 176 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 11.02 vpr 64.09 MiB 0.02 6888 -1 -1 12 0.19 -1 -1 36340 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65628 32 32 228 260 1 185 91 17 17 289 -1 unnamed_device 25.7 MiB 0.44 1197 8251 1803 5271 1177 64.1 MiB 0.07 0.00 7.37817 -162.484 -7.37817 7.37817 0.90 0.000547406 0.000497819 0.0251711 0.0229294 28 3416 42 6.55708e+06 325485 500653. 1732.36 7.48 0.233587 0.203352 21310 115450 -1 2803 16 1165 3279 221762 49308 6.61598 6.61598 -159.032 -6.61598 0 0 612192. 2118.31 0.27 0.08 0.12 -1 -1 0.27 0.0235856 0.021214 144 133 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 6.85 vpr 64.56 MiB 0.02 6860 -1 -1 13 0.35 -1 -1 36540 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66108 32 32 265 297 1 201 89 17 17 289 -1 unnamed_device 26.0 MiB 0.49 1296 6623 1420 4442 761 64.6 MiB 0.06 0.00 7.83929 -154.667 -7.83929 7.83929 0.86 0.000649895 0.000591315 0.0241924 0.0219071 34 3533 28 6.55708e+06 301375 585099. 2024.56 3.14 0.167245 0.146663 22462 138074 -1 2871 16 1200 3584 208636 47798 6.79164 6.79164 -152.938 -6.79164 0 0 742403. 2568.87 0.31 0.07 0.12 -1 -1 0.31 0.0259462 0.0233734 172 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 15.34 vpr 65.14 MiB 0.02 7060 -1 -1 13 0.38 -1 -1 37116 -1 -1 35 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 31 32 325 357 1 256 98 17 17 289 -1 unnamed_device 26.7 MiB 0.40 1675 5723 977 4473 273 65.1 MiB 0.06 0.00 7.72485 -162.113 -7.72485 7.72485 0.89 0.000711619 0.000643995 0.0231558 0.0210358 30 4421 42 6.55708e+06 421925 526063. 1820.29 11.59 0.319133 0.280469 21886 126133 -1 3443 17 1712 5211 254254 59406 6.6399 6.6399 -153.637 -6.6399 0 0 666494. 2306.21 0.29 0.09 0.12 -1 -1 0.29 0.0350629 0.03174 235 232 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 5.88 vpr 64.89 MiB 0.02 7124 -1 -1 11 0.29 -1 -1 36480 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66452 30 32 287 319 1 210 94 17 17 289 -1 unnamed_device 26.5 MiB 0.49 1363 8827 2077 5986 764 64.9 MiB 0.08 0.00 7.0834 -142.912 -7.0834 7.0834 0.86 0.000661202 0.000599961 0.032101 0.0290845 30 3732 37 6.55708e+06 385760 526063. 1820.29 2.17 0.144103 0.126889 21886 126133 -1 3008 17 1260 4216 214091 48757 6.23184 6.23184 -139.409 -6.23184 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.0301319 0.0269453 199 196 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 16.93 vpr 65.19 MiB 0.02 7224 -1 -1 15 0.42 -1 -1 36780 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66756 32 32 297 329 1 230 93 17 17 289 -1 unnamed_device 26.6 MiB 0.38 1473 9543 2499 5737 1307 65.2 MiB 0.09 0.00 9.02492 -182.614 -9.02492 9.02492 0.87 0.000665962 0.000603679 0.0351891 0.0317773 36 3930 43 6.55708e+06 349595 612192. 2118.31 13.14 0.316517 0.275364 22750 144809 -1 3220 17 1436 4374 250082 56644 7.80835 7.80835 -172.133 -7.80835 0 0 782063. 2706.10 0.31 0.09 0.14 -1 -1 0.31 0.0298051 0.0268385 203 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 8.12 vpr 64.95 MiB 0.02 7012 -1 -1 13 0.41 -1 -1 36596 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 32 32 311 343 1 238 96 17 17 289 -1 unnamed_device 26.4 MiB 0.24 1528 11922 3138 7505 1279 65.0 MiB 0.11 0.00 8.01701 -168.403 -8.01701 8.01701 0.88 0.000741045 0.000671901 0.0441406 0.0400073 34 4013 32 6.55708e+06 385760 585099. 2024.56 4.44 0.297036 0.261422 22462 138074 -1 3427 17 1435 4402 258242 57834 6.85276 6.85276 -157.073 -6.85276 0 0 742403. 2568.87 0.30 0.09 0.14 -1 -1 0.30 0.0315765 0.0284071 217 216 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 7.81 vpr 64.41 MiB 0.02 7000 -1 -1 12 0.24 -1 -1 35816 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65952 29 32 236 268 1 192 90 17 17 289 -1 unnamed_device 26.0 MiB 0.53 1144 6321 1459 4287 575 64.4 MiB 0.06 0.00 6.98904 -150.776 -6.98904 6.98904 0.89 0.00056814 0.000518261 0.02057 0.0187275 34 2893 24 6.55708e+06 349595 585099. 2024.56 4.07 0.225071 0.196806 22462 138074 -1 2556 27 1167 3010 287043 103811 6.25938 6.25938 -142.054 -6.25938 0 0 742403. 2568.87 0.31 0.11 0.13 -1 -1 0.31 0.0330467 0.0292466 159 147 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 5.52 vpr 64.41 MiB 0.02 6820 -1 -1 11 0.19 -1 -1 36520 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65956 32 32 231 263 1 179 86 17 17 289 -1 unnamed_device 26.1 MiB 0.48 1041 8402 1813 6153 436 64.4 MiB 0.07 0.00 6.97021 -142.93 -6.97021 6.97021 0.88 0.000545114 0.000495885 0.0265405 0.0241225 34 2908 26 6.55708e+06 265210 585099. 2024.56 1.94 0.133046 0.117138 22462 138074 -1 2476 15 1027 2936 158280 38462 5.86158 5.86158 -136.113 -5.86158 0 0 742403. 2568.87 0.31 0.06 0.13 -1 -1 0.31 0.021889 0.0197328 138 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 6.32 vpr 65.26 MiB 0.02 7016 -1 -1 13 0.39 -1 -1 36856 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 31 32 294 326 1 224 94 17 17 289 -1 unnamed_device 26.7 MiB 0.43 1528 7975 1701 5466 808 65.3 MiB 0.08 0.00 8.19329 -167.366 -8.19329 8.19329 0.89 0.000723451 0.000649146 0.0294886 0.0267492 28 4213 29 6.55708e+06 373705 500653. 1732.36 2.56 0.144499 0.127971 21310 115450 -1 3366 17 1498 4604 263771 59764 7.34424 7.34424 -163.794 -7.34424 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.030331 0.0272787 204 201 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 6.48 vpr 64.38 MiB 0.02 6800 -1 -1 10 0.21 -1 -1 35940 -1 -1 24 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65924 29 32 221 253 1 166 85 17 17 289 -1 unnamed_device 25.8 MiB 0.25 1030 5107 1053 3581 473 64.4 MiB 0.04 0.00 6.08471 -123.999 -6.08471 6.08471 0.89 0.000449892 0.00040859 0.0162452 0.0147922 26 3016 46 6.55708e+06 289320 477104. 1650.88 3.23 0.117171 0.102862 21022 109990 -1 2373 19 1107 3180 197521 45332 5.45152 5.45152 -125.81 -5.45152 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0239972 0.021387 138 132 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 11.61 vpr 64.18 MiB 0.02 6988 -1 -1 14 0.23 -1 -1 36200 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65724 32 32 240 272 1 178 88 17 17 289 -1 unnamed_device 25.8 MiB 0.53 1019 11203 3089 5915 2199 64.2 MiB 0.09 0.00 7.69221 -156.392 -7.69221 7.69221 0.88 0.000556349 0.000502928 0.0346854 0.0314843 28 3519 29 6.55708e+06 289320 500653. 1732.36 7.98 0.24423 0.213729 21310 115450 -1 2590 22 1381 4103 241007 57254 7.4813 7.4813 -165.085 -7.4813 0 0 612192. 2118.31 0.25 0.08 0.11 -1 -1 0.25 0.0274148 0.0242369 149 145 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 8.05 vpr 65.13 MiB 0.02 7180 -1 -1 12 0.39 -1 -1 36364 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 31 32 292 324 1 211 92 17 17 289 -1 unnamed_device 26.7 MiB 0.38 1351 11891 3061 6959 1871 65.1 MiB 0.11 0.00 7.58423 -159.03 -7.58423 7.58423 0.88 0.000690493 0.000621146 0.0437213 0.0395153 36 3367 18 6.55708e+06 349595 612192. 2118.31 4.23 0.255103 0.223448 22750 144809 -1 2996 17 1263 4054 221348 50956 6.38924 6.38924 -147.781 -6.38924 0 0 782063. 2706.10 0.32 0.08 0.14 -1 -1 0.32 0.0305271 0.0275597 201 199 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 5.12 vpr 64.29 MiB 0.02 6828 -1 -1 12 0.19 -1 -1 36220 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65832 31 32 229 261 1 182 86 17 17 289 -1 unnamed_device 25.9 MiB 0.38 1079 5567 1026 4331 210 64.3 MiB 0.05 0.00 6.95154 -149.121 -6.95154 6.95154 0.87 0.000512441 0.000465363 0.0180615 0.01646 28 3150 46 6.55708e+06 277265 500653. 1732.36 1.77 0.111305 0.0972816 21310 115450 -1 2686 18 989 2588 183878 45305 6.22018 6.22018 -144.568 -6.22018 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0230162 0.0205655 141 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 5.45 vpr 65.00 MiB 0.02 7164 -1 -1 12 0.24 -1 -1 36556 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 32 32 282 314 1 205 91 17 17 289 -1 unnamed_device 26.2 MiB 0.33 1263 7843 1830 5405 608 65.0 MiB 0.07 0.00 7.086 -151.926 -7.086 7.086 0.86 0.000628825 0.000567159 0.0282183 0.0255314 28 3643 19 6.55708e+06 325485 500653. 1732.36 1.93 0.118219 0.104233 21310 115450 -1 2975 24 1345 4339 429136 160252 6.03324 6.03324 -147.066 -6.03324 0 0 612192. 2118.31 0.26 0.15 0.11 -1 -1 0.26 0.0363998 0.0324501 188 187 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 7.71 vpr 65.07 MiB 0.02 7060 -1 -1 13 0.34 -1 -1 36636 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66628 31 32 269 301 1 216 92 17 17 289 -1 unnamed_device 26.5 MiB 0.35 1349 6509 1390 4237 882 65.1 MiB 0.06 0.00 7.60996 -160.091 -7.60996 7.60996 0.89 0.000637057 0.000576165 0.0233975 0.0212343 34 3758 47 6.55708e+06 349595 585099. 2024.56 4.03 0.246291 0.21511 22462 138074 -1 3187 19 1257 3833 298777 77572 6.5197 6.5197 -154.677 -6.5197 0 0 742403. 2568.87 0.31 0.10 0.13 -1 -1 0.31 0.0308436 0.0277178 179 176 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 8.91 vpr 64.25 MiB 0.02 7016 -1 -1 11 0.19 -1 -1 36200 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65796 32 32 237 269 1 184 91 17 17 289 -1 unnamed_device 25.9 MiB 0.29 1256 8251 2031 5471 749 64.3 MiB 0.07 0.00 6.67834 -143.715 -6.67834 6.67834 0.87 0.000521059 0.000472713 0.0249178 0.0226077 28 3436 25 6.55708e+06 325485 500653. 1732.36 5.61 0.198644 0.173169 21310 115450 -1 3020 19 1259 4025 242298 55462 5.95224 5.95224 -142.267 -5.95224 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0246737 0.021999 148 142 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 5.59 vpr 64.31 MiB 0.02 6896 -1 -1 13 0.24 -1 -1 36384 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65852 32 32 259 291 1 202 91 17 17 289 -1 unnamed_device 25.8 MiB 0.31 1339 8047 1963 5261 823 64.3 MiB 0.07 0.00 7.72555 -161.807 -7.72555 7.72555 0.88 0.000592232 0.00053458 0.0269676 0.0244376 28 3857 33 6.55708e+06 325485 500653. 1732.36 2.10 0.139076 0.123184 21310 115450 -1 3031 30 1465 4214 436287 168804 6.9195 6.9195 -159.011 -6.9195 0 0 612192. 2118.31 0.27 0.16 0.11 -1 -1 0.27 0.0405046 0.0359032 167 164 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 6.61 vpr 64.85 MiB 0.02 7120 -1 -1 13 0.32 -1 -1 36468 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66408 32 32 277 309 1 220 91 17 17 289 -1 unnamed_device 26.5 MiB 0.22 1276 15187 4382 8407 2398 64.9 MiB 0.13 0.00 7.99583 -160.474 -7.99583 7.99583 0.88 0.00067756 0.000617783 0.0523384 0.0474109 36 3413 20 6.55708e+06 325485 612192. 2118.31 3.03 0.212722 0.188418 22750 144809 -1 2918 17 1346 4006 219400 51325 7.09316 7.09316 -153.316 -7.09316 0 0 782063. 2706.10 0.32 0.08 0.14 -1 -1 0.32 0.0287072 0.0259 184 182 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 5.62 vpr 64.72 MiB 0.02 7008 -1 -1 11 0.24 -1 -1 36268 -1 -1 28 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 29 32 245 277 1 189 89 17 17 289 -1 unnamed_device 26.3 MiB 0.40 1142 12761 3414 7382 1965 64.7 MiB 0.10 0.00 6.37111 -124.414 -6.37111 6.37111 0.87 0.000582471 0.000526515 0.0401798 0.0363406 36 2747 19 6.55708e+06 337540 612192. 2118.31 2.03 0.165353 0.144625 22750 144809 -1 2404 16 957 3014 161389 37175 5.85132 5.85132 -121.991 -5.85132 0 0 782063. 2706.10 0.31 0.06 0.14 -1 -1 0.31 0.0237773 0.0213673 162 156 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 5.37 vpr 65.46 MiB 0.02 7244 -1 -1 14 0.40 -1 -1 37236 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67036 32 32 316 348 1 250 96 17 17 289 -1 unnamed_device 26.8 MiB 0.47 1569 9951 2260 6812 879 65.5 MiB 0.10 0.00 8.3634 -177.338 -8.3634 8.3634 0.87 0.000738828 0.000668586 0.0376384 0.0340423 30 4355 28 6.55708e+06 385760 526063. 1820.29 1.54 0.15061 0.133072 21886 126133 -1 3455 18 1687 4974 233475 55515 7.34382 7.34382 -169.849 -7.34382 0 0 666494. 2306.21 0.27 0.09 0.12 -1 -1 0.27 0.0347419 0.0313414 225 221 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 7.71 vpr 64.32 MiB 0.02 6828 -1 -1 12 0.21 -1 -1 36240 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65860 31 32 230 262 1 186 91 17 17 289 -1 unnamed_device 25.9 MiB 0.50 1144 6619 1429 4488 702 64.3 MiB 0.06 0.00 6.81857 -143.271 -6.81857 6.81857 0.90 0.000523455 0.000473118 0.0209193 0.0190649 36 2680 25 6.55708e+06 337540 612192. 2118.31 4.06 0.185874 0.161779 22750 144809 -1 2409 14 987 2636 153022 35561 6.03324 6.03324 -139.316 -6.03324 0 0 782063. 2706.10 0.31 0.06 0.14 -1 -1 0.31 0.0208436 0.0188066 145 137 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 12.61 vpr 65.03 MiB 0.02 7128 -1 -1 13 0.36 -1 -1 36836 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 32 32 282 314 1 213 91 17 17 289 -1 unnamed_device 26.6 MiB 0.44 1396 7843 1736 5120 987 65.0 MiB 0.07 0.00 7.69421 -153.973 -7.69421 7.69421 0.90 0.000665202 0.000598299 0.0278338 0.0251758 28 3900 43 6.55708e+06 325485 500653. 1732.36 8.83 0.246442 0.215971 21310 115450 -1 3286 21 1503 4699 370705 97066 6.8823 6.8823 -150.837 -6.8823 0 0 612192. 2118.31 0.26 0.12 0.12 -1 -1 0.26 0.0347906 0.0312634 189 187 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 5.58 vpr 64.16 MiB 0.02 6876 -1 -1 13 0.21 -1 -1 36180 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65700 32 32 235 267 1 180 89 17 17 289 -1 unnamed_device 25.8 MiB 0.43 1076 10583 2933 6087 1563 64.2 MiB 0.08 0.00 7.44215 -162.135 -7.44215 7.44215 0.86 0.000506336 0.000456655 0.0298564 0.0269963 28 3369 28 6.55708e+06 301375 500653. 1732.36 2.17 0.115084 0.101262 21310 115450 -1 2712 22 1331 3578 210486 49292 6.87064 6.87064 -160.132 -6.87064 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0260285 0.0230177 146 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 6.94 vpr 64.79 MiB 0.02 7192 -1 -1 12 0.27 -1 -1 36660 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 32 32 265 297 1 193 90 17 17 289 -1 unnamed_device 26.3 MiB 0.39 1148 5517 1034 4096 387 64.8 MiB 0.05 0.00 7.36755 -151.17 -7.36755 7.36755 0.87 0.000587519 0.000526599 0.0197615 0.0179578 34 3150 21 6.55708e+06 313430 585099. 2024.56 3.37 0.199808 0.173245 22462 138074 -1 2544 17 1051 3386 187761 43277 6.5237 6.5237 -142.576 -6.5237 0 0 742403. 2568.87 0.30 0.07 0.14 -1 -1 0.30 0.0268781 0.0241204 172 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 8.87 vpr 64.94 MiB 0.02 7296 -1 -1 15 0.60 -1 -1 36748 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66496 32 32 344 376 1 259 98 17 17 289 -1 unnamed_device 26.7 MiB 0.35 1759 9998 2422 6696 880 64.9 MiB 0.10 0.00 8.78932 -180.299 -8.78932 8.78932 0.87 0.000815534 0.000733654 0.0413549 0.0372421 36 4483 32 6.55708e+06 409870 612192. 2118.31 4.86 0.262335 0.231641 22750 144809 -1 3842 20 2164 7171 393829 87274 7.72935 7.72935 -170.09 -7.72935 0 0 782063. 2706.10 0.32 0.12 0.14 -1 -1 0.32 0.0396879 0.0356537 250 249 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 6.64 vpr 63.54 MiB 0.02 6704 -1 -1 10 0.11 -1 -1 35772 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65064 30 32 173 205 1 127 78 17 17 289 -1 unnamed_device 25.0 MiB 0.33 757 9042 2084 6396 562 63.5 MiB 0.06 0.00 5.22063 -120.025 -5.22063 5.22063 0.88 0.000383161 0.000348449 0.023334 0.021162 28 1925 17 6.55708e+06 192880 500653. 1732.36 3.44 0.13085 0.113416 21310 115450 -1 1696 14 643 1545 95317 22323 4.72266 4.72266 -118.396 -4.72266 0 0 612192. 2118.31 0.27 0.04 0.11 -1 -1 0.27 0.0145191 0.012977 92 82 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 7.61 vpr 64.65 MiB 0.02 6844 -1 -1 13 0.22 -1 -1 36288 -1 -1 29 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66204 30 32 229 261 1 172 91 17 17 289 -1 unnamed_device 26.2 MiB 0.25 1069 6415 1411 4237 767 64.7 MiB 0.05 0.00 7.77311 -151.473 -7.77311 7.77311 0.89 0.000542677 0.000493573 0.0200331 0.0182184 28 2954 45 6.55708e+06 349595 500653. 1732.36 4.24 0.225629 0.195947 21310 115450 -1 2445 29 961 2684 276871 103199 6.8385 6.8385 -148.047 -6.8385 0 0 612192. 2118.31 0.25 0.11 0.12 -1 -1 0.25 0.0330695 0.0291408 150 138 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 5.56 vpr 64.44 MiB 0.02 6740 -1 -1 12 0.24 -1 -1 36388 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65988 32 32 261 293 1 201 87 17 17 289 -1 unnamed_device 25.9 MiB 0.36 1241 11223 2642 6703 1878 64.4 MiB 0.10 0.00 6.72746 -150.964 -6.72746 6.72746 0.89 0.000653442 0.000597174 0.0452472 0.0367872 34 3118 16 6.55708e+06 277265 585099. 2024.56 1.97 0.141844 0.120904 22462 138074 -1 2784 18 1234 3555 200327 47240 6.06278 6.06278 -146.84 -6.06278 0 0 742403. 2568.87 0.31 0.08 0.14 -1 -1 0.31 0.0270565 0.0243319 167 166 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 8.11 vpr 63.78 MiB 0.02 6892 -1 -1 9 0.16 -1 -1 35956 -1 -1 25 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65308 25 32 184 216 1 141 82 17 17 289 -1 unnamed_device 25.4 MiB 0.20 840 9694 2571 5897 1226 63.8 MiB 0.07 0.00 5.60806 -104.508 -5.60806 5.60806 0.88 0.000429209 0.000383661 0.0258097 0.02349 26 2429 32 6.55708e+06 301375 477104. 1650.88 4.95 0.174483 0.152986 21022 109990 -1 2030 21 959 2849 201894 44162 5.05372 5.05372 -102.414 -5.05372 0 0 585099. 2024.56 0.26 0.07 0.10 -1 -1 0.26 0.0214049 0.0189193 112 103 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 7.08 vpr 65.19 MiB 0.02 7224 -1 -1 12 0.33 -1 -1 36272 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66752 32 32 302 334 1 239 98 17 17 289 -1 unnamed_device 26.5 MiB 0.69 1640 5273 863 4118 292 65.2 MiB 0.06 0.00 7.59969 -165.851 -7.59969 7.59969 0.88 0.000700039 0.000625196 0.020358 0.0185489 36 4101 31 6.55708e+06 409870 612192. 2118.31 2.98 0.190786 0.16855 22750 144809 -1 3664 27 1663 4868 389419 120702 6.6811 6.6811 -162.861 -6.6811 0 0 782063. 2706.10 0.32 0.14 0.14 -1 -1 0.32 0.0421151 0.0375729 209 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 7.08 vpr 65.26 MiB 0.02 7016 -1 -1 14 0.39 -1 -1 36928 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 31 32 295 327 1 219 92 17 17 289 -1 unnamed_device 26.7 MiB 0.51 1228 13340 3394 7367 2579 65.3 MiB 0.12 0.00 8.33716 -163.889 -8.33716 8.33716 0.90 0.000684816 0.000615444 0.0483336 0.0435068 38 3334 33 6.55708e+06 349595 638502. 2209.35 3.10 0.226934 0.199519 23326 155178 -1 2567 15 1241 3638 169276 42191 7.26282 7.26282 -154.559 -7.26282 0 0 851065. 2944.86 0.33 0.07 0.15 -1 -1 0.33 0.0290335 0.0263318 204 202 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.33 vpr 65.54 MiB 0.02 7408 -1 -1 1 0.03 -1 -1 34032 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67116 32 32 438 350 1 194 100 17 17 289 -1 unnamed_device 26.9 MiB 0.11 929 17268 4565 10218 2485 65.5 MiB 0.15 0.00 4.24756 -141.398 -4.24756 4.24756 0.91 0.000595811 0.000540085 0.0471696 0.042707 32 2653 22 6.64007e+06 452088 554710. 1919.41 1.09 0.126744 0.112053 22834 132086 -1 2063 20 1737 2888 190251 43596 3.62623 3.62623 -138.638 -3.62623 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0265007 0.0235621 153 80 32 32 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.29 vpr 65.18 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 34080 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66740 30 32 409 330 1 186 85 17 17 289 -1 unnamed_device 26.4 MiB 0.19 873 12919 4129 6395 2395 65.2 MiB 0.12 0.00 4.44716 -130.844 -4.44716 4.44716 0.91 0.000570185 0.000517779 0.0417503 0.0381432 32 2348 20 6.64007e+06 288834 554710. 1919.41 1.03 0.113437 0.100313 22834 132086 -1 1994 22 1856 3093 219120 49732 3.70343 3.70343 -133.099 -3.70343 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0272093 0.024052 142 78 30 30 89 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 3.86 vpr 65.34 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 34252 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66904 32 32 387 309 1 186 99 17 17 289 -1 unnamed_device 26.7 MiB 0.09 1003 9675 2005 7104 566 65.3 MiB 0.08 0.00 3.83457 -129.818 -3.83457 3.83457 0.87 0.000508012 0.000462605 0.0239228 0.0217112 30 2305 22 6.64007e+06 439530 526063. 1820.29 0.93 0.0886611 0.0775384 22546 126617 -1 2037 18 1150 1877 103344 23596 3.77883 3.77883 -135.437 -3.77883 0 0 666494. 2306.21 0.26 0.05 0.11 -1 -1 0.26 0.020647 0.0183063 142 50 54 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.19 vpr 65.08 MiB 0.07 7088 -1 -1 1 0.03 -1 -1 33960 -1 -1 24 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 29 32 343 267 1 184 85 17 17 289 -1 unnamed_device 26.5 MiB 0.07 990 11245 3461 6773 1011 65.1 MiB 0.11 0.00 4.46418 -132.921 -4.46418 4.46418 0.89 0.000542505 0.00049789 0.0329292 0.0301789 26 2405 19 6.64007e+06 301392 477104. 1650.88 1.11 0.101984 0.0905558 21682 110474 -1 2136 21 1720 2916 197802 44415 3.71763 3.71763 -133.945 -3.71763 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.022802 0.020183 138 25 87 29 29 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 3.92 vpr 65.18 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 33992 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 32 32 376 288 1 195 86 17 17 289 -1 unnamed_device 26.5 MiB 0.10 849 15017 4515 8552 1950 65.2 MiB 0.13 0.00 4.14936 -139.21 -4.14936 4.14936 0.81 0.000543077 0.000494202 0.0433317 0.0395005 32 2360 21 6.64007e+06 276276 554710. 1919.41 0.98 0.106967 0.0944895 22834 132086 -1 1907 22 1808 3168 189233 46987 3.49503 3.49503 -134.831 -3.49503 0 0 701300. 2426.64 0.28 0.07 0.12 -1 -1 0.28 0.024474 0.0216693 153 31 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.19 vpr 65.22 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33888 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66788 32 32 402 316 1 199 103 17 17 289 -1 unnamed_device 26.7 MiB 0.11 1024 19142 5848 10342 2952 65.2 MiB 0.16 0.00 3.5603 -122.153 -3.5603 3.5603 0.90 0.000568478 0.000510739 0.0468362 0.0424845 32 2260 24 6.64007e+06 489762 554710. 1919.41 1.00 0.120452 0.106083 22834 132086 -1 1964 21 1392 2247 141883 33754 2.95797 2.95797 -118.183 -2.95797 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0268585 0.0236892 156 61 63 32 63 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.91 vpr 64.61 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 34000 -1 -1 20 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66160 27 32 269 226 1 135 79 17 17 289 -1 unnamed_device 26.2 MiB 0.10 722 12923 4015 7171 1737 64.6 MiB 0.09 0.00 3.7987 -103.375 -3.7987 3.7987 0.89 0.00040099 0.000365683 0.0329061 0.03008 32 1657 16 6.64007e+06 251160 554710. 1919.41 0.90 0.0802947 0.0710287 22834 132086 -1 1469 18 836 1477 106951 23765 2.89177 2.89177 -98.2789 -2.89177 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0171868 0.0152601 96 26 54 27 27 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.10 vpr 65.30 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 33888 -1 -1 34 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66868 31 32 317 242 1 185 97 17 17 289 -1 unnamed_device 26.7 MiB 0.08 948 16081 4441 8879 2761 65.3 MiB 0.13 0.00 3.49449 -109.504 -3.49449 3.49449 0.92 0.000496537 0.000454168 0.0372917 0.0339947 28 2371 22 6.64007e+06 426972 500653. 1732.36 1.07 0.102097 0.0902698 21970 115934 -1 1925 20 1174 1957 131265 29413 2.65357 2.65357 -104.231 -2.65357 0 0 612192. 2118.31 0.25 0.06 0.12 -1 -1 0.25 0.0213611 0.0188445 140 -1 115 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.90 vpr 64.82 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 33828 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 31 32 338 292 1 147 80 17 17 289 -1 unnamed_device 26.1 MiB 0.15 706 7820 1805 5417 598 64.8 MiB 0.07 0.00 3.31336 -101.862 -3.31336 3.31336 0.90 0.00048389 0.000441895 0.0236328 0.0215985 28 1873 21 6.64007e+06 213486 500653. 1732.36 0.86 0.0826305 0.0724905 21970 115934 -1 1617 19 763 1280 81950 19016 2.76197 2.76197 -100.334 -2.76197 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0200799 0.017747 106 81 0 0 84 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.00 vpr 64.91 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 33760 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66468 32 32 314 256 1 162 81 17 17 289 -1 unnamed_device 26.2 MiB 0.14 890 10756 2975 5928 1853 64.9 MiB 0.09 0.00 3.5061 -124.869 -3.5061 3.5061 0.87 0.000446673 0.000406808 0.0299906 0.0273836 32 2057 20 6.64007e+06 213486 554710. 1919.41 0.95 0.0876504 0.0773004 22834 132086 -1 1852 18 1316 2016 140487 32575 2.99897 2.99897 -124.432 -2.99897 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0193361 0.0171641 121 31 64 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.92 vpr 64.88 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 33724 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66436 30 32 325 273 1 151 80 17 17 289 -1 unnamed_device 26.1 MiB 0.13 822 14012 5060 7295 1657 64.9 MiB 0.10 0.00 3.4841 -115.834 -3.4841 3.4841 0.89 0.000466011 0.000423756 0.0381991 0.0348665 28 1767 16 6.64007e+06 226044 500653. 1732.36 0.90 0.0934721 0.0825816 21970 115934 -1 1573 18 969 1421 92248 21186 2.81677 2.81677 -113.582 -2.81677 0 0 612192. 2118.31 0.26 0.05 0.12 -1 -1 0.26 0.0189613 0.0168183 110 58 30 30 60 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.80 vpr 64.77 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 33732 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66320 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 25.9 MiB 0.09 840 9753 2297 6936 520 64.8 MiB 0.08 0.00 3.52209 -114.564 -3.52209 3.52209 0.86 0.000427258 0.000386707 0.0230359 0.0208996 30 1922 21 6.64007e+06 364182 526063. 1820.29 0.90 0.0792945 0.0692566 22546 126617 -1 1659 17 887 1552 78328 18945 2.76557 2.76557 -107.813 -2.76557 0 0 666494. 2306.21 0.28 0.04 0.11 -1 -1 0.28 0.0178452 0.0158348 114 57 25 25 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.23 vpr 64.95 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 33940 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66504 32 32 386 305 1 188 98 17 17 289 -1 unnamed_device 26.2 MiB 0.19 893 19448 6133 10048 3267 64.9 MiB 0.16 0.00 3.56129 -122.026 -3.56129 3.56129 0.87 0.000550726 0.00050115 0.0508219 0.0462795 32 2222 23 6.64007e+06 426972 554710. 1919.41 1.04 0.121844 0.107645 22834 132086 -1 2011 22 1725 2969 222324 48004 2.95177 2.95177 -118.25 -2.95177 0 0 701300. 2426.64 0.28 0.07 0.12 -1 -1 0.28 0.022639 0.0199901 145 55 64 32 57 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.92 vpr 65.18 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 34268 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 32 32 407 319 1 200 100 17 17 289 -1 unnamed_device 26.7 MiB 0.13 1031 17036 4693 9820 2523 65.2 MiB 0.15 0.00 4.31123 -147.759 -4.31123 4.31123 0.90 0.000585331 0.00053345 0.0444686 0.0404907 26 2990 23 6.64007e+06 452088 477104. 1650.88 1.78 0.125032 0.110771 21682 110474 -1 2394 21 1911 2966 220188 47262 3.77463 3.77463 -148.098 -3.77463 0 0 585099. 2024.56 0.26 0.08 0.11 -1 -1 0.26 0.02661 0.0235713 158 60 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.88 vpr 64.38 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 34024 -1 -1 19 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65928 29 32 272 228 1 145 80 17 17 289 -1 unnamed_device 25.9 MiB 0.10 800 8852 2481 5509 862 64.4 MiB 0.07 0.00 3.4261 -103.793 -3.4261 3.4261 0.89 0.000418914 0.000382451 0.0231494 0.0211594 32 1672 20 6.64007e+06 238602 554710. 1919.41 0.90 0.0748976 0.0658567 22834 132086 -1 1514 21 1053 1801 110250 26011 2.54257 2.54257 -96.4201 -2.54257 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0187166 0.0165035 108 21 58 29 24 24 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.20 vpr 65.44 MiB 0.02 7320 -1 -1 1 0.03 -1 -1 33860 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67008 32 32 401 315 1 192 86 17 17 289 -1 unnamed_device 26.6 MiB 0.16 1068 13316 3890 7652 1774 65.4 MiB 0.13 0.00 3.5141 -124.724 -3.5141 3.5141 0.89 0.000546405 0.00049328 0.0425394 0.038845 32 2326 21 6.64007e+06 276276 554710. 1919.41 1.01 0.112974 0.0998243 22834 132086 -1 2017 21 1648 2871 181984 40905 2.89497 2.89497 -119.923 -2.89497 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0267958 0.0237605 147 60 64 32 62 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.42 vpr 65.43 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 33860 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67000 32 32 383 303 1 185 100 17 17 289 -1 unnamed_device 26.7 MiB 0.15 964 16340 5208 8057 3075 65.4 MiB 0.11 0.00 3.6263 -123.14 -3.6263 3.6263 0.88 0.000551943 0.000497829 0.0411959 0.0375578 34 2358 39 6.64007e+06 452088 585099. 2024.56 2.26 0.181147 0.159503 23122 138558 -1 1857 19 1329 2031 152578 34666 2.94817 2.94817 -116.958 -2.94817 0 0 742403. 2568.87 0.31 0.06 0.13 -1 -1 0.31 0.023605 0.0209428 144 54 64 32 56 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.91 vpr 64.90 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 33796 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66456 32 32 339 284 1 162 95 17 17 289 -1 unnamed_device 26.3 MiB 0.12 919 13487 3473 7992 2022 64.9 MiB 0.10 0.00 2.83964 -105.375 -2.83964 2.83964 0.89 0.0004907 0.00044673 0.0323581 0.0294597 26 2137 22 6.64007e+06 389298 477104. 1650.88 0.91 0.0953428 0.0838932 21682 110474 -1 1871 18 1080 1737 126057 27332 2.24871 2.24871 -99.3708 -2.24871 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.0199869 0.0176675 119 62 29 29 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.82 vpr 63.96 MiB 0.02 6836 -1 -1 1 0.03 -1 -1 33800 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65496 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 25.5 MiB 0.04 670 10835 3352 6011 1472 64.0 MiB 0.07 0.00 2.72344 -89.4054 -2.72344 2.72344 0.89 0.000371537 0.000340715 0.0258422 0.0236343 32 1416 19 6.64007e+06 188370 554710. 1919.41 0.90 0.0691071 0.0608782 22834 132086 -1 1287 20 611 946 71968 16043 1.88191 1.88191 -81.4038 -1.88191 0 0 701300. 2426.64 0.28 0.04 0.13 -1 -1 0.28 0.0157144 0.013811 85 29 24 24 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.96 vpr 65.01 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33840 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66568 31 32 335 280 1 154 80 17 17 289 -1 unnamed_device 26.3 MiB 0.12 727 12120 4439 5930 1751 65.0 MiB 0.10 0.00 4.19115 -121.049 -4.19115 4.19115 0.87 0.000473245 0.000429935 0.0355206 0.0324466 32 2029 16 6.64007e+06 213486 554710. 1919.41 0.94 0.0912584 0.0806202 22834 132086 -1 1646 16 773 1135 78390 18880 3.47243 3.47243 -118.543 -3.47243 0 0 701300. 2426.64 0.29 0.04 0.13 -1 -1 0.29 0.0184282 0.0164256 113 55 31 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.16 vpr 65.09 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 33840 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66648 32 32 366 283 1 192 100 17 17 289 -1 unnamed_device 26.4 MiB 0.09 885 17732 4998 9545 3189 65.1 MiB 0.14 0.00 4.22193 -138.344 -4.22193 4.22193 0.89 0.000549423 0.000502933 0.0438154 0.0398974 32 2479 24 6.64007e+06 452088 554710. 1919.41 1.02 0.113777 0.100403 22834 132086 -1 2081 21 1750 2593 199818 46979 3.97923 3.97923 -143.012 -3.97923 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0242434 0.0214635 147 31 91 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.13 vpr 65.38 MiB 0.02 7392 -1 -1 1 0.03 -1 -1 34224 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66952 32 32 460 375 1 196 102 17 17 289 -1 unnamed_device 27.1 MiB 0.21 960 11288 2842 7087 1359 65.4 MiB 0.11 0.00 3.74425 -123.858 -3.74425 3.74425 0.87 0.000550248 0.000499931 0.0298284 0.0269874 30 2640 22 6.64007e+06 477204 526063. 1820.29 1.01 0.103647 0.090494 22546 126617 -1 2064 22 1380 2128 121033 28362 3.46343 3.46343 -126.928 -3.46343 0 0 666494. 2306.21 0.29 0.06 0.11 -1 -1 0.29 0.0275745 0.0242975 150 108 0 0 125 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.71 vpr 63.95 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 34308 -1 -1 17 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65488 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 25.6 MiB 0.08 395 10503 3120 6151 1232 64.0 MiB 0.06 0.00 2.74064 -71.156 -2.74064 2.74064 0.87 0.000300958 0.000272648 0.0221035 0.020125 28 1145 19 6.64007e+06 213486 500653. 1732.36 0.87 0.0614308 0.0539072 21970 115934 -1 967 19 642 945 56994 15211 2.12231 2.12231 -72.5879 -2.12231 0 0 612192. 2118.31 0.26 0.03 0.12 -1 -1 0.26 0.0136559 0.0120091 77 21 26 26 22 22 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.99 vpr 64.89 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 34132 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66444 32 32 333 251 1 187 86 17 17 289 -1 unnamed_device 26.4 MiB 0.07 990 12749 4130 6257 2362 64.9 MiB 0.11 0.00 4.45633 -140.507 -4.45633 4.45633 0.86 0.000505425 0.000459975 0.0346962 0.0317667 32 2561 21 6.64007e+06 276276 554710. 1919.41 0.98 0.0955255 0.084442 22834 132086 -1 2064 19 1599 2771 182290 42264 3.83383 3.83383 -140.702 -3.83383 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0222283 0.0197383 138 -1 122 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.81 vpr 64.32 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 33780 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65868 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 25.9 MiB 0.04 603 10672 2424 7898 350 64.3 MiB 0.06 0.00 2.3583 -83.9313 -2.3583 2.3583 0.87 0.000299878 0.000276139 0.0230947 0.0210804 28 1546 20 6.64007e+06 163254 500653. 1732.36 1.01 0.0666816 0.0589081 21970 115934 -1 1327 18 595 751 61018 14471 1.90111 1.90111 -83.0742 -1.90111 0 0 612192. 2118.31 0.27 0.04 0.11 -1 -1 0.27 0.0141975 0.0125613 81 -1 53 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.11 vpr 65.50 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 34120 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67068 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 26.8 MiB 0.07 956 14691 4376 8904 1411 65.5 MiB 0.13 0.00 4.18856 -140.856 -4.18856 4.18856 0.89 0.000567806 0.000520643 0.0375182 0.0341448 32 2560 22 6.64007e+06 439530 554710. 1919.41 1.02 0.105484 0.0930071 22834 132086 -1 2110 23 1975 3163 220921 51060 3.77763 3.77763 -140.866 -3.77763 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.026217 0.023089 153 21 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 8.59 vpr 65.41 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 33752 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66984 32 32 337 253 1 196 101 17 17 289 -1 unnamed_device 26.7 MiB 0.08 1019 8796 1857 6524 415 65.4 MiB 0.08 0.00 3.60659 -123.354 -3.60659 3.60659 0.89 0.00048499 0.000441217 0.0207685 0.0189151 26 3249 33 6.64007e+06 464646 477104. 1650.88 5.58 0.183731 0.161143 21682 110474 -1 2352 21 1646 2647 212748 50416 2.98917 2.98917 -123.331 -2.98917 0 0 585099. 2024.56 0.26 0.08 0.11 -1 -1 0.26 0.0241351 0.0213461 152 -1 124 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.15 vpr 65.32 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 33872 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66888 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 26.8 MiB 0.08 1069 18901 5689 10576 2636 65.3 MiB 0.16 0.00 4.16036 -141.868 -4.16036 4.16036 0.88 0.000583951 0.000532183 0.0485867 0.0442508 32 2736 22 6.64007e+06 464646 554710. 1919.41 1.03 0.121048 0.107073 22834 132086 -1 2230 22 1870 2980 198864 45462 3.74943 3.74943 -140.268 -3.74943 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0272203 0.0241055 155 54 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.90 vpr 64.63 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 33832 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66184 32 32 294 246 1 149 80 17 17 289 -1 unnamed_device 26.1 MiB 0.07 857 10572 2555 6423 1594 64.6 MiB 0.08 0.00 3.07196 -107.422 -3.07196 3.07196 0.88 0.000441391 0.000402265 0.0297163 0.0271265 32 1869 19 6.64007e+06 200928 554710. 1919.41 0.94 0.0842835 0.0742876 22834 132086 -1 1748 19 1022 1690 122468 27827 2.85797 2.85797 -110.414 -2.85797 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0188168 0.0166902 107 31 54 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.95 vpr 64.83 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 33740 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66388 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 26.3 MiB 0.08 824 11806 3275 6761 1770 64.8 MiB 0.09 0.00 3.4951 -114.009 -3.4951 3.4951 0.88 0.000460333 0.000421378 0.0315948 0.0288606 32 1835 21 6.64007e+06 238602 554710. 1919.41 0.94 0.0881266 0.077721 22834 132086 -1 1652 22 1274 1894 134685 30348 3.05317 3.05317 -114.65 -3.05317 0 0 701300. 2426.64 0.29 0.06 0.14 -1 -1 0.29 0.0216702 0.0191435 115 29 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.94 vpr 64.50 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 33948 -1 -1 20 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66044 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 26.0 MiB 0.09 658 7132 1686 4570 876 64.5 MiB 0.07 0.00 3.4309 -100.483 -3.4309 3.4309 0.88 0.000423117 0.000386436 0.019504 0.0178768 32 1851 20 6.64007e+06 251160 554710. 1919.41 0.95 0.072213 0.0633467 22834 132086 -1 1598 19 1106 1844 115295 28057 2.89677 2.89677 -103.792 -2.89677 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0186385 0.016502 107 27 56 28 28 28 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.01 vpr 64.69 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 33932 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66240 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 26.1 MiB 0.08 802 15390 5648 7380 2362 64.7 MiB 0.12 0.00 3.5251 -121.985 -3.5251 3.5251 0.87 0.000429883 0.000391602 0.0399043 0.0364702 32 2003 23 6.64007e+06 226044 554710. 1919.41 0.94 0.095745 0.0846852 22834 132086 -1 1819 24 1658 2643 190883 43645 3.16717 3.16717 -124.476 -3.16717 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0209015 0.0184147 125 -1 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.83 vpr 64.83 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 33916 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66384 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 26.2 MiB 0.05 772 9679 2262 6618 799 64.8 MiB 0.08 0.00 3.47387 -114.287 -3.47387 3.47387 0.86 0.000467484 0.00042491 0.0225856 0.0205624 28 2025 20 6.64007e+06 389298 500653. 1732.36 0.92 0.0789786 0.0690871 21970 115934 -1 1816 18 1196 2011 129020 30030 2.78577 2.78577 -113.339 -2.78577 0 0 612192. 2118.31 0.27 0.06 0.12 -1 -1 0.27 0.019038 0.0169047 119 26 61 31 31 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.00 vpr 64.63 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 33768 -1 -1 31 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66184 29 32 312 264 1 154 92 17 17 289 -1 unnamed_device 26.3 MiB 0.12 877 15824 4460 9332 2032 64.6 MiB 0.12 0.00 2.80466 -91.9047 -2.80466 2.80466 0.89 0.000459495 0.000417967 0.0372795 0.0339341 26 2073 22 6.64007e+06 389298 477104. 1650.88 0.95 0.0953491 0.0841209 21682 110474 -1 1837 21 1137 1801 136044 29396 2.24571 2.24571 -93.806 -2.24571 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.0198941 0.01751 110 55 29 29 57 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 5.36 vpr 65.17 MiB 0.02 7428 -1 -1 1 0.03 -1 -1 34076 -1 -1 41 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66736 32 32 423 310 1 229 105 17 17 289 -1 unnamed_device 27.0 MiB 0.16 1234 17889 5288 10109 2492 65.2 MiB 0.18 0.00 4.16036 -142.499 -4.16036 4.16036 0.91 0.000580015 0.000527212 0.0458917 0.0417321 28 3347 24 6.64007e+06 514878 500653. 1732.36 2.06 0.130965 0.115972 21970 115934 -1 2788 20 1833 3123 251482 51823 3.78863 3.78863 -146.904 -3.78863 0 0 612192. 2118.31 0.27 0.09 0.12 -1 -1 0.27 0.0273684 0.024335 181 26 128 32 27 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.12 vpr 65.39 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 34244 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66956 32 32 403 317 1 198 101 17 17 289 -1 unnamed_device 26.8 MiB 0.14 996 11616 2636 8022 958 65.4 MiB 0.11 0.00 3.5823 -125.213 -3.5823 3.5823 0.90 0.00057829 0.0005204 0.0312462 0.0283705 30 2080 20 6.64007e+06 464646 526063. 1820.29 0.95 0.100878 0.0887317 22546 126617 -1 1846 19 1498 2269 113841 26948 2.75677 2.75677 -115.324 -2.75677 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0247232 0.0220039 154 62 62 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.05 vpr 65.07 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 33824 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 31 32 353 302 1 156 92 17 17 289 -1 unnamed_device 26.3 MiB 0.19 803 9407 2189 6388 830 65.1 MiB 0.08 0.00 3.6833 -114.43 -3.6833 3.6833 0.90 0.000498187 0.000448393 0.0243669 0.0222099 30 1852 20 6.64007e+06 364182 526063. 1820.29 0.93 0.0849782 0.074301 22546 126617 -1 1550 18 922 1504 90973 20566 2.62237 2.62237 -105.638 -2.62237 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0203134 0.0180201 114 77 0 0 89 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.07 vpr 65.45 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 34012 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67024 31 32 391 309 1 194 87 17 17 289 -1 unnamed_device 26.8 MiB 0.13 1052 11799 3060 6831 1908 65.5 MiB 0.11 0.00 3.64847 -119.816 -3.64847 3.64847 0.87 0.00056005 0.000507296 0.0346287 0.0314588 32 2372 21 6.64007e+06 301392 554710. 1919.41 0.96 0.101496 0.0892599 22834 132086 -1 2152 22 1630 2766 200395 43135 2.95497 2.95497 -115.859 -2.95497 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0264374 0.0233626 149 59 60 30 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.31 vpr 65.73 MiB 0.02 7388 -1 -1 1 0.04 -1 -1 34084 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67312 31 32 455 371 1 193 86 17 17 289 -1 unnamed_device 27.1 MiB 0.34 953 7835 1760 5704 371 65.7 MiB 0.08 0.00 5.23812 -147.937 -5.23812 5.23812 0.88 0.000602213 0.000546856 0.027357 0.024965 32 2549 24 6.64007e+06 288834 554710. 1919.41 1.00 0.10467 0.0916894 22834 132086 -1 2131 20 1265 2184 169313 37652 3.92448 3.92448 -137.591 -3.92448 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0258933 0.0228922 150 111 0 0 124 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.11 vpr 65.34 MiB 0.02 7360 -1 -1 1 0.03 -1 -1 34132 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66908 31 32 413 333 1 188 86 17 17 289 -1 unnamed_device 26.6 MiB 0.18 955 10859 3044 7047 768 65.3 MiB 0.11 0.00 5.02279 -136.574 -5.02279 5.02279 0.91 0.000567353 0.000517182 0.0353886 0.032249 30 2107 21 6.64007e+06 288834 526063. 1820.29 0.96 0.106645 0.0939511 22546 126617 -1 1798 17 925 1478 80699 18677 3.76928 3.76928 -128.991 -3.76928 0 0 666494. 2306.21 0.27 0.05 0.13 -1 -1 0.27 0.0223952 0.0199357 144 86 31 31 89 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.07 vpr 65.32 MiB 0.02 7408 -1 -1 1 0.03 -1 -1 33732 -1 -1 35 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66884 31 32 391 309 1 193 98 17 17 289 -1 unnamed_device 26.5 MiB 0.13 1046 15623 4332 9609 1682 65.3 MiB 0.14 0.00 3.5621 -120.379 -3.5621 3.5621 0.88 0.000566381 0.00051706 0.0412492 0.037568 26 2560 22 6.64007e+06 439530 477104. 1650.88 1.00 0.113397 0.100111 21682 110474 -1 2192 17 1506 2552 161287 36406 2.88517 2.88517 -115.985 -2.88517 0 0 585099. 2024.56 0.24 0.06 0.11 -1 -1 0.24 0.022664 0.0201639 148 58 60 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 4.18 vpr 65.51 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33756 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67080 32 32 407 319 1 198 101 17 17 289 -1 unnamed_device 26.9 MiB 0.09 865 10206 2264 6941 1001 65.5 MiB 0.10 0.00 4.23656 -140.329 -4.23656 4.23656 0.90 0.000553454 0.000503548 0.0278969 0.0254093 32 2829 21 6.64007e+06 464646 554710. 1919.41 1.07 0.102136 0.0899814 22834 132086 -1 2047 21 1912 2990 184288 44236 3.83663 3.83663 -143.573 -3.83663 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.026139 0.0231906 156 42 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.29 vpr 65.60 MiB 0.02 7548 -1 -1 1 0.05 -1 -1 34120 -1 -1 42 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67172 32 32 496 380 1 232 106 17 17 289 -1 unnamed_device 27.3 MiB 0.16 1205 17356 4219 10649 2488 65.6 MiB 0.17 0.00 4.21478 -145.938 -4.21478 4.21478 0.87 0.000640709 0.000583253 0.0497256 0.0452033 32 2779 22 6.64007e+06 527436 554710. 1919.41 1.02 0.135258 0.119397 22834 132086 -1 2473 21 1994 3105 215922 46353 3.69883 3.69883 -141.768 -3.69883 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.031803 0.0283033 186 91 62 32 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.94 vpr 64.77 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 33912 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66324 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 26.0 MiB 0.09 655 13731 5030 6417 2284 64.8 MiB 0.11 0.00 3.7665 -117.146 -3.7665 3.7665 0.86 0.00042847 0.000390477 0.0365484 0.0334032 32 1931 27 6.64007e+06 226044 554710. 1919.41 0.96 0.095815 0.0845698 22834 132086 -1 1477 19 1272 1994 124192 30557 3.17137 3.17137 -113.403 -3.17137 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0199046 0.017631 116 24 62 31 31 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.04 vpr 65.45 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 33996 -1 -1 38 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67020 31 32 395 311 1 196 101 17 17 289 -1 unnamed_device 26.9 MiB 0.13 910 7386 1527 5477 382 65.4 MiB 0.07 0.00 4.20356 -136.322 -4.20356 4.20356 0.87 0.00052467 0.00047389 0.0187704 0.0170122 32 2713 25 6.64007e+06 477204 554710. 1919.41 1.02 0.0893745 0.0779025 22834 132086 -1 2059 21 1727 2677 163665 39572 3.75443 3.75443 -140.956 -3.75443 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0240466 0.0211503 152 59 62 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.03 vpr 65.34 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 33992 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66912 32 32 397 313 1 196 98 17 17 289 -1 unnamed_device 26.5 MiB 0.10 994 14048 3500 8468 2080 65.3 MiB 0.12 0.00 3.7163 -119.726 -3.7163 3.7163 0.88 0.000458895 0.000418223 0.0355908 0.0323955 32 2435 23 6.64007e+06 426972 554710. 1919.41 0.97 0.106238 0.0930727 22834 132086 -1 1988 20 1561 2703 161852 38060 2.87477 2.87477 -111.216 -2.87477 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0245033 0.0216581 149 54 62 32 62 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.19 vpr 64.56 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 33660 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66112 32 32 345 257 1 194 86 17 17 289 -1 unnamed_device 26.1 MiB 0.08 1080 15017 4624 8554 1839 64.6 MiB 0.14 0.00 4.14936 -144.892 -4.14936 4.14936 0.90 0.000518035 0.00047217 0.0439576 0.0402015 32 2624 22 6.64007e+06 276276 554710. 1919.41 1.04 0.111132 0.0985581 22834 132086 -1 2280 22 1962 3452 237199 51269 3.51823 3.51823 -140.15 -3.51823 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0251811 0.0223292 151 -1 128 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.23 vpr 65.44 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 33804 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67012 32 32 424 343 1 190 99 17 17 289 -1 unnamed_device 26.7 MiB 0.17 1044 15603 4218 9336 2049 65.4 MiB 0.14 0.00 3.55822 -125.535 -3.55822 3.55822 0.90 0.00056806 0.000514941 0.0424058 0.0385769 32 2394 19 6.64007e+06 439530 554710. 1919.41 0.99 0.113035 0.0996233 22834 132086 -1 2155 20 1417 2140 146036 32428 2.75357 2.75357 -116.259 -2.75357 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0257256 0.0228223 146 81 25 25 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.74 vpr 65.62 MiB 0.02 7332 -1 -1 1 0.03 -1 -1 33740 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67200 32 32 395 311 1 194 101 17 17 289 -1 unnamed_device 26.8 MiB 0.17 1017 12791 3286 8285 1220 65.6 MiB 0.12 0.00 3.47912 -120.914 -3.47912 3.47912 0.87 0.00055031 0.000500898 0.0327549 0.0297617 26 2568 45 6.64007e+06 464646 477104. 1650.88 1.64 0.128355 0.112517 21682 110474 -1 2041 18 1085 1861 116887 27939 3.01517 3.01517 -119.008 -3.01517 0 0 585099. 2024.56 0.26 0.06 0.10 -1 -1 0.26 0.0237066 0.0210925 148 58 64 32 60 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.18 vpr 65.36 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 34084 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66932 32 32 405 318 1 200 103 17 17 289 -1 unnamed_device 26.8 MiB 0.14 1102 19142 5372 11310 2460 65.4 MiB 0.16 0.00 3.5243 -123.608 -3.5243 3.5243 0.89 0.000563229 0.000513346 0.0476884 0.043369 32 2414 19 6.64007e+06 489762 554710. 1919.41 0.99 0.117246 0.103626 22834 132086 -1 2030 19 1627 2567 155424 34286 2.92977 2.92977 -118.103 -2.92977 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.024817 0.0220971 157 61 63 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.05 vpr 65.13 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 33804 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 32 32 376 288 1 194 101 17 17 289 -1 unnamed_device 26.4 MiB 0.08 1032 14906 4320 9186 1400 65.1 MiB 0.14 0.00 4.18856 -144.112 -4.18856 4.18856 0.88 0.000559659 0.000506066 0.0373184 0.0340438 30 2290 20 6.64007e+06 464646 526063. 1820.29 1.00 0.104422 0.0922182 22546 126617 -1 1955 20 1443 2280 124536 28234 3.46723 3.46723 -135.995 -3.46723 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0241098 0.0213983 152 21 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 7.45 vpr 65.19 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 34284 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66752 32 32 407 319 1 197 103 17 17 289 -1 unnamed_device 26.7 MiB 0.12 1016 12153 3010 8355 788 65.2 MiB 0.11 0.00 4.23153 -146.068 -4.23153 4.23153 0.89 0.000567541 0.000516323 0.0313079 0.0284851 26 2842 35 6.64007e+06 489762 477104. 1650.88 4.35 0.196408 0.171331 21682 110474 -1 2351 23 1965 3168 258496 55718 4.00703 4.00703 -153.109 -4.00703 0 0 585099. 2024.56 0.26 0.09 0.11 -1 -1 0.26 0.027753 0.0244703 155 50 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.57 vpr 65.37 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33944 -1 -1 36 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66936 31 32 449 367 1 193 99 17 17 289 -1 unnamed_device 27.1 MiB 0.19 1141 13095 3356 8753 986 65.4 MiB 0.12 0.00 4.67535 -137.171 -4.67535 4.67535 0.87 0.000565569 0.000512868 0.0356054 0.0322811 28 3011 22 6.64007e+06 452088 500653. 1732.36 1.45 0.117888 0.103631 21970 115934 -1 2441 19 1347 2389 166478 37353 3.63142 3.63142 -132.908 -3.63142 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0248475 0.0219832 147 110 0 0 122 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.18 vpr 65.48 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 33740 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67048 32 32 432 346 1 195 86 17 17 289 -1 unnamed_device 26.9 MiB 0.15 1069 15584 4992 8664 1928 65.5 MiB 0.15 0.00 4.34993 -137.194 -4.34993 4.34993 0.88 0.00057568 0.000523707 0.0501953 0.045731 32 2657 20 6.64007e+06 276276 554710. 1919.41 1.00 0.12204 0.10789 22834 132086 -1 2343 20 1753 3189 207209 46843 3.53723 3.53723 -138.101 -3.53723 0 0 701300. 2426.64 0.28 0.08 0.13 -1 -1 0.28 0.0264792 0.0233703 151 86 32 32 94 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.82 vpr 65.03 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 34280 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 32 32 312 255 1 166 95 17 17 289 -1 unnamed_device 26.2 MiB 0.06 928 8735 1852 5986 897 65.0 MiB 0.07 0.00 3.50687 -122.364 -3.50687 3.50687 0.88 0.00045576 0.000414934 0.0208019 0.0190072 28 2197 22 6.64007e+06 389298 500653. 1732.36 0.94 0.0795523 0.0697733 21970 115934 -1 1974 21 1245 2029 149817 32809 2.81757 2.81757 -118.189 -2.81757 0 0 612192. 2118.31 0.25 0.06 0.11 -1 -1 0.25 0.0204785 0.0181252 125 20 63 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.02 vpr 64.94 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 33716 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66496 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 26.3 MiB 0.16 885 10406 2864 6861 681 64.9 MiB 0.10 0.00 3.5031 -121.505 -3.5031 3.5031 0.88 0.000516909 0.000472199 0.0323093 0.0294971 26 2358 26 6.64007e+06 226044 477104. 1650.88 1.00 0.102915 0.0905138 21682 110474 -1 1927 19 1289 2091 156950 34653 2.95817 2.95817 -120.516 -2.95817 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0222257 0.0196757 121 91 0 0 94 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.09 vpr 65.58 MiB 0.02 7372 -1 -1 1 0.03 -1 -1 34024 -1 -1 42 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67152 32 32 469 351 1 233 106 17 17 289 -1 unnamed_device 27.3 MiB 0.10 1352 17606 4821 10688 2097 65.6 MiB 0.17 0.00 4.98622 -168.741 -4.98622 4.98622 0.86 0.000560694 0.000511273 0.0446097 0.0405987 32 3451 24 6.64007e+06 527436 554710. 1919.41 1.02 0.121377 0.107107 22834 132086 -1 2773 25 2794 4611 301436 68682 4.71148 4.71148 -173.943 -4.71148 0 0 701300. 2426.64 0.27 0.10 0.12 -1 -1 0.27 0.030392 0.0268099 189 53 96 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.01 vpr 64.86 MiB 0.02 7308 -1 -1 1 0.03 -1 -1 33796 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66420 32 32 368 284 1 194 97 17 17 289 -1 unnamed_device 26.2 MiB 0.12 1055 17857 5354 10411 2092 64.9 MiB 0.16 0.00 3.51607 -123.396 -3.51607 3.51607 0.88 0.000529229 0.00048268 0.0448051 0.0406861 30 2223 20 6.64007e+06 414414 526063. 1820.29 0.90 0.109116 0.096379 22546 126617 -1 1940 19 1216 1819 99288 23536 2.99317 2.99317 -121.113 -2.99317 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0230173 0.020421 148 31 92 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.01 vpr 64.86 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 33668 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66416 30 32 296 244 1 158 93 17 17 289 -1 unnamed_device 26.3 MiB 0.07 853 17523 5443 9889 2191 64.9 MiB 0.13 0.00 3.4529 -114.711 -3.4529 3.4529 0.91 0.000453332 0.000414279 0.0398713 0.0363693 30 1885 20 6.64007e+06 389298 526063. 1820.29 0.92 0.0955351 0.0844856 22546 126617 -1 1585 22 947 1394 87104 18827 2.65337 2.65337 -105.849 -2.65337 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0211858 0.0186698 116 29 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.48 vpr 65.64 MiB 0.02 7668 -1 -1 1 0.04 -1 -1 34472 -1 -1 45 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67216 32 32 531 413 1 232 109 17 17 289 -1 unnamed_device 27.4 MiB 0.27 1192 13629 3357 8864 1408 65.6 MiB 0.14 0.00 4.97469 -167.233 -4.97469 4.97469 0.91 0.00069269 0.00062722 0.0391096 0.0355025 32 2825 26 6.64007e+06 565110 554710. 1919.41 1.06 0.125556 0.110418 22834 132086 -1 2520 19 2221 3364 236931 51052 4.66249 4.66249 -167.914 -4.66249 0 0 701300. 2426.64 0.29 0.09 0.13 -1 -1 0.29 0.0307313 0.0274197 188 109 32 32 128 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.11 vpr 65.25 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 33480 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 32 32 376 288 1 194 102 17 17 289 -1 unnamed_device 26.5 MiB 0.12 1027 16762 4357 10483 1922 65.2 MiB 0.13 0.00 4.27488 -146.847 -4.27488 4.27488 0.88 0.000548011 0.000499112 0.0396979 0.0360375 28 2563 23 6.64007e+06 477204 500653. 1732.36 1.01 0.111998 0.0987102 21970 115934 -1 2190 18 1638 2336 148667 35003 3.78563 3.78563 -146.904 -3.78563 0 0 612192. 2118.31 0.27 0.06 0.12 -1 -1 0.27 0.0226972 0.0202227 153 31 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.88 vpr 64.67 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 33844 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66220 32 32 283 225 1 164 96 17 17 289 -1 unnamed_device 26.1 MiB 0.07 882 11046 2802 6952 1292 64.7 MiB 0.10 0.00 3.5621 -124.172 -3.5621 3.5621 0.89 0.000435856 0.000397273 0.0249167 0.0226764 30 1857 21 6.64007e+06 401856 526063. 1820.29 0.88 0.0787649 0.0692456 22546 126617 -1 1513 20 789 1327 73689 17221 2.58017 2.58017 -107.275 -2.58017 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0197683 0.0175485 124 -1 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.52 vpr 65.48 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34568 -1 -1 43 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67048 32 32 438 320 1 235 107 17 17 289 -1 unnamed_device 27.2 MiB 0.11 1334 20347 5362 13158 1827 65.5 MiB 0.19 0.00 4.95502 -168.119 -4.95502 4.95502 0.89 0.000595613 0.000540643 0.0521029 0.0474258 30 3206 23 6.64007e+06 539994 526063. 1820.29 1.26 0.137778 0.122314 22546 126617 -1 2626 22 2104 3576 215848 46199 4.87169 4.87169 -172.927 -4.87169 0 0 666494. 2306.21 0.31 0.08 0.12 -1 -1 0.31 0.0296293 0.0263435 190 26 128 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.04 vpr 64.85 MiB 0.02 6892 -1 -1 1 0.03 -1 -1 33800 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66404 32 32 283 225 1 162 81 17 17 289 -1 unnamed_device 26.3 MiB 0.08 623 13731 4925 6406 2400 64.8 MiB 0.11 0.00 3.5061 -118.666 -3.5061 3.5061 0.89 0.000438487 0.000400115 0.0368053 0.0336431 32 2131 28 6.64007e+06 213486 554710. 1919.41 1.00 0.0980609 0.0865943 22834 132086 -1 1574 21 1421 2211 152899 38828 3.12337 3.12337 -121.185 -3.12337 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0205867 0.0181901 121 -1 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.79 vpr 64.71 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34068 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66260 30 32 296 244 1 157 94 17 17 289 -1 unnamed_device 26.4 MiB 0.12 855 13939 4099 8667 1173 64.7 MiB 0.11 0.00 3.47387 -112.968 -3.47387 3.47387 0.85 0.000451175 0.000410145 0.0307641 0.0280172 28 1888 22 6.64007e+06 401856 500653. 1732.36 0.88 0.0856771 0.075468 21970 115934 -1 1648 20 1061 1675 103903 23626 2.67537 2.67537 -107.352 -2.67537 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0196109 0.017367 114 29 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 3.98 vpr 65.51 MiB 0.02 7456 -1 -1 1 0.03 -1 -1 34100 -1 -1 34 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67084 29 32 393 319 1 182 95 17 17 289 -1 unnamed_device 26.7 MiB 0.15 1003 12839 3224 8329 1286 65.5 MiB 0.11 0.00 3.6803 -109.03 -3.6803 3.6803 0.87 0.000484469 0.000441941 0.0331526 0.0301008 26 2529 22 6.64007e+06 426972 477104. 1650.88 0.98 0.102021 0.0895138 21682 110474 -1 2071 20 1299 2285 152984 35357 3.26257 3.26257 -111.797 -3.26257 0 0 585099. 2024.56 0.25 0.06 0.10 -1 -1 0.25 0.0230192 0.0203277 134 81 29 29 85 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.07 vpr 65.39 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 34400 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66956 32 32 407 319 1 194 86 17 17 289 -1 unnamed_device 26.6 MiB 0.12 937 11048 2797 7564 687 65.4 MiB 0.10 0.00 4.21976 -143.232 -4.21976 4.21976 0.88 0.000578484 0.000526017 0.0359542 0.0328306 32 2378 24 6.64007e+06 276276 554710. 1919.41 1.00 0.105378 0.0927048 22834 132086 -1 1913 20 1846 2737 184305 42609 3.70463 3.70463 -144.609 -3.70463 0 0 701300. 2426.64 0.27 0.07 0.12 -1 -1 0.27 0.0256065 0.0226293 152 53 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.34 vpr 65.60 MiB 0.02 7340 -1 -1 1 0.03 -1 -1 34180 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67172 32 32 407 319 1 195 100 17 17 289 -1 unnamed_device 27.0 MiB 0.20 1070 15876 4480 9346 2050 65.6 MiB 0.15 0.00 4.25856 -146.098 -4.25856 4.25856 0.88 0.000573223 0.000521673 0.0417503 0.0380398 32 2697 38 6.64007e+06 452088 554710. 1919.41 1.12 0.131524 0.116007 22834 132086 -1 2357 23 1964 3118 203984 45384 3.74343 3.74343 -146.156 -3.74343 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0286226 0.0253583 154 55 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.01 vpr 64.93 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 34220 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66492 32 32 345 287 1 161 96 17 17 289 -1 unnamed_device 26.3 MiB 0.12 863 8856 1892 6516 448 64.9 MiB 0.08 0.00 3.4749 -121.747 -3.4749 3.4749 0.88 0.000496241 0.000453247 0.0217898 0.0198203 32 2048 21 6.64007e+06 401856 554710. 1919.41 0.96 0.0831033 0.0727446 22834 132086 -1 1770 21 1312 1966 141543 31639 2.81757 2.81757 -118.495 -2.81757 0 0 701300. 2426.64 0.28 0.06 0.13 -1 -1 0.28 0.0223497 0.0197265 122 55 32 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.08 vpr 65.18 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 34088 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 26.4 MiB 0.17 821 8336 2395 4162 1779 65.2 MiB 0.07 0.00 3.72326 -116.749 -3.72326 3.72326 0.89 0.000478212 0.00043278 0.0262134 0.0239511 32 1980 18 6.64007e+06 213486 554710. 1919.41 0.96 0.0851581 0.0748475 22834 132086 -1 1698 20 1021 1924 118875 28006 2.81257 2.81257 -111.355 -2.81257 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0207871 0.0182768 109 82 0 0 89 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.48 vpr 64.86 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 34136 -1 -1 35 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66416 30 32 374 297 1 186 97 17 17 289 -1 unnamed_device 26.2 MiB 0.13 985 17635 4923 10695 2017 64.9 MiB 0.16 0.00 3.4529 -110.073 -3.4529 3.4529 0.90 0.000533354 0.000486408 0.044908 0.0409046 26 2781 31 6.64007e+06 439530 477104. 1650.88 1.36 0.12688 0.112064 21682 110474 -1 2209 19 1288 2084 156039 35007 3.32077 3.32077 -114.565 -3.32077 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0232533 0.0205103 139 52 60 30 57 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.46 vpr 64.86 MiB 0.02 7348 -1 -1 1 0.03 -1 -1 33800 -1 -1 32 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66416 28 32 332 260 1 180 92 17 17 289 -1 unnamed_device 26.3 MiB 0.08 939 14996 4215 8524 2257 64.9 MiB 0.12 0.00 4.39198 -124.88 -4.39198 4.39198 0.92 0.000483924 0.000441823 0.0379247 0.0344464 26 2459 28 6.64007e+06 401856 477104. 1650.88 1.46 0.111352 0.0982378 21682 110474 -1 2067 21 1446 2305 167074 36170 3.49342 3.49342 -124.283 -3.49342 0 0 585099. 2024.56 0.24 0.06 0.11 -1 -1 0.24 0.021719 0.0191848 134 20 84 28 28 28 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.06 vpr 65.20 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 34084 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 30 32 325 273 1 157 81 17 17 289 -1 unnamed_device 26.4 MiB 0.16 846 13731 4520 7348 1863 65.2 MiB 0.11 0.00 3.5343 -117.296 -3.5343 3.5343 0.88 0.000458754 0.000417071 0.0378925 0.0345761 32 1980 19 6.64007e+06 238602 554710. 1919.41 0.95 0.0946194 0.08352 22834 132086 -1 1833 19 1281 2117 166359 34749 2.79857 2.79857 -112.22 -2.79857 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0200077 0.0176086 114 58 30 30 60 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.93 vpr 65.25 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 33364 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66816 32 32 361 308 1 158 81 17 17 289 -1 unnamed_device 26.4 MiB 0.15 892 11281 2807 6986 1488 65.2 MiB 0.09 0.00 3.6865 -117.315 -3.6865 3.6865 0.87 0.00046697 0.000423879 0.033141 0.0301249 30 1846 19 6.64007e+06 213486 526063. 1820.29 0.90 0.0918221 0.0806453 22546 126617 -1 1647 19 824 1345 85019 18804 2.71557 2.71557 -109.036 -2.71557 0 0 666494. 2306.21 0.28 0.05 0.13 -1 -1 0.28 0.0210192 0.0185309 114 88 0 0 91 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.12 vpr 64.98 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 34052 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 31 32 335 251 1 196 100 17 17 289 -1 unnamed_device 26.4 MiB 0.08 1121 19124 6194 10224 2706 65.0 MiB 0.16 0.00 4.18856 -139.706 -4.18856 4.18856 0.89 0.000499526 0.000455783 0.0431688 0.0392601 32 2557 23 6.64007e+06 464646 554710. 1919.41 1.00 0.10875 0.0960715 22834 132086 -1 2240 22 1758 2905 201607 43266 3.79083 3.79083 -138.426 -3.79083 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0254226 0.0225222 152 -1 124 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.22 vpr 65.35 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 34112 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66920 32 32 407 319 1 197 100 17 17 289 -1 unnamed_device 26.8 MiB 0.17 1037 18660 5257 10625 2778 65.4 MiB 0.15 0.00 4.17032 -143.358 -4.17032 4.17032 0.87 0.000584 0.000530802 0.0474559 0.0430854 32 2589 21 6.64007e+06 452088 554710. 1919.41 1.02 0.1183 0.104401 22834 132086 -1 2194 20 1794 3027 196961 43307 3.60543 3.60543 -140.13 -3.60543 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0256633 0.0227061 155 57 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.28 vpr 65.53 MiB 0.02 7372 -1 -1 1 0.03 -1 -1 33856 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67100 32 32 407 319 1 194 100 17 17 289 -1 unnamed_device 27.0 MiB 0.15 1085 15876 4268 10377 1231 65.5 MiB 0.14 0.00 4.15553 -144.194 -4.15553 4.15553 0.90 0.000579534 0.000521169 0.0412409 0.0374726 32 2670 22 6.64007e+06 452088 554710. 1919.41 1.05 0.115627 0.101985 22834 132086 -1 2302 21 1837 3000 195990 44276 3.51102 3.51102 -141.251 -3.51102 0 0 701300. 2426.64 0.31 0.08 0.13 -1 -1 0.31 0.0275759 0.0244311 153 62 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 6.38 vpr 65.60 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33996 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67172 32 32 399 315 1 196 102 17 17 289 -1 unnamed_device 27.0 MiB 0.13 963 9146 1745 6045 1356 65.6 MiB 0.07 0.00 4.17056 -135.219 -4.17056 4.17056 0.87 0.00054571 0.000495698 0.0241765 0.0220353 30 3028 24 6.64007e+06 477204 526063. 1820.29 3.33 0.181442 0.157477 22546 126617 -1 2028 23 1431 2380 136097 32965 3.75963 3.75963 -135.899 -3.75963 0 0 666494. 2306.21 0.27 0.07 0.12 -1 -1 0.27 0.0275022 0.0242488 149 62 60 30 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.99 vpr 65.02 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 33780 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 30 32 296 244 1 156 81 17 17 289 -1 unnamed_device 26.2 MiB 0.10 840 12856 4254 6466 2136 65.0 MiB 0.10 0.00 3.4921 -115.538 -3.4921 3.4921 0.88 0.000444699 0.000405098 0.0347867 0.0317704 32 2099 22 6.64007e+06 238602 554710. 1919.41 0.96 0.0916755 0.0808571 22834 132086 -1 1829 20 1172 1889 131683 29255 2.80657 2.80657 -112.754 -2.80657 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0196298 0.0173466 113 29 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.40 vpr 65.33 MiB 0.06 7304 -1 -1 1 0.03 -1 -1 34184 -1 -1 24 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66896 30 32 383 303 1 191 86 17 17 289 -1 unnamed_device 26.6 MiB 0.15 996 13127 3599 7422 2106 65.3 MiB 0.12 0.00 4.20393 -135.69 -4.20393 4.20393 0.87 0.000540379 0.000491749 0.0401961 0.0367194 26 2579 31 6.64007e+06 301392 477104. 1650.88 1.26 0.124948 0.110434 21682 110474 -1 2334 19 1796 2622 198891 44787 3.99103 3.99103 -143.687 -3.99103 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0237119 0.0210665 146 58 60 30 60 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 5.26 vpr 65.45 MiB 0.02 7488 -1 -1 1 0.04 -1 -1 34192 -1 -1 41 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67024 32 32 469 381 1 198 105 17 17 289 -1 unnamed_device 27.1 MiB 0.21 1061 10232 2187 7405 640 65.5 MiB 0.10 0.00 4.16036 -143.59 -4.16036 4.16036 0.89 0.000635947 0.00058228 0.0282669 0.0257607 26 3037 26 6.64007e+06 514878 477104. 1650.88 2.06 0.122884 0.108288 21682 110474 -1 2509 21 1963 3341 242639 52518 3.75743 3.75743 -148.153 -3.75743 0 0 585099. 2024.56 0.25 0.09 0.11 -1 -1 0.25 0.0277844 0.0245168 156 106 0 0 128 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.10 vpr 65.16 MiB 0.02 7232 -1 -1 1 0.03 -1 -1 33884 -1 -1 33 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66724 31 32 425 341 1 189 96 17 17 289 -1 unnamed_device 26.7 MiB 0.11 924 14769 3776 9247 1746 65.2 MiB 0.13 0.00 4.18868 -135.93 -4.18868 4.18868 0.87 0.00055959 0.000510051 0.0403857 0.0368034 32 2392 24 6.64007e+06 414414 554710. 1919.41 1.00 0.114163 0.100619 22834 132086 -1 2012 21 1598 2593 166572 39257 3.87983 3.87983 -137.068 -3.87983 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.02646 0.0233724 148 79 31 31 93 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.02 vpr 64.80 MiB 0.02 7540 -1 -1 1 0.03 -1 -1 33948 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66356 30 32 404 328 1 182 94 17 17 289 -1 unnamed_device 26.1 MiB 0.13 973 15004 4033 8498 2473 64.8 MiB 0.12 0.00 3.6693 -113.052 -3.6693 3.6693 0.88 0.000492497 0.00044621 0.0396718 0.0360316 32 2183 19 6.64007e+06 401856 554710. 1919.41 0.94 0.105235 0.0926208 22834 132086 -1 1932 19 1262 1989 126618 29154 2.95897 2.95897 -111.901 -2.95897 0 0 701300. 2426.64 0.30 0.06 0.12 -1 -1 0.30 0.0231638 0.0204952 138 83 26 26 90 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.30 vpr 65.08 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 34016 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 32 32 407 319 1 198 86 17 17 289 -1 unnamed_device 26.3 MiB 0.22 1125 9725 2385 6614 726 65.1 MiB 0.10 0.00 4.21673 -144.443 -4.21673 4.21673 0.89 0.000594988 0.000536235 0.0316425 0.0289025 30 2849 27 6.64007e+06 276276 526063. 1820.29 1.08 0.111725 0.0982844 22546 126617 -1 2461 21 1909 3327 189128 44079 3.51523 3.51523 -144.636 -3.51523 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.0270646 0.0240958 155 58 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.11 vpr 65.12 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33776 -1 -1 36 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 29 32 387 316 1 179 97 17 17 289 -1 unnamed_device 26.4 MiB 0.14 964 18079 5189 10710 2180 65.1 MiB 0.14 0.00 3.5353 -109.312 -3.5353 3.5353 0.88 0.000534475 0.00048853 0.0460543 0.0418217 32 2101 19 6.64007e+06 452088 554710. 1919.41 0.94 0.111805 0.0984043 22834 132086 -1 1883 20 1524 2476 156946 35882 2.77777 2.77777 -104.196 -2.77777 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0239965 0.0211665 136 81 26 26 85 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.97 vpr 64.45 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 33724 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66000 32 32 283 225 1 156 81 17 17 289 -1 unnamed_device 25.9 MiB 0.05 799 9356 2113 6168 1075 64.5 MiB 0.08 0.00 3.4921 -122.483 -3.4921 3.4921 0.91 0.000430454 0.000393863 0.0255165 0.0233207 32 1948 20 6.64007e+06 213486 554710. 1919.41 0.97 0.0810233 0.0714093 22834 132086 -1 1750 19 1232 1899 126310 28603 2.77657 2.77657 -118.657 -2.77657 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0193824 0.0172362 115 -1 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.49 vpr 65.29 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 34076 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66852 32 32 407 319 1 194 99 17 17 289 -1 unnamed_device 26.7 MiB 0.24 992 16743 5741 8435 2567 65.3 MiB 0.15 0.00 4.25856 -144.485 -4.25856 4.25856 0.89 0.000570884 0.000521004 0.0453272 0.0412824 28 2813 26 6.64007e+06 439530 500653. 1732.36 1.20 0.127569 0.112917 21970 115934 -1 2251 21 1739 2732 190047 43250 3.96783 3.96783 -151.999 -3.96783 0 0 612192. 2118.31 0.28 0.08 0.12 -1 -1 0.28 0.0275947 0.0244536 152 62 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.23 vpr 65.28 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 34036 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 32 32 407 319 1 201 87 17 17 289 -1 unnamed_device 26.4 MiB 0.15 1054 17367 5167 10302 1898 65.3 MiB 0.16 0.00 4.21976 -145.962 -4.21976 4.21976 0.90 0.000571336 0.000519737 0.0542501 0.0494752 32 2466 19 6.64007e+06 288834 554710. 1919.41 0.98 0.123573 0.10955 22834 132086 -1 2099 24 1954 3202 220211 52156 3.73283 3.73283 -145.571 -3.73283 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0292675 0.0258417 158 62 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.56 vpr 64.99 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 34004 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 26.2 MiB 0.14 691 7975 1531 6145 299 65.0 MiB 0.07 0.00 3.6913 -111.241 -3.6913 3.6913 0.91 0.000462129 0.000410122 0.0189504 0.0172526 26 2376 30 6.64007e+06 376740 477104. 1650.88 1.47 0.0885979 0.077352 21682 110474 -1 1799 21 931 1589 135156 31641 3.04137 3.04137 -113.414 -3.04137 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.021078 0.0185299 112 47 32 32 54 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.02 vpr 64.59 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 33784 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66136 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 26.1 MiB 0.07 653 13381 4684 6039 2658 64.6 MiB 0.10 0.00 3.5533 -116.629 -3.5533 3.5533 0.90 0.00044819 0.000409615 0.0354603 0.0324465 32 1990 24 6.64007e+06 226044 554710. 1919.41 0.97 0.092769 0.0820055 22834 132086 -1 1552 22 1482 2306 159992 38871 3.12257 3.12257 -114.217 -3.12257 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0210217 0.0186232 118 -1 93 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.11 vpr 65.20 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 33916 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66768 32 32 381 303 1 188 97 17 17 289 -1 unnamed_device 26.4 MiB 0.14 927 16303 4785 8793 2725 65.2 MiB 0.13 0.00 4.16476 -135.871 -4.16476 4.16476 0.88 0.000528767 0.000481679 0.0410813 0.0374541 32 2289 21 6.64007e+06 414414 554710. 1919.41 0.96 0.107814 0.0951128 22834 132086 -1 1962 21 1526 2229 163809 36851 3.63083 3.63083 -130.968 -3.63083 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0245747 0.0217206 139 56 60 32 58 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 7.19 vpr 65.63 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 34044 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67208 32 32 406 330 1 190 96 17 17 289 -1 unnamed_device 26.8 MiB 0.10 1051 17397 5163 9750 2484 65.6 MiB 0.15 0.00 4.41596 -136.112 -4.41596 4.41596 0.90 0.000558224 0.000508857 0.0467016 0.0425404 26 2942 23 6.64007e+06 401856 477104. 1650.88 4.07 0.211338 0.185699 21682 110474 -1 2421 24 1751 2823 219825 47629 4.07122 4.07122 -137.457 -4.07122 0 0 585099. 2024.56 0.26 0.08 0.10 -1 -1 0.26 0.0286794 0.0252679 136 81 28 28 88 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.35 vpr 65.01 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 34020 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66568 32 32 399 285 1 228 101 17 17 289 -1 unnamed_device 26.7 MiB 0.09 1159 10441 2545 7247 649 65.0 MiB 0.11 0.00 4.95022 -163.094 -4.95022 4.95022 0.89 0.000550141 0.0005046 0.0282881 0.0257966 32 3157 23 6.64007e+06 464646 554710. 1919.41 1.18 0.110855 0.0978986 22834 132086 -1 2694 22 2236 3465 258000 58733 4.57049 4.57049 -165.739 -4.57049 0 0 701300. 2426.64 0.31 0.09 0.13 -1 -1 0.31 0.0293436 0.0261156 179 -1 156 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.68 vpr 64.96 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 33728 -1 -1 34 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66524 30 32 371 295 1 184 96 17 17 289 -1 unnamed_device 26.3 MiB 0.14 813 9732 2096 6039 1597 65.0 MiB 0.07 0.00 3.7815 -111.41 -3.7815 3.7815 0.91 0.000524462 0.000474516 0.0243243 0.0220964 28 2429 27 6.64007e+06 426972 500653. 1732.36 1.64 0.104296 0.0917846 21970 115934 -1 1829 16 1219 1940 129190 32839 3.22357 3.22357 -115.42 -3.22357 0 0 612192. 2118.31 0.27 0.05 0.11 -1 -1 0.27 0.0196069 0.0173822 138 47 60 30 56 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.04 vpr 64.39 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 34244 -1 -1 21 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65936 27 32 269 226 1 143 80 17 17 289 -1 unnamed_device 25.9 MiB 0.09 529 12292 5081 5761 1450 64.4 MiB 0.08 0.00 3.54427 -98.353 -3.54427 3.54427 0.90 0.000402346 0.000366177 0.0310103 0.028328 32 1668 31 6.64007e+06 263718 554710. 1919.41 1.02 0.0904818 0.0796379 22834 132086 -1 1283 22 1233 1718 140097 33637 3.01217 3.01217 -100.001 -3.01217 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0203997 0.0180361 107 26 54 27 27 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.48 vpr 65.55 MiB 0.02 7372 -1 -1 1 0.04 -1 -1 34168 -1 -1 42 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67124 32 32 493 378 1 232 106 17 17 289 -1 unnamed_device 27.3 MiB 0.15 1462 20856 5895 12562 2399 65.6 MiB 0.21 0.00 4.52196 -148.077 -4.52196 4.52196 0.88 0.000652021 0.000591761 0.058713 0.0534184 30 3394 22 6.64007e+06 527436 526063. 1820.29 1.20 0.156632 0.139633 22546 126617 -1 2822 21 1887 3481 215119 46093 3.75843 3.75843 -145.571 -3.75843 0 0 666494. 2306.21 0.28 0.09 0.12 -1 -1 0.28 0.0321517 0.0285913 186 85 62 31 95 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.31 vpr 65.50 MiB 0.02 7320 -1 -1 1 0.03 -1 -1 33888 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67068 31 32 455 371 1 188 85 17 17 289 -1 unnamed_device 27.0 MiB 0.23 998 12919 3192 8538 1189 65.5 MiB 0.12 0.00 4.42996 -140.975 -4.42996 4.42996 0.87 0.000598375 0.000546159 0.0445533 0.0406602 32 2535 22 6.64007e+06 276276 554710. 1919.41 1.04 0.123091 0.108703 22834 132086 -1 2164 23 1704 2834 207148 46985 3.90803 3.90803 -142.039 -3.90803 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0296022 0.0261261 145 105 0 0 124 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.13 vpr 65.04 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 33740 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66600 32 32 355 304 1 150 80 17 17 289 -1 unnamed_device 26.3 MiB 0.20 894 11948 3681 7128 1139 65.0 MiB 0.10 0.00 3.6755 -115.703 -3.6755 3.6755 0.90 0.000489597 0.00044722 0.0362998 0.0330798 32 1930 19 6.64007e+06 200928 554710. 1919.41 0.95 0.0967275 0.0852425 22834 132086 -1 1766 17 866 1435 105106 23689 2.68397 2.68397 -111.92 -2.68397 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0202971 0.018025 108 86 0 0 89 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.69 vpr 65.37 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 33836 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66940 32 32 364 282 1 196 97 17 17 289 -1 unnamed_device 26.7 MiB 0.07 1023 18745 6322 9498 2925 65.4 MiB 0.15 0.00 4.46396 -140.121 -4.46396 4.46396 0.88 0.000486788 0.000433857 0.0455945 0.0414346 28 3262 26 6.64007e+06 414414 500653. 1732.36 1.66 0.12315 0.109077 21970 115934 -1 2289 22 1533 2367 185651 40701 3.82863 3.82863 -139.017 -3.82863 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0243381 0.021488 147 31 90 30 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.27 vpr 65.49 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 34056 -1 -1 38 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67060 31 32 443 336 1 220 101 17 17 289 -1 unnamed_device 27.0 MiB 0.13 1135 20076 5790 11566 2720 65.5 MiB 0.18 0.00 4.51716 -144.659 -4.51716 4.51716 0.90 0.000582868 0.000528935 0.0547065 0.0496929 32 2682 21 6.64007e+06 477204 554710. 1919.41 1.01 0.131666 0.116393 22834 132086 -1 2345 21 1959 3025 199966 45675 3.76363 3.76363 -141.716 -3.76363 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0286759 0.0254005 173 50 87 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.99 vpr 65.44 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33768 -1 -1 34 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67012 30 32 373 297 1 186 96 17 17 289 -1 unnamed_device 26.7 MiB 0.10 923 11484 2608 8162 714 65.4 MiB 0.11 0.00 3.73061 -110.59 -3.73061 3.73061 0.89 0.000521122 0.000474775 0.0303039 0.0276052 26 3004 29 6.64007e+06 426972 477104. 1650.88 1.92 0.110017 0.096642 21682 110474 -1 2178 23 1626 2810 207598 58583 3.20956 3.20956 -113.499 -3.20956 0 0 585099. 2024.56 0.24 0.09 0.11 -1 -1 0.24 0.026596 0.0234729 135 50 58 30 58 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 6.28 vpr 65.03 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 33916 -1 -1 43 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 32 32 407 319 1 201 107 17 17 289 -1 unnamed_device 26.8 MiB 0.12 1008 13516 3637 9135 744 65.0 MiB 0.13 0.00 4.19956 -142.899 -4.19956 4.19956 0.89 0.000616751 0.000562653 0.0335212 0.0305117 28 2725 41 6.64007e+06 539994 500653. 1732.36 3.16 0.215274 0.187071 21970 115934 -1 2180 23 1991 3355 215719 50623 4.06023 4.06023 -151.409 -4.06023 0 0 612192. 2118.31 0.25 0.08 0.12 -1 -1 0.25 0.0275464 0.024334 158 61 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.65 vpr 65.45 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33784 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67016 32 32 405 318 1 200 104 17 17 289 -1 unnamed_device 26.9 MiB 0.13 988 17184 5218 8807 3159 65.4 MiB 0.14 0.00 3.62559 -123.648 -3.62559 3.62559 0.88 0.000545894 0.000491624 0.041901 0.0382067 28 2973 24 6.64007e+06 502320 500653. 1732.36 1.50 0.12784 0.113543 21970 115934 -1 2384 28 1835 3069 283651 69499 2.85477 2.85477 -118.877 -2.85477 0 0 612192. 2118.31 0.26 0.11 0.11 -1 -1 0.26 0.0329623 0.029018 157 61 63 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 5.46 vpr 64.62 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 33852 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66176 29 32 287 238 1 134 79 17 17 289 -1 unnamed_device 26.0 MiB 0.07 573 13430 5649 6739 1042 64.6 MiB 0.09 0.00 3.6785 -105.931 -3.6785 3.6785 0.90 0.00038616 0.000353888 0.0360807 0.0329285 28 1653 18 6.64007e+06 226044 500653. 1732.36 2.57 0.145269 0.126861 21970 115934 -1 1340 20 951 1382 103480 24834 2.76877 2.76877 -101.536 -2.76877 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0190229 0.0168622 95 28 58 29 29 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.01 vpr 65.11 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 34164 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66668 32 32 334 290 1 156 83 17 17 289 -1 unnamed_device 26.3 MiB 0.16 857 11783 4174 5528 2081 65.1 MiB 0.09 0.00 4.00656 -110.848 -4.00656 4.00656 0.90 0.000475582 0.000431931 0.0330427 0.0300674 30 1873 19 6.64007e+06 238602 526063. 1820.29 0.93 0.0902261 0.0794151 22546 126617 -1 1596 15 647 938 63203 14367 2.75003 2.75003 -104.258 -2.75003 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0172914 0.0154061 112 79 0 0 82 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 6.14 vpr 65.14 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 34004 -1 -1 38 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 31 32 365 281 1 196 101 17 17 289 -1 unnamed_device 26.4 MiB 0.10 1100 13261 3564 8068 1629 65.1 MiB 0.11 0.00 4.80256 -145.153 -4.80256 4.80256 0.90 0.000541649 0.000494087 0.0327532 0.029909 28 2902 24 6.64007e+06 477204 500653. 1732.36 3.05 0.179722 0.15655 21970 115934 -1 2347 21 1741 2957 217722 47682 4.15823 4.15823 -146.533 -4.15823 0 0 612192. 2118.31 0.25 0.08 0.12 -1 -1 0.25 0.0251462 0.0222694 151 29 93 31 31 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.39 vpr 64.41 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 33656 -1 -1 31 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65960 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 25.9 MiB 0.18 620 10442 2502 7352 588 64.4 MiB 0.08 0.00 3.6803 -100.526 -3.6803 3.6803 0.91 0.000440344 0.000401291 0.0240636 0.0218705 26 1894 33 6.64007e+06 389298 477104. 1650.88 1.31 0.096879 0.0844246 21682 110474 -1 1565 19 1094 1826 124281 30136 3.00217 3.00217 -104.425 -3.00217 0 0 585099. 2024.56 0.26 0.05 0.11 -1 -1 0.26 0.018849 0.0166465 108 48 29 29 52 26 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.09 vpr 64.84 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 33884 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66396 32 32 314 256 1 160 81 17 17 289 -1 unnamed_device 26.3 MiB 0.12 691 13906 4599 7385 1922 64.8 MiB 0.11 0.00 3.53127 -120.288 -3.53127 3.53127 0.89 0.000463381 0.000423182 0.0381744 0.0348242 32 2039 20 6.64007e+06 213486 554710. 1919.41 0.97 0.0960039 0.0848139 22834 132086 -1 1713 21 1506 2361 165680 38086 2.94997 2.94997 -120.716 -2.94997 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0219248 0.019418 118 31 64 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 3.96 vpr 65.27 MiB 0.02 7268 -1 -1 1 0.03 -1 -1 34020 -1 -1 38 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66840 31 32 387 307 1 189 101 17 17 289 -1 unnamed_device 26.6 MiB 0.12 999 13261 3446 8635 1180 65.3 MiB 0.11 0.00 3.5665 -119.865 -3.5665 3.5665 0.88 0.000503116 0.000454755 0.0317038 0.0286665 30 2030 20 6.64007e+06 477204 526063. 1820.29 0.93 0.0966433 0.0847213 22546 126617 -1 1835 19 1382 2076 110808 25593 2.92417 2.92417 -114.742 -2.92417 0 0 666494. 2306.21 0.28 0.05 0.11 -1 -1 0.28 0.0227973 0.0201465 144 60 58 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.02 vpr 65.00 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 33864 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66556 31 32 308 262 1 147 80 17 17 289 -1 unnamed_device 26.2 MiB 0.13 869 9368 2508 6076 784 65.0 MiB 0.08 0.00 3.34153 -105.882 -3.34153 3.34153 0.91 0.000458841 0.00041282 0.0267893 0.0244939 32 1935 19 6.64007e+06 213486 554710. 1919.41 0.93 0.0818362 0.0720517 22834 132086 -1 1719 17 952 1622 113176 24724 2.74877 2.74877 -108.146 -2.74877 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0180452 0.0160616 106 49 31 31 53 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 7.49 vpr 65.14 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 33768 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66700 32 32 383 307 1 184 97 17 17 289 -1 unnamed_device 26.4 MiB 0.12 879 9865 2512 6573 780 65.1 MiB 0.09 0.00 3.57229 -117.612 -3.57229 3.57229 0.88 0.000531054 0.000484354 0.0265293 0.0241744 28 2622 27 6.64007e+06 414414 500653. 1732.36 4.47 0.171712 0.149034 21970 115934 -1 2063 19 1195 1930 145176 33616 2.81577 2.81577 -115.32 -2.81577 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.022801 0.0201753 137 56 52 26 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.23 vpr 65.31 MiB 0.02 7428 -1 -1 1 0.03 -1 -1 34176 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66880 31 32 422 339 1 195 100 17 17 289 -1 unnamed_device 26.7 MiB 0.23 875 10540 2287 7686 567 65.3 MiB 0.10 0.00 3.79366 -119.555 -3.79366 3.79366 0.90 0.000566932 0.000517249 0.0290683 0.0264903 30 2033 25 6.64007e+06 464646 526063. 1820.29 0.99 0.105991 0.0930587 22546 126617 -1 1725 19 1462 2161 120605 28594 2.98817 2.98817 -114.832 -2.98817 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0247866 0.0219427 149 88 31 31 92 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.00 vpr 65.14 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 33796 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66700 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 26.3 MiB 0.12 816 8626 2345 5890 391 65.1 MiB 0.08 0.00 3.06096 -106.925 -3.06096 3.06096 0.91 0.000512378 0.000459621 0.0261564 0.0239296 32 2043 18 6.64007e+06 226044 554710. 1919.41 0.95 0.0842834 0.0742087 22834 132086 -1 1845 21 1249 2000 141324 31653 2.66557 2.66557 -108.527 -2.66557 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.022864 0.0202634 115 54 32 32 60 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.04 vpr 65.05 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 33544 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66612 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 26.2 MiB 0.16 920 11296 3024 7326 946 65.1 MiB 0.10 0.00 3.5031 -121.121 -3.5031 3.5031 0.88 0.000494344 0.000450194 0.0333693 0.0304181 30 2197 20 6.64007e+06 226044 526063. 1820.29 0.95 0.0955467 0.0843265 22546 126617 -1 1909 21 1232 2089 133938 29942 2.96097 2.96097 -117.747 -2.96097 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0232635 0.0206369 121 60 32 32 62 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.23 vpr 65.54 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 34504 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67116 32 32 407 319 1 198 102 17 17 289 -1 unnamed_device 26.9 MiB 0.12 1027 12240 2965 8371 904 65.5 MiB 0.11 0.00 4.25676 -144.495 -4.25676 4.25676 0.89 0.000569611 0.000518154 0.0315932 0.028726 32 2501 30 6.64007e+06 477204 554710. 1919.41 1.08 0.11346 0.0997764 22834 132086 -1 2171 23 1912 2837 202861 47065 3.85083 3.85083 -143.515 -3.85083 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0286653 0.025383 156 49 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.12 vpr 65.14 MiB 0.02 7400 -1 -1 1 0.03 -1 -1 33988 -1 -1 34 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66708 29 32 367 293 1 183 95 17 17 289 -1 unnamed_device 26.4 MiB 0.12 1021 16079 4076 10280 1723 65.1 MiB 0.14 0.00 3.7925 -111.563 -3.7925 3.7925 0.91 0.00052642 0.000477412 0.0410489 0.0373052 32 2199 23 6.64007e+06 426972 554710. 1919.41 0.96 0.109052 0.096187 22834 132086 -1 1981 19 1093 1758 104957 25144 2.95816 2.95816 -108.852 -2.95816 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0229369 0.0204018 135 54 56 29 58 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.31 vpr 65.57 MiB 0.02 7312 -1 -1 1 0.04 -1 -1 34336 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67148 32 32 469 381 1 200 103 17 17 289 -1 unnamed_device 26.9 MiB 0.23 937 9020 1835 6701 484 65.6 MiB 0.09 0.00 4.29776 -145.038 -4.29776 4.29776 0.89 0.000613521 0.000556528 0.0256169 0.0233082 32 2670 31 6.64007e+06 489762 554710. 1919.41 1.05 0.11206 0.0981381 22834 132086 -1 2193 22 1887 2961 206683 48439 3.78263 3.78263 -144.873 -3.78263 0 0 701300. 2426.64 0.29 0.08 0.12 -1 -1 0.29 0.0285913 0.0250583 158 117 0 0 128 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.83 vpr 64.73 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 33888 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66288 31 32 259 212 1 146 80 17 17 289 -1 unnamed_device 26.3 MiB 0.07 804 11948 3966 6404 1578 64.7 MiB 0.08 0.00 3.08296 -103.61 -3.08296 3.08296 0.89 0.000378698 0.000344213 0.0285467 0.0259824 32 1812 20 6.64007e+06 213486 554710. 1919.41 0.89 0.0773359 0.0680621 22834 132086 -1 1658 21 936 1522 120337 26812 2.64977 2.64977 -103.007 -2.64977 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.018224 0.0160447 106 -1 85 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.51 vpr 65.60 MiB 0.02 7404 -1 -1 1 0.03 -1 -1 34132 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67172 32 32 418 338 1 190 99 17 17 289 -1 unnamed_device 27.1 MiB 0.12 998 18111 4956 10747 2408 65.6 MiB 0.14 0.00 4.26296 -139.632 -4.26296 4.26296 0.89 0.000589437 0.000537514 0.0458292 0.0417131 26 2698 30 6.64007e+06 439530 477104. 1650.88 1.43 0.134229 0.118655 21682 110474 -1 2193 22 1711 2442 188382 41624 3.86503 3.86503 -141.25 -3.86503 0 0 585099. 2024.56 0.24 0.07 0.11 -1 -1 0.24 0.026159 0.0230138 144 89 28 28 92 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.06 vpr 65.18 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 34048 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 26.3 MiB 0.24 734 13381 4309 7077 1995 65.2 MiB 0.11 0.00 3.54047 -121.881 -3.54047 3.54047 0.88 0.000510854 0.000465344 0.0411536 0.0376014 28 2004 19 6.64007e+06 213486 500653. 1732.36 0.92 0.103956 0.0917759 21970 115934 -1 1702 21 1319 1931 136314 31674 2.93317 2.93317 -118.594 -2.93317 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.023855 0.0210405 114 93 0 0 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.11 vpr 65.22 MiB 0.02 7360 -1 -1 1 0.03 -1 -1 33720 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66784 32 32 401 316 1 196 101 17 17 289 -1 unnamed_device 26.7 MiB 0.14 1102 9501 2041 6911 549 65.2 MiB 0.10 0.00 3.5841 -124.322 -3.5841 3.5841 0.89 0.000556943 0.000508522 0.0249619 0.0228196 30 2381 21 6.64007e+06 464646 526063. 1820.29 0.97 0.0973861 0.0852215 22546 126617 -1 2111 18 1317 1899 118195 27484 2.83157 2.83157 -119.372 -2.83157 0 0 666494. 2306.21 0.28 0.06 0.13 -1 -1 0.28 0.0228909 0.0203709 151 59 61 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.49 vpr 65.44 MiB 0.02 7344 -1 -1 1 0.03 -1 -1 34260 -1 -1 45 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67008 32 32 500 382 1 232 109 17 17 289 -1 unnamed_device 27.2 MiB 0.19 1244 16489 4012 10933 1544 65.4 MiB 0.15 0.00 4.96651 -168.366 -4.96651 4.96651 0.85 0.000686452 0.000623403 0.0455356 0.0413196 26 3486 28 6.64007e+06 565110 477104. 1650.88 2.39 0.143359 0.126422 21682 110474 -1 2801 20 2309 3669 268544 57523 4.93289 4.93289 -177.122 -4.93289 0 0 585099. 2024.56 0.24 0.09 0.10 -1 -1 0.24 0.0280175 0.0248633 188 81 64 32 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.80 vpr 64.07 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 33724 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65608 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 25.6 MiB 0.07 483 10509 2545 7262 702 64.1 MiB 0.06 0.00 2.73878 -81.5531 -2.73878 2.73878 0.90 0.00036793 0.000334354 0.0258373 0.0235506 28 1397 23 6.64007e+06 188370 500653. 1732.36 0.91 0.0747294 0.0655801 21970 115934 -1 1101 21 700 949 70065 18239 2.15451 2.15451 -81.4168 -2.15451 0 0 612192. 2118.31 0.26 0.04 0.12 -1 -1 0.26 0.0171108 0.0149856 83 51 0 0 53 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.93 vpr 64.52 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 34036 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66072 30 32 296 244 1 137 79 17 17 289 -1 unnamed_device 26.1 MiB 0.07 793 10388 3558 5136 1694 64.5 MiB 0.08 0.00 3.6815 -114.291 -3.6815 3.6815 0.90 0.000418729 0.000380795 0.0286901 0.026181 32 1615 19 6.64007e+06 213486 554710. 1919.41 0.92 0.083285 0.0733605 22834 132086 -1 1552 20 976 1458 122741 26899 2.79377 2.79377 -111.518 -2.79377 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0202883 0.0180295 97 29 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.14 vpr 65.18 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 33784 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66740 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 26.4 MiB 0.09 798 13966 5020 6560 2386 65.2 MiB 0.11 0.00 3.4859 -119.604 -3.4859 3.4859 0.90 0.000421282 0.000380507 0.0369995 0.0336252 32 2382 23 6.64007e+06 226044 554710. 1919.41 1.04 0.0972486 0.0855287 22834 132086 -1 2012 22 1558 2776 205096 46469 3.13717 3.13717 -121.476 -3.13717 0 0 701300. 2426.64 0.30 0.08 0.12 -1 -1 0.30 0.0231028 0.02038 126 31 64 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.78 vpr 64.20 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 33988 -1 -1 34 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65740 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 25.8 MiB 0.05 678 12127 3168 7672 1287 64.2 MiB 0.08 0.00 3.4089 -91.215 -3.4089 3.4089 0.84 0.000464947 0.00042574 0.0248384 0.0226287 26 1687 20 6.64007e+06 426972 477104. 1650.88 1.01 0.0756214 0.0663822 21682 110474 -1 1503 22 1109 1705 121476 27048 2.84297 2.84297 -92.6359 -2.84297 0 0 585099. 2024.56 0.26 0.05 0.11 -1 -1 0.26 0.0182181 0.0159932 103 19 50 25 25 25 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.16 vpr 65.36 MiB 0.02 7428 -1 -1 1 0.03 -1 -1 33948 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66928 32 32 432 346 1 193 86 17 17 289 -1 unnamed_device 26.9 MiB 0.14 1064 14828 5337 7470 2021 65.4 MiB 0.14 0.00 4.34676 -140.278 -4.34676 4.34676 0.88 0.000569001 0.000518435 0.0471169 0.0429578 32 2475 24 6.64007e+06 276276 554710. 1919.41 1.01 0.122964 0.10863 22834 132086 -1 2138 21 1584 2860 180041 40448 3.64943 3.64943 -135.607 -3.64943 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0266653 0.0235745 149 84 32 32 94 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.01 vpr 65.16 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 33740 -1 -1 39 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 31 32 421 339 1 193 102 17 17 289 -1 unnamed_device 26.7 MiB 0.15 786 10336 2273 7345 718 65.2 MiB 0.10 0.00 3.53327 -114.261 -3.53327 3.53327 0.92 0.000531642 0.000468502 0.0282771 0.0256653 28 2510 49 6.64007e+06 489762 500653. 1732.36 1.87 0.134502 0.117902 21970 115934 -1 2001 20 1659 2542 175227 43871 3.38857 3.38857 -131.818 -3.38857 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0256532 0.0226847 148 88 29 29 93 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.49 vpr 65.12 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 34000 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 32 32 438 350 1 194 98 17 17 289 -1 unnamed_device 26.8 MiB 0.22 984 7523 1506 5708 309 65.1 MiB 0.08 0.00 3.92206 -133.487 -3.92206 3.92206 0.92 0.00059707 0.000543341 0.0231825 0.0211393 32 3159 26 6.65987e+06 431052 554710. 1919.41 1.21 0.106144 0.0934166 22834 132086 -1 2393 24 2181 3497 314439 71144 3.62831 3.62831 -137.513 -3.62831 0 0 701300. 2426.64 0.29 0.10 0.13 -1 -1 0.29 0.0300268 0.026559 151 80 32 32 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.44 vpr 65.04 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34076 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66600 30 32 409 330 1 186 83 17 17 289 -1 unnamed_device 26.6 MiB 0.39 986 12323 4513 6271 1539 65.0 MiB 0.11 0.00 4.33507 -129.747 -4.33507 4.33507 0.91 0.000562673 0.000511086 0.0398828 0.0363219 32 2540 23 6.65987e+06 266238 554710. 1919.41 1.03 0.114731 0.101208 22834 132086 -1 2229 21 1810 2983 230738 52421 3.74791 3.74791 -132.865 -3.74791 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0263366 0.0232014 140 78 30 30 89 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 6.71 vpr 64.79 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 33956 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 32 32 387 309 1 186 98 17 17 289 -1 unnamed_device 26.1 MiB 0.13 1040 16523 4439 10256 1828 64.8 MiB 0.14 0.00 3.41879 -119.689 -3.41879 3.41879 0.89 0.00054962 0.000499037 0.0423327 0.038579 28 2534 22 6.65987e+06 431052 500653. 1732.36 3.58 0.213223 0.187099 21970 115934 -1 2229 23 1555 2594 226838 48017 3.07945 3.07945 -122.96 -3.07945 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0278727 0.0246375 141 50 54 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.60 vpr 64.99 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 34064 -1 -1 22 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 29 32 343 267 1 184 83 17 17 289 -1 unnamed_device 26.3 MiB 0.09 793 11603 2857 6819 1927 65.0 MiB 0.09 0.00 4.2977 -123.649 -4.2977 4.2977 0.85 0.000496312 0.000453433 0.0335097 0.0307247 34 2278 23 6.65987e+06 278916 585099. 2024.56 1.66 0.124507 0.110101 23122 138558 -1 1874 23 1766 3075 212229 53283 3.76071 3.76071 -127.817 -3.76071 0 0 742403. 2568.87 0.30 0.08 0.13 -1 -1 0.30 0.0250724 0.0222405 138 25 87 29 29 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.25 vpr 65.08 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 33880 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 32 32 376 288 1 195 84 17 17 289 -1 unnamed_device 26.6 MiB 0.20 1026 15456 4961 8586 1909 65.1 MiB 0.14 0.00 4.14936 -143.085 -4.14936 4.14936 0.88 0.000475764 0.000431987 0.0466299 0.0422923 32 2926 21 6.65987e+06 253560 554710. 1919.41 1.03 0.114669 0.101054 22834 132086 -1 2415 23 2233 4058 303013 70469 3.94283 3.94283 -149.271 -3.94283 0 0 701300. 2426.64 0.30 0.09 0.12 -1 -1 0.30 0.02726 0.0241385 151 31 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.24 vpr 65.10 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 34124 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 32 32 402 316 1 199 101 17 17 289 -1 unnamed_device 26.8 MiB 0.22 1029 9501 1978 7135 388 65.1 MiB 0.09 0.00 3.43623 -117.882 -3.43623 3.43623 0.89 0.000567005 0.000514363 0.0251511 0.0228649 32 2567 26 6.65987e+06 469086 554710. 1919.41 1.01 0.101331 0.0885654 22834 132086 -1 2120 21 1394 2236 167076 38664 2.81951 2.81951 -117.088 -2.81951 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0268103 0.0238014 154 61 63 32 63 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.98 vpr 64.29 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 34092 -1 -1 19 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65836 27 32 269 226 1 135 78 17 17 289 -1 unnamed_device 25.8 MiB 0.19 580 13026 4344 6329 2353 64.3 MiB 0.10 0.00 3.7565 -98.351 -3.7565 3.7565 0.87 0.000412847 0.000374814 0.0335601 0.0306785 30 1363 17 6.65987e+06 240882 526063. 1820.29 0.91 0.083653 0.0738858 22546 126617 -1 1141 17 746 1262 72003 17310 2.66236 2.66236 -90.1914 -2.66236 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0175806 0.0156375 96 26 54 27 27 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.06 vpr 65.09 MiB 0.02 7360 -1 -1 1 0.03 -1 -1 34172 -1 -1 33 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66656 31 32 317 242 1 185 96 17 17 289 -1 unnamed_device 26.5 MiB 0.15 1006 10170 2426 6636 1108 65.1 MiB 0.09 0.00 3.27903 -106.33 -3.27903 3.27903 0.88 0.000481948 0.000438164 0.0247464 0.0225245 28 2449 18 6.65987e+06 418374 500653. 1732.36 1.03 0.0851914 0.074947 21970 115934 -1 2162 20 1186 2060 136992 31700 2.86711 2.86711 -105.656 -2.86711 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0216287 0.0191868 139 -1 115 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.14 vpr 64.79 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33760 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 31 32 338 292 1 148 79 17 17 289 -1 unnamed_device 26.0 MiB 0.29 870 11571 3268 6617 1686 64.8 MiB 0.09 0.00 3.07084 -101.313 -3.07084 3.07084 0.88 0.000469274 0.000426976 0.0346568 0.0316543 32 1812 21 6.65987e+06 202848 554710. 1919.41 0.92 0.094471 0.0831992 22834 132086 -1 1693 20 859 1399 94469 22459 2.57725 2.57725 -100.922 -2.57725 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0217864 0.0193194 105 81 0 0 84 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 5.58 vpr 64.79 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 33896 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 32 32 314 256 1 162 80 17 17 289 -1 unnamed_device 26.0 MiB 0.25 642 11432 4032 4649 2751 64.8 MiB 0.08 0.00 3.56921 -118.924 -3.56921 3.56921 0.85 0.000464027 0.000421502 0.0329589 0.0300073 36 2032 39 6.65987e+06 202848 612192. 2118.31 2.47 0.152512 0.133216 23410 145293 -1 1496 21 1311 2124 144443 38300 2.94877 2.94877 -111.707 -2.94877 0 0 782063. 2706.10 0.30 0.06 0.14 -1 -1 0.30 0.0198307 0.0175245 121 31 64 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.14 vpr 64.76 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 33824 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66316 30 32 325 273 1 151 79 17 17 289 -1 unnamed_device 26.0 MiB 0.25 784 11571 3060 7609 902 64.8 MiB 0.10 0.00 3.4841 -113.76 -3.4841 3.4841 0.89 0.000470619 0.000428305 0.0346616 0.0315911 32 1689 20 6.65987e+06 215526 554710. 1919.41 0.95 0.0933303 0.0823778 22834 132086 -1 1543 23 1224 1807 117625 27755 2.81677 2.81677 -109.376 -2.81677 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0241364 0.0213694 110 58 30 30 60 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.15 vpr 64.80 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 33864 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66360 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 26.2 MiB 0.25 841 11223 2602 8034 587 64.8 MiB 0.09 0.00 3.27957 -108.894 -3.27957 3.27957 0.88 0.000460852 0.000417764 0.0280872 0.0255918 30 1969 21 6.65987e+06 367662 526063. 1820.29 0.97 0.0890713 0.0781182 22546 126617 -1 1680 19 1010 1712 102223 24005 2.40285 2.40285 -103.451 -2.40285 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0196384 0.0174056 114 57 25 25 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.24 vpr 65.20 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 33864 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 32 32 386 305 1 188 96 17 17 289 -1 unnamed_device 26.8 MiB 0.38 1002 18711 5900 10256 2555 65.2 MiB 0.15 0.00 3.50686 -122.446 -3.50686 3.50686 0.84 0.000543729 0.000485713 0.0477187 0.0433571 32 2409 24 6.65987e+06 405696 554710. 1919.41 0.96 0.118173 0.104654 22834 132086 -1 2111 23 1820 3075 229039 52037 2.99617 2.99617 -117.527 -2.99617 0 0 701300. 2426.64 0.28 0.08 0.12 -1 -1 0.28 0.0274547 0.0243999 143 55 64 32 57 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.28 vpr 64.72 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 33864 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 32 32 407 319 1 200 98 17 17 289 -1 unnamed_device 26.5 MiB 0.25 942 7973 1567 6126 280 64.7 MiB 0.08 0.00 4.02327 -135.611 -4.02327 4.02327 0.88 0.000571111 0.000516715 0.021992 0.0200207 32 2790 25 6.65987e+06 431052 554710. 1919.41 1.05 0.0978745 0.0856866 22834 132086 -1 2276 23 2165 3419 261059 61100 3.55651 3.55651 -137.405 -3.55651 0 0 701300. 2426.64 0.30 0.09 0.12 -1 -1 0.30 0.0279106 0.02466 156 60 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.93 vpr 64.52 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34064 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66072 29 32 272 228 1 145 79 17 17 289 -1 unnamed_device 26.0 MiB 0.16 686 7177 1709 4538 930 64.5 MiB 0.06 0.00 3.15358 -93.6229 -3.15358 3.15358 0.87 0.000418163 0.000380275 0.0198469 0.0181683 28 1802 20 6.65987e+06 228204 500653. 1732.36 0.92 0.0715002 0.062852 21970 115934 -1 1532 22 1092 1831 123922 29554 2.64859 2.64859 -92.89 -2.64859 0 0 612192. 2118.31 0.27 0.06 0.12 -1 -1 0.27 0.0205766 0.0181517 107 21 58 29 24 24 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.31 vpr 65.40 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 34000 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66972 32 32 401 315 1 192 84 17 17 289 -1 unnamed_device 26.8 MiB 0.25 1074 13992 4161 7846 1985 65.4 MiB 0.13 0.00 3.5141 -125.301 -3.5141 3.5141 0.88 0.000517492 0.000469245 0.0457378 0.0415449 32 2631 22 6.65987e+06 253560 554710. 1919.41 1.02 0.118918 0.105005 22834 132086 -1 2365 20 1746 3076 245530 55788 3.19431 3.19431 -129.28 -3.19431 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0274903 0.0244864 146 60 64 32 62 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 7.90 vpr 65.20 MiB 0.02 7376 -1 -1 1 0.03 -1 -1 33840 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66768 32 32 383 303 1 185 98 17 17 289 -1 unnamed_device 26.7 MiB 0.37 934 18323 6450 8556 3317 65.2 MiB 0.13 0.00 3.6343 -123.732 -3.6343 3.6343 0.89 0.00054325 0.000495451 0.0466538 0.042526 30 2475 27 6.65987e+06 431052 526063. 1820.29 4.53 0.201831 0.176746 22546 126617 -1 1892 18 1292 1951 127583 30325 2.86377 2.86377 -118.76 -2.86377 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0225048 0.0200104 142 54 64 32 56 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.05 vpr 64.97 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 33696 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66528 32 32 339 284 1 162 94 17 17 289 -1 unnamed_device 26.3 MiB 0.21 832 15430 4777 8349 2304 65.0 MiB 0.12 0.00 2.83964 -101.748 -2.83964 2.83964 0.88 0.000497381 0.00045307 0.0373171 0.0339677 30 1919 16 6.65987e+06 380340 526063. 1820.29 0.91 0.0946678 0.0835342 22546 126617 -1 1612 17 885 1259 74659 17349 2.03391 2.03391 -95.1109 -2.03391 0 0 666494. 2306.21 0.28 0.04 0.12 -1 -1 0.28 0.0197055 0.0175277 118 62 29 29 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.72 vpr 63.98 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33808 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65516 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 25.5 MiB 0.11 661 10835 3152 6204 1479 64.0 MiB 0.07 0.00 2.60038 -85.2282 -2.60038 2.60038 0.85 0.000359502 0.000327344 0.0250303 0.0227697 28 1412 25 6.65987e+06 190170 500653. 1732.36 0.88 0.0730392 0.0638841 21970 115934 -1 1317 18 590 894 65454 14803 1.64045 1.64045 -76.6109 -1.64045 0 0 612192. 2118.31 0.25 0.04 0.11 -1 -1 0.25 0.0156192 0.0139134 85 29 24 24 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.18 vpr 64.79 MiB 0.02 7288 -1 -1 1 0.03 -1 -1 34052 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 31 32 335 280 1 154 79 17 17 289 -1 unnamed_device 26.0 MiB 0.24 855 13768 4604 7573 1591 64.8 MiB 0.11 0.00 3.94338 -122.155 -3.94338 3.94338 0.88 0.000465793 0.000426013 0.0413468 0.0377868 32 1948 20 6.65987e+06 202848 554710. 1919.41 0.93 0.102299 0.0903874 22834 132086 -1 1755 18 938 1411 113590 25356 2.87625 2.87625 -113.945 -2.87625 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.020609 0.0183677 113 55 31 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.22 vpr 65.21 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 33672 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66776 32 32 366 283 1 192 98 17 17 289 -1 unnamed_device 26.4 MiB 0.19 1021 12248 3399 7922 927 65.2 MiB 0.11 0.00 3.9823 -134.861 -3.9823 3.9823 0.88 0.000533884 0.000486922 0.031666 0.0288795 26 2573 27 6.65987e+06 431052 477104. 1650.88 1.09 0.107172 0.0943872 21682 110474 -1 2275 22 1713 2482 195861 44433 3.85911 3.85911 -139.785 -3.85911 0 0 585099. 2024.56 0.26 0.08 0.11 -1 -1 0.26 0.0264323 0.0233854 145 31 91 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.31 vpr 64.85 MiB 0.02 7280 -1 -1 1 0.03 -1 -1 34116 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66408 32 32 460 375 1 196 100 17 17 289 -1 unnamed_device 26.5 MiB 0.33 1084 15644 4587 8678 2379 64.9 MiB 0.14 0.00 3.46744 -121.209 -3.46744 3.46744 0.84 0.000564945 0.000514413 0.0424707 0.0387403 32 2893 24 6.65987e+06 456408 554710. 1919.41 0.98 0.119786 0.105778 22834 132086 -1 2304 23 1666 2527 192489 43026 3.41005 3.41005 -122.544 -3.41005 0 0 701300. 2426.64 0.28 0.08 0.12 -1 -1 0.28 0.0296017 0.0261836 149 108 0 0 125 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.58 vpr 63.83 MiB 0.02 6852 -1 -1 1 0.03 -1 -1 33868 -1 -1 17 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65364 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 25.4 MiB 0.15 410 10345 3142 6004 1199 63.8 MiB 0.05 0.00 2.61938 -68.655 -2.61938 2.61938 0.83 0.000306216 0.000277383 0.0220786 0.0200961 30 1108 22 6.65987e+06 215526 526063. 1820.29 0.81 0.059403 0.0520841 22546 126617 -1 888 17 469 716 38565 9930 1.69465 1.69465 -62.5815 -1.69465 0 0 666494. 2306.21 0.27 0.03 0.11 -1 -1 0.27 0.0127034 0.0112525 77 21 26 26 22 22 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.09 vpr 65.10 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 34092 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 32 32 333 251 1 187 84 17 17 289 -1 unnamed_device 26.3 MiB 0.14 1123 11064 3077 6737 1250 65.1 MiB 0.11 0.00 4.10424 -135.549 -4.10424 4.10424 0.80 0.00049869 0.000453148 0.0331965 0.0303391 32 2636 25 6.65987e+06 253560 554710. 1919.41 1.05 0.10312 0.0910785 22834 132086 -1 2340 20 1634 2768 224801 50413 3.87397 3.87397 -136.212 -3.87397 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0236574 0.0210853 137 -1 122 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.82 vpr 64.16 MiB 0.02 6748 -1 -1 1 0.03 -1 -1 33800 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65704 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 25.7 MiB 0.04 594 8553 1943 6358 252 64.2 MiB 0.06 0.00 2.22607 -81.0919 -2.22607 2.22607 0.89 0.000338784 0.000309379 0.0193278 0.0176982 28 1546 23 6.65987e+06 164814 500653. 1732.36 0.96 0.0636927 0.0560612 21970 115934 -1 1328 13 597 780 61409 14459 1.92605 1.92605 -82.4093 -1.92605 0 0 612192. 2118.31 0.26 0.03 0.12 -1 -1 0.26 0.0120007 0.0107879 81 -1 53 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.13 vpr 65.19 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 34220 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66752 32 32 376 288 1 194 97 17 17 289 -1 unnamed_device 26.6 MiB 0.06 1112 19189 6002 11213 1974 65.2 MiB 0.16 0.00 4.06247 -140.472 -4.06247 4.06247 0.88 0.00055128 0.000509198 0.0489876 0.044658 32 2640 23 6.65987e+06 418374 554710. 1919.41 1.04 0.118453 0.104871 22834 132086 -1 2332 22 1852 2869 241884 52982 3.64237 3.64237 -140.833 -3.64237 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0265307 0.0235236 151 21 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.17 vpr 65.00 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 33580 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 32 32 337 253 1 196 99 17 17 289 -1 unnamed_device 26.4 MiB 0.14 1134 16059 4004 10217 1838 65.0 MiB 0.15 0.00 3.38184 -119.391 -3.38184 3.38184 0.90 0.000493854 0.000449001 0.0383404 0.0349651 30 2437 23 6.65987e+06 443730 526063. 1820.29 1.00 0.104537 0.0923317 22546 126617 -1 2179 21 1463 2318 163790 35189 2.72851 2.72851 -114.216 -2.72851 0 0 666494. 2306.21 0.29 0.06 0.13 -1 -1 0.29 0.0215816 0.019134 150 -1 124 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 8.37 vpr 65.11 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 34008 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66676 32 32 407 319 1 197 99 17 17 289 -1 unnamed_device 26.9 MiB 0.13 1120 14463 4038 8924 1501 65.1 MiB 0.13 0.00 3.91784 -136.256 -3.91784 3.91784 0.90 0.000581637 0.000535203 0.0379912 0.0346051 28 2877 24 6.65987e+06 443730 500653. 1732.36 5.22 0.230311 0.200755 21970 115934 -1 2382 24 1982 3438 253080 56365 3.39471 3.39471 -133.611 -3.39471 0 0 612192. 2118.31 0.27 0.09 0.12 -1 -1 0.27 0.0295348 0.0260678 153 54 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.84 vpr 64.54 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 33936 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66088 32 32 294 246 1 149 79 17 17 289 -1 unnamed_device 26.0 MiB 0.05 736 8191 2107 5347 737 64.5 MiB 0.07 0.00 2.8895 -100.047 -2.8895 2.8895 0.88 0.000444333 0.000404636 0.0238065 0.0217518 28 1959 23 6.65987e+06 190170 500653. 1732.36 0.92 0.0815292 0.0715916 21970 115934 -1 1794 18 1044 1689 131849 30152 2.80591 2.80591 -104.879 -2.80591 0 0 612192. 2118.31 0.27 0.05 0.12 -1 -1 0.27 0.0194196 0.0172642 106 31 54 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.98 vpr 64.48 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 33852 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66024 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 26.1 MiB 0.11 832 12156 3666 7026 1464 64.5 MiB 0.09 0.00 3.4951 -115.55 -3.4951 3.4951 0.90 0.00045056 0.000400588 0.0330611 0.0302218 32 1928 21 6.65987e+06 240882 554710. 1919.41 0.94 0.0893754 0.07902 22834 132086 -1 1714 20 1246 1787 142322 32113 3.15837 3.15837 -116.08 -3.15837 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0205213 0.0181961 115 29 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.92 vpr 64.39 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 33900 -1 -1 20 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65940 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 25.8 MiB 0.13 590 7820 1903 5456 461 64.4 MiB 0.07 0.00 3.4309 -99.7277 -3.4309 3.4309 0.85 0.000404547 0.000369811 0.020444 0.0187424 32 1923 46 6.65987e+06 253560 554710. 1919.41 1.02 0.0893711 0.0780792 22834 132086 -1 1563 21 1210 2013 140180 35724 3.03717 3.03717 -103.663 -3.03717 0 0 701300. 2426.64 0.28 0.06 0.12 -1 -1 0.28 0.0194568 0.0171747 107 27 56 28 28 28 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.51 vpr 64.96 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 34076 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66520 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 26.4 MiB 0.11 686 12008 2561 8162 1285 65.0 MiB 0.08 0.00 3.4859 -118.026 -3.4859 3.4859 0.88 0.000445902 0.000400362 0.0303315 0.0276442 32 2225 24 6.65987e+06 228204 554710. 1919.41 1.48 0.11232 0.0984973 22834 132086 -1 1782 23 1492 2350 178530 44000 2.96911 2.96911 -119.443 -2.96911 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0222843 0.0196955 125 -1 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.48 vpr 64.71 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 34104 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66260 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 26.3 MiB 0.07 778 11809 2809 7761 1239 64.7 MiB 0.10 0.00 3.29178 -109.233 -3.29178 3.29178 0.87 0.000451804 0.000411524 0.0273228 0.0249191 26 2453 37 6.65987e+06 393018 477104. 1650.88 1.58 0.0981991 0.0862565 21682 110474 -1 2003 21 1417 2331 202054 46827 2.68725 2.68725 -109.634 -2.68725 0 0 585099. 2024.56 0.24 0.07 0.10 -1 -1 0.24 0.0198907 0.0175572 119 26 61 31 31 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.03 vpr 64.55 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 33448 -1 -1 30 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66096 29 32 312 264 1 154 91 17 17 289 -1 unnamed_device 25.9 MiB 0.23 717 8047 1725 5786 536 64.5 MiB 0.07 0.00 2.76744 -86.2128 -2.76744 2.76744 0.87 0.000456608 0.000415684 0.0201553 0.0183813 32 1839 18 6.65987e+06 380340 554710. 1919.41 0.92 0.0749066 0.0655956 22834 132086 -1 1669 19 980 1637 120360 28146 2.35685 2.35685 -88.7849 -2.35685 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0196119 0.0173696 109 55 29 29 57 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 10.94 vpr 64.95 MiB 0.02 7488 -1 -1 1 0.03 -1 -1 33860 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 32 32 423 310 1 229 103 17 17 289 -1 unnamed_device 26.8 MiB 0.30 1246 13117 3185 8526 1406 65.0 MiB 0.14 0.00 4.16036 -141.523 -4.16036 4.16036 0.88 0.000612426 0.000554793 0.0346251 0.0315008 26 4082 47 6.65987e+06 494442 477104. 1650.88 7.67 0.231269 0.202859 21682 110474 -1 3177 19 1946 3416 372770 77973 4.23023 4.23023 -159.822 -4.23023 0 0 585099. 2024.56 0.25 0.11 0.10 -1 -1 0.25 0.0279417 0.0249452 179 26 128 32 27 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.19 vpr 65.12 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33860 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66688 32 32 403 317 1 198 99 17 17 289 -1 unnamed_device 26.9 MiB 0.26 1041 9447 2232 6542 673 65.1 MiB 0.09 0.00 3.5061 -122.514 -3.5061 3.5061 0.87 0.000549694 0.000498454 0.025819 0.0234628 32 2399 23 6.65987e+06 443730 554710. 1919.41 0.98 0.0989469 0.0867638 22834 132086 -1 2100 19 1680 2488 167224 38451 2.91297 2.91297 -119.551 -2.91297 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0251566 0.0224503 152 62 62 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.78 vpr 64.98 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 33868 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 31 32 353 302 1 156 91 17 17 289 -1 unnamed_device 26.3 MiB 0.35 709 5599 957 4403 239 65.0 MiB 0.05 0.00 3.18838 -103.883 -3.18838 3.18838 0.87 0.000477781 0.000435994 0.0154937 0.0141806 26 2166 21 6.65987e+06 354984 477104. 1650.88 1.61 0.0809808 0.0706156 21682 110474 -1 1792 22 1145 1768 127720 30506 2.62025 2.62025 -105.449 -2.62025 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0229494 0.0202201 113 77 0 0 89 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.25 vpr 64.81 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 33824 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66364 31 32 391 309 1 194 84 17 17 289 -1 unnamed_device 26.1 MiB 0.26 1062 14541 4862 7202 2477 64.8 MiB 0.13 0.00 3.4921 -118.867 -3.4921 3.4921 0.88 0.0005509 0.000500961 0.045533 0.0415386 32 2506 18 6.65987e+06 266238 554710. 1919.41 0.97 0.111069 0.0982598 22834 132086 -1 2153 22 1746 2876 203886 45580 2.77657 2.77657 -113.826 -2.77657 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0274361 0.0242981 148 59 60 30 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.29 vpr 65.07 MiB 0.02 7536 -1 -1 1 0.03 -1 -1 33872 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66636 31 32 455 371 1 193 84 17 17 289 -1 unnamed_device 26.4 MiB 0.34 1075 7953 1851 5455 647 65.1 MiB 0.09 0.00 4.84238 -140.996 -4.84238 4.84238 0.89 0.000628029 0.00057532 0.0293773 0.0268181 30 2507 19 6.65987e+06 266238 526063. 1820.29 1.00 0.105714 0.093081 22546 126617 -1 1992 18 982 1671 90240 21461 3.71791 3.71791 -132.867 -3.71791 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0250756 0.0223536 149 111 0 0 124 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.22 vpr 64.89 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 34032 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66448 31 32 413 333 1 188 84 17 17 289 -1 unnamed_device 26.4 MiB 0.43 977 8868 2457 6032 379 64.9 MiB 0.09 0.00 4.78027 -132.334 -4.78027 4.78027 0.84 0.000547421 0.000502023 0.0299308 0.0274539 30 2304 21 6.65987e+06 266238 526063. 1820.29 0.92 0.100743 0.0888803 22546 126617 -1 1949 16 902 1473 81509 19863 3.58697 3.58697 -123.296 -3.58697 0 0 666494. 2306.21 0.27 0.05 0.11 -1 -1 0.27 0.0221218 0.0198382 143 86 31 31 89 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 7.34 vpr 64.83 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 33684 -1 -1 33 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66384 31 32 391 309 1 193 96 17 17 289 -1 unnamed_device 26.7 MiB 0.25 1043 11922 3052 7896 974 64.8 MiB 0.11 0.00 3.40784 -114.93 -3.40784 3.40784 0.88 0.000544267 0.000493663 0.032138 0.0292317 26 2879 21 6.65987e+06 418374 477104. 1650.88 4.13 0.193794 0.168383 21682 110474 -1 2395 22 1670 2857 240790 52788 3.04605 3.04605 -117.63 -3.04605 0 0 585099. 2024.56 0.25 0.08 0.11 -1 -1 0.25 0.026466 0.0234298 146 58 60 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 4.03 vpr 64.63 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 34280 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66184 32 32 407 319 1 198 99 17 17 289 -1 unnamed_device 26.4 MiB 0.10 1091 9903 2241 6952 710 64.6 MiB 0.09 0.00 3.91784 -134.792 -3.91784 3.91784 0.83 0.000515177 0.00046869 0.0265674 0.0241841 30 2568 27 6.65987e+06 443730 526063. 1820.29 1.06 0.103731 0.09101 22546 126617 -1 2243 22 1656 2468 150693 34059 3.11831 3.11831 -129.225 -3.11831 0 0 666494. 2306.21 0.30 0.07 0.13 -1 -1 0.30 0.0272071 0.0241557 154 42 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.59 vpr 65.56 MiB 0.02 7316 -1 -1 1 0.03 -1 -1 34104 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67136 32 32 496 380 1 232 104 17 17 289 -1 unnamed_device 27.3 MiB 0.27 1177 18648 4595 11838 2215 65.6 MiB 0.19 0.00 4.0593 -137.323 -4.0593 4.0593 0.89 0.000673718 0.000613976 0.0528425 0.0479916 30 2881 22 6.65987e+06 507120 526063. 1820.29 1.21 0.141176 0.125105 22546 126617 -1 2419 22 1764 2828 183437 40794 3.55237 3.55237 -137.679 -3.55237 0 0 666494. 2306.21 0.28 0.08 0.13 -1 -1 0.28 0.0320533 0.0285318 184 91 62 32 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.94 vpr 64.25 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 34008 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65788 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 25.9 MiB 0.11 685 11806 2914 7153 1739 64.2 MiB 0.09 0.00 3.55518 -111.493 -3.55518 3.55518 0.87 0.000411399 0.000372432 0.0311167 0.028422 32 2030 23 6.65987e+06 228204 554710. 1919.41 0.95 0.0887394 0.078136 22834 132086 -1 1720 20 1444 2314 171957 40640 2.89571 2.89571 -110.456 -2.89571 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0201669 0.0178548 116 24 62 31 31 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.60 vpr 64.71 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 33836 -1 -1 36 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66260 31 32 395 311 1 196 99 17 17 289 -1 unnamed_device 26.4 MiB 0.29 976 9675 2155 7053 467 64.7 MiB 0.09 0.00 4.0281 -131.561 -4.0281 4.0281 0.84 0.000532724 0.000479313 0.0253619 0.0231454 28 2661 22 6.65987e+06 456408 500653. 1732.36 1.43 0.0993091 0.0869833 21970 115934 -1 2381 22 1770 2817 206479 46730 3.78351 3.78351 -140.301 -3.78351 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0266525 0.0235068 150 59 62 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.16 vpr 65.32 MiB 0.02 7352 -1 -1 1 0.03 -1 -1 34148 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66884 32 32 397 313 1 196 97 17 17 289 -1 unnamed_device 26.7 MiB 0.14 1040 11641 3109 7665 867 65.3 MiB 0.11 0.00 3.62624 -117.445 -3.62624 3.62624 0.88 0.000548808 0.0005008 0.031242 0.0284851 28 2759 23 6.65987e+06 418374 500653. 1732.36 1.08 0.1039 0.0913284 21970 115934 -1 2418 19 1528 2752 203891 46139 3.01511 3.01511 -114.853 -3.01511 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0234371 0.0208173 148 54 62 32 62 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.43 vpr 64.90 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 33784 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66460 32 32 345 257 1 194 84 17 17 289 -1 unnamed_device 26.2 MiB 0.16 853 8685 1897 5601 1187 64.9 MiB 0.08 0.00 4.14936 -138.467 -4.14936 4.14936 0.88 0.000516109 0.000471296 0.0266083 0.0243332 32 3554 31 6.65987e+06 253560 554710. 1919.41 1.30 0.103047 0.0908477 22834 132086 -1 2386 25 2378 4190 332456 84115 4.09903 4.09903 -156.436 -4.09903 0 0 701300. 2426.64 0.29 0.10 0.13 -1 -1 0.29 0.0276086 0.0244338 150 -1 128 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.37 vpr 65.36 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 33696 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66928 32 32 424 343 1 190 98 17 17 289 -1 unnamed_device 26.7 MiB 0.35 1097 11798 3144 7589 1065 65.4 MiB 0.12 0.00 3.29555 -116.715 -3.29555 3.29555 0.89 0.000581428 0.000530014 0.0327213 0.0298252 32 2610 28 6.65987e+06 431052 554710. 1919.41 1.00 0.110635 0.0971188 22834 132086 -1 2261 27 1678 2335 173585 40549 2.96105 2.96105 -114.853 -2.96105 0 0 701300. 2426.64 0.28 0.08 0.13 -1 -1 0.28 0.0311909 0.0274101 145 81 25 25 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.32 vpr 65.03 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 34132 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66588 32 32 395 311 1 194 99 17 17 289 -1 unnamed_device 26.8 MiB 0.33 1042 7623 1446 5778 399 65.0 MiB 0.09 0.00 3.5841 -121.365 -3.5841 3.5841 0.89 0.000577201 0.000525638 0.0215455 0.0196769 32 2739 23 6.65987e+06 443730 554710. 1919.41 1.02 0.0953511 0.0837949 22834 132086 -1 2392 19 1560 2652 190760 44720 2.90297 2.90297 -122.101 -2.90297 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0248796 0.0221438 146 58 64 32 60 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.32 vpr 64.89 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 33616 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66452 32 32 405 318 1 200 101 17 17 289 -1 unnamed_device 26.6 MiB 0.24 1118 19136 5296 11671 2169 64.9 MiB 0.17 0.00 3.42984 -118.83 -3.42984 3.42984 0.89 0.000561272 0.00051049 0.0494733 0.0450036 32 2579 24 6.65987e+06 469086 554710. 1919.41 1.01 0.124025 0.109488 22834 132086 -1 2255 22 1703 2645 189718 44615 2.89571 2.89571 -116.083 -2.89571 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.026554 0.0235623 155 61 63 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.98 vpr 64.65 MiB 0.02 7220 -1 -1 1 0.03 -1 -1 33876 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66200 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 26.4 MiB 0.06 1049 17883 5721 9099 3063 64.6 MiB 0.15 0.00 4.02327 -139.097 -4.02327 4.02327 0.84 0.000532207 0.000486264 0.0440044 0.0401855 32 2663 21 6.65987e+06 443730 554710. 1919.41 1.01 0.1129 0.100154 22834 132086 -1 2226 24 2120 3395 255918 56744 3.76057 3.76057 -141.06 -3.76057 0 0 701300. 2426.64 0.29 0.09 0.12 -1 -1 0.29 0.0275615 0.0244318 150 21 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.23 vpr 64.55 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 34088 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66096 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 26.3 MiB 0.15 1032 17491 4961 10150 2380 64.5 MiB 0.15 0.00 3.95704 -138.916 -3.95704 3.95704 0.88 0.000560689 0.000510792 0.0445769 0.040584 32 2565 23 6.65987e+06 469086 554710. 1919.41 1.01 0.117694 0.103807 22834 132086 -1 2227 23 1969 2975 232242 51504 3.47391 3.47391 -136.763 -3.47391 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0276876 0.024457 153 50 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.39 vpr 64.87 MiB 0.02 7444 -1 -1 1 0.03 -1 -1 34152 -1 -1 34 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66428 31 32 449 367 1 193 97 17 17 289 -1 unnamed_device 26.5 MiB 0.37 1081 15859 4297 9232 2330 64.9 MiB 0.14 0.00 4.24338 -127.817 -4.24338 4.24338 0.90 0.000591524 0.000537706 0.0450794 0.0409058 28 2788 21 6.65987e+06 431052 500653. 1732.36 1.04 0.120302 0.105891 21970 115934 -1 2458 19 1249 2286 169784 37981 3.26585 3.26585 -124.218 -3.26585 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.025554 0.0226747 145 110 0 0 122 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.24 vpr 65.15 MiB 0.02 7288 -1 -1 1 0.03 -1 -1 34088 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66716 32 32 432 346 1 195 84 17 17 289 -1 unnamed_device 26.9 MiB 0.24 1088 15822 4733 9518 1571 65.2 MiB 0.14 0.00 4.01118 -127.976 -4.01118 4.01118 0.88 0.000593366 0.000538651 0.0509087 0.0461673 32 2771 23 6.65987e+06 253560 554710. 1919.41 1.01 0.12284 0.108207 22834 132086 -1 2366 23 1879 3439 266431 58862 3.31985 3.31985 -126.958 -3.31985 0 0 701300. 2426.64 0.30 0.09 0.12 -1 -1 0.30 0.0282338 0.024838 149 86 32 32 94 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.85 vpr 64.55 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 34112 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66100 32 32 312 255 1 166 94 17 17 289 -1 unnamed_device 26.3 MiB 0.05 798 8401 2034 5819 548 64.6 MiB 0.08 0.00 3.27158 -111.236 -3.27158 3.27158 0.87 0.000467339 0.000420479 0.0200521 0.0182835 30 1935 19 6.65987e+06 380340 526063. 1820.29 0.92 0.0758046 0.0665708 22546 126617 -1 1703 21 1108 1802 99797 24547 2.48705 2.48705 -106.7 -2.48705 0 0 666494. 2306.21 0.27 0.05 0.12 -1 -1 0.27 0.021044 0.0185832 124 20 63 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.20 vpr 65.07 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 33772 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66636 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 26.4 MiB 0.29 912 11830 3154 7792 884 65.1 MiB 0.10 0.00 3.41618 -118.934 -3.41618 3.41618 0.87 0.000492534 0.000448142 0.0359528 0.0328077 32 2244 21 6.65987e+06 228204 554710. 1919.41 0.97 0.0996992 0.0878527 22834 132086 -1 1981 21 1461 2255 169368 38765 2.90671 2.90671 -119.433 -2.90671 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0234526 0.0207256 121 91 0 0 94 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.86 vpr 65.27 MiB 0.02 7280 -1 -1 1 0.04 -1 -1 34060 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66840 32 32 469 351 1 233 104 17 17 289 -1 unnamed_device 27.0 MiB 0.15 1362 14988 3862 9734 1392 65.3 MiB 0.14 0.00 4.6627 -159.741 -4.6627 4.6627 0.85 0.000662423 0.000600995 0.0403652 0.0364492 32 3224 27 6.65987e+06 507120 554710. 1919.41 1.67 0.155569 0.135842 22834 132086 -1 2751 22 2503 4010 283300 66669 4.33277 4.33277 -161.853 -4.33277 0 0 701300. 2426.64 0.29 0.10 0.14 -1 -1 0.29 0.0322899 0.0286439 187 53 96 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.31 vpr 64.98 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 34164 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 32 32 368 284 1 194 95 17 17 289 -1 unnamed_device 26.5 MiB 0.23 954 14567 4735 7432 2400 65.0 MiB 0.13 0.00 3.51422 -121.562 -3.51422 3.51422 0.88 0.000544227 0.000496895 0.0390583 0.0357182 32 2533 23 6.65987e+06 393018 554710. 1919.41 1.02 0.111283 0.0985793 22834 132086 -1 2059 21 1528 2303 169248 38838 3.12437 3.12437 -119.393 -3.12437 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0263857 0.0235214 146 31 92 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.06 vpr 64.36 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 33460 -1 -1 30 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65900 30 32 296 244 1 158 92 17 17 289 -1 unnamed_device 26.0 MiB 0.11 839 17066 5534 9253 2279 64.4 MiB 0.13 0.00 3.49012 -114.14 -3.49012 3.49012 0.90 0.000447576 0.000408656 0.0392472 0.0357745 32 1859 23 6.65987e+06 380340 554710. 1919.41 0.95 0.0969037 0.0856026 22834 132086 -1 1702 23 1302 1955 146836 32807 2.86197 2.86197 -108.341 -2.86197 0 0 701300. 2426.64 0.28 0.06 0.13 -1 -1 0.28 0.0223304 0.0196687 115 29 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.84 vpr 65.21 MiB 0.02 7620 -1 -1 1 0.04 -1 -1 34340 -1 -1 43 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66772 32 32 531 413 1 232 107 17 17 289 -1 unnamed_device 26.9 MiB 0.59 1333 18829 5161 11634 2034 65.2 MiB 0.18 0.00 4.64147 -157.361 -4.64147 4.64147 0.90 0.000658573 0.000595831 0.0534781 0.0484279 30 2806 24 6.65987e+06 545154 526063. 1820.29 1.10 0.143297 0.126513 22546 126617 -1 2369 21 1942 2888 139173 34569 4.05017 4.05017 -152.332 -4.05017 0 0 666494. 2306.21 0.27 0.07 0.12 -1 -1 0.27 0.0321997 0.028649 186 109 32 32 128 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.04 vpr 64.93 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 34168 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66492 32 32 376 288 1 194 100 17 17 289 -1 unnamed_device 26.6 MiB 0.24 1044 16340 4500 10034 1806 64.9 MiB 0.13 0.00 4.15932 -143.209 -4.15932 4.15932 0.85 0.000518194 0.000473959 0.0394936 0.0360961 28 2433 22 6.65987e+06 456408 500653. 1732.36 0.97 0.111669 0.0990902 21970 115934 -1 2180 17 1424 2121 146529 32775 3.65243 3.65243 -141.715 -3.65243 0 0 612192. 2118.31 0.26 0.06 0.10 -1 -1 0.26 0.020922 0.018715 151 31 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.13 vpr 64.96 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 33904 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66516 32 32 283 225 1 164 95 17 17 289 -1 unnamed_device 26.3 MiB 0.05 722 13703 3609 8489 1605 65.0 MiB 0.11 0.00 3.4859 -117.474 -3.4859 3.4859 0.90 0.000443866 0.000404162 0.0303527 0.0276464 28 2223 23 6.65987e+06 393018 500653. 1732.36 1.12 0.0888959 0.0783375 21970 115934 -1 1831 21 1390 2227 153616 36621 2.84077 2.84077 -115.671 -2.84077 0 0 612192. 2118.31 0.26 0.06 0.12 -1 -1 0.26 0.0209464 0.0185828 123 -1 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.31 vpr 65.16 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 34416 -1 -1 41 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66724 32 32 438 320 1 235 105 17 17 289 -1 unnamed_device 26.9 MiB 0.17 1337 12702 3419 8223 1060 65.2 MiB 0.13 0.00 4.90437 -166.477 -4.90437 4.90437 0.91 0.000615913 0.000560341 0.0349765 0.0318812 30 3011 23 6.65987e+06 519798 526063. 1820.29 1.08 0.117903 0.104041 22546 126617 -1 2460 21 1844 3246 197750 44383 4.43083 4.43083 -163.127 -4.43083 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.0290076 0.0258243 188 26 128 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.07 vpr 64.36 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 33884 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65900 32 32 283 225 1 162 80 17 17 289 -1 unnamed_device 26.0 MiB 0.13 852 11260 3935 5447 1878 64.4 MiB 0.08 0.00 3.4749 -119.679 -3.4749 3.4749 0.87 0.000440636 0.000400229 0.0293134 0.0266826 32 2124 48 6.65987e+06 202848 554710. 1919.41 1.08 0.0991691 0.086597 22834 132086 -1 1841 20 1442 2283 176605 41279 2.97497 2.97497 -120.041 -2.97497 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0191235 0.0169423 121 -1 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.00 vpr 64.21 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 33784 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65752 30 32 296 244 1 157 93 17 17 289 -1 unnamed_device 25.8 MiB 0.24 707 8073 1842 5622 609 64.2 MiB 0.07 0.00 3.47387 -110.471 -3.47387 3.47387 0.87 0.000502564 0.000464645 0.019049 0.0173971 28 1935 20 6.65987e+06 393018 500653. 1732.36 0.91 0.0737944 0.0647976 21970 115934 -1 1767 22 1242 2031 144987 33596 3.08337 3.08337 -113.04 -3.08337 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0211571 0.0186949 113 29 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.21 vpr 65.07 MiB 0.02 7384 -1 -1 1 0.03 -1 -1 34156 -1 -1 33 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66636 29 32 393 319 1 182 94 17 17 289 -1 unnamed_device 26.6 MiB 0.32 964 15856 4550 8712 2594 65.1 MiB 0.14 0.00 3.50895 -109.722 -3.50895 3.50895 0.88 0.000539059 0.000490317 0.0426645 0.0388025 30 2020 23 6.65987e+06 418374 526063. 1820.29 0.93 0.112193 0.0989375 22546 126617 -1 1687 19 1058 1807 92981 22149 2.43937 2.43937 -98.0163 -2.43937 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0231439 0.0205447 133 81 29 29 85 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.13 vpr 65.26 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 34248 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66828 32 32 407 319 1 194 84 17 17 289 -1 unnamed_device 26.8 MiB 0.12 1002 7770 1874 5369 527 65.3 MiB 0.08 0.00 4.0593 -140.547 -4.0593 4.0593 0.88 0.000544709 0.000495546 0.0267487 0.0244975 32 2537 20 6.65987e+06 253560 554710. 1919.41 1.03 0.100533 0.0886473 22834 132086 -1 2176 22 2024 3071 255718 55324 3.65137 3.65137 -141.337 -3.65137 0 0 701300. 2426.64 0.29 0.09 0.13 -1 -1 0.29 0.0291383 0.0259642 151 53 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.58 vpr 64.84 MiB 0.03 7364 -1 -1 1 0.03 -1 -1 34140 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66396 32 32 407 319 1 195 98 17 17 289 -1 unnamed_device 26.6 MiB 0.44 1039 19223 6359 10018 2846 64.8 MiB 0.16 0.00 4.06007 -140.169 -4.06007 4.06007 0.84 0.000564134 0.000511064 0.0513661 0.046578 28 2638 22 6.65987e+06 431052 500653. 1732.36 1.13 0.128877 0.114215 21970 115934 -1 2257 21 1827 3045 224896 49721 3.64537 3.64537 -141.068 -3.64537 0 0 612192. 2118.31 0.25 0.08 0.12 -1 -1 0.25 0.0269675 0.0239393 152 55 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.16 vpr 65.07 MiB 0.02 7268 -1 -1 1 0.03 -1 -1 34212 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 32 32 345 287 1 161 94 17 17 289 -1 unnamed_device 26.4 MiB 0.24 697 8614 1900 5774 940 65.1 MiB 0.08 0.00 3.41884 -114.043 -3.41884 3.41884 0.88 0.000500856 0.000455661 0.0226073 0.0206798 32 2062 22 6.65987e+06 380340 554710. 1919.41 0.97 0.0848176 0.0745444 22834 132086 -1 1629 21 1319 2115 153578 35885 2.86171 2.86171 -112.586 -2.86171 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0227654 0.0201646 120 55 32 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.03 vpr 64.62 MiB 0.02 7216 -1 -1 1 0.03 -1 -1 34048 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66168 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 25.8 MiB 0.29 800 12464 4465 5577 2422 64.6 MiB 0.10 0.00 3.46898 -107.312 -3.46898 3.46898 0.85 0.000474946 0.000434008 0.0368083 0.0336643 32 1982 23 6.65987e+06 215526 554710. 1919.41 0.92 0.0991858 0.0876672 22834 132086 -1 1706 23 1257 2236 164644 38181 2.72145 2.72145 -105.174 -2.72145 0 0 701300. 2426.64 0.28 0.07 0.12 -1 -1 0.28 0.0236068 0.0208179 109 82 0 0 89 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.77 vpr 65.23 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 34148 -1 -1 33 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66796 30 32 374 297 1 186 95 17 17 289 -1 unnamed_device 26.7 MiB 0.22 996 12623 3384 8308 931 65.2 MiB 0.11 0.00 3.33164 -109.888 -3.33164 3.33164 0.92 0.000557125 0.000511982 0.0338597 0.0307985 26 2507 31 6.65987e+06 418374 477104. 1650.88 1.61 0.116574 0.102632 21682 110474 -1 2108 20 1410 2286 169057 38285 2.93891 2.93891 -110.732 -2.93891 0 0 585099. 2024.56 0.24 0.06 0.11 -1 -1 0.24 0.023941 0.0212128 137 52 60 30 57 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.07 vpr 65.01 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 33748 -1 -1 31 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66572 28 32 332 260 1 180 91 17 17 289 -1 unnamed_device 26.3 MiB 0.10 995 16207 5283 8775 2149 65.0 MiB 0.12 0.00 4.24344 -123.397 -4.24344 4.24344 0.92 0.000469678 0.000428612 0.0360234 0.0328971 28 2478 21 6.65987e+06 393018 500653. 1732.36 0.97 0.098542 0.0869853 21970 115934 -1 2142 21 1586 2579 196030 44322 3.61951 3.61951 -125.511 -3.61951 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0236643 0.0210004 133 20 84 28 28 28 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.10 vpr 64.86 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 33860 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66416 30 32 325 273 1 157 80 17 17 289 -1 unnamed_device 26.0 MiB 0.33 727 13152 3808 7208 2136 64.9 MiB 0.10 0.00 3.5343 -112.204 -3.5343 3.5343 0.87 0.000458337 0.000407942 0.0366513 0.0332829 30 1865 21 6.65987e+06 228204 526063. 1820.29 0.92 0.0937449 0.082433 22546 126617 -1 1629 18 1028 1738 95398 22780 2.94697 2.94697 -110.978 -2.94697 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0187399 0.0166137 114 58 30 30 60 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.08 vpr 65.00 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 33600 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66556 32 32 361 308 1 158 80 17 17 289 -1 unnamed_device 26.4 MiB 0.30 910 8164 2057 5403 704 65.0 MiB 0.08 0.00 3.44398 -109.924 -3.44398 3.44398 0.87 0.000487259 0.000444188 0.0257227 0.0234813 30 1920 20 6.65987e+06 202848 526063. 1820.29 0.91 0.0872065 0.0765313 22546 126617 -1 1664 19 890 1490 87526 20113 2.46025 2.46025 -100.155 -2.46025 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0215648 0.0191327 113 88 0 0 91 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.47 vpr 64.94 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 34020 -1 -1 35 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66496 31 32 335 251 1 196 98 17 17 289 -1 unnamed_device 26.4 MiB 0.10 1101 12023 3143 7728 1152 64.9 MiB 0.11 0.00 4.17558 -139.576 -4.17558 4.17558 0.88 0.000513629 0.000469795 0.0299357 0.0273823 28 3033 20 6.65987e+06 443730 500653. 1732.36 1.42 0.104167 0.0926762 21970 115934 -1 2518 20 1591 2583 178706 40894 3.86583 3.86583 -142.772 -3.86583 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0232075 0.0206276 150 -1 124 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 6.39 vpr 65.13 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 34068 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 32 32 407 319 1 197 98 17 17 289 -1 unnamed_device 26.8 MiB 0.25 1037 13598 4125 8601 872 65.1 MiB 0.13 0.00 4.1263 -141.609 -4.1263 4.1263 0.88 0.000517628 0.000474012 0.0372896 0.03403 28 2566 22 6.65987e+06 431052 500653. 1732.36 3.11 0.202192 0.176164 21970 115934 -1 2237 22 1900 3264 213746 49904 3.83557 3.83557 -144.415 -3.83557 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0274398 0.0243523 153 57 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.68 vpr 64.91 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 33932 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66468 32 32 407 319 1 194 98 17 17 289 -1 unnamed_device 26.6 MiB 0.30 1033 10448 2380 7653 415 64.9 MiB 0.09 0.00 4.16458 -142.258 -4.16458 4.16458 0.82 0.000486106 0.000444324 0.0269813 0.0245345 28 3079 34 6.65987e+06 431052 500653. 1732.36 1.56 0.108535 0.0952544 21970 115934 -1 2507 19 1655 2786 262515 56729 3.74643 3.74643 -145.697 -3.74643 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0242863 0.0215637 151 62 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 4.03 vpr 65.29 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 34064 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66856 32 32 399 315 1 196 101 17 17 289 -1 unnamed_device 26.6 MiB 0.24 982 9031 1878 6401 752 65.3 MiB 0.09 0.00 3.86706 -126.941 -3.86706 3.86706 0.84 0.000535357 0.000487599 0.0238339 0.0217296 30 2443 22 6.65987e+06 469086 526063. 1820.29 0.97 0.0939187 0.0823576 22546 126617 -1 2075 23 1349 2400 127757 30638 3.22071 3.22071 -120.966 -3.22071 0 0 666494. 2306.21 0.27 0.06 0.11 -1 -1 0.27 0.0276458 0.0245605 148 62 60 30 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 6.25 vpr 64.31 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 33720 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65852 30 32 296 244 1 156 80 17 17 289 -1 unnamed_device 26.0 MiB 0.20 656 10400 2388 7389 623 64.3 MiB 0.09 0.00 3.50927 -110.79 -3.50927 3.50927 0.87 0.000444248 0.00040537 0.0287471 0.0262948 28 2173 45 6.65987e+06 228204 500653. 1732.36 3.20 0.156059 0.135587 21970 115934 -1 1733 19 1122 1722 145710 34964 2.94117 2.94117 -111.592 -2.94117 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0192551 0.0170952 112 29 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.26 vpr 65.12 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 34092 -1 -1 22 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66688 30 32 383 303 1 191 84 17 17 289 -1 unnamed_device 26.4 MiB 0.26 986 11613 3437 7269 907 65.1 MiB 0.12 0.00 4.19776 -134.76 -4.19776 4.19776 0.88 0.000541575 0.000493167 0.0373483 0.0341301 32 2227 20 6.65987e+06 278916 554710. 1919.41 0.98 0.103814 0.0915751 22834 132086 -1 1981 21 1830 2779 183909 44052 3.48043 3.48043 -130.387 -3.48043 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0250776 0.0221838 145 58 60 30 60 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.41 vpr 65.03 MiB 0.02 7512 -1 -1 1 0.04 -1 -1 33904 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66588 32 32 469 381 1 198 103 17 17 289 -1 unnamed_device 26.9 MiB 0.29 1052 13117 2855 8842 1420 65.0 MiB 0.11 0.00 3.91498 -132.986 -3.91498 3.91498 0.89 0.000624337 0.000569237 0.0359759 0.0327173 32 2892 25 6.65987e+06 494442 554710. 1919.41 1.06 0.117677 0.103377 22834 132086 -1 2368 26 2349 3841 315590 72302 3.48885 3.48885 -136.913 -3.48885 0 0 701300. 2426.64 0.29 0.10 0.13 -1 -1 0.29 0.0319297 0.0280472 154 106 0 0 128 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 6.25 vpr 65.15 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 34064 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66716 31 32 425 341 1 189 94 17 17 289 -1 unnamed_device 26.9 MiB 0.21 1048 9679 2436 6757 486 65.2 MiB 0.10 0.00 3.91106 -131.073 -3.91106 3.91106 0.89 0.000579007 0.000527316 0.0294248 0.0268556 28 2624 22 6.65987e+06 393018 500653. 1732.36 3.11 0.186778 0.162402 21970 115934 -1 2246 21 1597 2678 187978 43614 3.63731 3.63731 -136.375 -3.63731 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0272821 0.024228 146 79 31 31 93 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.08 vpr 65.29 MiB 0.02 7392 -1 -1 1 0.03 -1 -1 33820 -1 -1 30 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66852 30 32 404 328 1 182 92 17 17 289 -1 unnamed_device 26.7 MiB 0.31 967 14375 3613 8859 1903 65.3 MiB 0.12 0.00 3.7785 -114.4 -3.7785 3.7785 0.86 0.000486654 0.000442321 0.0390296 0.035462 30 2034 21 6.65987e+06 380340 526063. 1820.29 0.90 0.105942 0.0930645 22546 126617 -1 1744 18 955 1595 85112 20222 2.81476 2.81476 -105.804 -2.81476 0 0 666494. 2306.21 0.28 0.05 0.11 -1 -1 0.28 0.0225573 0.0200517 136 83 26 26 90 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.28 vpr 64.86 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 34064 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66416 32 32 407 319 1 198 85 17 17 289 -1 unnamed_device 26.6 MiB 0.23 1103 13477 4009 7448 2020 64.9 MiB 0.13 0.00 4.11944 -143.283 -4.11944 4.11944 0.87 0.000539519 0.000491501 0.0427129 0.0389806 32 2896 23 6.65987e+06 266238 554710. 1919.41 1.05 0.115519 0.101951 22834 132086 -1 2579 21 2140 3741 291243 66104 3.63437 3.63437 -143.781 -3.63437 0 0 701300. 2426.64 0.29 0.09 0.13 -1 -1 0.29 0.0263393 0.0233643 154 58 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.14 vpr 64.84 MiB 0.02 7316 -1 -1 1 0.03 -1 -1 33876 -1 -1 34 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66392 29 32 387 316 1 179 95 17 17 289 -1 unnamed_device 26.4 MiB 0.21 870 10463 2796 6767 900 64.8 MiB 0.10 0.00 3.39684 -102.663 -3.39684 3.39684 0.88 0.000535484 0.000488055 0.0285244 0.0260325 32 2139 21 6.65987e+06 431052 554710. 1919.41 0.97 0.0968689 0.0852101 22834 132086 -1 1844 20 1455 2365 152099 36368 2.78971 2.78971 -101.199 -2.78971 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0246689 0.0219123 134 81 26 26 85 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.84 vpr 64.57 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 33952 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66116 32 32 283 225 1 157 80 17 17 289 -1 unnamed_device 26.2 MiB 0.09 838 13496 3888 8529 1079 64.6 MiB 0.10 0.00 3.5031 -123.339 -3.5031 3.5031 0.84 0.000427918 0.000391274 0.0361308 0.03313 32 2175 23 6.65987e+06 202848 554710. 1919.41 0.94 0.0909631 0.0806752 22834 132086 -1 1922 21 1409 2175 179699 42101 3.03597 3.03597 -124.718 -3.03597 0 0 701300. 2426.64 0.28 0.07 0.12 -1 -1 0.28 0.0207549 0.0184104 116 -1 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.36 vpr 64.84 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 34156 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66392 32 32 407 319 1 194 97 17 17 289 -1 unnamed_device 26.7 MiB 0.34 1015 16525 5345 8784 2396 64.8 MiB 0.15 0.00 4.18856 -142.192 -4.18856 4.18856 0.87 0.000568547 0.000519358 0.0456641 0.041504 32 2598 23 6.65987e+06 418374 554710. 1919.41 1.03 0.119681 0.105605 22834 132086 -1 2227 23 1905 2820 231870 51574 3.71343 3.71343 -140.761 -3.71343 0 0 701300. 2426.64 0.28 0.08 0.13 -1 -1 0.28 0.0281937 0.0249127 150 62 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.33 vpr 64.91 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33956 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 32 32 407 319 1 201 85 17 17 289 -1 unnamed_device 26.6 MiB 0.27 1026 16081 4881 8736 2464 64.9 MiB 0.15 0.00 4.23393 -146.239 -4.23393 4.23393 0.87 0.000548324 0.000502959 0.0511011 0.0467036 32 2633 23 6.65987e+06 266238 554710. 1919.41 1.02 0.124124 0.109966 22834 132086 -1 2317 22 2154 3204 249005 56890 3.78577 3.78577 -146.946 -3.78577 0 0 701300. 2426.64 0.29 0.09 0.13 -1 -1 0.29 0.0275327 0.0243505 157 62 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.82 vpr 64.80 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 33704 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66352 32 32 315 267 1 158 93 17 17 289 -1 unnamed_device 26.0 MiB 0.23 688 16683 5557 7719 3407 64.8 MiB 0.11 0.00 3.44878 -105.048 -3.44878 3.44878 0.89 0.000464253 0.000422386 0.0383314 0.0348742 30 2275 33 6.65987e+06 367662 526063. 1820.29 1.66 0.110828 0.0977998 22546 126617 -1 1601 22 1023 1528 115231 32870 2.62325 2.62325 -101.627 -2.62325 0 0 666494. 2306.21 0.27 0.06 0.12 -1 -1 0.27 0.0221738 0.0195566 111 47 32 32 54 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.01 vpr 64.35 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 33968 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65892 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 25.8 MiB 0.11 746 13556 4162 7429 1965 64.3 MiB 0.11 0.00 3.4529 -114.38 -3.4529 3.4529 0.89 0.000431257 0.000397029 0.0356867 0.0326333 30 2037 22 6.65987e+06 228204 526063. 1820.29 0.95 0.0911015 0.0805612 22546 126617 -1 1714 18 1182 1890 112505 26536 3.06217 3.06217 -115.024 -3.06217 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0187805 0.0167382 118 -1 93 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.12 vpr 64.99 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 33728 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 381 303 1 188 96 17 17 289 -1 unnamed_device 26.3 MiB 0.30 900 5133 854 4121 158 65.0 MiB 0.05 0.00 4.0123 -128.007 -4.0123 4.0123 0.87 0.000570665 0.000518203 0.0144125 0.0131625 32 2321 22 6.65987e+06 405696 554710. 1919.41 0.96 0.0800249 0.0697902 22834 132086 -1 2047 20 1627 2428 176062 41067 3.44137 3.44137 -129.288 -3.44137 0 0 701300. 2426.64 0.29 0.07 0.12 -1 -1 0.29 0.0234856 0.0207749 138 56 60 32 58 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.30 vpr 64.84 MiB 0.02 7324 -1 -1 1 0.03 -1 -1 33972 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66396 32 32 406 330 1 190 94 17 17 289 -1 unnamed_device 26.6 MiB 0.26 879 9892 2434 7009 449 64.8 MiB 0.10 0.00 4.11224 -123.302 -4.11224 4.11224 0.89 0.000533259 0.000477477 0.0286804 0.0261274 28 2733 50 6.65987e+06 380340 500653. 1732.36 2.06 0.132099 0.115625 21970 115934 -1 2243 22 1484 2459 195085 46378 3.73551 3.73551 -129.827 -3.73551 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0269887 0.0238486 134 81 28 28 88 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 6.54 vpr 65.06 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 33964 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66620 32 32 399 285 1 228 99 17 17 289 -1 unnamed_device 26.9 MiB 0.06 1224 16515 4921 9863 1731 65.1 MiB 0.16 0.00 4.82096 -159.28 -4.82096 4.82096 0.89 0.000598014 0.000545302 0.0453137 0.0414304 34 3026 21 6.65987e+06 443730 585099. 2024.56 3.39 0.207111 0.1811 23122 138558 -1 2568 21 1918 3176 250539 52985 4.19882 4.19882 -151.411 -4.19882 0 0 742403. 2568.87 0.29 0.08 0.13 -1 -1 0.29 0.0281019 0.0250348 177 -1 156 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.22 vpr 65.27 MiB 0.02 7220 -1 -1 1 0.03 -1 -1 34212 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66832 30 32 371 295 1 184 94 17 17 289 -1 unnamed_device 26.5 MiB 0.29 1012 13726 3606 8436 1684 65.3 MiB 0.12 0.00 3.638 -113.448 -3.638 3.638 0.87 0.000509264 0.000460572 0.0363071 0.0331041 32 2171 21 6.65987e+06 405696 554710. 1919.41 0.95 0.101763 0.0895315 22834 132086 -1 1915 20 1631 2551 180244 41966 2.84971 2.84971 -109.081 -2.84971 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0235329 0.0208375 136 47 60 30 56 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.96 vpr 64.58 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 34064 -1 -1 20 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66128 27 32 269 226 1 143 79 17 17 289 -1 unnamed_device 26.1 MiB 0.11 768 12754 4322 6521 1911 64.6 MiB 0.09 0.00 3.3979 -99.6122 -3.3979 3.3979 0.89 0.000398853 0.000362805 0.0329061 0.0300883 32 1581 21 6.65987e+06 253560 554710. 1919.41 0.93 0.0849829 0.0752088 22834 132086 -1 1433 23 1214 1756 132146 29899 2.73377 2.73377 -94.2996 -2.73377 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.020927 0.0184713 107 26 54 27 27 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.24 vpr 65.21 MiB 0.02 7340 -1 -1 1 0.03 -1 -1 34052 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66772 32 32 493 378 1 232 104 17 17 289 -1 unnamed_device 26.9 MiB 0.20 1366 15232 4128 9656 1448 65.2 MiB 0.15 0.00 4.15924 -136.806 -4.15924 4.15924 0.84 0.000676207 0.000614693 0.0419893 0.0382216 32 3584 25 6.65987e+06 507120 554710. 1919.41 1.07 0.13295 0.117637 22834 132086 -1 3035 24 2566 4598 357869 79783 3.55211 3.55211 -136.902 -3.55211 0 0 701300. 2426.64 0.28 0.11 0.12 -1 -1 0.28 0.0352007 0.0313298 184 85 62 31 95 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.23 vpr 65.38 MiB 0.02 7268 -1 -1 1 0.03 -1 -1 34136 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66952 31 32 455 371 1 189 84 17 17 289 -1 unnamed_device 26.7 MiB 0.34 999 12894 3350 8149 1395 65.4 MiB 0.11 0.00 4.3007 -134.868 -4.3007 4.3007 0.85 0.000482011 0.00043886 0.0417113 0.0379988 32 2741 23 6.65987e+06 266238 554710. 1919.41 0.99 0.116086 0.102327 22834 132086 -1 2317 24 1711 2732 234323 52414 3.53211 3.53211 -138.535 -3.53211 0 0 701300. 2426.64 0.28 0.08 0.12 -1 -1 0.28 0.0287059 0.0253708 144 105 0 0 124 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.11 vpr 64.62 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 33796 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66176 32 32 355 304 1 151 80 17 17 289 -1 unnamed_device 25.8 MiB 0.32 739 9540 2469 6056 1015 64.6 MiB 0.08 0.00 3.43298 -108.977 -3.43298 3.43298 0.88 0.000479176 0.000436226 0.0293261 0.0268039 28 1956 23 6.65987e+06 202848 500653. 1732.36 0.92 0.0925266 0.0813549 21970 115934 -1 1674 23 1158 1842 135729 31491 2.79871 2.79871 -108.503 -2.79871 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0243302 0.0213915 109 86 0 0 89 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.06 vpr 64.82 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 33988 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66376 32 32 364 282 1 196 96 17 17 289 -1 unnamed_device 26.3 MiB 0.11 1126 15645 4217 9584 1844 64.8 MiB 0.14 0.00 4.2677 -137.429 -4.2677 4.2677 0.88 0.00051992 0.000463862 0.0400512 0.0364346 28 2607 21 6.65987e+06 405696 500653. 1732.36 1.00 0.108445 0.0958258 21970 115934 -1 2268 18 1229 1834 137234 31081 3.73357 3.73357 -136.434 -3.73357 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0229474 0.0204705 146 31 90 30 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.12 vpr 65.26 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 34256 -1 -1 36 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66828 31 32 443 336 1 220 99 17 17 289 -1 unnamed_device 27.1 MiB 0.15 1167 13551 3218 9177 1156 65.3 MiB 0.13 0.00 4.22766 -133.836 -4.22766 4.22766 0.87 0.000554449 0.000502252 0.0367963 0.0333767 32 2713 24 6.65987e+06 456408 554710. 1919.41 0.99 0.112951 0.0992153 22834 132086 -1 2354 20 1809 2707 183152 42780 3.47391 3.47391 -134.888 -3.47391 0 0 701300. 2426.64 0.29 0.07 0.12 -1 -1 0.29 0.0275697 0.0245218 171 50 87 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.66 vpr 65.16 MiB 0.02 7460 -1 -1 1 0.03 -1 -1 33960 -1 -1 33 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66720 30 32 373 297 1 186 95 17 17 289 -1 unnamed_device 26.6 MiB 0.12 1070 11111 2802 7426 883 65.2 MiB 0.10 0.00 3.62941 -110.797 -3.62941 3.62941 0.90 0.000521269 0.000471369 0.0295748 0.0269917 26 2917 46 6.65987e+06 418374 477104. 1650.88 1.58 0.124171 0.109125 21682 110474 -1 2268 20 1350 2350 175706 39238 3.03591 3.03591 -113.061 -3.03591 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0233806 0.0207405 134 50 58 30 58 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.26 vpr 64.75 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 33920 -1 -1 42 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 32 32 407 319 1 201 106 17 17 289 -1 unnamed_device 26.4 MiB 0.25 1074 12606 3053 8336 1217 64.7 MiB 0.12 0.00 4.0783 -140.694 -4.0783 4.0783 0.89 0.00056913 0.000517819 0.0313786 0.0285518 30 2464 23 6.65987e+06 532476 526063. 1820.29 1.04 0.106612 0.0938609 22546 126617 -1 2068 23 1438 2304 127961 30130 3.57037 3.57037 -135.677 -3.57037 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0279665 0.024707 157 61 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.24 vpr 65.03 MiB 0.02 7348 -1 -1 1 0.03 -1 -1 34124 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 32 32 405 318 1 200 102 17 17 289 -1 unnamed_device 26.8 MiB 0.25 985 6766 1235 5165 366 65.0 MiB 0.07 0.00 3.41884 -116.445 -3.41884 3.41884 0.89 0.00058348 0.00051771 0.0192749 0.0176027 28 2716 20 6.65987e+06 481764 500653. 1732.36 1.03 0.0925733 0.0811221 21970 115934 -1 2273 25 1643 2601 201975 45674 3.03105 3.03105 -121.513 -3.03105 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0301401 0.0266402 155 61 63 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.92 vpr 64.61 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 33948 -1 -1 16 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66164 29 32 287 238 1 134 77 17 17 289 -1 unnamed_device 26.1 MiB 0.14 502 12791 3342 7797 1652 64.6 MiB 0.08 0.00 3.7595 -104.343 -3.7595 3.7595 0.87 0.000418701 0.000379331 0.0353557 0.0322501 32 1548 18 6.65987e+06 202848 554710. 1919.41 0.91 0.0877933 0.0775079 22834 132086 -1 1380 20 1033 1432 118502 30030 2.93997 2.93997 -103.913 -2.93997 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0195138 0.0172563 93 28 58 29 29 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.23 vpr 64.93 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 34164 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66484 32 32 334 290 1 154 81 17 17 289 -1 unnamed_device 26.1 MiB 0.32 872 14431 4553 8297 1581 64.9 MiB 0.11 0.00 3.69338 -109.525 -3.69338 3.69338 0.89 0.000466859 0.000424262 0.0417834 0.0382021 32 1973 19 6.65987e+06 215526 554710. 1919.41 0.95 0.10132 0.0897006 22834 132086 -1 1854 20 1065 1531 133239 29874 2.84891 2.84891 -108.08 -2.84891 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0219085 0.0194427 111 79 0 0 82 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.30 vpr 64.88 MiB 0.02 7216 -1 -1 1 0.03 -1 -1 33944 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66440 31 32 365 281 1 196 100 17 17 289 -1 unnamed_device 26.5 MiB 0.14 973 15876 4279 9893 1704 64.9 MiB 0.15 0.00 4.55701 -136.44 -4.55701 4.55701 0.88 0.0005358 0.000484231 0.0384261 0.0350489 32 2717 32 6.65987e+06 469086 554710. 1919.41 1.14 0.115327 0.101665 22834 132086 -1 2119 22 1651 2817 240632 52983 4.03591 4.03591 -134.706 -4.03591 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0257638 0.0228611 150 29 93 31 31 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.64 vpr 64.52 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 33960 -1 -1 31 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66068 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 25.9 MiB 0.29 621 11063 2736 7707 620 64.5 MiB 0.09 0.00 3.58224 -95.8028 -3.58224 3.58224 0.90 0.000440358 0.00040166 0.0252749 0.0230014 26 2024 33 6.65987e+06 393018 477104. 1650.88 1.47 0.093494 0.0819749 21682 110474 -1 1674 18 1026 1648 126714 31105 2.84965 2.84965 -102.399 -2.84965 0 0 585099. 2024.56 0.24 0.05 0.11 -1 -1 0.24 0.0182458 0.0161422 108 48 29 29 52 26 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 6.11 vpr 65.03 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 33912 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 32 32 314 256 1 160 80 17 17 289 -1 unnamed_device 26.2 MiB 0.20 823 7992 1920 5681 391 65.0 MiB 0.08 0.00 3.5141 -118.56 -3.5141 3.5141 0.85 0.000458156 0.000418909 0.0238479 0.0218877 34 2038 19 6.65987e+06 202848 585099. 2024.56 3.09 0.142892 0.124124 23122 138558 -1 1693 20 1188 1991 143700 33185 2.69057 2.69057 -114.046 -2.69057 0 0 742403. 2568.87 0.30 0.06 0.13 -1 -1 0.30 0.0212169 0.0188942 119 31 64 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.22 vpr 65.26 MiB 0.02 7392 -1 -1 1 0.03 -1 -1 33676 -1 -1 36 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 31 32 387 307 1 189 99 17 17 289 -1 unnamed_device 26.7 MiB 0.24 1001 11955 3102 7859 994 65.3 MiB 0.11 0.00 3.4951 -117.77 -3.4951 3.4951 0.89 0.000542204 0.000495358 0.0316611 0.0288193 26 2363 24 6.65987e+06 456408 477104. 1650.88 1.02 0.104916 0.0923445 21682 110474 -1 1972 20 1501 2192 155454 35024 2.96717 2.96717 -116.356 -2.96717 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0252374 0.0224396 142 60 58 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.19 vpr 64.98 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 33688 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66544 31 32 308 262 1 148 79 17 17 289 -1 unnamed_device 26.2 MiB 0.32 876 12923 4161 7145 1617 65.0 MiB 0.10 0.00 3.11304 -101.32 -3.11304 3.11304 0.88 0.000445552 0.000405285 0.0367082 0.033566 32 1966 17 6.65987e+06 202848 554710. 1919.41 0.93 0.0909034 0.0805513 22834 132086 -1 1763 18 947 1577 128871 29335 2.82865 2.82865 -105.492 -2.82865 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0191822 0.0170602 105 49 31 31 53 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 5.21 vpr 64.89 MiB 0.02 7332 -1 -1 1 0.03 -1 -1 33684 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66448 32 32 383 307 1 184 96 17 17 289 -1 unnamed_device 26.2 MiB 0.23 929 17616 5738 7949 3929 64.9 MiB 0.11 0.00 3.3979 -111.1 -3.3979 3.3979 0.87 0.000487398 0.000440421 0.0428669 0.0388773 34 2394 47 6.65987e+06 405696 585099. 2024.56 2.02 0.156276 0.136924 23122 138558 -1 1902 21 1261 2178 173221 40874 2.77097 2.77097 -108.435 -2.77097 0 0 742403. 2568.87 0.31 0.07 0.13 -1 -1 0.31 0.0245836 0.0217876 136 56 52 26 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.68 vpr 65.01 MiB 0.02 7536 -1 -1 1 0.03 -1 -1 34100 -1 -1 36 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66568 31 32 422 339 1 195 99 17 17 289 -1 unnamed_device 26.7 MiB 0.73 965 17427 4981 9867 2579 65.0 MiB 0.15 0.00 3.7445 -120.758 -3.7445 3.7445 0.88 0.000556009 0.000503813 0.0462224 0.0420219 28 2286 21 6.65987e+06 456408 500653. 1732.36 0.98 0.117873 0.103975 21970 115934 -1 2030 20 1604 2453 162483 37951 2.86597 2.86597 -114.396 -2.86597 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0260179 0.0231191 148 88 31 31 92 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.10 vpr 64.71 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 34016 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66264 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 26.1 MiB 0.16 861 11652 3522 6006 2124 64.7 MiB 0.10 0.00 2.81844 -100.349 -2.81844 2.81844 0.88 0.000472275 0.000429846 0.0335612 0.0306844 32 2079 23 6.65987e+06 228204 554710. 1919.41 0.98 0.099114 0.0874367 22834 132086 -1 1682 21 1281 2024 144082 32797 2.54625 2.54625 -101.627 -2.54625 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0229319 0.0203406 115 54 32 32 60 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.47 vpr 65.09 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 33724 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66648 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 26.4 MiB 0.30 667 7380 1595 4913 872 65.1 MiB 0.06 0.00 3.38184 -112.707 -3.38184 3.38184 0.87 0.000476022 0.000433484 0.0218597 0.0199986 32 2345 42 6.65987e+06 228204 554710. 1919.41 1.29 0.100723 0.0879562 22834 132086 -1 1734 21 1338 2119 160376 40566 3.13031 3.13031 -121.901 -3.13031 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0225106 0.0199373 121 60 32 32 62 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.16 vpr 64.81 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 34376 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66364 32 32 407 319 1 198 100 17 17 289 -1 unnamed_device 26.5 MiB 0.14 1042 12164 2979 8000 1185 64.8 MiB 0.11 0.00 4.02524 -139.262 -4.02524 4.02524 0.89 0.000529013 0.000480814 0.03242 0.0294746 28 2653 23 6.65987e+06 456408 500653. 1732.36 1.05 0.106951 0.0941624 21970 115934 -1 2326 19 1747 2644 196290 44306 3.79251 3.79251 -139.52 -3.79251 0 0 612192. 2118.31 0.25 0.07 0.12 -1 -1 0.25 0.0249988 0.0221751 154 49 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.22 vpr 65.07 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 34108 -1 -1 32 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66628 29 32 367 293 1 183 93 17 17 289 -1 unnamed_device 26.2 MiB 0.24 968 17313 5602 9212 2499 65.1 MiB 0.14 0.00 3.57304 -105.57 -3.57304 3.57304 0.89 0.000522073 0.000477524 0.0459222 0.0419222 32 2179 18 6.65987e+06 405696 554710. 1919.41 0.95 0.110055 0.0975661 22834 132086 -1 1914 22 1155 1764 120739 28797 2.81671 2.81671 -102.996 -2.81671 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0255367 0.0226335 133 54 56 29 58 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.39 vpr 64.95 MiB 0.02 7240 -1 -1 1 0.03 -1 -1 34132 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66508 32 32 469 381 1 200 101 17 17 289 -1 unnamed_device 26.5 MiB 0.35 1004 11616 2968 7911 737 64.9 MiB 0.12 0.00 3.97241 -135.454 -3.97241 3.97241 0.88 0.00060957 0.000556209 0.0343117 0.0311435 32 2756 22 6.65987e+06 469086 554710. 1919.41 1.02 0.111815 0.0981185 22834 132086 -1 2253 23 2018 3108 233635 55239 3.53331 3.53331 -136.937 -3.53331 0 0 701300. 2426.64 0.28 0.08 0.13 -1 -1 0.28 0.0297886 0.0262524 156 117 0 0 128 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.76 vpr 64.36 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 33952 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65908 31 32 259 212 1 146 79 17 17 289 -1 unnamed_device 25.9 MiB 0.11 715 5825 1215 4401 209 64.4 MiB 0.05 0.00 2.9397 -97.4988 -2.9397 2.9397 0.86 0.000397299 0.000359682 0.0149849 0.0136903 30 1705 18 6.65987e+06 202848 526063. 1820.29 0.88 0.0627888 0.054975 22546 126617 -1 1464 20 790 1241 73899 17697 2.67551 2.67551 -102.459 -2.67551 0 0 666494. 2306.21 0.29 0.04 0.11 -1 -1 0.29 0.01798 0.0159218 105 -1 85 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.19 vpr 65.20 MiB 0.02 7408 -1 -1 1 0.03 -1 -1 34064 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 32 32 418 338 1 190 97 17 17 289 -1 unnamed_device 26.6 MiB 0.18 948 20077 6167 11074 2836 65.2 MiB 0.17 0.00 4.10497 -133.778 -4.10497 4.10497 0.88 0.000564107 0.00051387 0.0546856 0.0497235 32 2340 22 6.65987e+06 418374 554710. 1919.41 0.98 0.128905 0.114176 22834 132086 -1 2046 19 1554 2231 168485 38319 3.46417 3.46417 -126.787 -3.46417 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0258322 0.0229918 142 89 28 28 92 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 6.25 vpr 64.64 MiB 0.02 7268 -1 -1 1 0.03 -1 -1 33876 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66188 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 26.0 MiB 0.21 805 9196 3450 4876 870 64.6 MiB 0.08 0.00 3.54047 -120.422 -3.54047 3.54047 0.84 0.000501502 0.000457225 0.0297691 0.0272754 30 2070 21 6.65987e+06 202848 526063. 1820.29 3.24 0.183366 0.160277 22546 126617 -1 1714 18 1177 1730 137693 31307 2.74077 2.74077 -114.698 -2.74077 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0216193 0.0192711 115 93 0 0 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.29 vpr 64.92 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 33968 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66480 32 32 401 316 1 196 99 17 17 289 -1 unnamed_device 26.6 MiB 0.27 1002 18111 5520 9663 2928 64.9 MiB 0.15 0.00 3.45184 -118.995 -3.45184 3.45184 0.88 0.00055781 0.000508287 0.0475934 0.043435 32 2572 22 6.65987e+06 443730 554710. 1919.41 0.99 0.120064 0.106289 22834 132086 -1 2094 23 1557 2215 177177 40693 2.81651 2.81651 -115.248 -2.81651 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0278628 0.0245935 149 59 61 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 6.37 vpr 65.32 MiB 0.02 7420 -1 -1 1 0.04 -1 -1 34476 -1 -1 43 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66892 32 32 500 382 1 232 107 17 17 289 -1 unnamed_device 27.0 MiB 0.37 1201 15034 3694 9653 1687 65.3 MiB 0.14 0.00 4.6905 -158.567 -4.6905 4.6905 0.88 0.000630904 0.000572145 0.0409455 0.037272 26 3501 45 6.65987e+06 545154 477104. 1650.88 2.97 0.155913 0.137222 21682 110474 -1 2898 27 2771 4256 347098 74743 4.67831 4.67831 -171.071 -4.67831 0 0 585099. 2024.56 0.25 0.12 0.11 -1 -1 0.25 0.0371949 0.0327791 186 81 64 32 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.18 vpr 63.88 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 33548 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65412 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 25.3 MiB 0.21 532 10509 2640 7460 409 63.9 MiB 0.07 0.00 2.61752 -80.0454 -2.61752 2.61752 0.90 0.000372975 0.000340107 0.0257472 0.0234591 26 1551 21 6.65987e+06 190170 477104. 1650.88 1.14 0.0772449 0.0679482 21682 110474 -1 1190 20 763 1050 82475 20160 1.84185 1.84185 -76.8325 -1.84185 0 0 585099. 2024.56 0.25 0.04 0.11 -1 -1 0.25 0.016381 0.0144022 83 51 0 0 53 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.85 vpr 64.38 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 33968 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65924 30 32 296 244 1 137 78 17 17 289 -1 unnamed_device 25.8 MiB 0.10 758 10536 3415 5493 1628 64.4 MiB 0.08 0.00 3.52904 -110.224 -3.52904 3.52904 0.87 0.000447944 0.000404863 0.0281568 0.0256045 32 1744 20 6.65987e+06 202848 554710. 1919.41 0.91 0.0805729 0.070703 22834 132086 -1 1542 19 962 1393 111108 25419 2.75277 2.75277 -105.134 -2.75277 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.0184878 0.0163813 96 29 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.06 vpr 64.99 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 33448 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 26.4 MiB 0.11 856 9872 2316 7018 538 65.0 MiB 0.09 0.00 3.4859 -122.574 -3.4859 3.4859 0.88 0.000469673 0.000429067 0.0278593 0.0254925 32 2373 21 6.65987e+06 228204 554710. 1919.41 1.00 0.0881872 0.0778346 22834 132086 -1 2064 21 1593 2821 225167 51580 2.94077 2.94077 -120.048 -2.94077 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0219702 0.0194578 126 31 64 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.59 vpr 64.11 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 33804 -1 -1 34 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65648 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 25.6 MiB 0.06 696 13351 3608 8032 1711 64.1 MiB 0.09 0.00 3.32684 -88.9535 -3.32684 3.32684 0.84 0.00038623 0.000353682 0.0261772 0.0239268 26 1641 17 6.65987e+06 431052 477104. 1650.88 0.82 0.0719137 0.0634419 21682 110474 -1 1556 20 1028 1580 111486 25927 2.73151 2.73151 -90.8715 -2.73151 0 0 585099. 2024.56 0.24 0.05 0.10 -1 -1 0.24 0.0167614 0.0147693 103 19 50 25 25 25 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.41 vpr 65.32 MiB 0.02 7472 -1 -1 1 0.03 -1 -1 33952 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66888 32 32 432 346 1 193 84 17 17 289 -1 unnamed_device 26.7 MiB 0.27 877 14541 4608 7775 2158 65.3 MiB 0.14 0.00 4.02035 -125.217 -4.02035 4.02035 0.89 0.000591617 0.000533456 0.0498703 0.0454795 32 2783 25 6.65987e+06 253560 554710. 1919.41 1.08 0.130552 0.115359 22834 132086 -1 2179 22 1803 3238 235220 56628 3.66425 3.66425 -124.906 -3.66425 0 0 701300. 2426.64 0.29 0.09 0.13 -1 -1 0.29 0.0293083 0.0259893 147 84 32 32 94 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.28 vpr 64.92 MiB 0.02 7292 -1 -1 1 0.03 -1 -1 33924 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66476 31 32 421 339 1 193 100 17 17 289 -1 unnamed_device 26.6 MiB 0.21 938 18660 5414 10450 2796 64.9 MiB 0.16 0.00 3.4903 -116.326 -3.4903 3.4903 0.88 0.000574684 0.000525267 0.048975 0.0446382 32 2461 21 6.65987e+06 469086 554710. 1919.41 1.00 0.121517 0.107501 22834 132086 -1 2049 22 1978 3083 228662 51829 2.90817 2.90817 -112.877 -2.90817 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0281204 0.0249088 146 88 29 29 93 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 10.30 vpr 66.04 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 34312 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67620 32 32 438 350 1 187 89 17 17 289 -1 unnamed_device 27.4 MiB 0.97 758 13949 4789 6835 2325 66.0 MiB 0.10 0.00 3.74419 -135.496 -3.74419 3.74419 0.91 0.000584541 0.000534914 0.0445963 0.0406494 58 1960 26 6.95648e+06 361892 997811. 3452.63 5.92 0.235194 0.204386 30370 251734 -1 1690 21 1723 2709 199283 47430 4.12556 4.12556 -141.742 -4.12556 0 0 1.25153e+06 4330.55 0.47 0.07 0.26 -1 -1 0.47 0.0269961 0.0239628 84 80 32 32 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 21.12 vpr 65.87 MiB 0.02 7440 -1 -1 1 0.03 -1 -1 33968 -1 -1 14 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67448 30 32 409 330 1 179 76 17 17 289 -1 unnamed_device 27.2 MiB 2.14 807 12716 4975 6082 1659 65.9 MiB 0.10 0.00 3.9478 -130.518 -3.9478 3.9478 0.92 0.000559529 0.000508702 0.046635 0.0424514 48 2407 29 6.95648e+06 202660 865456. 2994.66 15.73 0.348173 0.304141 28354 207349 -1 1927 25 1932 2902 324926 79990 3.92522 3.92522 -137.188 -3.92522 0 0 1.05005e+06 3633.38 0.38 0.10 0.19 -1 -1 0.38 0.0286205 0.0251841 76 78 30 30 89 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 8.19 vpr 65.82 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 34052 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67400 32 32 387 309 1 179 83 17 17 289 -1 unnamed_device 27.2 MiB 0.78 1022 7103 1835 4569 699 65.8 MiB 0.06 0.00 3.60914 -132.635 -3.60914 3.60914 0.90 0.000518919 0.000473106 0.0233492 0.021314 44 2666 29 6.95648e+06 275038 787024. 2723.27 4.26 0.201086 0.173779 27778 195446 -1 2250 23 1533 2295 200856 39573 3.61236 3.61236 -138.488 -3.61236 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.026381 0.0232987 77 50 54 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 8.64 vpr 65.63 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 33720 -1 -1 16 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67208 29 32 343 267 1 176 77 17 17 289 -1 unnamed_device 27.3 MiB 0.42 752 10672 3799 5216 1657 65.6 MiB 0.08 0.00 4.001 -128.21 -4.001 4.001 0.89 0.000477968 0.0004357 0.0346497 0.0316989 44 2696 27 6.95648e+06 231611 787024. 2723.27 5.04 0.221224 0.192227 27778 195446 -1 1855 24 1855 2771 237865 52045 3.87386 3.87386 -139.274 -3.87386 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0271355 0.0240344 75 25 87 29 29 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 21.46 vpr 65.56 MiB 0.02 7216 -1 -1 1 0.03 -1 -1 33768 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67132 32 32 376 288 1 187 77 17 17 289 -1 unnamed_device 27.1 MiB 0.61 716 9857 3295 4764 1798 65.6 MiB 0.08 0.00 3.66789 -133.791 -3.66789 3.66789 0.89 0.000544497 0.000495476 0.0354193 0.0322851 56 2163 40 6.95648e+06 188184 973134. 3367.25 17.57 0.295717 0.256969 29794 239141 -1 1657 23 2013 3439 281000 66532 3.88776 3.88776 -137.518 -3.88776 0 0 1.19926e+06 4149.71 0.44 0.09 0.25 -1 -1 0.44 0.0278353 0.0247025 78 31 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 9.03 vpr 65.75 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 33872 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67332 32 32 402 316 1 191 93 17 17 289 -1 unnamed_device 27.0 MiB 0.38 727 15003 5272 7155 2576 65.8 MiB 0.09 0.00 3.0985 -114.166 -3.0985 3.0985 0.89 0.000509985 0.000458609 0.0399456 0.0361337 50 2136 19 6.95648e+06 419795 902133. 3121.57 5.46 0.247252 0.213744 28642 213929 -1 1754 22 1586 2186 206551 45703 3.30627 3.30627 -120.736 -3.30627 0 0 1.08113e+06 3740.92 0.41 0.08 0.19 -1 -1 0.41 0.0266962 0.0235986 89 61 63 32 63 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 9.55 vpr 65.00 MiB 0.02 7156 -1 -1 1 0.03 -1 -1 33892 -1 -1 14 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66560 27 32 269 226 1 129 73 17 17 289 -1 unnamed_device 26.6 MiB 4.09 451 8433 2993 4087 1353 65.0 MiB 0.06 0.00 3.26916 -93.4177 -3.26916 3.26916 0.86 0.000411466 0.00037661 0.0241101 0.022092 40 1397 46 6.95648e+06 202660 706193. 2443.58 2.57 0.131066 0.114414 26914 176310 -1 1023 20 874 1371 101922 24751 2.85837 2.85837 -94.676 -2.85837 0 0 926341. 3205.33 0.34 0.05 0.16 -1 -1 0.34 0.0183523 0.0162807 54 26 54 27 27 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 6.06 vpr 65.24 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 33948 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 26.9 MiB 0.59 722 11088 4563 6076 449 65.2 MiB 0.08 0.00 3.0394 -105.493 -3.0394 3.0394 0.90 0.000464625 0.000424445 0.0330046 0.030192 46 2382 26 6.95648e+06 246087 828058. 2865.25 2.33 0.13135 0.114916 28066 200906 -1 1894 23 1388 1873 161200 37361 2.94563 2.94563 -111.672 -2.94563 0 0 1.01997e+06 3529.29 0.38 0.07 0.20 -1 -1 0.38 0.0249209 0.0220339 77 -1 115 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 6.86 vpr 65.50 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 33732 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67072 31 32 338 292 1 143 74 17 17 289 -1 unnamed_device 26.8 MiB 1.65 523 9994 2759 5612 1623 65.5 MiB 0.07 0.00 3.10275 -98.727 -3.10275 3.10275 0.87 0.000386454 0.000353364 0.0298542 0.0272654 44 1758 37 6.95648e+06 159232 787024. 2723.27 2.16 0.120912 0.105389 27778 195446 -1 1221 28 1030 1579 151807 48946 2.99482 2.99482 -105.632 -2.99482 0 0 997811. 3452.63 0.39 0.07 0.19 -1 -1 0.39 0.0260563 0.0228578 57 81 0 0 84 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 6.95 vpr 65.43 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33932 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67004 32 32 314 256 1 156 74 17 17 289 -1 unnamed_device 27.0 MiB 0.85 638 10614 4216 4843 1555 65.4 MiB 0.08 0.00 2.95005 -114.898 -2.95005 2.95005 0.92 0.000456733 0.000407518 0.0333673 0.0304048 38 2080 35 6.95648e+06 144757 678818. 2348.85 2.99 0.158507 0.139408 26626 170182 -1 1750 21 1506 2168 226359 47888 3.52702 3.52702 -124.658 -3.52702 0 0 902133. 3121.57 0.35 0.08 0.16 -1 -1 0.35 0.0223829 0.0198667 62 31 64 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 6.99 vpr 65.43 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33620 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66996 30 32 325 273 1 148 74 17 17 289 -1 unnamed_device 26.7 MiB 1.81 651 11079 4648 6085 346 65.4 MiB 0.08 0.00 3.1095 -111.937 -3.1095 3.1095 0.92 0.000457351 0.000415834 0.0358169 0.0326726 38 1744 25 6.95648e+06 173708 678818. 2348.85 2.10 0.138813 0.121457 26626 170182 -1 1430 20 1303 1735 125454 27661 2.98057 2.98057 -114.755 -2.98057 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0214555 0.018994 60 58 30 30 60 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 13.93 vpr 65.71 MiB 0.02 6992 -1 -1 1 0.03 -1 -1 33664 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67292 32 32 331 280 1 150 76 17 17 289 -1 unnamed_device 27.0 MiB 0.84 540 10476 4331 5741 404 65.7 MiB 0.07 0.00 2.9793 -106.716 -2.9793 2.9793 0.90 0.00046513 0.000417548 0.0335598 0.0306913 50 1707 47 6.95648e+06 173708 902133. 3121.57 9.92 0.276265 0.240381 28642 213929 -1 1579 19 1147 1619 156011 39166 2.88957 2.88957 -115.614 -2.88957 0 0 1.08113e+06 3740.92 0.41 0.06 0.21 -1 -1 0.41 0.0211934 0.0188764 60 57 25 25 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 7.40 vpr 65.77 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 34000 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67348 32 32 386 305 1 180 85 17 17 289 -1 unnamed_device 27.1 MiB 1.22 751 11803 3277 6504 2022 65.8 MiB 0.09 0.00 3.1024 -116.565 -3.1024 3.1024 0.90 0.000493826 0.000449303 0.035793 0.0325782 44 2514 37 6.95648e+06 303989 787024. 2723.27 3.05 0.152923 0.13386 27778 195446 -1 1869 20 1592 2389 201553 44970 3.67437 3.67437 -133.251 -3.67437 0 0 997811. 3452.63 0.39 0.07 0.18 -1 -1 0.39 0.0242422 0.0215167 79 55 64 32 57 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 18.52 vpr 65.95 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 33824 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67532 32 32 407 319 1 192 90 17 17 289 -1 unnamed_device 27.1 MiB 0.89 832 16371 6652 7990 1729 65.9 MiB 0.12 0.00 3.72719 -138.885 -3.72719 3.72719 0.91 0.000576585 0.000524705 0.0481929 0.0438677 40 2769 48 6.95648e+06 376368 706193. 2443.58 14.43 0.324626 0.281092 26914 176310 -1 2281 20 2007 2799 309109 71324 4.39516 4.39516 -161.353 -4.39516 0 0 926341. 3205.33 0.35 0.09 0.17 -1 -1 0.35 0.0258148 0.0229275 87 60 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 9.19 vpr 65.12 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 34028 -1 -1 13 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 29 32 272 228 1 141 74 17 17 289 -1 unnamed_device 26.7 MiB 1.22 465 11234 4544 5569 1121 65.1 MiB 0.07 0.00 3.14676 -95.8879 -3.14676 3.14676 0.90 0.000411217 0.00037327 0.0317537 0.0290405 46 1613 28 6.95648e+06 188184 828058. 2865.25 4.86 0.180072 0.155365 28066 200906 -1 1222 27 1160 1713 134878 32035 3.03062 3.03062 -101.451 -3.03062 0 0 1.01997e+06 3529.29 0.37 0.06 0.20 -1 -1 0.37 0.0233562 0.0205224 58 21 58 29 24 24 -fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 7.27 vpr 65.74 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 33844 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67320 32 32 401 315 1 185 77 17 17 289 -1 unnamed_device 27.2 MiB 1.72 807 11813 5009 6533 271 65.7 MiB 0.10 0.00 3.1505 -120.688 -3.1505 3.1505 0.89 0.000548574 0.000499238 0.0433984 0.0396765 46 2437 23 6.95648e+06 188184 828058. 2865.25 2.36 0.163744 0.14349 28066 200906 -1 1906 25 2005 3150 253327 54546 3.15412 3.15412 -125.802 -3.15412 0 0 1.01997e+06 3529.29 0.38 0.09 0.19 -1 -1 0.38 0.0298045 0.0263129 77 60 64 32 62 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 7.17 vpr 65.91 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 33904 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67496 32 32 383 303 1 179 84 17 17 289 -1 unnamed_device 27.2 MiB 1.38 707 11064 3419 5711 1934 65.9 MiB 0.08 0.00 3.0804 -113.837 -3.0804 3.0804 0.92 0.000560872 0.000507975 0.0360678 0.0328785 46 2393 47 6.95648e+06 289514 828058. 2865.25 2.62 0.169464 0.148198 28066 200906 -1 1693 20 1401 1858 160432 36645 3.58837 3.58837 -131.08 -3.58837 0 0 1.01997e+06 3529.29 0.37 0.06 0.18 -1 -1 0.37 0.0240038 0.0212719 78 54 64 32 56 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 8.82 vpr 65.77 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 33400 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67352 32 32 339 284 1 156 84 17 17 289 -1 unnamed_device 27.0 MiB 0.72 574 10698 2981 5511 2206 65.8 MiB 0.06 0.00 2.43656 -93.1005 -2.43656 2.43656 0.84 0.000491165 0.000445172 0.0283118 0.0258348 48 1509 24 6.95648e+06 289514 865456. 2994.66 5.07 0.217842 0.187044 28354 207349 -1 1322 21 1199 1662 152817 37624 2.58543 2.58543 -100.095 -2.58543 0 0 1.05005e+06 3633.38 0.41 0.06 0.19 -1 -1 0.41 0.0228825 0.0202074 67 62 29 29 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 5.26 vpr 64.55 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 33612 -1 -1 10 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66096 30 32 226 208 1 118 72 17 17 289 -1 unnamed_device 26.2 MiB 0.39 450 11098 4789 5936 373 64.5 MiB 0.06 0.00 2.21746 -80.6728 -2.21746 2.21746 0.90 0.000365294 0.000332694 0.0272708 0.024913 36 1377 32 6.95648e+06 144757 648988. 2245.63 1.90 0.110662 0.096407 26050 158493 -1 1138 20 738 953 94219 20604 2.10138 2.10138 -84.8654 -2.10138 0 0 828058. 2865.25 0.32 0.05 0.15 -1 -1 0.32 0.0171236 0.0146784 45 29 24 24 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 7.79 vpr 65.43 MiB 0.02 7276 -1 -1 1 0.03 -1 -1 34208 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66996 31 32 335 280 1 152 74 17 17 289 -1 unnamed_device 26.6 MiB 1.22 525 9374 3845 5090 439 65.4 MiB 0.07 0.00 3.8254 -127.041 -3.8254 3.8254 0.90 0.000474589 0.000432731 0.0311776 0.0283978 46 1860 48 6.95648e+06 159232 828058. 2865.25 3.45 0.168862 0.148138 28066 200906 -1 1286 26 1109 1501 112673 28049 3.60442 3.60442 -125.134 -3.60442 0 0 1.01997e+06 3529.29 0.39 0.06 0.19 -1 -1 0.39 0.0263017 0.0231675 61 55 31 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 7.28 vpr 65.98 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 33728 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67564 32 32 366 283 1 184 85 17 17 289 -1 unnamed_device 27.3 MiB 0.46 664 13663 4054 7770 1839 66.0 MiB 0.10 0.00 3.70954 -128.174 -3.70954 3.70954 0.89 0.000509588 0.00046439 0.0411696 0.037572 46 2326 31 6.95648e+06 303989 828058. 2865.25 3.64 0.16639 0.145478 28066 200906 -1 1499 21 1684 2238 155834 36240 4.00842 4.00842 -137.451 -4.00842 0 0 1.01997e+06 3529.29 0.38 0.07 0.19 -1 -1 0.38 0.0250721 0.0222986 81 31 91 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 9.49 vpr 66.22 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 34216 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67808 32 32 460 375 1 188 91 17 17 289 -1 unnamed_device 27.5 MiB 1.10 791 14779 5223 7361 2195 66.2 MiB 0.11 0.00 3.66119 -126.81 -3.66119 3.66119 0.88 0.00052411 0.000474755 0.043879 0.0397075 48 2442 23 6.95648e+06 390843 865456. 2994.66 5.18 0.232958 0.20229 28354 207349 -1 1936 24 1566 2374 223232 50475 4.21506 4.21506 -137.225 -4.21506 0 0 1.05005e+06 3633.38 0.41 0.09 0.19 -1 -1 0.41 0.0307956 0.0272374 85 108 0 0 125 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 6.13 vpr 64.66 MiB 0.02 6852 -1 -1 1 0.03 -1 -1 33968 -1 -1 13 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66216 26 32 198 186 1 108 71 17 17 289 -1 unnamed_device 26.4 MiB 1.07 348 7809 2770 3912 1127 64.7 MiB 0.04 0.00 2.19726 -66.8557 -2.19726 2.19726 0.90 0.000305175 0.000278749 0.0180493 0.0165368 46 937 48 6.95648e+06 188184 828058. 2865.25 2.07 0.0972481 0.0841855 28066 200906 -1 700 16 585 711 35618 10755 2.09953 2.09953 -64.2894 -2.09953 0 0 1.01997e+06 3529.29 0.38 0.03 0.20 -1 -1 0.38 0.0123581 0.010992 44 21 26 26 22 22 -fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 7.46 vpr 65.54 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 33636 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67112 32 32 333 251 1 180 76 17 17 289 -1 unnamed_device 27.2 MiB 0.96 737 10316 4241 5568 507 65.5 MiB 0.08 0.00 4.02534 -135.509 -4.02534 4.02534 0.91 0.000501366 0.00044425 0.0345184 0.0315378 48 2419 30 6.95648e+06 173708 865456. 2994.66 2.97 0.151051 0.133163 28354 207349 -1 1970 49 3641 5913 1247564 597467 4.02741 4.02741 -146.507 -4.02741 0 0 1.05005e+06 3633.38 0.42 0.38 0.20 -1 -1 0.42 0.049863 0.0438618 74 -1 122 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 5.02 vpr 64.87 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 34008 -1 -1 8 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66428 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 26.6 MiB 0.33 731 9906 3689 5081 1136 64.9 MiB 0.06 0.00 2.15326 -87.6492 -2.15326 2.15326 0.91 0.000329727 0.000300149 0.0239509 0.0218814 34 1791 46 6.95648e+06 115805 618332. 2139.56 1.75 0.099981 0.0872108 25762 151098 -1 1578 15 672 845 101336 20530 2.29898 2.29898 -94.9582 -2.29898 0 0 787024. 2723.27 0.31 0.04 0.15 -1 -1 0.31 0.0130759 0.0117239 44 -1 53 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 18.56 vpr 65.49 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 34120 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67060 32 32 376 288 1 186 90 17 17 289 -1 unnamed_device 27.0 MiB 0.55 827 16371 5667 8716 1988 65.5 MiB 0.12 0.00 3.67409 -135.23 -3.67409 3.67409 0.91 0.000521718 0.00047175 0.0459531 0.0417053 40 2687 28 6.95648e+06 376368 706193. 2443.58 14.75 0.32019 0.280959 26914 176310 -1 2306 28 2333 3677 611276 186684 4.54726 4.54726 -161.071 -4.54726 0 0 926341. 3205.33 0.34 0.17 0.16 -1 -1 0.34 0.0340929 0.0301942 85 21 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 15.26 vpr 65.89 MiB 0.02 7272 -1 -1 1 0.03 -1 -1 34124 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67468 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 27.3 MiB 0.29 985 13754 4254 7657 1843 65.9 MiB 0.10 0.00 3.0955 -119.852 -3.0955 3.0955 0.90 0.000509548 0.000463498 0.0362031 0.033036 36 2880 44 6.95648e+06 405319 648988. 2245.63 11.86 0.254116 0.220685 26050 158493 -1 2276 19 1555 2177 205823 40914 3.09187 3.09187 -128.104 -3.09187 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0224759 0.0200037 87 -1 124 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 8.93 vpr 66.02 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33956 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67604 32 32 407 319 1 189 92 17 17 289 -1 unnamed_device 27.2 MiB 0.39 789 18308 6099 10070 2139 66.0 MiB 0.14 0.00 3.69663 -134.61 -3.69663 3.69663 0.90 0.000583106 0.000531613 0.0531056 0.0482124 46 2780 28 6.95648e+06 405319 828058. 2865.25 5.26 0.24746 0.21522 28066 200906 -1 2019 22 1957 3119 228267 50402 4.02846 4.02846 -146.936 -4.02846 0 0 1.01997e+06 3529.29 0.38 0.08 0.20 -1 -1 0.38 0.027531 0.0244188 87 54 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 7.39 vpr 65.34 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 33984 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66908 32 32 294 246 1 145 74 17 17 289 -1 unnamed_device 26.9 MiB 0.95 541 9374 3087 4731 1556 65.3 MiB 0.07 0.00 2.8982 -102.358 -2.8982 2.8982 0.89 0.000424891 0.000387469 0.028255 0.0258197 38 2009 38 6.95648e+06 144757 678818. 2348.85 3.42 0.136821 0.119092 26626 170182 -1 1506 23 1166 1770 157111 34888 3.38472 3.38472 -117.477 -3.38472 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0221318 0.0195456 57 31 54 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 5.71 vpr 65.20 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 33824 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66764 30 32 296 244 1 148 74 17 17 289 -1 unnamed_device 26.7 MiB 0.62 571 8444 3466 4635 343 65.2 MiB 0.06 0.00 3.1175 -112.058 -3.1175 3.1175 0.91 0.000432041 0.000394621 0.0257814 0.0236112 40 1947 30 6.95648e+06 173708 706193. 2443.58 2.03 0.11968 0.104135 26914 176310 -1 1462 22 1368 1858 147173 34387 3.36447 3.36447 -118.852 -3.36447 0 0 926341. 3205.33 0.35 0.06 0.17 -1 -1 0.35 0.0213903 0.0189009 60 29 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 6.29 vpr 65.18 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 33900 -1 -1 13 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 28 32 278 232 1 144 73 17 17 289 -1 unnamed_device 26.7 MiB 0.67 505 10257 3681 4972 1604 65.2 MiB 0.07 0.00 3.0435 -97.9378 -3.0435 3.0435 0.91 0.000419674 0.000384423 0.0306916 0.0280794 44 1727 27 6.95648e+06 188184 787024. 2723.27 2.50 0.131847 0.115717 27778 195446 -1 1150 19 1026 1535 102002 25239 3.07097 3.07097 -99.8006 -3.07097 0 0 997811. 3452.63 0.38 0.05 0.19 -1 -1 0.38 0.0184678 0.0164154 61 27 56 28 28 28 -fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 5.97 vpr 65.35 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33884 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66920 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 26.9 MiB 0.22 703 9374 3895 5319 160 65.4 MiB 0.07 0.00 2.93285 -116.414 -2.93285 2.93285 0.92 0.000428766 0.000388528 0.0287803 0.0263198 44 2101 25 6.95648e+06 144757 787024. 2723.27 2.58 0.138959 0.122236 27778 195446 -1 1725 23 1661 2370 207803 42982 3.06662 3.06662 -125.546 -3.06662 0 0 997811. 3452.63 0.40 0.08 0.19 -1 -1 0.40 0.023199 0.0205384 64 -1 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 15.11 vpr 65.38 MiB 0.02 6920 -1 -1 1 0.03 -1 -1 34028 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66944 31 32 303 249 1 156 84 17 17 289 -1 unnamed_device 26.8 MiB 0.24 623 13443 5605 7395 443 65.4 MiB 0.08 0.00 3.0955 -111.973 -3.0955 3.0955 0.90 0.00040441 0.000368209 0.032688 0.0298679 44 2077 38 6.95648e+06 303989 787024. 2723.27 11.78 0.246961 0.213535 27778 195446 -1 1485 21 1308 2020 167131 38664 3.03252 3.03252 -115.524 -3.03252 0 0 997811. 3452.63 0.36 0.06 0.17 -1 -1 0.36 0.020622 0.018166 68 26 61 31 31 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 6.35 vpr 65.55 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 33928 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67128 29 32 312 264 1 148 79 17 17 289 -1 unnamed_device 27.0 MiB 0.83 508 10219 3550 4648 2021 65.6 MiB 0.07 0.00 2.43392 -85.0275 -2.43392 2.43392 0.91 0.000438909 0.000399514 0.0288048 0.0263274 46 1411 35 6.95648e+06 260562 828058. 2865.25 2.39 0.134937 0.117545 28066 200906 -1 1185 22 1238 1734 129751 34007 2.31283 2.31283 -88.1752 -2.31283 0 0 1.01997e+06 3529.29 0.38 0.06 0.20 -1 -1 0.38 0.0216472 0.0191201 64 55 29 29 57 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 9.48 vpr 66.20 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 34040 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67784 32 32 423 310 1 219 92 17 17 289 -1 unnamed_device 27.6 MiB 0.73 944 14375 4687 7097 2591 66.2 MiB 0.11 0.00 3.95585 -140.771 -3.95585 3.95585 0.92 0.000613013 0.000557473 0.0440354 0.0401368 54 2725 29 6.95648e+06 405319 949917. 3286.91 5.39 0.27176 0.237311 29506 232905 -1 2082 21 1977 3135 234047 51401 4.37502 4.37502 -152.214 -4.37502 0 0 1.17392e+06 4061.99 0.45 0.09 0.23 -1 -1 0.45 0.0293175 0.0260599 100 26 128 32 27 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 7.17 vpr 65.91 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 34048 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67492 32 32 403 317 1 190 91 17 17 289 -1 unnamed_device 27.2 MiB 0.89 786 12739 3070 7853 1816 65.9 MiB 0.10 0.00 3.0804 -115.407 -3.0804 3.0804 0.90 0.000569016 0.000519496 0.0372647 0.0340382 40 2423 28 6.95648e+06 390843 706193. 2443.58 3.08 0.16557 0.144726 26914 176310 -1 2064 29 2165 3168 424279 118679 3.42677 3.42677 -132.58 -3.42677 0 0 926341. 3205.33 0.35 0.13 0.17 -1 -1 0.35 0.0330829 0.0291177 87 62 62 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 8.83 vpr 65.86 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 34044 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67444 31 32 353 302 1 150 78 17 17 289 -1 unnamed_device 27.1 MiB 1.06 525 12362 5188 6715 459 65.9 MiB 0.09 0.00 3.26916 -109.722 -3.26916 3.26916 0.92 0.000487592 0.000443293 0.0392192 0.0358099 50 1653 27 6.95648e+06 217135 902133. 3121.57 4.52 0.197495 0.171185 28642 213929 -1 1365 15 974 1392 100457 25026 3.30467 3.30467 -110.851 -3.30467 0 0 1.08113e+06 3740.92 0.45 0.05 0.21 -1 -1 0.45 0.019249 0.0172344 62 77 0 0 89 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 6.60 vpr 65.51 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 34024 -1 -1 14 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67080 31 32 391 309 1 186 77 17 17 289 -1 unnamed_device 26.8 MiB 0.63 965 12791 5492 6957 342 65.5 MiB 0.10 0.00 3.0625 -116.847 -3.0625 3.0625 0.92 0.000544348 0.000495265 0.04559 0.0415886 38 2599 23 6.95648e+06 202660 678818. 2348.85 2.79 0.178933 0.157708 26626 170182 -1 2274 19 1642 2425 231061 46047 3.19222 3.19222 -127.52 -3.19222 0 0 902133. 3121.57 0.35 0.08 0.16 -1 -1 0.35 0.025061 0.0223125 79 59 60 30 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 8.60 vpr 66.01 MiB 0.02 7440 -1 -1 1 0.03 -1 -1 34120 -1 -1 14 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67592 31 32 455 371 1 185 77 17 17 289 -1 unnamed_device 27.3 MiB 1.95 778 10998 4559 6059 380 66.0 MiB 0.09 0.00 4.63397 -149.774 -4.63397 4.63397 0.90 0.000610539 0.000551757 0.0413361 0.0375655 44 2926 36 6.95648e+06 202660 787024. 2723.27 3.47 0.192746 0.168618 27778 195446 -1 2025 23 1537 2329 224354 48388 4.76041 4.76041 -155.232 -4.76041 0 0 997811. 3452.63 0.38 0.09 0.19 -1 -1 0.38 0.0302801 0.026833 78 111 0 0 124 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 10.08 vpr 65.93 MiB 0.02 7292 -1 -1 1 0.03 -1 -1 33860 -1 -1 13 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67508 31 32 413 333 1 182 76 17 17 289 -1 unnamed_device 27.1 MiB 1.64 775 10476 3672 5136 1668 65.9 MiB 0.09 0.00 4.49354 -135.009 -4.49354 4.49354 0.91 0.000545283 0.000496945 0.0387172 0.0353793 44 2669 43 6.95648e+06 188184 787024. 2723.27 5.24 0.267238 0.231643 27778 195446 -1 1914 26 1364 2112 181850 37955 4.40171 4.40171 -141.943 -4.40171 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0310729 0.0274036 76 86 31 31 89 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 15.81 vpr 65.83 MiB 0.02 7324 -1 -1 1 0.03 -1 -1 33664 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67408 31 32 391 309 1 185 88 17 17 289 -1 unnamed_device 27.2 MiB 0.79 864 15493 5631 7761 2101 65.8 MiB 0.11 0.00 3.1285 -114.829 -3.1285 3.1285 0.91 0.000534837 0.000486926 0.0461548 0.0421505 38 2848 26 6.95648e+06 361892 678818. 2348.85 11.76 0.293273 0.257529 26626 170182 -1 2191 21 1803 2729 221783 46022 3.43477 3.43477 -128.897 -3.43477 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.0266246 0.0236271 85 58 60 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 6.28 vpr 66.11 MiB 0.02 7372 -1 -1 1 0.03 -1 -1 33964 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67696 32 32 407 319 1 190 90 17 17 289 -1 unnamed_device 27.3 MiB 0.52 956 10743 3793 5013 1937 66.1 MiB 0.09 0.00 3.77119 -139.239 -3.77119 3.77119 0.90 0.000543089 0.000494573 0.031759 0.0289594 44 2711 27 6.95648e+06 376368 787024. 2723.27 2.56 0.140296 0.122544 27778 195446 -1 2109 24 2195 3331 275496 54878 4.09626 4.09626 -152.561 -4.09626 0 0 997811. 3452.63 0.38 0.09 0.19 -1 -1 0.38 0.0286522 0.0252944 86 42 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 9.01 vpr 65.84 MiB 0.02 7484 -1 -1 1 0.04 -1 -1 33936 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67420 32 32 496 380 1 222 95 17 17 289 -1 unnamed_device 27.5 MiB 0.96 1078 14999 4071 8495 2433 65.8 MiB 0.12 0.00 3.84845 -142.865 -3.84845 3.84845 0.92 0.000665522 0.000605577 0.0482029 0.0437718 44 2899 21 6.95648e+06 448746 787024. 2723.27 4.72 0.283066 0.247148 27778 195446 -1 2379 24 2205 3293 259534 52402 4.12562 4.12562 -153.524 -4.12562 0 0 997811. 3452.63 0.40 0.10 0.18 -1 -1 0.40 0.0353271 0.031296 104 91 62 32 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 7.23 vpr 65.44 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 33736 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67012 31 32 305 250 1 152 74 17 17 289 -1 unnamed_device 26.9 MiB 0.62 721 10304 4339 5695 270 65.4 MiB 0.07 0.00 3.34916 -121.065 -3.34916 3.34916 0.91 0.00043704 0.000398558 0.0317128 0.0289574 36 2215 27 6.95648e+06 159232 648988. 2245.63 3.58 0.13579 0.118727 26050 158493 -1 1732 21 1370 1948 180008 36653 3.49897 3.49897 -130.737 -3.49897 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0212741 0.0188696 62 24 62 31 31 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 9.13 vpr 66.04 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 33876 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67624 31 32 395 311 1 188 90 17 17 289 -1 unnamed_device 27.3 MiB 0.60 784 13959 3819 8017 2123 66.0 MiB 0.11 0.00 4.0519 -136.516 -4.0519 4.0519 0.92 0.000533282 0.000484586 0.0401118 0.0365181 48 2294 26 6.95648e+06 390843 865456. 2994.66 5.26 0.227918 0.198122 28354 207349 -1 1943 20 1718 2664 236707 49909 4.16366 4.16366 -148.517 -4.16366 0 0 1.05005e+06 3633.38 0.41 0.08 0.19 -1 -1 0.41 0.0253026 0.0224585 86 59 62 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 7.29 vpr 65.95 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 33728 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67536 32 32 397 313 1 188 90 17 17 289 -1 unnamed_device 27.2 MiB 0.76 863 13557 4887 6407 2263 66.0 MiB 0.09 0.00 3.29596 -116.543 -3.29596 3.29596 0.90 0.000580312 0.000511391 0.0381388 0.0346185 50 2481 26 6.95648e+06 376368 902133. 3121.57 3.18 0.167096 0.146357 28642 213929 -1 1941 42 2097 3578 542152 243437 3.19817 3.19817 -117.898 -3.19817 0 0 1.08113e+06 3740.92 0.42 0.20 0.20 -1 -1 0.42 0.0440818 0.0383743 85 54 62 32 62 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 8.87 vpr 65.66 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 33540 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67236 32 32 345 257 1 187 77 17 17 289 -1 unnamed_device 27.0 MiB 0.89 760 7738 3134 4374 230 65.7 MiB 0.07 0.00 3.65689 -135.736 -3.65689 3.65689 0.92 0.000511726 0.000465628 0.0270091 0.0247276 44 3266 47 6.95648e+06 188184 787024. 2723.27 4.71 0.170661 0.150678 27778 195446 -1 2257 23 1979 3279 378806 78188 4.10246 4.10246 -155.26 -4.10246 0 0 997811. 3452.63 0.39 0.11 0.19 -1 -1 0.39 0.027532 0.0245085 78 -1 128 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 7.52 vpr 65.90 MiB 0.03 7224 -1 -1 1 0.03 -1 -1 33892 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67484 32 32 424 343 1 182 87 17 17 289 -1 unnamed_device 27.2 MiB 1.52 808 11991 3810 6067 2114 65.9 MiB 0.09 0.00 3.1768 -117.392 -3.1768 3.1768 0.91 0.000560271 0.000509384 0.0380928 0.0347721 46 2159 29 6.95648e+06 332941 828058. 2865.25 2.76 0.174343 0.152734 28066 200906 -1 1563 20 1446 2243 121831 31958 3.32357 3.32357 -121.589 -3.32357 0 0 1.01997e+06 3529.29 0.39 0.06 0.20 -1 -1 0.39 0.0258242 0.0229088 81 81 25 25 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 6.43 vpr 65.76 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 33840 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67336 32 32 395 311 1 186 92 17 17 289 -1 unnamed_device 27.3 MiB 0.81 845 12926 3665 7173 2088 65.8 MiB 0.10 0.00 3.1214 -116.244 -3.1214 3.1214 0.92 0.000517422 0.000464094 0.0365844 0.0332968 46 2291 24 6.95648e+06 405319 828058. 2865.25 2.37 0.16769 0.147224 28066 200906 -1 1858 23 1545 2365 175180 37261 3.21717 3.21717 -118.528 -3.21717 0 0 1.01997e+06 3529.29 0.40 0.07 0.19 -1 -1 0.40 0.0284109 0.0251579 85 58 64 32 60 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 8.80 vpr 65.91 MiB 0.02 7380 -1 -1 1 0.03 -1 -1 33848 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67488 32 32 405 318 1 192 92 17 17 289 -1 unnamed_device 27.1 MiB 0.50 803 14996 4547 7782 2667 65.9 MiB 0.11 0.00 3.09676 -115.471 -3.09676 3.09676 0.91 0.000525537 0.00047721 0.0427677 0.0388658 46 2386 25 6.95648e+06 405319 828058. 2865.25 5.07 0.226066 0.196622 28066 200906 -1 1704 20 1776 2669 180886 40942 3.11497 3.11497 -117.791 -3.11497 0 0 1.01997e+06 3529.29 0.37 0.07 0.20 -1 -1 0.37 0.0264881 0.0234861 88 61 63 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 6.81 vpr 65.78 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 34036 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67360 32 32 376 288 1 186 92 17 17 289 -1 unnamed_device 27.2 MiB 0.60 938 15617 5888 7604 2125 65.8 MiB 0.12 0.00 3.66789 -137.042 -3.66789 3.66789 0.89 0.000512825 0.000465045 0.0425614 0.0388075 44 2729 48 6.95648e+06 405319 787024. 2723.27 2.99 0.159347 0.139735 27778 195446 -1 2182 23 2013 3135 263852 51871 4.07726 4.07726 -148.498 -4.07726 0 0 997811. 3452.63 0.38 0.09 0.19 -1 -1 0.38 0.0272696 0.0241321 85 21 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 14.67 vpr 66.24 MiB 0.02 7360 -1 -1 1 0.03 -1 -1 34276 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67832 32 32 407 319 1 189 94 17 17 289 -1 unnamed_device 27.5 MiB 0.90 799 12448 3955 5788 2705 66.2 MiB 0.08 0.00 3.78219 -138.337 -3.78219 3.78219 0.91 0.000575782 0.000523467 0.0338859 0.0308759 44 2633 42 6.95648e+06 434271 787024. 2723.27 10.52 0.271779 0.23577 27778 195446 -1 1886 22 1913 2793 210024 51776 4.23256 4.23256 -151.401 -4.23256 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0280807 0.0249232 88 50 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 9.78 vpr 65.88 MiB 0.02 7572 -1 -1 1 0.03 -1 -1 34088 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67464 31 32 449 367 1 185 88 17 17 289 -1 unnamed_device 27.2 MiB 1.27 822 11983 4768 6508 707 65.9 MiB 0.10 0.00 4.19045 -134.89 -4.19045 4.19045 0.93 0.000602648 0.000541001 0.0397464 0.0362306 48 2637 22 6.95648e+06 361892 865456. 2994.66 5.21 0.242071 0.20971 28354 207349 -1 2137 24 1540 2402 225363 46826 4.04142 4.04142 -139.672 -4.04142 0 0 1.05005e+06 3633.38 0.39 0.08 0.20 -1 -1 0.39 0.0307982 0.0271415 84 110 0 0 122 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 7.42 vpr 66.19 MiB 0.02 7236 -1 -1 1 0.03 -1 -1 34104 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67776 32 32 432 346 1 187 77 17 17 289 -1 unnamed_device 27.4 MiB 1.07 840 10346 3694 5398 1254 66.2 MiB 0.09 0.00 3.7688 -130.649 -3.7688 3.7688 0.90 0.00048487 0.000441477 0.0399701 0.0362563 40 2535 24 6.95648e+06 188184 706193. 2443.58 3.18 0.176627 0.154558 26914 176310 -1 2242 23 1895 3260 303296 62171 4.06146 4.06146 -147.534 -4.06146 0 0 926341. 3205.33 0.35 0.10 0.17 -1 -1 0.35 0.0304679 0.0270867 78 86 32 32 94 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 9.38 vpr 65.16 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 34224 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 32 32 312 255 1 160 87 17 17 289 -1 unnamed_device 26.7 MiB 0.16 594 10647 4341 5910 396 65.2 MiB 0.07 0.00 3.12656 -113.614 -3.12656 3.12656 0.90 0.000403088 0.000367128 0.0266898 0.0242127 56 1741 22 6.95648e+06 332941 973134. 3367.25 6.01 0.199056 0.172763 29794 239141 -1 1341 20 1293 2020 155711 36747 3.07612 3.07612 -112.307 -3.07612 0 0 1.19926e+06 4149.71 0.46 0.06 0.23 -1 -1 0.46 0.0202348 0.0179507 71 20 63 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 9.61 vpr 65.77 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 33520 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67348 32 32 370 314 1 158 74 17 17 289 -1 unnamed_device 27.0 MiB 1.00 610 8444 3495 4676 273 65.8 MiB 0.06 0.00 3.0405 -112.422 -3.0405 3.0405 0.94 0.000517793 0.000471539 0.0301635 0.027555 52 1849 26 6.95648e+06 144757 926341. 3205.33 5.35 0.199004 0.172338 29218 227130 -1 1370 23 1369 2031 153581 37136 3.03252 3.03252 -119.471 -3.03252 0 0 1.14541e+06 3963.36 0.44 0.07 0.22 -1 -1 0.44 0.0254903 0.0225269 63 91 0 0 94 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 9.66 vpr 65.86 MiB 0.02 7512 -1 -1 1 0.03 -1 -1 34196 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67444 32 32 469 351 1 223 94 17 17 289 -1 unnamed_device 27.5 MiB 0.55 1000 14152 3772 8188 2192 65.9 MiB 0.12 0.00 4.46224 -157.711 -4.46224 4.46224 0.89 0.000638678 0.000579193 0.0461698 0.0420225 54 3033 30 6.95648e+06 434271 949917. 3286.91 5.74 0.246065 0.21388 29506 232905 -1 2329 24 2607 4128 362524 74061 4.97191 4.97191 -169.58 -4.97191 0 0 1.17392e+06 4061.99 0.43 0.11 0.23 -1 -1 0.43 0.0343133 0.0304132 103 53 96 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 6.76 vpr 65.76 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 34084 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67340 32 32 368 284 1 186 88 17 17 289 -1 unnamed_device 27.1 MiB 0.87 717 11983 4638 6220 1125 65.8 MiB 0.08 0.00 3.1457 -117.079 -3.1457 3.1457 0.89 0.000516198 0.000469238 0.0346455 0.0316602 46 2078 38 6.95648e+06 347416 828058. 2865.25 2.73 0.165004 0.144081 28066 200906 -1 1635 20 1426 1856 150168 34567 3.22337 3.22337 -123.095 -3.22337 0 0 1.01997e+06 3529.29 0.38 0.06 0.20 -1 -1 0.38 0.0241405 0.0214218 83 31 92 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 7.09 vpr 65.13 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 33564 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 30 32 296 244 1 152 81 17 17 289 -1 unnamed_device 26.6 MiB 0.34 571 10581 4367 5776 438 65.1 MiB 0.07 0.00 3.0735 -108.432 -3.0735 3.0735 0.90 0.000456591 0.000423678 0.0280688 0.025651 38 2214 32 6.95648e+06 275038 678818. 2348.85 3.68 0.135906 0.118475 26626 170182 -1 1647 20 1291 1857 165363 36508 3.22627 3.22627 -117.748 -3.22627 0 0 902133. 3121.57 0.34 0.06 0.17 -1 -1 0.34 0.020706 0.0184091 65 29 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 8.55 vpr 66.14 MiB 0.02 7572 -1 -1 1 0.04 -1 -1 34584 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67724 32 32 531 413 1 225 95 17 17 289 -1 unnamed_device 27.7 MiB 1.71 1126 15215 3732 10105 1378 66.1 MiB 0.13 0.00 4.49524 -160.999 -4.49524 4.49524 0.93 0.000633096 0.000572456 0.0507071 0.0460644 64 2603 22 6.95648e+06 448746 1.08113e+06 3740.92 3.25 0.212316 0.187141 31522 276338 -1 2323 24 2383 3561 336579 68033 4.75731 4.75731 -169.715 -4.75731 0 0 1.36325e+06 4717.13 0.54 0.11 0.28 -1 -1 0.54 0.0371427 0.032978 103 109 32 32 128 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 9.30 vpr 65.71 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 33816 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67284 32 32 376 288 1 187 92 17 17 289 -1 unnamed_device 27.0 MiB 1.02 804 14375 4842 7223 2310 65.7 MiB 0.10 0.00 3.73321 -136.441 -3.73321 3.73321 0.90 0.000521656 0.000472843 0.0396019 0.0359481 40 2325 28 6.95648e+06 405319 706193. 2443.58 5.13 0.241091 0.210151 26914 176310 -1 2058 22 2085 2911 261368 53902 3.81376 3.81376 -147.514 -3.81376 0 0 926341. 3205.33 0.35 0.09 0.18 -1 -1 0.35 0.025699 0.0227558 86 31 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 5.92 vpr 65.39 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 33760 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66964 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 26.9 MiB 0.29 740 12763 4452 6451 1860 65.4 MiB 0.09 0.00 3.05815 -117.559 -3.05815 3.05815 0.87 0.000426925 0.000392453 0.0302885 0.0276811 44 2104 25 6.95648e+06 347416 787024. 2723.27 2.52 0.128204 0.112258 27778 195446 -1 1671 21 1472 2267 168285 34875 2.92922 2.92922 -117.305 -2.92922 0 0 997811. 3452.63 0.37 0.06 0.20 -1 -1 0.37 0.0208123 0.0184328 70 -1 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 8.33 vpr 65.81 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 34424 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67392 32 32 438 320 1 225 95 17 17 289 -1 unnamed_device 27.5 MiB 0.43 924 14567 5045 6877 2645 65.8 MiB 0.11 0.00 4.52824 -159.979 -4.52824 4.52824 0.88 0.000624456 0.000563258 0.0421571 0.0381541 54 3003 36 6.95648e+06 448746 949917. 3286.91 4.59 0.20322 0.178903 29506 232905 -1 2208 23 2579 4355 378821 79749 5.04871 5.04871 -171.079 -5.04871 0 0 1.17392e+06 4061.99 0.45 0.11 0.22 -1 -1 0.45 0.0312074 0.0277271 105 26 128 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 8.07 vpr 65.19 MiB 0.02 6888 -1 -1 1 0.03 -1 -1 33852 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66756 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 26.7 MiB 0.35 618 10614 4475 5915 224 65.2 MiB 0.07 0.00 2.92185 -113.699 -2.92185 2.92185 0.83 0.000434084 0.000396106 0.0297658 0.0271878 46 1828 25 6.95648e+06 144757 828058. 2865.25 4.72 0.180029 0.155477 28066 200906 -1 1458 24 1480 2065 162501 35824 3.30322 3.30322 -119.042 -3.30322 0 0 1.01997e+06 3529.29 0.38 0.06 0.20 -1 -1 0.38 0.0220206 0.019484 62 -1 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 9.19 vpr 65.41 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 33832 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66984 30 32 296 244 1 151 83 17 17 289 -1 unnamed_device 26.9 MiB 0.77 601 10163 2708 5873 1582 65.4 MiB 0.07 0.00 3.10776 -107.419 -3.10776 3.10776 0.92 0.00043964 0.000399533 0.0274357 0.0250394 52 1508 25 6.95648e+06 303989 926341. 3205.33 5.20 0.168908 0.146337 29218 227130 -1 1108 22 1138 1745 119544 29707 3.03987 3.03987 -107.252 -3.03987 0 0 1.14541e+06 3963.36 0.44 0.06 0.23 -1 -1 0.44 0.0215377 0.0190591 65 29 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 8.28 vpr 65.89 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34040 -1 -1 20 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67476 29 32 393 319 1 174 81 17 17 289 -1 unnamed_device 27.2 MiB 1.33 705 12856 4698 6070 2088 65.9 MiB 0.10 0.00 3.39446 -107.671 -3.39446 3.39446 0.91 0.000533072 0.000485492 0.0436384 0.0399188 48 2602 41 6.95648e+06 289514 865456. 2994.66 3.70 0.186486 0.163689 28354 207349 -1 1999 20 1647 2572 248506 54385 3.33447 3.33447 -120.651 -3.33447 0 0 1.05005e+06 3633.38 0.41 0.08 0.20 -1 -1 0.41 0.0257027 0.022882 77 81 29 29 85 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 8.35 vpr 65.75 MiB 0.04 7028 -1 -1 1 0.03 -1 -1 34180 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67324 32 32 407 319 1 186 77 17 17 289 -1 unnamed_device 27.1 MiB 0.88 807 13117 5264 6347 1506 65.7 MiB 0.11 0.00 3.65689 -136.729 -3.65689 3.65689 0.90 0.000564913 0.000515801 0.0486175 0.0443453 46 2061 24 6.95648e+06 188184 828058. 2865.25 4.24 0.226669 0.197322 28066 200906 -1 1777 22 2020 2624 211029 44669 3.92996 3.92996 -145.52 -3.92996 0 0 1.01997e+06 3529.29 0.38 0.08 0.20 -1 -1 0.38 0.0281616 0.0250326 78 53 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 9.83 vpr 66.12 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 34332 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67704 32 32 407 319 1 190 89 17 17 289 -1 unnamed_device 27.4 MiB 1.39 890 14345 5510 6931 1904 66.1 MiB 0.09 0.00 3.74419 -138.408 -3.74419 3.74419 0.87 0.000461734 0.000421606 0.038362 0.0350269 48 2618 24 6.95648e+06 361892 865456. 2994.66 5.21 0.214389 0.18585 28354 207349 -1 2269 24 2131 3426 411588 77965 4.22156 4.22156 -150.364 -4.22156 0 0 1.05005e+06 3633.38 0.42 0.12 0.20 -1 -1 0.42 0.030573 0.0271026 85 55 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 6.58 vpr 65.32 MiB 0.02 7220 -1 -1 1 0.03 -1 -1 34032 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66888 32 32 345 287 1 155 88 17 17 289 -1 unnamed_device 26.5 MiB 0.96 685 10813 4185 5763 865 65.3 MiB 0.07 0.00 3.05815 -117.015 -3.05815 3.05815 0.88 0.000443559 0.000401408 0.0284683 0.0258946 44 2023 47 6.95648e+06 347416 787024. 2723.27 2.56 0.155151 0.135086 27778 195446 -1 1664 21 1425 2142 188885 39124 3.17182 3.17182 -124.314 -3.17182 0 0 997811. 3452.63 0.38 0.07 0.17 -1 -1 0.38 0.0220236 0.0193976 69 55 32 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 8.79 vpr 65.57 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 33800 -1 -1 10 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67140 31 32 353 302 1 147 73 17 17 289 -1 unnamed_device 27.1 MiB 1.47 684 10105 3894 4557 1654 65.6 MiB 0.08 0.00 3.30215 -110.841 -3.30215 3.30215 0.89 0.000475512 0.000433956 0.0339065 0.0309594 36 2232 46 6.95648e+06 144757 648988. 2245.63 4.32 0.210904 0.182095 26050 158493 -1 1847 21 1111 1754 173271 36291 3.39567 3.39567 -126.435 -3.39567 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0228733 0.0201712 59 82 0 0 89 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 8.34 vpr 66.01 MiB 0.02 7268 -1 -1 1 0.03 -1 -1 34092 -1 -1 22 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67592 30 32 374 297 1 178 84 17 17 289 -1 unnamed_device 27.3 MiB 0.94 949 12711 4087 6844 1780 66.0 MiB 0.10 0.00 3.1285 -115.995 -3.1285 3.1285 0.91 0.000537114 0.000490432 0.0397916 0.0363629 44 2370 24 6.95648e+06 318465 787024. 2723.27 4.18 0.210051 0.182623 27778 195446 -1 1999 23 1494 2185 169757 35128 3.08567 3.08567 -121.174 -3.08567 0 0 997811. 3452.63 0.39 0.07 0.19 -1 -1 0.39 0.0269363 0.0237874 79 52 60 30 57 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 9.42 vpr 65.64 MiB 0.02 7332 -1 -1 1 0.03 -1 -1 33928 -1 -1 16 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67212 28 32 332 260 1 172 76 17 17 289 -1 unnamed_device 27.0 MiB 0.93 684 10156 4202 5354 600 65.6 MiB 0.08 0.00 4.24545 -126.653 -4.24545 4.24545 0.91 0.000470865 0.000427504 0.0331649 0.030288 38 2620 28 6.95648e+06 231611 678818. 2348.85 5.39 0.146578 0.128069 26626 170182 -1 1982 23 1760 2516 214792 46129 4.19156 4.19156 -140.406 -4.19156 0 0 902133. 3121.57 0.33 0.08 0.17 -1 -1 0.33 0.0246175 0.0217558 74 20 84 28 28 28 -fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 11.29 vpr 65.37 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 34032 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66936 30 32 325 273 1 151 74 17 17 289 -1 unnamed_device 26.9 MiB 0.75 607 9374 3879 5147 348 65.4 MiB 0.07 0.00 3.0545 -108.859 -3.0545 3.0545 0.85 0.00047173 0.000429385 0.0306456 0.0279424 38 1982 33 6.95648e+06 173708 678818. 2348.85 7.63 0.221017 0.191136 26626 170182 -1 1483 23 1345 1781 161503 35879 3.07917 3.07917 -115.28 -3.07917 0 0 902133. 3121.57 0.32 0.06 0.16 -1 -1 0.32 0.0235717 0.0207483 61 58 30 30 60 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 7.78 vpr 65.69 MiB 0.02 7320 -1 -1 1 0.03 -1 -1 33396 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67268 32 32 361 308 1 152 74 17 17 289 -1 unnamed_device 26.9 MiB 1.19 777 7669 3175 4304 190 65.7 MiB 0.06 0.00 3.0765 -113.072 -3.0765 3.0765 0.89 0.000505034 0.000459906 0.0261993 0.0239037 36 2390 29 6.95648e+06 144757 648988. 2245.63 3.56 0.14488 0.126199 26050 158493 -1 2034 23 1367 2186 205265 40568 3.08082 3.08082 -125.097 -3.08082 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0256232 0.0226423 60 88 0 0 91 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 9.24 vpr 65.28 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33904 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66848 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 26.9 MiB 0.15 795 9448 3333 4743 1372 65.3 MiB 0.07 0.00 3.89245 -136.332 -3.89245 3.89245 0.92 0.000517763 0.000473523 0.027133 0.0248647 56 2239 22 6.95648e+06 361892 973134. 3367.25 5.76 0.209784 0.182568 29794 239141 -1 1953 18 1692 2646 265016 56826 4.16042 4.16042 -145.303 -4.16042 0 0 1.19926e+06 4149.71 0.45 0.08 0.24 -1 -1 0.45 0.0223973 0.0200428 86 -1 124 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 7.11 vpr 65.78 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 34228 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67360 32 32 407 319 1 189 91 17 17 289 -1 unnamed_device 27.0 MiB 1.13 926 10495 2590 6894 1011 65.8 MiB 0.09 0.00 3.78219 -140.482 -3.78219 3.78219 0.85 0.000506691 0.000462463 0.0300546 0.0273741 44 2797 31 6.95648e+06 390843 787024. 2723.27 2.87 0.141085 0.123981 27778 195446 -1 2243 24 2072 3440 271776 53627 4.11966 4.11966 -151.056 -4.11966 0 0 997811. 3452.63 0.37 0.09 0.20 -1 -1 0.37 0.0296215 0.0259668 86 57 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 25.35 vpr 66.04 MiB 0.02 7352 -1 -1 1 0.03 -1 -1 33732 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67620 32 32 407 319 1 187 90 17 17 289 -1 unnamed_device 27.3 MiB 1.38 831 9336 3198 4890 1248 66.0 MiB 0.08 0.00 3.70819 -135.715 -3.70819 3.70819 0.91 0.000563543 0.000512715 0.0298531 0.0272422 46 2950 33 6.95648e+06 376368 828058. 2865.25 20.74 0.333645 0.290057 28066 200906 -1 2143 23 1884 2994 286770 60092 4.20256 4.20256 -153.868 -4.20256 0 0 1.01997e+06 3529.29 0.38 0.09 0.20 -1 -1 0.38 0.0291916 0.0258125 85 62 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 7.18 vpr 66.14 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33784 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67732 32 32 399 315 1 188 91 17 17 289 -1 unnamed_device 27.4 MiB 0.89 822 13351 4683 6743 1925 66.1 MiB 0.10 0.00 3.75544 -130.593 -3.75544 3.75544 0.89 0.000535765 0.000485647 0.0371459 0.0337027 48 3144 32 6.95648e+06 390843 865456. 2994.66 3.11 0.174629 0.152753 28354 207349 -1 2216 23 1706 2809 331362 74094 4.23512 4.23512 -146.218 -4.23512 0 0 1.05005e+06 3633.38 0.40 0.10 0.19 -1 -1 0.40 0.0267481 0.0235854 86 62 60 30 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 8.20 vpr 65.21 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 33584 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66776 30 32 296 244 1 150 74 17 17 289 -1 unnamed_device 26.7 MiB 0.69 551 9064 3696 4990 378 65.2 MiB 0.06 0.00 3.29416 -111.889 -3.29416 3.29416 0.90 0.000438074 0.000400146 0.0276053 0.0252491 40 2106 28 6.95648e+06 173708 706193. 2443.58 4.47 0.18383 0.158883 26914 176310 -1 1742 21 1390 2079 215336 49601 3.29672 3.29672 -117.862 -3.29672 0 0 926341. 3205.33 0.35 0.07 0.17 -1 -1 0.35 0.0208647 0.0184821 62 29 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 7.83 vpr 65.86 MiB 0.02 7340 -1 -1 1 0.03 -1 -1 34000 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67440 30 32 383 303 1 183 77 17 17 289 -1 unnamed_device 27.2 MiB 0.74 751 12465 5336 6622 507 65.9 MiB 0.10 0.00 4.015 -133.992 -4.015 4.015 0.92 0.000569472 0.000517218 0.0444166 0.0405113 40 2442 42 6.95648e+06 217135 706193. 2443.58 3.90 0.187169 0.163958 26914 176310 -1 2067 34 2814 3819 356731 77169 4.26826 4.26826 -149.469 -4.26826 0 0 926341. 3205.33 0.34 0.11 0.17 -1 -1 0.34 0.0348429 0.0305626 78 58 60 30 60 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 8.99 vpr 66.09 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 33852 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67680 32 32 469 381 1 190 95 17 17 289 -1 unnamed_device 27.4 MiB 1.34 807 14351 4061 7900 2390 66.1 MiB 0.11 0.00 3.71619 -135.355 -3.71619 3.71619 0.90 0.00058542 0.000531533 0.0431082 0.0391657 46 2908 40 6.95648e+06 448746 828058. 2865.25 4.39 0.200666 0.175619 28066 200906 -1 1939 23 2014 3030 235895 51059 3.82846 3.82846 -142.937 -3.82846 0 0 1.01997e+06 3529.29 0.38 0.09 0.19 -1 -1 0.38 0.0307631 0.0272263 88 106 0 0 128 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 7.13 vpr 65.91 MiB 0.02 7552 -1 -1 1 0.03 -1 -1 34044 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67492 31 32 425 341 1 182 85 17 17 289 -1 unnamed_device 27.2 MiB 0.96 718 14035 5965 7479 591 65.9 MiB 0.10 0.00 3.9948 -135.983 -3.9948 3.9948 0.89 0.000533872 0.000485326 0.0432325 0.0392447 46 2454 32 6.95648e+06 318465 828058. 2865.25 3.01 0.165993 0.145738 28066 200906 -1 1765 20 1690 2511 178398 41934 3.85666 3.85666 -139.6 -3.85666 0 0 1.01997e+06 3529.29 0.38 0.07 0.20 -1 -1 0.38 0.0257779 0.0229884 81 79 31 31 93 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 9.84 vpr 66.02 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 33852 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67604 30 32 404 328 1 173 80 17 17 289 -1 unnamed_device 27.3 MiB 1.57 700 13668 5834 7221 613 66.0 MiB 0.10 0.00 3.27591 -109.838 -3.27591 3.27591 0.86 0.000561295 0.000510662 0.0456415 0.04162 46 2600 45 6.95648e+06 260562 828058. 2865.25 5.23 0.251233 0.218303 28066 200906 -1 1867 24 1570 2331 203675 46058 3.61317 3.61317 -127.439 -3.61317 0 0 1.01997e+06 3529.29 0.36 0.08 0.18 -1 -1 0.36 0.0268893 0.0237616 75 83 26 26 90 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 8.20 vpr 66.02 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 34156 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67608 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 27.3 MiB 1.40 782 12628 3922 6830 1876 66.0 MiB 0.10 0.00 3.65989 -133.508 -3.65989 3.65989 0.86 0.000536422 0.000487727 0.0455044 0.0414291 48 2610 29 6.95648e+06 188184 865456. 2994.66 3.61 0.182187 0.160365 28354 207349 -1 2209 29 2479 4113 509037 117147 4.20256 4.20256 -156.074 -4.20256 0 0 1.05005e+06 3633.38 0.38 0.14 0.20 -1 -1 0.38 0.034457 0.0303483 81 58 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 6.69 vpr 65.59 MiB 0.02 7504 -1 -1 1 0.03 -1 -1 33888 -1 -1 22 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67160 29 32 387 316 1 171 83 17 17 289 -1 unnamed_device 27.1 MiB 1.06 662 10163 3749 4795 1619 65.6 MiB 0.07 0.00 3.14182 -102.393 -3.14182 3.14182 0.91 0.00051434 0.000465388 0.0325584 0.0296514 48 1906 29 6.95648e+06 318465 865456. 2994.66 2.43 0.135297 0.118025 28354 207349 -1 1764 22 1731 2542 284729 82234 3.37557 3.37557 -115.85 -3.37557 0 0 1.05005e+06 3633.38 0.40 0.09 0.21 -1 -1 0.40 0.0255453 0.0225665 77 81 26 26 85 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 10.03 vpr 65.24 MiB 0.02 6804 -1 -1 1 0.03 -1 -1 34008 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 32 32 283 225 1 154 74 17 17 289 -1 unnamed_device 26.8 MiB 0.95 574 9219 3815 5040 364 65.2 MiB 0.06 0.00 2.94595 -112.182 -2.94595 2.94595 0.87 0.000416525 0.000379804 0.0276819 0.0253454 62 1582 28 6.95648e+06 144757 1.05005e+06 3633.38 5.91 0.166856 0.144657 30946 263737 -1 1177 19 1240 1905 137799 33305 3.13582 3.13582 -113.41 -3.13582 0 0 1.30136e+06 4502.97 0.47 0.06 0.26 -1 -1 0.47 0.0194258 0.0173659 61 -1 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 12.28 vpr 65.94 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 33680 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67520 32 32 407 319 1 187 88 17 17 289 -1 unnamed_device 27.2 MiB 3.03 749 15688 6578 8529 581 65.9 MiB 0.11 0.00 3.77419 -136.605 -3.77419 3.77419 0.89 0.000520483 0.000471377 0.0457634 0.0415439 54 2315 29 6.95648e+06 347416 949917. 3286.91 5.97 0.245372 0.213558 29506 232905 -1 1721 23 1883 2835 238613 53119 3.94276 3.94276 -141.903 -3.94276 0 0 1.17392e+06 4061.99 0.43 0.08 0.23 -1 -1 0.43 0.0281393 0.0249365 84 62 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 6.21 vpr 65.82 MiB 0.02 7384 -1 -1 1 0.03 -1 -1 34044 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67404 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 27.2 MiB 0.54 800 13117 5732 6986 399 65.8 MiB 0.10 0.00 3.79019 -142.199 -3.79019 3.79019 0.93 0.000548635 0.000498101 0.0475931 0.0433458 44 2724 46 6.95648e+06 188184 787024. 2723.27 2.41 0.185786 0.162982 27778 195446 -1 1926 21 2028 2743 207858 46404 4.38426 4.38426 -156.616 -4.38426 0 0 997811. 3452.63 0.40 0.08 0.19 -1 -1 0.40 0.0276608 0.024601 81 62 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 6.56 vpr 65.75 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 34048 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67328 32 32 315 267 1 152 75 17 17 289 -1 unnamed_device 27.0 MiB 1.07 575 11609 4562 5941 1106 65.8 MiB 0.08 0.00 3.25495 -109.238 -3.25495 3.25495 0.87 0.000432946 0.000394361 0.034492 0.0315175 40 2213 38 6.95648e+06 159232 706193. 2443.58 2.51 0.147357 0.128916 26914 176310 -1 1731 21 1165 1685 157614 37483 3.97002 3.97002 -127.815 -3.97002 0 0 926341. 3205.33 0.34 0.06 0.16 -1 -1 0.34 0.0211686 0.0187164 60 47 32 32 54 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 7.85 vpr 65.41 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 34136 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66976 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 26.9 MiB 0.28 835 9529 3959 5371 199 65.4 MiB 0.06 0.00 3.0815 -119.168 -3.0815 3.0815 0.92 0.000408073 0.00037045 0.0277687 0.0253629 38 2078 34 6.95648e+06 159232 678818. 2348.85 4.52 0.18282 0.158608 26626 170182 -1 1828 19 1450 2046 180124 35435 3.13397 3.13397 -127.567 -3.13397 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.0194149 0.0171186 63 -1 93 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 8.03 vpr 66.04 MiB 0.02 7380 -1 -1 1 0.03 -1 -1 33928 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67620 32 32 381 303 1 180 83 17 17 289 -1 unnamed_device 27.3 MiB 1.21 782 14483 5692 6794 1997 66.0 MiB 0.11 0.00 3.70334 -129.205 -3.70334 3.70334 0.91 0.000538463 0.00048846 0.046828 0.04274 38 2558 24 6.95648e+06 275038 678818. 2348.85 3.69 0.171736 0.150844 26626 170182 -1 2023 18 1506 2027 168922 35022 4.02841 4.02841 -142.044 -4.02841 0 0 902133. 3121.57 0.34 0.06 0.17 -1 -1 0.34 0.0235529 0.0209993 78 56 60 32 58 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 23.96 vpr 66.09 MiB 0.02 7484 -1 -1 1 0.03 -1 -1 34024 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67676 32 32 406 330 1 182 82 17 17 289 -1 unnamed_device 27.4 MiB 0.80 793 11474 4768 6294 412 66.1 MiB 0.08 0.00 3.90986 -132.869 -3.90986 3.90986 0.85 0.000452567 0.000411912 0.0347843 0.0317596 40 2890 43 6.95648e+06 260562 706193. 2443.58 20.07 0.3337 0.29048 26914 176310 -1 2378 22 1806 2631 297663 70739 4.77112 4.77112 -159.623 -4.77112 0 0 926341. 3205.33 0.35 0.09 0.17 -1 -1 0.35 0.0275085 0.0242715 78 81 28 28 88 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 6.71 vpr 65.91 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 33904 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67488 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 27.4 MiB 0.44 1152 4375 861 3334 180 65.9 MiB 0.05 0.00 4.48239 -161.071 -4.48239 4.48239 0.91 0.000586715 0.000536899 0.0154798 0.014253 46 3119 32 6.95648e+06 390843 828058. 2865.25 3.03 0.135427 0.118862 28066 200906 -1 2686 20 2302 3571 331681 63786 5.04706 5.04706 -177.777 -5.04706 0 0 1.01997e+06 3529.29 0.39 0.10 0.20 -1 -1 0.39 0.0283922 0.0254309 100 -1 156 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 9.40 vpr 65.63 MiB 0.02 7412 -1 -1 1 0.03 -1 -1 34156 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67208 30 32 371 295 1 176 80 17 17 289 -1 unnamed_device 27.0 MiB 1.01 698 14528 6104 7488 936 65.6 MiB 0.11 0.00 3.34296 -113.702 -3.34296 3.34296 0.92 0.000539079 0.000491728 0.0466676 0.0426181 44 2314 27 6.95648e+06 260562 787024. 2723.27 5.16 0.225607 0.197219 27778 195446 -1 1739 25 1741 2574 232387 49017 3.47552 3.47552 -123.196 -3.47552 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0276134 0.0242408 77 47 60 30 56 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 5.35 vpr 65.25 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 33928 -1 -1 15 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66820 27 32 269 226 1 137 74 17 17 289 -1 unnamed_device 26.9 MiB 0.63 465 10459 4157 5359 943 65.3 MiB 0.06 0.00 3.15776 -95.8334 -3.15776 3.15776 0.90 0.000379318 0.000345609 0.0284738 0.0260376 38 1652 25 6.95648e+06 217135 678818. 2348.85 1.71 0.103685 0.0907459 26626 170182 -1 1118 18 929 1153 85956 20126 2.85657 2.85657 -100.943 -2.85657 0 0 902133. 3121.57 0.34 0.04 0.16 -1 -1 0.34 0.017428 0.0155164 57 26 54 27 27 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 8.93 vpr 65.91 MiB 0.02 7304 -1 -1 1 0.04 -1 -1 34100 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67488 32 32 493 378 1 222 94 17 17 289 -1 unnamed_device 27.5 MiB 0.68 956 13513 4288 6425 2800 65.9 MiB 0.11 0.00 4.037 -139.704 -4.037 4.037 0.92 0.000646229 0.00057835 0.0439797 0.0400169 54 3228 47 6.95648e+06 434271 949917. 3286.91 4.83 0.273997 0.240737 29506 232905 -1 2253 23 2386 4147 337264 71088 4.03337 4.03337 -146.914 -4.03337 0 0 1.17392e+06 4061.99 0.45 0.11 0.23 -1 -1 0.45 0.0340852 0.0302054 103 85 62 31 95 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 9.74 vpr 66.23 MiB 0.02 7348 -1 -1 1 0.03 -1 -1 34220 -1 -1 14 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67816 31 32 455 371 1 187 77 17 17 289 -1 unnamed_device 27.4 MiB 3.82 899 8716 2535 4990 1191 66.2 MiB 0.07 0.00 4.57784 -152.287 -4.57784 4.57784 0.88 0.000540779 0.000489846 0.0330197 0.0300433 40 2620 26 6.95648e+06 202660 706193. 2443.58 2.86 0.175389 0.153842 26914 176310 -1 2414 20 1639 2476 265073 53355 5.06741 5.06741 -166.299 -5.06741 0 0 926341. 3205.33 0.35 0.08 0.16 -1 -1 0.35 0.0265506 0.0235031 79 105 0 0 124 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 16.34 vpr 65.32 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 33744 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66888 32 32 355 304 1 147 74 17 17 289 -1 unnamed_device 26.6 MiB 2.89 500 11389 4353 5738 1298 65.3 MiB 0.08 0.00 3.0346 -106.135 -3.0346 3.0346 0.90 0.000480843 0.000437717 0.0378722 0.0345436 42 2142 50 6.95648e+06 144757 744469. 2576.02 10.38 0.283558 0.244452 27202 183097 -1 1444 22 1244 1875 149405 38732 3.73087 3.73087 -121.3 -3.73087 0 0 949917. 3286.91 0.36 0.06 0.18 -1 -1 0.36 0.0233288 0.0205887 58 86 0 0 89 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 5.97 vpr 65.76 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 33800 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67336 32 32 364 282 1 188 86 17 17 289 -1 unnamed_device 27.1 MiB 0.43 819 12938 5293 7361 284 65.8 MiB 0.10 0.00 4.12326 -140.658 -4.12326 4.12326 0.92 0.000512075 0.000463967 0.0382315 0.0348358 46 2429 24 6.95648e+06 318465 828058. 2865.25 2.29 0.136978 0.120598 28066 200906 -1 1982 22 1868 2829 225669 47368 4.34512 4.34512 -150.237 -4.34512 0 0 1.01997e+06 3529.29 0.40 0.08 0.19 -1 -1 0.40 0.0262903 0.0233031 83 31 90 30 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 6.38 vpr 66.39 MiB 0.02 7268 -1 -1 1 0.03 -1 -1 34364 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67988 31 32 443 336 1 210 86 17 17 289 -1 unnamed_device 27.7 MiB 0.86 852 12560 4728 5964 1868 66.4 MiB 0.10 0.00 4.1192 -140.393 -4.1192 4.1192 0.89 0.000583758 0.000530644 0.0417536 0.0380605 44 3193 49 6.95648e+06 332941 787024. 2723.27 2.33 0.171258 0.150148 27778 195446 -1 2288 22 2028 2862 231745 48719 4.08962 4.08962 -146.319 -4.08962 0 0 997811. 3452.63 0.37 0.08 0.20 -1 -1 0.37 0.0293587 0.0260121 95 50 87 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 9.56 vpr 65.84 MiB 0.02 7404 -1 -1 1 0.03 -1 -1 33708 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67424 30 32 373 297 1 178 82 17 17 289 -1 unnamed_device 27.2 MiB 1.01 739 10762 4429 5782 551 65.8 MiB 0.08 0.00 3.27396 -108.751 -3.27396 3.27396 0.93 0.000530881 0.000484309 0.0349047 0.0319111 50 2308 30 6.95648e+06 289514 902133. 3121.57 5.28 0.209081 0.181506 28642 213929 -1 1813 22 1510 2423 194027 43283 3.23877 3.23877 -111.591 -3.23877 0 0 1.08113e+06 3740.92 0.41 0.08 0.21 -1 -1 0.41 0.0258978 0.0229216 78 50 58 30 58 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 6.45 vpr 65.85 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 33824 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67428 32 32 407 319 1 193 98 17 17 289 -1 unnamed_device 27.1 MiB 0.44 907 15848 6161 8045 1642 65.8 MiB 0.10 0.00 3.79319 -139.401 -3.79319 3.79319 0.89 0.000524699 0.000478385 0.0402658 0.0364851 48 2368 36 6.95648e+06 492173 865456. 2994.66 2.79 0.164866 0.144315 28354 207349 -1 2088 22 2029 2932 368389 96046 4.20576 4.20576 -151.328 -4.20576 0 0 1.05005e+06 3633.38 0.41 0.11 0.19 -1 -1 0.41 0.0274894 0.0243521 91 61 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 6.40 vpr 65.82 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 33860 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67400 32 32 405 318 1 192 95 17 17 289 -1 unnamed_device 27.1 MiB 0.47 794 15215 5485 7366 2364 65.8 MiB 0.11 0.00 3.05335 -116.88 -3.05335 3.05335 0.92 0.000581254 0.000527824 0.0426405 0.0386544 38 2664 32 6.95648e+06 448746 678818. 2348.85 2.74 0.169906 0.149265 26626 170182 -1 1981 23 1769 2415 213988 44975 3.15122 3.15122 -123.437 -3.15122 0 0 902133. 3121.57 0.35 0.08 0.16 -1 -1 0.35 0.0283989 0.0250762 90 61 63 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 8.84 vpr 65.06 MiB 0.02 7156 -1 -1 1 0.03 -1 -1 33948 -1 -1 13 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66624 29 32 287 238 1 136 74 17 17 289 -1 unnamed_device 26.6 MiB 4.19 577 8599 3570 4706 323 65.1 MiB 0.06 0.00 3.17976 -103.796 -3.17976 3.17976 0.92 0.000450083 0.000410682 0.0261351 0.023895 34 1710 33 6.95648e+06 188184 618332. 2139.56 1.64 0.124607 0.108175 25762 151098 -1 1350 20 1094 1347 115459 25488 2.99907 2.99907 -111.333 -2.99907 0 0 787024. 2723.27 0.32 0.05 0.14 -1 -1 0.32 0.0200694 0.0178012 56 28 58 29 29 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 6.36 vpr 65.46 MiB 0.02 7292 -1 -1 1 0.03 -1 -1 33892 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67036 32 32 334 290 1 148 74 17 17 289 -1 unnamed_device 26.7 MiB 0.83 584 9839 4132 5456 251 65.5 MiB 0.07 0.00 2.9814 -102.92 -2.9814 2.9814 0.91 0.000465134 0.000423182 0.0326453 0.0298454 42 1955 38 6.95648e+06 144757 744469. 2576.02 2.45 0.152744 0.134231 27202 183097 -1 1355 18 1059 1346 125015 28716 3.09482 3.09482 -106.044 -3.09482 0 0 949917. 3286.91 0.37 0.06 0.18 -1 -1 0.37 0.0203726 0.0180729 58 79 0 0 82 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 6.63 vpr 65.84 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 34100 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67420 31 32 365 281 1 188 91 17 17 289 -1 unnamed_device 27.1 MiB 0.41 743 12331 4128 5906 2297 65.8 MiB 0.08 0.00 4.24545 -140.476 -4.24545 4.24545 0.90 0.000513457 0.000466217 0.0343573 0.0312808 52 2318 48 6.95648e+06 405319 926341. 3205.33 2.95 0.165442 0.144353 29218 227130 -1 1690 21 1722 2427 228255 49513 3.93522 3.93522 -142.121 -3.93522 0 0 1.14541e+06 3963.36 0.43 0.08 0.23 -1 -1 0.43 0.023699 0.0209761 86 29 93 31 31 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 6.93 vpr 65.18 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 34052 -1 -1 14 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 29 32 297 254 1 144 75 17 17 289 -1 unnamed_device 26.7 MiB 1.11 494 12399 5297 6440 662 65.2 MiB 0.08 0.00 3.26295 -100.502 -3.26295 3.26295 0.89 0.000387313 0.000350149 0.0343376 0.0312344 40 2019 35 6.95648e+06 202660 706193. 2443.58 2.82 0.142509 0.12402 26914 176310 -1 1572 22 1181 1659 161114 40293 3.72753 3.72753 -115.928 -3.72753 0 0 926341. 3205.33 0.35 0.06 0.16 -1 -1 0.35 0.0203846 0.0179796 59 48 29 29 52 26 -fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 13.23 vpr 65.52 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 33716 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67092 32 32 314 256 1 154 74 17 17 289 -1 unnamed_device 27.1 MiB 1.10 698 10149 3910 5225 1014 65.5 MiB 0.07 0.00 3.05815 -118.306 -3.05815 3.05815 0.89 0.00045565 0.000416071 0.0322223 0.0294878 38 2191 39 6.95648e+06 144757 678818. 2348.85 9.09 0.232737 0.201727 26626 170182 -1 1683 21 1507 2099 216763 42531 3.06992 3.06992 -126.76 -3.06992 0 0 902133. 3121.57 0.33 0.07 0.16 -1 -1 0.33 0.021806 0.0192893 61 31 64 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 8.39 vpr 65.82 MiB 0.02 7444 -1 -1 1 0.03 -1 -1 33656 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67396 31 32 387 307 1 181 87 17 17 289 -1 unnamed_device 27.3 MiB 0.97 717 11607 3761 5813 2033 65.8 MiB 0.09 0.00 3.1175 -113.433 -3.1175 3.1175 0.93 0.000528658 0.000483963 0.0360728 0.0328563 44 1996 23 6.95648e+06 347416 787024. 2723.27 4.19 0.213348 0.185322 27778 195446 -1 1542 18 1591 2057 137516 32127 3.20637 3.20637 -119.126 -3.20637 0 0 997811. 3452.63 0.40 0.06 0.18 -1 -1 0.40 0.023726 0.0211323 82 60 58 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 8.26 vpr 65.28 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 33672 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66848 31 32 308 262 1 143 74 17 17 289 -1 unnamed_device 26.8 MiB 2.19 682 10459 3058 6921 480 65.3 MiB 0.07 0.00 3.13575 -104.344 -3.13575 3.13575 0.86 0.000403524 0.000369447 0.0284375 0.026052 36 1970 40 6.95648e+06 159232 648988. 2245.63 3.13 0.15396 0.135078 26050 158493 -1 1710 23 1139 1687 158222 32786 3.00882 3.00882 -113.396 -3.00882 0 0 828058. 2865.25 0.33 0.06 0.15 -1 -1 0.33 0.0230432 0.0203737 57 49 31 31 53 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 6.78 vpr 65.75 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 34100 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67328 32 32 383 307 1 176 83 17 17 289 -1 unnamed_device 27.1 MiB 1.47 710 12323 5117 6727 479 65.8 MiB 0.09 0.00 3.0155 -107.222 -3.0155 3.0155 0.89 0.000510379 0.000464785 0.0381378 0.034787 48 2125 29 6.95648e+06 275038 865456. 2994.66 2.12 0.137171 0.120175 28354 207349 -1 1740 21 1379 2041 173501 38582 3.37187 3.37187 -116.913 -3.37187 0 0 1.05005e+06 3633.38 0.39 0.07 0.21 -1 -1 0.39 0.0253124 0.0224915 76 56 52 26 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 7.00 vpr 65.77 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 34108 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67348 31 32 422 339 1 187 88 17 17 289 -1 unnamed_device 27.1 MiB 1.24 717 15298 5325 7460 2513 65.8 MiB 0.11 0.00 3.41641 -118.296 -3.41641 3.41641 0.88 0.000533943 0.000482293 0.0450901 0.0408556 44 2443 41 6.95648e+06 361892 787024. 2723.27 2.65 0.188569 0.164492 27778 195446 -1 1785 21 1733 2379 191405 42172 3.26427 3.26427 -126.623 -3.26427 0 0 997811. 3452.63 0.38 0.07 0.18 -1 -1 0.38 0.0259626 0.0229348 85 88 31 31 92 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 6.03 vpr 65.47 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 33664 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67044 32 32 333 279 1 154 74 17 17 289 -1 unnamed_device 27.0 MiB 0.80 564 10149 3066 5426 1657 65.5 MiB 0.08 0.00 2.9023 -103.177 -2.9023 2.9023 0.89 0.00046514 0.000424183 0.032751 0.029938 44 2002 28 6.95648e+06 144757 787024. 2723.27 2.13 0.136701 0.119077 27778 195446 -1 1411 23 1300 1937 149740 33462 3.22642 3.22642 -111.618 -3.22642 0 0 997811. 3452.63 0.38 0.06 0.19 -1 -1 0.38 0.0234856 0.0207132 61 54 32 32 60 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 9.58 vpr 65.53 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 33616 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67100 32 32 339 283 1 158 74 17 17 289 -1 unnamed_device 27.0 MiB 0.88 611 8289 3413 4626 250 65.5 MiB 0.06 0.00 3.0515 -113.367 -3.0515 3.0515 0.89 0.000474648 0.00042961 0.0279468 0.0253964 52 1978 31 6.95648e+06 144757 926341. 3205.33 5.54 0.202189 0.174969 29218 227130 -1 1356 21 1396 2136 148834 36358 2.87537 2.87537 -112.033 -2.87537 0 0 1.14541e+06 3963.36 0.45 0.06 0.22 -1 -1 0.45 0.0238554 0.0211873 63 60 32 32 62 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 7.51 vpr 66.07 MiB 0.02 7292 -1 -1 1 0.03 -1 -1 34424 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67660 32 32 407 319 1 190 93 17 17 289 -1 unnamed_device 27.3 MiB 0.82 951 8283 1857 5834 592 66.1 MiB 0.07 0.00 3.78219 -143.123 -3.78219 3.78219 0.84 0.000484235 0.000441693 0.022873 0.0208975 40 2477 25 6.95648e+06 419795 706193. 2443.58 3.60 0.147983 0.128766 26914 176310 -1 2302 28 2524 3706 414716 99584 4.11646 4.11646 -160.983 -4.11646 0 0 926341. 3205.33 0.34 0.13 0.18 -1 -1 0.34 0.033115 0.0292179 88 49 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 8.23 vpr 65.90 MiB 0.02 7308 -1 -1 1 0.03 -1 -1 33896 -1 -1 19 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67484 29 32 367 293 1 175 80 17 17 289 -1 unnamed_device 27.2 MiB 0.93 739 8336 2662 4258 1416 65.9 MiB 0.07 0.00 3.1065 -104.923 -3.1065 3.1065 0.86 0.000501033 0.000457508 0.0273467 0.025065 38 2387 48 6.95648e+06 275038 678818. 2348.85 4.34 0.166932 0.145651 26626 170182 -1 1562 20 1492 2155 111110 30563 3.16697 3.16697 -113.104 -3.16697 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.023609 0.0209644 77 54 56 29 58 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 25.94 vpr 66.22 MiB 0.02 7396 -1 -1 1 0.03 -1 -1 34308 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67808 32 32 469 381 1 192 93 17 17 289 -1 unnamed_device 27.6 MiB 1.41 819 16473 6066 7302 3105 66.2 MiB 0.12 0.00 3.81039 -138.347 -3.81039 3.81039 0.90 0.000610592 0.000553566 0.0514538 0.0467839 48 2605 47 6.95648e+06 419795 865456. 2994.66 21.20 0.413656 0.359938 28354 207349 -1 2211 29 2363 3592 414996 105744 4.94336 4.94336 -163.958 -4.94336 0 0 1.05005e+06 3633.38 0.40 0.13 0.20 -1 -1 0.40 0.036567 0.0321632 89 117 0 0 128 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 6.90 vpr 65.24 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 33880 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66804 31 32 259 212 1 144 74 17 17 289 -1 unnamed_device 26.9 MiB 1.47 588 9529 3953 5280 296 65.2 MiB 0.06 0.00 3.02776 -101.68 -3.02776 3.02776 0.88 0.000374522 0.000339407 0.025593 0.0232647 38 2072 26 6.95648e+06 159232 678818. 2348.85 2.50 0.116585 0.101647 26626 170182 -1 1448 23 1135 1733 146308 32974 3.17932 3.17932 -111.193 -3.17932 0 0 902133. 3121.57 0.34 0.06 0.15 -1 -1 0.34 0.0193869 0.0170698 58 -1 85 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 7.11 vpr 65.64 MiB 0.02 7236 -1 -1 1 0.03 -1 -1 34112 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67212 32 32 418 338 1 182 87 17 17 289 -1 unnamed_device 26.9 MiB 0.97 751 13335 4844 6817 1674 65.6 MiB 0.10 0.00 3.74945 -128.098 -3.74945 3.74945 0.88 0.000559463 0.0005098 0.0415669 0.0378551 50 2285 32 6.95648e+06 332941 902133. 3121.57 2.94 0.166518 0.145661 28642 213929 -1 1644 22 1608 2085 170164 38147 3.77646 3.77646 -133.884 -3.77646 0 0 1.08113e+06 3740.92 0.40 0.07 0.21 -1 -1 0.40 0.0270732 0.0239179 81 89 28 28 92 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 9.43 vpr 65.55 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 33684 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67128 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 26.8 MiB 3.24 613 11854 5235 6332 287 65.6 MiB 0.09 0.00 2.96105 -113.67 -2.96105 2.96105 0.89 0.000494109 0.000449631 0.0408603 0.0372653 40 2066 46 6.95648e+06 144757 706193. 2443.58 3.10 0.174563 0.152207 26914 176310 -1 1732 25 1774 2512 267918 59105 3.24392 3.24392 -134.119 -3.24392 0 0 926341. 3205.33 0.34 0.09 0.17 -1 -1 0.34 0.0270762 0.0238231 61 93 0 0 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 6.25 vpr 66.07 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 33996 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67656 32 32 401 316 1 188 88 17 17 289 -1 unnamed_device 27.3 MiB 0.92 784 11983 4223 5778 1982 66.1 MiB 0.09 0.00 3.13882 -116.487 -3.13882 3.13882 0.86 0.000572881 0.000517925 0.0353133 0.0321784 48 2212 28 6.95648e+06 347416 865456. 2994.66 2.22 0.156318 0.136003 28354 207349 -1 1847 22 1492 2187 198389 43553 3.51907 3.51907 -127.302 -3.51907 0 0 1.05005e+06 3633.38 0.39 0.07 0.21 -1 -1 0.39 0.0270976 0.0239742 84 59 61 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 9.42 vpr 65.70 MiB 0.02 7404 -1 -1 1 0.04 -1 -1 34520 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67272 32 32 500 382 1 222 97 17 17 289 -1 unnamed_device 27.3 MiB 1.10 961 18301 6218 9454 2629 65.7 MiB 0.14 0.00 4.52824 -160.34 -4.52824 4.52824 0.87 0.000660928 0.000598541 0.0579874 0.052515 46 3150 41 6.95648e+06 477698 828058. 2865.25 5.12 0.222651 0.194996 28066 200906 -1 2357 21 2592 3973 314953 65840 5.13481 5.13481 -176.525 -5.13481 0 0 1.01997e+06 3529.29 0.36 0.09 0.20 -1 -1 0.36 0.0291546 0.025932 104 81 64 32 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 5.66 vpr 64.69 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 33740 -1 -1 10 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66240 30 32 246 229 1 117 72 17 17 289 -1 unnamed_device 26.3 MiB 0.45 395 8267 2975 4043 1249 64.7 MiB 0.05 0.00 2.20646 -76.6701 -2.20646 2.20646 0.88 0.000330688 0.000298623 0.0213395 0.0194023 38 1289 46 6.95648e+06 144757 678818. 2348.85 2.31 0.115361 0.0998592 26626 170182 -1 760 22 604 724 45863 12408 2.06653 2.06653 -75.5464 -2.06653 0 0 902133. 3121.57 0.34 0.04 0.15 -1 -1 0.34 0.0172341 0.0151768 45 51 0 0 53 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 7.09 vpr 65.25 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 34072 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66816 30 32 296 244 1 141 74 17 17 289 -1 unnamed_device 26.8 MiB 2.07 505 9994 3801 4923 1270 65.2 MiB 0.07 0.00 3.20866 -106.336 -3.20866 3.20866 0.90 0.000443265 0.000404986 0.0304067 0.0278197 40 1597 24 6.95648e+06 173708 706193. 2443.58 1.95 0.128122 0.112084 26914 176310 -1 1482 24 1267 1801 177650 41470 3.16992 3.16992 -117.471 -3.16992 0 0 926341. 3205.33 0.35 0.07 0.17 -1 -1 0.35 0.0233233 0.0205906 58 29 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 8.92 vpr 65.45 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 33736 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67020 32 32 314 256 1 161 74 17 17 289 -1 unnamed_device 26.7 MiB 0.23 594 9219 3126 4706 1387 65.4 MiB 0.07 0.00 2.93285 -111.664 -2.93285 2.93285 0.93 0.000450823 0.000408234 0.0297625 0.0270856 52 1888 25 6.95648e+06 144757 926341. 3205.33 5.45 0.204615 0.177398 29218 227130 -1 1386 24 1519 2482 184245 42369 2.98192 2.98192 -110.606 -2.98192 0 0 1.14541e+06 3963.36 0.41 0.07 0.21 -1 -1 0.41 0.0238385 0.0210558 65 31 64 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 7.91 vpr 65.24 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 34076 -1 -1 15 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 25 32 251 214 1 132 72 17 17 289 -1 unnamed_device 26.9 MiB 0.59 415 9310 3976 4598 736 65.2 MiB 0.06 0.00 3.24096 -89.6096 -3.24096 3.24096 0.87 0.000363094 0.000331781 0.0245604 0.0224732 44 1557 47 6.95648e+06 217135 787024. 2723.27 4.29 0.150805 0.12998 27778 195446 -1 1133 20 982 1289 91904 23042 2.85042 2.85042 -92.9397 -2.85042 0 0 997811. 3452.63 0.37 0.05 0.18 -1 -1 0.37 0.0176844 0.0156998 56 19 50 25 25 25 -fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 27.84 vpr 66.01 MiB 0.02 7496 -1 -1 1 0.03 -1 -1 34100 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67592 32 32 432 346 1 185 77 17 17 289 -1 unnamed_device 27.4 MiB 1.16 849 10835 4559 6029 247 66.0 MiB 0.09 0.00 3.79924 -134.385 -3.79924 3.79924 0.90 0.000542539 0.000497647 0.0416792 0.0379437 44 3443 36 6.95648e+06 188184 787024. 2723.27 23.45 0.320045 0.278572 27778 195446 -1 2587 23 2101 3728 353454 70858 4.30096 4.30096 -155.876 -4.30096 0 0 997811. 3452.63 0.38 0.11 0.19 -1 -1 0.38 0.0311301 0.0277002 77 84 32 32 94 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 6.74 vpr 66.17 MiB 0.02 7440 -1 -1 1 0.03 -1 -1 33876 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67756 31 32 421 339 1 185 92 17 17 289 -1 unnamed_device 27.4 MiB 0.84 742 12512 4241 5927 2344 66.2 MiB 0.09 0.00 3.1116 -112.527 -3.1116 3.1116 0.90 0.000570731 0.000504894 0.0366233 0.0333379 40 2297 45 6.95648e+06 419795 706193. 2443.58 2.79 0.181416 0.15821 26914 176310 -1 1941 28 2068 2793 280657 72615 3.75867 3.75867 -130.319 -3.75867 0 0 926341. 3205.33 0.33 0.10 0.18 -1 -1 0.33 0.0326617 0.0285848 87 88 29 29 93 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 10.00 vpr 65.68 MiB 0.04 7312 -1 -1 1 0.03 -1 -1 34148 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67260 32 32 438 350 1 287 86 17 17 289 -1 unnamed_device 27.3 MiB 0.79 1062 15584 5717 7278 2589 65.7 MiB 0.12 0.00 4.46104 -158.567 -4.46104 4.46104 0.90 0.000567576 0.000519969 0.0506889 0.0461976 50 2979 31 6.99608e+06 323745 902133. 3121.57 5.92 0.294784 0.2556 28642 213929 -1 2414 20 2288 2663 207633 47342 4.73741 4.73741 -164.061 -4.73741 0 0 1.08113e+06 3740.92 0.40 0.08 0.21 -1 -1 0.40 0.0267428 0.0238078 130 80 32 32 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 8.33 vpr 66.09 MiB 0.02 7492 -1 -1 1 0.03 -1 -1 34072 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67680 30 32 409 330 1 259 82 17 17 289 -1 unnamed_device 27.5 MiB 1.55 1018 13610 5732 7207 671 66.1 MiB 0.11 0.00 4.50158 -148.332 -4.50158 4.50158 0.90 0.000557011 0.000505144 0.0440341 0.0400547 54 3118 36 6.99608e+06 294314 949917. 3286.91 3.43 0.197314 0.1722 29506 232905 -1 2490 20 2237 3073 302816 64698 4.48179 4.48179 -155.541 -4.48179 0 0 1.17392e+06 4061.99 0.45 0.09 0.24 -1 -1 0.45 0.0262708 0.0233486 117 78 30 30 89 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 9.19 vpr 65.64 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 34160 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67212 32 32 387 309 1 241 82 17 17 289 -1 unnamed_device 27.0 MiB 1.01 1040 13610 5701 7488 421 65.6 MiB 0.11 0.00 3.59279 -128.627 -3.59279 3.59279 0.92 0.000529681 0.000482044 0.0433693 0.039509 46 2926 28 6.99608e+06 264882 828058. 2865.25 4.94 0.217137 0.188998 28066 200906 -1 2312 22 1747 2063 162737 34627 4.13566 4.13566 -142.913 -4.13566 0 0 1.01997e+06 3529.29 0.40 0.07 0.19 -1 -1 0.40 0.0275084 0.0243688 106 50 54 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 7.24 vpr 65.26 MiB 0.02 7352 -1 -1 1 0.03 -1 -1 33972 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 29 32 343 267 1 201 79 17 17 289 -1 unnamed_device 26.9 MiB 0.75 806 14444 6101 7602 741 65.3 MiB 0.11 0.00 3.79615 -125.537 -3.79615 3.79615 0.91 0.000506044 0.000457734 0.044845 0.0409016 40 2767 26 6.99608e+06 264882 706193. 2443.58 3.31 0.159768 0.140076 26914 176310 -1 2235 22 1992 2849 249231 55744 4.15242 4.15242 -143.1 -4.15242 0 0 926341. 3205.33 0.35 0.09 0.17 -1 -1 0.35 0.0254272 0.0225477 89 25 87 29 29 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 7.15 vpr 65.74 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 33960 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67316 32 32 376 288 1 218 79 17 17 289 -1 unnamed_device 27.0 MiB 0.48 871 12416 4669 6393 1354 65.7 MiB 0.10 0.00 4.27644 -154.345 -4.27644 4.27644 0.92 0.000549162 0.000503727 0.041689 0.0380333 56 2565 50 6.99608e+06 220735 973134. 3367.25 3.29 0.196432 0.172429 29794 239141 -1 2053 25 2260 3506 286872 67371 4.38345 4.38345 -157.873 -4.38345 0 0 1.19926e+06 4149.71 0.46 0.10 0.24 -1 -1 0.46 0.0296215 0.0262323 93 31 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 9.49 vpr 65.93 MiB 0.02 7352 -1 -1 1 0.03 -1 -1 33832 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67516 32 32 402 316 1 251 94 17 17 289 -1 unnamed_device 27.4 MiB 0.51 1298 16069 5589 8587 1893 65.9 MiB 0.13 0.00 3.60699 -134.626 -3.60699 3.60699 0.90 0.000541988 0.00049233 0.0441256 0.0401478 48 3162 26 6.99608e+06 441471 865456. 2994.66 5.73 0.25169 0.218241 28354 207349 -1 2763 22 2298 3403 319916 62256 3.60331 3.60331 -146.09 -3.60331 0 0 1.05005e+06 3633.38 0.39 0.10 0.20 -1 -1 0.39 0.0269797 0.023876 117 61 63 32 63 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 6.82 vpr 64.66 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 34132 -1 -1 15 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66212 27 32 269 226 1 158 74 17 17 289 -1 unnamed_device 26.2 MiB 1.52 620 8289 3348 4414 527 64.7 MiB 0.06 0.00 3.30124 -103.988 -3.30124 3.30124 0.91 0.000406595 0.000370306 0.0241689 0.0221228 44 2016 40 6.99608e+06 220735 787024. 2723.27 2.17 0.105412 0.0920268 27778 195446 -1 1528 22 1341 2008 175259 38522 3.21151 3.21151 -108.573 -3.21151 0 0 997811. 3452.63 0.40 0.07 0.19 -1 -1 0.40 0.0203505 0.0179759 68 26 54 27 27 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 15.41 vpr 65.00 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 33892 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 26.6 MiB 0.52 708 9368 3795 5080 493 65.0 MiB 0.06 0.00 2.88485 -101.173 -2.88485 2.88485 0.89 0.000431999 0.000393295 0.026965 0.0245818 46 2433 35 6.99608e+06 250167 828058. 2865.25 11.78 0.25146 0.217868 28066 200906 -1 1798 28 1488 2245 321562 127971 3.33652 3.33652 -116.083 -3.33652 0 0 1.01997e+06 3529.29 0.39 0.12 0.18 -1 -1 0.39 0.0275861 0.0242102 77 -1 115 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 21.42 vpr 65.68 MiB 0.02 7388 -1 -1 1 0.03 -1 -1 33552 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67260 31 32 338 292 1 222 78 17 17 289 -1 unnamed_device 27.0 MiB 3.40 865 11366 4429 5807 1130 65.7 MiB 0.08 0.00 3.3156 -116.953 -3.3156 3.3156 0.89 0.000464768 0.000423631 0.0344787 0.0315063 44 2856 40 6.99608e+06 220735 787024. 2723.27 14.89 0.267564 0.230877 27778 195446 -1 1899 23 1691 2097 177067 40063 3.36181 3.36181 -123.617 -3.36181 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0239804 0.0211714 96 81 0 0 84 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 6.43 vpr 65.21 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 33948 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66772 32 32 314 256 1 187 77 17 17 289 -1 unnamed_device 26.7 MiB 0.82 668 10346 4043 5155 1148 65.2 MiB 0.08 0.00 3.58059 -133.895 -3.58059 3.58059 0.92 0.000443735 0.000404999 0.0314917 0.0287284 46 2113 26 6.99608e+06 191304 828058. 2865.25 2.42 0.144448 0.126826 28066 200906 -1 1655 23 1613 2045 146762 33269 3.34956 3.34956 -132.574 -3.34956 0 0 1.01997e+06 3529.29 0.40 0.07 0.19 -1 -1 0.40 0.0238187 0.0210964 79 31 64 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 16.45 vpr 65.18 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 33704 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 30 32 325 273 1 199 77 17 17 289 -1 unnamed_device 26.9 MiB 2.61 858 10835 4264 5113 1458 65.2 MiB 0.08 0.00 3.85932 -133.017 -3.85932 3.85932 0.87 0.000487865 0.000441523 0.0338214 0.030905 38 2753 35 6.99608e+06 220735 678818. 2348.85 10.88 0.226346 0.196129 26626 170182 -1 2153 22 1904 2554 252247 54303 3.751 3.751 -138.14 -3.751 0 0 902133. 3121.57 0.31 0.08 0.16 -1 -1 0.31 0.0222761 0.0196816 88 58 30 30 60 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 8.03 vpr 65.51 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 34080 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67080 32 32 331 280 1 210 78 17 17 289 -1 unnamed_device 26.9 MiB 0.90 1078 12030 4277 6214 1539 65.5 MiB 0.09 0.00 3.0712 -121.401 -3.0712 3.0712 0.89 0.000461416 0.000419477 0.0360825 0.032963 38 2768 42 6.99608e+06 206020 678818. 2348.85 4.07 0.156639 0.136689 26626 170182 -1 2283 24 1587 1715 164574 32948 3.19827 3.19827 -125.574 -3.19827 0 0 902133. 3121.57 0.33 0.07 0.16 -1 -1 0.33 0.0247377 0.0218537 91 57 25 25 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 7.32 vpr 65.39 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 34020 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66964 32 32 386 305 1 231 80 17 17 289 -1 unnamed_device 26.8 MiB 1.05 883 7132 1837 4428 867 65.4 MiB 0.07 0.00 3.50359 -126.552 -3.50359 3.50359 0.92 0.000548481 0.000499571 0.025239 0.023058 50 2388 31 6.99608e+06 235451 902133. 3121.57 3.02 0.16621 0.145939 28642 213929 -1 1746 24 1959 2630 200378 46686 3.64846 3.64846 -125.255 -3.64846 0 0 1.08113e+06 3740.92 0.42 0.08 0.20 -1 -1 0.42 0.0287429 0.0254321 101 55 64 32 57 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 10.09 vpr 65.82 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 33752 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67400 32 32 407 319 1 254 83 17 17 289 -1 unnamed_device 27.3 MiB 0.96 1134 14123 4441 7724 1958 65.8 MiB 0.11 0.00 4.28564 -153.93 -4.28564 4.28564 0.91 0.000553549 0.000503548 0.0477366 0.0436265 48 3127 38 6.99608e+06 279598 865456. 2994.66 5.82 0.278105 0.243055 28354 207349 -1 2345 25 2734 3553 297546 70688 4.56491 4.56491 -166.853 -4.56491 0 0 1.05005e+06 3633.38 0.40 0.10 0.21 -1 -1 0.40 0.031427 0.0278786 112 60 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 16.30 vpr 64.88 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 34116 -1 -1 14 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66436 29 32 272 228 1 161 75 17 17 289 -1 unnamed_device 26.5 MiB 2.56 572 11293 4723 5996 574 64.9 MiB 0.07 0.00 2.92195 -96.6009 -2.92195 2.92195 0.92 0.000401436 0.000365481 0.031218 0.0285133 40 1775 30 6.99608e+06 206020 706193. 2443.58 10.67 0.26329 0.229838 26914 176310 -1 1445 21 1232 1686 125058 31534 2.95752 2.95752 -107.998 -2.95752 0 0 926341. 3205.33 0.36 0.06 0.17 -1 -1 0.36 0.0198326 0.0175884 67 21 58 29 24 24 -fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 11.04 vpr 65.74 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 34048 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67320 32 32 401 315 1 243 80 17 17 289 -1 unnamed_device 26.9 MiB 2.18 1040 13324 4763 6768 1793 65.7 MiB 0.11 0.00 3.68279 -132.173 -3.68279 3.68279 0.90 0.000557711 0.000509716 0.0456413 0.0416511 50 2876 28 6.99608e+06 235451 902133. 3121.57 5.60 0.253441 0.220312 28642 213929 -1 2434 24 2647 3804 328738 70961 3.83971 3.83971 -145.654 -3.83971 0 0 1.08113e+06 3740.92 0.40 0.10 0.21 -1 -1 0.40 0.0291649 0.0257349 106 60 64 32 62 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 8.28 vpr 65.62 MiB 0.02 7388 -1 -1 1 0.03 -1 -1 33936 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67200 32 32 383 303 1 230 81 17 17 289 -1 unnamed_device 27.0 MiB 1.34 1122 6731 1649 4394 688 65.6 MiB 0.06 0.00 3.32994 -131.897 -3.32994 3.32994 0.88 0.000590561 0.000544193 0.0236637 0.0216858 38 3062 22 6.99608e+06 250167 678818. 2348.85 3.93 0.157255 0.138784 26626 170182 -1 2557 20 2046 2556 210300 43417 3.27522 3.27522 -135.878 -3.27522 0 0 902133. 3121.57 0.33 0.08 0.15 -1 -1 0.33 0.0254171 0.022646 99 54 64 32 56 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 18.69 vpr 65.56 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33480 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67136 32 32 339 284 1 218 78 17 17 289 -1 unnamed_device 26.9 MiB 0.82 871 13856 5887 7726 243 65.6 MiB 0.11 0.00 3.39034 -128.572 -3.39034 3.39034 0.92 0.000494069 0.0004509 0.0433068 0.0395562 44 3195 31 6.99608e+06 206020 787024. 2723.27 14.65 0.268282 0.233092 27778 195446 -1 2091 20 1669 2002 170304 37140 3.36881 3.36881 -131.01 -3.36881 0 0 997811. 3452.63 0.39 0.07 0.19 -1 -1 0.39 0.0219601 0.0195083 91 62 29 29 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 7.75 vpr 64.57 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 33524 -1 -1 11 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66120 30 32 226 208 1 139 73 17 17 289 -1 unnamed_device 26.1 MiB 2.75 536 9041 3932 4796 313 64.6 MiB 0.05 0.00 2.34646 -88.6787 -2.34646 2.34646 0.90 0.000354287 0.00032528 0.0227434 0.0207944 36 1652 38 6.99608e+06 161872 648988. 2245.63 2.07 0.108982 0.0945165 26050 158493 -1 1211 20 836 912 81742 18817 2.22853 2.22853 -89.8483 -2.22853 0 0 828058. 2865.25 0.31 0.04 0.15 -1 -1 0.31 0.0162513 0.0143535 56 29 24 24 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 15.07 vpr 65.65 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 34136 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67228 31 32 335 280 1 209 78 17 17 289 -1 unnamed_device 27.1 MiB 2.30 1018 11532 3380 6660 1492 65.7 MiB 0.08 0.00 3.58639 -133.629 -3.58639 3.58639 0.89 0.000442336 0.000406178 0.0339387 0.0308968 40 2527 22 6.99608e+06 220735 706193. 2443.58 9.74 0.252468 0.218894 26914 176310 -1 2356 21 1788 2150 225320 45019 3.81471 3.81471 -150.75 -3.81471 0 0 926341. 3205.33 0.35 0.07 0.16 -1 -1 0.35 0.0218821 0.0193627 91 55 31 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 5.93 vpr 65.86 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 33708 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67440 32 32 366 283 1 215 87 17 17 289 -1 unnamed_device 27.2 MiB 0.46 1089 12759 4547 6573 1639 65.9 MiB 0.08 0.00 4.04748 -146.851 -4.04748 4.04748 0.89 0.000445521 0.000406179 0.0342431 0.03127 46 2738 33 6.99608e+06 338461 828058. 2865.25 2.34 0.149109 0.130343 28066 200906 -1 2256 22 2098 2885 238097 47894 4.0266 4.0266 -153.918 -4.0266 0 0 1.01997e+06 3529.29 0.36 0.07 0.19 -1 -1 0.36 0.0239892 0.0213199 97 31 91 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 7.42 vpr 65.86 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 33876 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67444 32 32 460 375 1 303 86 17 17 289 -1 unnamed_device 27.6 MiB 1.33 1280 15206 4884 7262 3060 65.9 MiB 0.12 0.00 4.01908 -141.768 -4.01908 4.01908 0.90 0.000596134 0.000539368 0.0519353 0.0471429 46 3184 26 6.99608e+06 323745 828058. 2865.25 2.90 0.203544 0.179412 28066 200906 -1 2526 22 2398 2713 201663 43588 3.94241 3.94241 -141.818 -3.94241 0 0 1.01997e+06 3529.29 0.39 0.08 0.19 -1 -1 0.39 0.030238 0.0268509 138 108 0 0 125 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 5.85 vpr 64.87 MiB 0.02 6792 -1 -1 1 0.03 -1 -1 34176 -1 -1 15 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66424 26 32 198 186 1 125 73 17 17 289 -1 unnamed_device 26.5 MiB 0.84 401 7217 2934 3827 456 64.9 MiB 0.04 0.00 2.7074 -79.2163 -2.7074 2.7074 0.88 0.000306059 0.000277963 0.0163875 0.0149713 36 1603 35 6.99608e+06 220735 648988. 2245.63 2.17 0.0831545 0.0724702 26050 158493 -1 1013 16 689 801 67846 17332 2.54267 2.54267 -85.1036 -2.54267 0 0 828058. 2865.25 0.32 0.04 0.14 -1 -1 0.32 0.0126379 0.0111867 52 21 26 26 22 22 -fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 9.94 vpr 65.17 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 33788 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66732 32 32 333 251 1 181 76 17 17 289 -1 unnamed_device 26.6 MiB 0.95 698 9036 3669 4978 389 65.2 MiB 0.07 0.00 3.97238 -133.231 -3.97238 3.97238 0.89 0.000506057 0.000464574 0.0299262 0.0273504 62 1908 21 6.99608e+06 176588 1.05005e+06 3633.38 5.68 0.202462 0.175053 30946 263737 -1 1546 22 1313 2069 150685 35340 3.89902 3.89902 -133.735 -3.89902 0 0 1.30136e+06 4502.97 0.48 0.07 0.27 -1 -1 0.48 0.0241355 0.0213648 75 -1 122 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 4.83 vpr 64.66 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 33972 -1 -1 8 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66212 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 26.4 MiB 0.30 736 9906 3603 5031 1272 64.7 MiB 0.06 0.00 2.06111 -84.6894 -2.06111 2.06111 0.90 0.000327207 0.00029752 0.023387 0.0213314 34 1682 40 6.99608e+06 117725 618332. 2139.56 1.65 0.100975 0.0877673 25762 151098 -1 1493 23 837 1076 106858 21102 1.81982 1.81982 -87.513 -1.81982 0 0 787024. 2723.27 0.29 0.05 0.13 -1 -1 0.29 0.01587 0.0139911 44 -1 53 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 7.25 vpr 65.91 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 34176 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67488 32 32 376 288 1 218 81 17 17 289 -1 unnamed_device 27.2 MiB 1.32 836 12681 5269 6945 467 65.9 MiB 0.09 0.00 3.87925 -141.78 -3.87925 3.87925 0.89 0.00049879 0.000455441 0.0390253 0.035519 44 3391 42 6.99608e+06 250167 787024. 2723.27 2.83 0.177251 0.155176 27778 195446 -1 2342 23 2151 3014 258962 56183 4.31072 4.31072 -159.795 -4.31072 0 0 997811. 3452.63 0.38 0.09 0.18 -1 -1 0.38 0.0265962 0.0235587 95 21 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 7.95 vpr 65.33 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 34064 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66896 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 26.7 MiB 0.27 1064 14375 4737 7721 1917 65.3 MiB 0.10 0.00 2.93295 -116.62 -2.93295 2.93295 0.90 0.000514271 0.00047028 0.0368601 0.0336254 40 2476 21 6.99608e+06 412039 706193. 2443.58 4.57 0.211938 0.183998 26914 176310 -1 2274 21 1622 2331 218896 43165 2.83522 2.83522 -121.086 -2.83522 0 0 926341. 3205.33 0.34 0.07 0.17 -1 -1 0.34 0.022993 0.0203487 87 -1 124 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 9.61 vpr 66.05 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 34116 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67636 32 32 407 319 1 256 85 17 17 289 -1 unnamed_device 27.5 MiB 0.84 1077 13105 3562 8179 1364 66.1 MiB 0.11 0.00 3.82425 -139.818 -3.82425 3.82425 0.89 0.000561171 0.000508344 0.0418683 0.0382113 46 3235 48 6.99608e+06 309029 828058. 2865.25 5.52 0.25724 0.222994 28066 200906 -1 2640 21 2279 3175 255918 52323 4.10242 4.10242 -152.703 -4.10242 0 0 1.01997e+06 3529.29 0.40 0.08 0.20 -1 -1 0.40 0.026394 0.0233549 115 54 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 8.37 vpr 65.10 MiB 0.02 6940 -1 -1 1 0.03 -1 -1 33772 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66664 32 32 294 246 1 175 75 17 17 289 -1 unnamed_device 26.6 MiB 1.17 701 9397 3869 5271 257 65.1 MiB 0.07 0.00 2.9841 -107.493 -2.9841 2.9841 0.86 0.000419863 0.000382709 0.0278376 0.0253656 40 2056 26 6.99608e+06 161872 706193. 2443.58 4.23 0.169448 0.146612 26914 176310 -1 1749 21 1469 1977 175866 41844 3.11492 3.11492 -123.828 -3.11492 0 0 926341. 3205.33 0.34 0.07 0.18 -1 -1 0.34 0.021091 0.0186306 72 31 54 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 16.10 vpr 65.16 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 33896 -1 -1 13 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 30 32 296 244 1 173 75 17 17 289 -1 unnamed_device 26.6 MiB 9.01 650 7975 2399 4401 1175 65.2 MiB 0.06 0.00 3.55679 -118.022 -3.55679 3.55679 0.91 0.000443404 0.000404042 0.0247385 0.0226127 46 2056 46 6.99608e+06 191304 828058. 2865.25 3.94 0.145161 0.126432 28066 200906 -1 1471 22 1442 2084 152387 36886 3.57811 3.57811 -127.288 -3.57811 0 0 1.01997e+06 3529.29 0.38 0.06 0.20 -1 -1 0.38 0.0220169 0.0195151 73 29 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 6.78 vpr 64.81 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33848 -1 -1 15 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66364 28 32 278 232 1 163 75 17 17 289 -1 unnamed_device 26.3 MiB 1.26 739 7975 3247 4371 357 64.8 MiB 0.06 0.00 3.69125 -116.127 -3.69125 3.69125 0.86 0.000396404 0.000361313 0.0222771 0.0203386 38 2264 33 6.99608e+06 220735 678818. 2348.85 2.62 0.126543 0.110615 26626 170182 -1 1826 20 1320 1981 167709 35234 3.55311 3.55311 -124.889 -3.55311 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0195225 0.0172935 72 27 56 28 28 28 -fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 7.75 vpr 65.00 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33868 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66560 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 26.6 MiB 0.18 696 7204 2957 4121 126 65.0 MiB 0.05 0.00 2.86245 -113.51 -2.86245 2.86245 0.89 0.000386249 0.00034849 0.0212019 0.0192844 42 2358 35 6.99608e+06 147157 744469. 2576.02 4.57 0.164781 0.141957 27202 183097 -1 1696 19 1440 2212 187054 39459 3.23592 3.23592 -125.782 -3.23592 0 0 949917. 3286.91 0.37 0.06 0.17 -1 -1 0.37 0.0191664 0.0170059 64 -1 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 6.88 vpr 65.35 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 33756 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66920 31 32 303 249 1 185 78 17 17 289 -1 unnamed_device 26.8 MiB 0.78 709 9540 3934 5278 328 65.4 MiB 0.07 0.00 2.94395 -107.519 -2.94395 2.94395 0.91 0.000455738 0.000416293 0.0283623 0.0259205 46 2091 24 6.99608e+06 220735 828058. 2865.25 2.98 0.135308 0.118745 28066 200906 -1 1618 20 1349 1775 124475 28347 3.01682 3.01682 -108.821 -3.01682 0 0 1.01997e+06 3529.29 0.38 0.06 0.20 -1 -1 0.38 0.0208708 0.0185321 77 26 61 31 31 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 10.74 vpr 65.38 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 33992 -1 -1 16 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66952 29 32 312 264 1 197 77 17 17 289 -1 unnamed_device 26.7 MiB 3.47 930 10835 4554 5858 423 65.4 MiB 0.08 0.00 2.88685 -103.645 -2.88685 2.88685 0.92 0.000412381 0.000376061 0.0316247 0.0288521 36 2556 47 6.99608e+06 235451 648988. 2245.63 4.23 0.166086 0.146233 26050 158493 -1 2150 20 1510 1870 165109 34200 2.77122 2.77122 -108.858 -2.77122 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0202622 0.0179206 86 55 29 29 57 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 9.86 vpr 66.10 MiB 0.02 7288 -1 -1 1 0.03 -1 -1 33908 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67688 32 32 423 310 1 243 84 17 17 289 -1 unnamed_device 27.6 MiB 1.13 1138 15273 6065 7495 1713 66.1 MiB 0.13 0.00 3.90815 -143.373 -3.90815 3.90815 0.91 0.000573733 0.000520773 0.0522739 0.0475658 46 3798 44 6.99608e+06 294314 828058. 2865.25 5.44 0.229631 0.203224 28066 200906 -1 2784 22 2316 3568 283139 59648 4.03512 4.03512 -155.915 -4.03512 0 0 1.01997e+06 3529.29 0.40 0.10 0.19 -1 -1 0.40 0.0302255 0.0268695 106 26 128 32 27 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 7.29 vpr 65.74 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 33776 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67320 32 32 403 317 1 252 82 17 17 289 -1 unnamed_device 27.3 MiB 1.19 999 10762 3395 5388 1979 65.7 MiB 0.08 0.00 4.20458 -152.083 -4.20458 4.20458 0.90 0.000476551 0.000433375 0.0350554 0.0318811 64 2302 23 6.99608e+06 264882 1.08113e+06 3740.92 2.77 0.158214 0.138172 31522 276338 -1 1920 22 1973 2633 212687 48768 3.98155 3.98155 -144.262 -3.98155 0 0 1.36325e+06 4717.13 0.51 0.08 0.27 -1 -1 0.51 0.0269473 0.0238935 110 62 62 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 6.88 vpr 65.78 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 34336 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67360 31 32 353 302 1 224 79 17 17 289 -1 unnamed_device 27.2 MiB 0.92 1070 8867 2185 5933 749 65.8 MiB 0.07 0.00 3.49385 -125.494 -3.49385 3.49385 0.91 0.000486957 0.000445449 0.0283771 0.0259422 38 2592 37 6.99608e+06 235451 678818. 2348.85 2.90 0.152811 0.133665 26626 170182 -1 2126 22 1375 1414 133529 27348 3.46516 3.46516 -130.977 -3.46516 0 0 902133. 3121.57 0.34 0.06 0.16 -1 -1 0.34 0.0241359 0.0213708 99 77 0 0 89 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 15.95 vpr 65.80 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 33788 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67376 31 32 391 309 1 242 81 17 17 289 -1 unnamed_device 27.1 MiB 0.92 1182 9006 2249 6265 492 65.8 MiB 0.08 0.00 3.66135 -134.693 -3.66135 3.66135 0.91 0.000561006 0.000512033 0.0342546 0.0287176 40 2955 30 6.99608e+06 264882 706193. 2443.58 11.89 0.282875 0.243048 26914 176310 -1 2782 20 1994 2664 266844 53667 3.86496 3.86496 -149.222 -3.86496 0 0 926341. 3205.33 0.35 0.08 0.18 -1 -1 0.35 0.0251166 0.0223281 105 59 60 30 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 7.27 vpr 65.84 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 33792 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67420 31 32 455 371 1 302 86 17 17 289 -1 unnamed_device 27.6 MiB 1.18 1281 17663 7641 9474 548 65.8 MiB 0.14 0.00 4.62587 -160.146 -4.62587 4.62587 0.91 0.000611701 0.000550167 0.0593909 0.0539784 48 3305 25 6.99608e+06 338461 865456. 2994.66 2.72 0.207112 0.182623 28354 207349 -1 2581 24 2799 3207 368244 103570 4.68164 4.68164 -161.842 -4.68164 0 0 1.05005e+06 3633.38 0.41 0.12 0.20 -1 -1 0.41 0.0316314 0.0279985 138 111 0 0 124 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 21.68 vpr 65.79 MiB 0.02 7504 -1 -1 1 0.03 -1 -1 33836 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67372 31 32 413 333 1 258 82 17 17 289 -1 unnamed_device 27.3 MiB 3.59 1159 10762 4075 5172 1515 65.8 MiB 0.10 0.00 4.92973 -159.817 -4.92973 4.92973 0.89 0.000556598 0.000506116 0.0364979 0.0333387 44 3431 27 6.99608e+06 279598 787024. 2723.27 14.91 0.281477 0.243443 27778 195446 -1 2515 23 2346 3054 248487 52646 4.65544 4.65544 -159.86 -4.65544 0 0 997811. 3452.63 0.37 0.09 0.19 -1 -1 0.37 0.0294294 0.0261988 117 86 31 31 89 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 8.41 vpr 66.01 MiB 0.02 7412 -1 -1 1 0.03 -1 -1 33844 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67592 31 32 391 309 1 241 83 17 17 289 -1 unnamed_device 27.2 MiB 2.66 1059 13763 5785 7510 468 66.0 MiB 0.11 0.00 3.58185 -130.714 -3.58185 3.58185 0.92 0.000542047 0.000491382 0.045013 0.041087 46 2920 39 6.99608e+06 294314 828058. 2865.25 2.48 0.161311 0.1423 28066 200906 -1 2328 22 2129 2826 210068 45712 3.67846 3.67846 -140.694 -3.67846 0 0 1.01997e+06 3529.29 0.40 0.08 0.19 -1 -1 0.40 0.0272259 0.0241876 107 58 60 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 22.81 vpr 66.00 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 34312 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67580 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 27.2 MiB 0.93 1271 6556 1686 3783 1087 66.0 MiB 0.06 0.00 3.81927 -146.587 -3.81927 3.81927 0.92 0.000541762 0.000493067 0.0235816 0.0215652 40 3290 49 6.99608e+06 250167 706193. 2443.58 18.73 0.322134 0.280771 26914 176310 -1 2828 27 2684 3588 464933 126170 4.37501 4.37501 -168.095 -4.37501 0 0 926341. 3205.33 0.33 0.14 0.16 -1 -1 0.33 0.0318931 0.0281764 110 42 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 9.77 vpr 65.96 MiB 0.02 7484 -1 -1 1 0.04 -1 -1 33844 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67540 32 32 496 380 1 313 86 17 17 289 -1 unnamed_device 27.6 MiB 2.31 1530 16529 5778 8459 2292 66.0 MiB 0.14 0.00 4.81093 -174.639 -4.81093 4.81093 0.90 0.000601178 0.000544089 0.0566811 0.0513544 46 4411 29 6.99608e+06 323745 828058. 2865.25 4.08 0.219956 0.193522 28066 200906 -1 3403 25 3482 4762 408062 99975 5.8912 5.8912 -203.084 -5.8912 0 0 1.01997e+06 3529.29 0.38 0.13 0.18 -1 -1 0.38 0.0344467 0.030479 139 91 62 32 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 8.02 vpr 65.00 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 33692 -1 -1 13 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66560 31 32 305 250 1 181 76 17 17 289 -1 unnamed_device 26.5 MiB 0.93 802 9996 3771 4383 1842 65.0 MiB 0.07 0.00 3.1395 -118.304 -3.1395 3.1395 0.91 0.000450362 0.000410703 0.030501 0.0278742 44 2051 29 6.99608e+06 191304 787024. 2723.27 3.99 0.173511 0.150446 27778 195446 -1 1628 20 1398 1706 120876 25222 3.03987 3.03987 -121.096 -3.03987 0 0 997811. 3452.63 0.37 0.05 0.19 -1 -1 0.37 0.0209029 0.0185957 75 24 62 31 31 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 26.92 vpr 65.76 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 33900 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67340 31 32 395 311 1 243 81 17 17 289 -1 unnamed_device 26.9 MiB 0.76 1237 14606 4845 8003 1758 65.8 MiB 0.12 0.00 4.54014 -162.571 -4.54014 4.54014 0.89 0.000524808 0.000477975 0.0476648 0.0434727 44 3549 35 6.99608e+06 264882 787024. 2723.27 22.95 0.295915 0.256354 27778 195446 -1 2767 23 1986 2440 235828 47757 4.54181 4.54181 -170.353 -4.54181 0 0 997811. 3452.63 0.38 0.09 0.19 -1 -1 0.38 0.0277241 0.0244939 106 59 62 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 9.09 vpr 65.89 MiB 0.02 7344 -1 -1 1 0.03 -1 -1 33792 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67472 32 32 397 313 1 246 84 17 17 289 -1 unnamed_device 27.1 MiB 1.23 1279 13077 3808 7089 2180 65.9 MiB 0.11 0.00 3.54953 -133.609 -3.54953 3.54953 0.91 0.00055123 0.000502629 0.0430906 0.0393456 46 3226 21 6.99608e+06 294314 828058. 2865.25 4.65 0.219198 0.190918 28066 200906 -1 2638 20 1817 2644 199508 41576 3.47616 3.47616 -136.254 -3.47616 0 0 1.01997e+06 3529.29 0.37 0.07 0.20 -1 -1 0.37 0.0257777 0.0228591 108 54 62 32 62 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 8.99 vpr 65.07 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 33576 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 32 32 345 257 1 186 77 17 17 289 -1 unnamed_device 26.5 MiB 0.90 797 9368 3826 5299 243 65.1 MiB 0.08 0.00 3.54729 -133.832 -3.54729 3.54729 0.92 0.000525447 0.0004676 0.0323398 0.0295121 46 2734 24 6.99608e+06 191304 828058. 2865.25 4.88 0.211791 0.184744 28066 200906 -1 2153 21 1916 3244 243952 51001 3.82546 3.82546 -152.197 -3.82546 0 0 1.01997e+06 3529.29 0.40 0.08 0.19 -1 -1 0.40 0.0246445 0.0218504 77 -1 128 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 7.40 vpr 65.80 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 33968 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67384 32 32 424 343 1 266 83 17 17 289 -1 unnamed_device 27.2 MiB 1.54 1139 10883 2905 7208 770 65.8 MiB 0.09 0.00 3.32994 -127.882 -3.32994 3.32994 0.88 0.000564099 0.000513253 0.0366936 0.0334619 46 3143 36 6.99608e+06 279598 828058. 2865.25 2.69 0.17228 0.150153 28066 200906 -1 2442 22 2033 2403 188795 41973 3.67371 3.67371 -136.663 -3.67371 0 0 1.01997e+06 3529.29 0.38 0.07 0.20 -1 -1 0.38 0.0273369 0.0242001 120 81 25 25 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 9.06 vpr 65.93 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 33444 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67512 32 32 395 311 1 242 84 17 17 289 -1 unnamed_device 27.1 MiB 1.05 1139 12528 3436 7246 1846 65.9 MiB 0.10 0.00 3.59669 -136.453 -3.59669 3.59669 0.92 0.000557742 0.000508037 0.0412132 0.0376094 40 3651 35 6.99608e+06 294314 706193. 2443.58 4.79 0.197805 0.174363 26914 176310 -1 3030 22 2291 3231 375229 75054 4.27196 4.27196 -159.382 -4.27196 0 0 926341. 3205.33 0.36 0.11 0.17 -1 -1 0.36 0.0278941 0.0247295 106 58 64 32 60 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 7.22 vpr 66.02 MiB 0.02 7288 -1 -1 1 0.03 -1 -1 33960 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67608 32 32 405 318 1 253 81 17 17 289 -1 unnamed_device 27.5 MiB 0.80 1314 14431 4781 7561 2089 66.0 MiB 0.12 0.00 3.61639 -141.899 -3.61639 3.61639 0.92 0.000538715 0.000492479 0.0475546 0.0432534 40 3393 43 6.99608e+06 250167 706193. 2443.58 3.22 0.194713 0.170695 26914 176310 -1 2962 23 2149 2670 288082 56945 3.85076 3.85076 -154.092 -3.85076 0 0 926341. 3205.33 0.35 0.09 0.16 -1 -1 0.35 0.0290337 0.0257362 108 61 63 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 8.31 vpr 65.58 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 33788 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67156 32 32 376 288 1 218 80 17 17 289 -1 unnamed_device 26.9 MiB 1.05 813 11432 3614 6147 1671 65.6 MiB 0.09 0.00 3.93015 -141.517 -3.93015 3.93015 0.89 0.000542201 0.000494914 0.0362877 0.0331582 48 3063 38 6.99608e+06 235451 865456. 2994.66 4.03 0.174272 0.15273 28354 207349 -1 2465 24 2080 2947 347930 83987 4.29972 4.29972 -162.913 -4.29972 0 0 1.05005e+06 3633.38 0.40 0.11 0.20 -1 -1 0.40 0.0276129 0.0243771 94 21 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 8.69 vpr 65.77 MiB 0.02 7320 -1 -1 1 0.03 -1 -1 34060 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67344 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 27.1 MiB 0.99 930 14500 5516 6956 2028 65.8 MiB 0.12 0.00 3.81585 -138.808 -3.81585 3.81585 0.92 0.00057935 0.00052777 0.0487357 0.0444538 48 2890 25 6.99608e+06 264882 865456. 2994.66 4.44 0.239101 0.208307 28354 207349 -1 2363 24 2399 2877 266284 57481 4.45202 4.45202 -164.609 -4.45202 0 0 1.05005e+06 3633.38 0.39 0.09 0.20 -1 -1 0.39 0.0288067 0.0254317 110 50 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 10.62 vpr 65.71 MiB 0.02 7552 -1 -1 1 0.03 -1 -1 34116 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67288 31 32 449 367 1 290 85 17 17 289 -1 unnamed_device 27.5 MiB 1.70 1399 14035 5589 6713 1733 65.7 MiB 0.12 0.00 3.97768 -141.845 -3.97768 3.97768 0.90 0.000586085 0.000532121 0.0479505 0.0435424 44 3778 32 6.99608e+06 323745 787024. 2723.27 5.69 0.278607 0.241542 27778 195446 -1 2996 20 2203 2589 221872 46101 3.89955 3.89955 -144.61 -3.89955 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0270243 0.0240384 132 110 0 0 122 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 9.18 vpr 65.66 MiB 0.02 7404 -1 -1 1 0.03 -1 -1 34108 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67236 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 27.2 MiB 1.01 1318 15273 5215 8174 1884 65.7 MiB 0.12 0.00 3.73195 -141.182 -3.73195 3.73195 0.91 0.000583123 0.000528464 0.0518841 0.0470735 40 3892 28 6.99608e+06 294314 706193. 2443.58 4.92 0.207409 0.182923 26914 176310 -1 3411 31 3192 4502 585199 158538 4.31702 4.31702 -164.025 -4.31702 0 0 926341. 3205.33 0.36 0.17 0.17 -1 -1 0.36 0.0393706 0.0346794 126 86 32 32 94 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 16.88 vpr 65.38 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 34224 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66948 32 32 312 255 1 191 78 17 17 289 -1 unnamed_device 26.9 MiB 0.57 921 12528 4814 6023 1691 65.4 MiB 0.09 0.00 2.98795 -120.412 -2.98795 2.98795 0.87 0.000411594 0.000376424 0.0361752 0.0330881 46 2359 25 6.99608e+06 206020 828058. 2865.25 13.25 0.252567 0.219107 28066 200906 -1 1976 22 1407 1907 172172 34025 3.51482 3.51482 -128.349 -3.51482 0 0 1.01997e+06 3529.29 0.37 0.07 0.19 -1 -1 0.37 0.0227933 0.0201455 80 20 63 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 7.59 vpr 65.75 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33728 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67332 32 32 370 314 1 244 80 17 17 289 -1 unnamed_device 27.0 MiB 1.01 1095 11776 4100 5415 2261 65.8 MiB 0.09 0.00 3.80663 -140.003 -3.80663 3.80663 0.91 0.000506417 0.00046179 0.0377242 0.0344317 46 2887 24 6.99608e+06 235451 828058. 2865.25 3.36 0.157331 0.13808 28066 200906 -1 2394 21 2119 2496 245665 47412 3.60045 3.60045 -141.406 -3.60045 0 0 1.01997e+06 3529.29 0.38 0.08 0.20 -1 -1 0.38 0.0242763 0.0215096 108 91 0 0 94 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 10.46 vpr 66.06 MiB 0.02 7520 -1 -1 1 0.04 -1 -1 34008 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67644 32 32 469 351 1 285 84 17 17 289 -1 unnamed_device 27.8 MiB 0.92 1231 15273 6501 8321 451 66.1 MiB 0.13 0.00 4.57343 -162.846 -4.57343 4.57343 0.90 0.000671378 0.000610409 0.0536267 0.0487226 54 3744 47 6.99608e+06 294314 949917. 3286.91 6.16 0.314054 0.27321 29506 232905 -1 2801 26 3096 4191 425911 86394 5.01456 5.01456 -180.697 -5.01456 0 0 1.17392e+06 4061.99 0.44 0.13 0.22 -1 -1 0.44 0.0350263 0.0310421 126 53 96 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 15.60 vpr 65.56 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 33732 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67132 32 32 368 284 1 217 80 17 17 289 -1 unnamed_device 26.9 MiB 0.72 1100 10916 2969 6188 1759 65.6 MiB 0.09 0.00 3.58059 -138.842 -3.58059 3.58059 0.89 0.000505461 0.00045776 0.0353377 0.0323044 40 2715 36 6.99608e+06 235451 706193. 2443.58 11.78 0.278987 0.2417 26914 176310 -1 2378 23 1873 2403 221246 44404 3.72546 3.72546 -144.213 -3.72546 0 0 926341. 3205.33 0.34 0.08 0.17 -1 -1 0.34 0.0266428 0.0235719 93 31 92 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 13.88 vpr 65.33 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 33804 -1 -1 24 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66900 30 32 296 244 1 177 86 17 17 289 -1 unnamed_device 26.8 MiB 0.72 716 11804 3687 5992 2125 65.3 MiB 0.07 0.00 3.75245 -123.293 -3.75245 3.75245 0.85 0.000382906 0.000348617 0.0279478 0.0255357 40 2192 44 6.99608e+06 353176 706193. 2443.58 10.12 0.249694 0.217378 26914 176310 -1 1852 25 1742 2609 294037 64139 3.89906 3.89906 -135.525 -3.89906 0 0 926341. 3205.33 0.36 0.09 0.17 -1 -1 0.36 0.0239272 0.0210767 80 29 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 10.57 vpr 66.20 MiB 0.02 7548 -1 -1 1 0.04 -1 -1 34580 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67792 32 32 531 413 1 346 88 17 17 289 -1 unnamed_device 27.8 MiB 0.98 1504 15883 5797 7858 2228 66.2 MiB 0.14 0.00 5.34997 -188.353 -5.34997 5.34997 0.91 0.00067742 0.000612589 0.056892 0.0516149 56 3670 24 6.99608e+06 353176 973134. 3367.25 6.11 0.301209 0.262798 29794 239141 -1 3017 22 3279 4088 391656 83242 5.57659 5.57659 -197.891 -5.57659 0 0 1.19926e+06 4149.71 0.45 0.12 0.25 -1 -1 0.45 0.0353323 0.0316701 159 109 32 32 128 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 8.60 vpr 65.76 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 33752 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67336 32 32 376 288 1 217 80 17 17 289 -1 unnamed_device 27.0 MiB 0.80 938 15044 6550 8115 379 65.8 MiB 0.12 0.00 4.27644 -157.663 -4.27644 4.27644 0.89 0.00053919 0.000488834 0.0498438 0.0453729 48 2674 27 6.99608e+06 235451 865456. 2994.66 4.59 0.231104 0.201368 28354 207349 -1 2171 22 2271 2964 225442 48699 4.28801 4.28801 -162.253 -4.28801 0 0 1.05005e+06 3633.38 0.38 0.08 0.19 -1 -1 0.38 0.0243566 0.021579 92 31 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 8.46 vpr 65.18 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 33976 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 26.7 MiB 0.25 660 12763 5275 7138 350 65.2 MiB 0.08 0.00 2.98775 -114.509 -2.98775 2.98775 0.87 0.000438962 0.000400008 0.030829 0.0281603 46 2129 35 6.99608e+06 353176 828058. 2865.25 5.17 0.193876 0.168919 28066 200906 -1 1606 24 1694 2600 190598 40646 3.14062 3.14062 -123.028 -3.14062 0 0 1.01997e+06 3529.29 0.37 0.07 0.19 -1 -1 0.37 0.0223127 0.0197067 70 -1 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 7.40 vpr 66.14 MiB 0.02 7408 -1 -1 1 0.03 -1 -1 34156 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67724 32 32 438 320 1 256 82 17 17 289 -1 unnamed_device 27.3 MiB 0.82 1143 13432 5563 7207 662 66.1 MiB 0.12 0.00 4.46895 -161.038 -4.46895 4.46895 0.89 0.000586402 0.000532756 0.0487365 0.0444618 46 4011 41 6.99608e+06 264882 828058. 2865.25 3.27 0.193846 0.170278 28066 200906 -1 2823 22 2647 3941 340653 73060 4.92841 4.92841 -176.957 -4.92841 0 0 1.01997e+06 3529.29 0.39 0.11 0.20 -1 -1 0.39 0.0307729 0.027391 112 26 128 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 5.49 vpr 65.25 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 33668 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66820 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 26.8 MiB 0.28 625 10614 4416 5947 251 65.3 MiB 0.07 0.00 2.85145 -111.794 -2.85145 2.85145 0.86 0.000404573 0.000368881 0.0287062 0.0262508 40 2195 42 6.99608e+06 147157 706193. 2443.58 2.26 0.125129 0.109791 26914 176310 -1 1718 23 1561 2367 231224 49124 3.36122 3.36122 -130.641 -3.36122 0 0 926341. 3205.33 0.34 0.08 0.18 -1 -1 0.34 0.0220873 0.0195382 62 -1 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 6.28 vpr 65.12 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 33756 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 30 32 296 244 1 179 77 17 17 289 -1 unnamed_device 26.6 MiB 0.86 755 9857 4076 5498 283 65.1 MiB 0.07 0.00 3.30794 -118.735 -3.30794 3.30794 0.91 0.000394141 0.00035921 0.0285627 0.0260726 44 2377 21 6.99608e+06 220735 787024. 2723.27 2.29 0.126438 0.110481 27778 195446 -1 1777 22 1643 2158 180560 38370 3.32751 3.32751 -123.166 -3.32751 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0215636 0.0190448 74 29 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 8.89 vpr 66.00 MiB 0.02 7332 -1 -1 1 0.03 -1 -1 34040 -1 -1 20 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67584 29 32 393 319 1 245 81 17 17 289 -1 unnamed_device 27.5 MiB 2.00 1003 15481 6003 6865 2613 66.0 MiB 0.12 0.00 3.85703 -126.704 -3.85703 3.85703 0.89 0.000516967 0.000469628 0.0490691 0.0447766 46 3294 37 6.99608e+06 294314 828058. 2865.25 3.69 0.18351 0.160818 28066 200906 -1 2268 24 1976 2711 215953 47780 3.784 3.784 -131.247 -3.784 0 0 1.01997e+06 3529.29 0.38 0.08 0.20 -1 -1 0.38 0.0276188 0.0244365 113 81 29 29 85 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 7.06 vpr 66.05 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 34400 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67636 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 27.1 MiB 1.06 1068 14144 5407 6800 1937 66.1 MiB 0.11 0.00 4.29664 -157.784 -4.29664 4.29664 0.92 0.000547393 0.000498078 0.0471392 0.0429414 44 3303 30 6.99608e+06 264882 787024. 2723.27 2.78 0.184794 0.16253 27778 195446 -1 2309 23 2566 3447 284686 60687 4.63711 4.63711 -168.166 -4.63711 0 0 997811. 3452.63 0.37 0.09 0.17 -1 -1 0.37 0.0286799 0.0255035 109 53 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 9.53 vpr 65.96 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 34056 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67548 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 27.5 MiB 1.12 1151 6846 1472 4993 381 66.0 MiB 0.07 0.00 4.30354 -157.84 -4.30354 4.30354 0.92 0.000539001 0.000489876 0.0243534 0.0222989 44 3666 26 6.99608e+06 264882 787024. 2723.27 5.24 0.239205 0.208146 27778 195446 -1 2775 22 2651 3650 339920 68477 4.66885 4.66885 -176.579 -4.66885 0 0 997811. 3452.63 0.36 0.10 0.17 -1 -1 0.36 0.0276452 0.024606 110 55 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 6.46 vpr 65.18 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 33940 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 32 32 345 287 1 212 79 17 17 289 -1 unnamed_device 26.8 MiB 0.76 792 12585 5306 6906 373 65.2 MiB 0.09 0.00 3.44424 -128.433 -3.44424 3.44424 0.87 0.000480973 0.000438082 0.0380245 0.034736 46 2594 31 6.99608e+06 220735 828058. 2865.25 2.63 0.135047 0.118917 28066 200906 -1 1950 23 1717 1907 209701 57729 3.50111 3.50111 -133.7 -3.50111 0 0 1.01997e+06 3529.29 0.37 0.08 0.18 -1 -1 0.37 0.0248164 0.021957 92 55 32 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 8.90 vpr 65.48 MiB 0.02 7336 -1 -1 1 0.03 -1 -1 33812 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67056 31 32 353 302 1 230 80 17 17 289 -1 unnamed_device 27.0 MiB 2.83 885 11260 4668 6241 351 65.5 MiB 0.08 0.00 3.46644 -123.995 -3.46644 3.46644 0.91 0.00045578 0.0004165 0.0343635 0.0313138 44 3163 36 6.99608e+06 250167 787024. 2723.27 2.86 0.157538 0.137248 27778 195446 -1 2130 20 1974 2424 214175 46439 3.36172 3.36172 -122.743 -3.36172 0 0 997811. 3452.63 0.40 0.08 0.19 -1 -1 0.40 0.0235554 0.0209531 102 82 0 0 89 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 21.78 vpr 65.73 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 33972 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67312 30 32 374 297 1 226 81 17 17 289 -1 unnamed_device 27.0 MiB 1.35 904 12506 5230 6653 623 65.7 MiB 0.10 0.00 3.42074 -117.96 -3.42074 3.42074 0.90 0.000531833 0.000482813 0.0398565 0.0363883 44 3198 37 6.99608e+06 279598 787024. 2723.27 17.24 0.290176 0.251631 27778 195446 -1 2204 22 1934 2742 228445 49561 3.44877 3.44877 -123.813 -3.44877 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0259755 0.0229896 101 52 60 30 57 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 8.67 vpr 65.10 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 34064 -1 -1 18 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 28 32 332 260 1 197 78 17 17 289 -1 unnamed_device 26.7 MiB 0.74 824 9872 4064 5274 534 65.1 MiB 0.08 0.00 3.73195 -121.956 -3.73195 3.73195 0.89 0.000476583 0.000436043 0.0303971 0.0277895 44 2539 27 6.99608e+06 264882 787024. 2723.27 4.81 0.210132 0.181897 27778 195446 -1 1813 24 1880 2757 196479 43096 3.89076 3.89076 -131.029 -3.89076 0 0 997811. 3452.63 0.37 0.07 0.19 -1 -1 0.37 0.0244259 0.0215498 87 20 84 28 28 28 -fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 8.53 vpr 65.72 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 34156 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67300 30 32 325 273 1 204 77 17 17 289 -1 unnamed_device 27.1 MiB 2.09 814 10672 3702 5165 1805 65.7 MiB 0.08 0.00 4.51934 -148.35 -4.51934 4.51934 0.92 0.000471897 0.00043002 0.0328837 0.0300086 44 2874 44 6.99608e+06 220735 787024. 2723.27 3.25 0.166856 0.146519 27778 195446 -1 1781 21 1603 2154 172251 38340 3.92035 3.92035 -139.153 -3.92035 0 0 997811. 3452.63 0.40 0.07 0.19 -1 -1 0.40 0.0231474 0.020572 88 58 30 30 60 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 11.81 vpr 65.70 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 33704 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67276 32 32 361 308 1 241 79 17 17 289 -1 unnamed_device 27.2 MiB 3.30 1000 12585 4720 5647 2218 65.7 MiB 0.10 0.00 3.77345 -134.122 -3.77345 3.77345 0.90 0.000523128 0.000478546 0.0401827 0.0366669 46 3110 45 6.99608e+06 220735 828058. 2865.25 5.32 0.21598 0.187742 28066 200906 -1 2315 22 1840 2270 204664 42541 3.86506 3.86506 -142.099 -3.86506 0 0 1.01997e+06 3529.29 0.38 0.08 0.20 -1 -1 0.38 0.0248371 0.0219502 104 88 0 0 91 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 8.03 vpr 65.47 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 33968 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67044 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 26.9 MiB 0.14 808 15688 5217 8110 2361 65.5 MiB 0.12 0.00 3.76925 -134.079 -3.76925 3.76925 0.91 0.000485912 0.000447834 0.042421 0.0387347 46 3039 46 6.99608e+06 367892 828058. 2865.25 4.65 0.192949 0.169878 28066 200906 -1 2083 22 1974 3110 278347 59487 3.95812 3.95812 -147.376 -3.95812 0 0 1.01997e+06 3529.29 0.40 0.09 0.19 -1 -1 0.40 0.0248077 0.0219702 86 -1 124 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 6.95 vpr 65.97 MiB 0.02 7432 -1 -1 1 0.03 -1 -1 34212 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67552 32 32 407 319 1 249 81 17 17 289 -1 unnamed_device 27.5 MiB 0.79 1209 11281 3120 7720 441 66.0 MiB 0.10 0.00 4.19534 -154.628 -4.19534 4.19534 0.89 0.000542502 0.000497779 0.0384988 0.0351681 44 3513 23 6.99608e+06 250167 787024. 2723.27 2.96 0.154568 0.135626 27778 195446 -1 2754 24 2419 3189 274672 55034 4.82351 4.82351 -173.98 -4.82351 0 0 997811. 3452.63 0.38 0.09 0.19 -1 -1 0.38 0.029386 0.0260125 110 57 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 7.30 vpr 65.82 MiB 0.02 7036 -1 -1 1 0.03 -1 -1 34012 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67396 32 32 407 319 1 248 82 17 17 289 -1 unnamed_device 27.3 MiB 0.71 1142 12364 5175 6807 382 65.8 MiB 0.10 0.00 5.12678 -171.348 -5.12678 5.12678 0.90 0.000552903 0.000504018 0.0417509 0.0381272 54 3283 29 6.99608e+06 264882 949917. 3286.91 3.29 0.173811 0.152371 29506 232905 -1 2541 20 2138 2971 308261 63089 4.7525 4.7525 -174.578 -4.7525 0 0 1.17392e+06 4061.99 0.44 0.09 0.24 -1 -1 0.44 0.0262115 0.0233545 108 62 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 27.26 vpr 65.92 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 34012 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67500 32 32 399 315 1 250 82 17 17 289 -1 unnamed_device 27.1 MiB 0.68 1089 13788 4649 7550 1589 65.9 MiB 0.12 0.00 4.15408 -148.064 -4.15408 4.15408 0.89 0.00050811 0.00046331 0.0455063 0.0414409 44 3953 47 6.99608e+06 264882 787024. 2723.27 23.40 0.334955 0.29104 27778 195446 -1 2830 21 2212 3137 303084 61955 4.23195 4.23195 -157.936 -4.23195 0 0 997811. 3452.63 0.39 0.09 0.18 -1 -1 0.39 0.0264533 0.023413 107 62 60 30 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 6.83 vpr 65.28 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 33604 -1 -1 13 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 30 32 296 244 1 179 75 17 17 289 -1 unnamed_device 26.8 MiB 0.90 692 12241 5462 6300 479 65.3 MiB 0.08 0.00 3.58339 -124.571 -3.58339 3.58339 0.90 0.000453889 0.00041288 0.0347155 0.0316418 48 2391 37 6.99608e+06 191304 865456. 2994.66 2.74 0.145846 0.127625 28354 207349 -1 1950 20 1503 2055 207950 47946 3.95106 3.95106 -135.959 -3.95106 0 0 1.05005e+06 3633.38 0.39 0.07 0.20 -1 -1 0.39 0.0198045 0.0175575 76 29 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 9.70 vpr 65.98 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 34108 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67568 30 32 383 303 1 237 80 17 17 289 -1 unnamed_device 27.2 MiB 2.68 1070 13152 5486 7187 479 66.0 MiB 0.11 0.00 4.68713 -157.481 -4.68713 4.68713 0.92 0.000528531 0.000480728 0.0440928 0.040235 46 3476 35 6.99608e+06 264882 828058. 2865.25 3.73 0.194454 0.172043 28066 200906 -1 2689 20 2330 3345 315282 68139 4.86645 4.86645 -173.897 -4.86645 0 0 1.01997e+06 3529.29 0.40 0.10 0.19 -1 -1 0.40 0.0265934 0.0237148 105 58 60 30 60 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 7.43 vpr 65.90 MiB 0.02 7536 -1 -1 1 0.03 -1 -1 34264 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67480 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 27.6 MiB 0.88 1372 11615 4190 5568 1857 65.9 MiB 0.10 0.00 4.17744 -155.5 -4.17744 4.17744 0.90 0.000577081 0.000526513 0.0394415 0.0359716 46 3391 25 6.99608e+06 323745 828058. 2865.25 3.32 0.175675 0.153427 28066 200906 -1 2703 24 2614 2688 212817 43588 4.30395 4.30395 -165.025 -4.30395 0 0 1.01997e+06 3529.29 0.38 0.08 0.19 -1 -1 0.38 0.0307258 0.0271856 139 106 0 0 128 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 11.01 vpr 65.70 MiB 0.02 7432 -1 -1 1 0.03 -1 -1 34036 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67280 31 32 425 341 1 275 85 17 17 289 -1 unnamed_device 27.3 MiB 1.68 1101 12733 5285 6817 631 65.7 MiB 0.10 0.00 4.35899 -150.667 -4.35899 4.35899 0.89 0.000566976 0.00051643 0.0420504 0.0383469 54 2946 36 6.99608e+06 323745 949917. 3286.91 6.04 0.269216 0.233119 29506 232905 -1 2087 21 2106 2410 180381 43349 4.43961 4.43961 -155.342 -4.43961 0 0 1.17392e+06 4061.99 0.42 0.07 0.24 -1 -1 0.42 0.026752 0.0237756 125 79 31 31 93 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 10.29 vpr 65.54 MiB 0.02 7384 -1 -1 1 0.03 -1 -1 33832 -1 -1 22 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67116 30 32 404 328 1 249 84 17 17 289 -1 unnamed_device 27.0 MiB 3.15 1072 15456 6595 7994 867 65.5 MiB 0.12 0.00 4.1343 -135.415 -4.1343 4.1343 0.92 0.000551695 0.000501962 0.0488812 0.0444861 48 3698 50 6.99608e+06 323745 865456. 2994.66 3.81 0.21101 0.186105 28354 207349 -1 2712 22 2618 3714 404282 93680 4.495 4.495 -155.983 -4.495 0 0 1.05005e+06 3633.38 0.41 0.12 0.20 -1 -1 0.41 0.0290891 0.0257874 114 83 26 26 90 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 10.31 vpr 65.84 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 33964 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67416 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 27.4 MiB 1.05 1174 14500 5592 7226 1682 65.8 MiB 0.12 0.00 4.33244 -160.384 -4.33244 4.33244 0.92 0.000558247 0.000508257 0.0493122 0.0450118 52 3431 27 6.99608e+06 264882 926341. 3205.33 5.88 0.280663 0.244636 29218 227130 -1 2854 23 2777 3848 399366 78126 5.03681 5.03681 -182.418 -5.03681 0 0 1.14541e+06 3963.36 0.44 0.11 0.23 -1 -1 0.44 0.0292018 0.0259116 110 58 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 21.03 vpr 65.74 MiB 0.02 7492 -1 -1 1 0.03 -1 -1 33712 -1 -1 20 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67320 29 32 387 316 1 240 81 17 17 289 -1 unnamed_device 27.2 MiB 2.00 1070 11106 4662 5983 461 65.7 MiB 0.09 0.00 3.53179 -119.754 -3.53179 3.53179 0.92 0.000514206 0.000467906 0.0370254 0.0337799 38 3405 45 6.99608e+06 294314 678818. 2348.85 15.88 0.315966 0.27575 26626 170182 -1 2623 23 2263 2942 297644 62451 3.80071 3.80071 -137.44 -3.80071 0 0 902133. 3121.57 0.34 0.10 0.16 -1 -1 0.34 0.0282002 0.0249231 112 81 26 26 85 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 6.24 vpr 64.80 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 33784 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66360 32 32 283 225 1 155 74 17 17 289 -1 unnamed_device 26.4 MiB 0.74 592 9684 3186 4658 1840 64.8 MiB 0.07 0.00 2.86245 -110.719 -2.86245 2.86245 0.89 0.000430807 0.000391653 0.0294891 0.0268464 42 2359 50 6.99608e+06 147157 744469. 2576.02 2.52 0.142608 0.124035 27202 183097 -1 1634 23 1545 2424 209766 47495 2.99762 2.99762 -119.713 -2.99762 0 0 949917. 3286.91 0.34 0.07 0.16 -1 -1 0.34 0.0207819 0.0183218 62 -1 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 6.93 vpr 65.63 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 33924 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67204 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 27.1 MiB 0.75 999 9872 3990 5501 381 65.6 MiB 0.08 0.00 4.9054 -173.166 -4.9054 4.9054 0.91 0.000571765 0.000509958 0.0338973 0.030948 62 2768 25 6.99608e+06 264882 1.05005e+06 3633.38 2.79 0.166202 0.145977 30946 263737 -1 2108 24 2322 3244 247292 54294 4.7445 4.7445 -170.964 -4.7445 0 0 1.30136e+06 4502.97 0.50 0.09 0.26 -1 -1 0.50 0.0306709 0.0272672 110 62 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 7.22 vpr 65.43 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 33936 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67004 32 32 407 319 1 255 81 17 17 289 -1 unnamed_device 26.9 MiB 0.92 1203 7431 1958 4126 1347 65.4 MiB 0.07 0.00 4.63877 -167.295 -4.63877 4.63877 0.90 0.000566801 0.000515912 0.0269636 0.024669 44 3706 30 6.99608e+06 250167 787024. 2723.27 3.08 0.165826 0.145493 27778 195446 -1 2821 23 2937 3999 344173 71664 4.54104 4.54104 -171.037 -4.54104 0 0 997811. 3452.63 0.38 0.11 0.19 -1 -1 0.38 0.0300421 0.0267193 111 62 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 10.80 vpr 65.30 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 33852 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66864 32 32 315 267 1 202 77 17 17 289 -1 unnamed_device 26.8 MiB 2.45 766 11324 4293 5664 1367 65.3 MiB 0.08 0.00 3.24452 -112.954 -3.24452 3.24452 0.90 0.000440973 0.000402298 0.0334213 0.0305045 52 2311 46 6.99608e+06 191304 926341. 3205.33 5.09 0.199404 0.17264 29218 227130 -1 1681 29 1656 1972 307039 128679 3.27646 3.27646 -116.799 -3.27646 0 0 1.14541e+06 3963.36 0.43 0.11 0.22 -1 -1 0.43 0.0272859 0.0240236 85 47 32 32 54 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 13.75 vpr 64.82 MiB 0.02 7156 -1 -1 1 0.03 -1 -1 34000 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 26.4 MiB 0.23 592 7514 3020 4270 224 64.8 MiB 0.06 0.00 3.0031 -111.146 -3.0031 3.0031 0.89 0.000421914 0.000385142 0.0233461 0.0213746 44 2109 28 6.99608e+06 161872 787024. 2723.27 10.45 0.212876 0.184417 27778 195446 -1 1545 23 1522 2264 188568 39872 3.00867 3.00867 -118.918 -3.00867 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0208086 0.0182673 63 -1 93 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 16.91 vpr 65.83 MiB 0.02 7336 -1 -1 1 0.03 -1 -1 33580 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67408 32 32 381 303 1 235 81 17 17 289 -1 unnamed_device 27.2 MiB 0.97 1014 12331 5131 6918 282 65.8 MiB 0.09 0.00 4.03648 -138.539 -4.03648 4.03648 0.90 0.000530019 0.000483756 0.0393761 0.0357509 40 2840 45 6.99608e+06 250167 706193. 2443.58 12.80 0.301401 0.261819 26914 176310 -1 2519 31 2701 3185 464315 133414 4.10195 4.10195 -149.535 -4.10195 0 0 926341. 3205.33 0.35 0.15 0.16 -1 -1 0.35 0.0342849 0.0300827 102 56 60 32 58 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 7.67 vpr 65.81 MiB 0.02 7324 -1 -1 1 0.03 -1 -1 33680 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67388 32 32 406 330 1 255 83 17 17 289 -1 unnamed_device 27.3 MiB 1.52 1077 13043 5447 7262 334 65.8 MiB 0.11 0.00 4.38874 -150.527 -4.38874 4.38874 0.87 0.00054338 0.000493466 0.0434383 0.0396576 48 2878 41 6.99608e+06 279598 865456. 2994.66 2.95 0.192073 0.169137 28354 207349 -1 2423 30 2362 2895 394206 145895 4.25521 4.25521 -153.753 -4.25521 0 0 1.05005e+06 3633.38 0.39 0.15 0.19 -1 -1 0.39 0.036185 0.0320275 115 81 28 28 88 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 9.07 vpr 65.68 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33748 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67260 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 27.0 MiB 0.37 981 8047 1739 5489 819 65.7 MiB 0.07 0.00 4.28063 -149.977 -4.28063 4.28063 0.88 0.000586435 0.000527878 0.0261154 0.023822 48 3128 28 6.99608e+06 397324 865456. 2994.66 5.56 0.228653 0.1985 28354 207349 -1 2519 23 2406 3761 313415 73098 4.58255 4.58255 -170.105 -4.58255 0 0 1.05005e+06 3633.38 0.42 0.10 0.20 -1 -1 0.42 0.0307481 0.0273493 100 -1 156 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 8.60 vpr 65.25 MiB 0.02 7488 -1 -1 1 0.03 -1 -1 34184 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 30 32 371 295 1 227 81 17 17 289 -1 unnamed_device 26.6 MiB 1.03 884 14431 6074 7798 559 65.2 MiB 0.11 0.00 3.66815 -119.86 -3.66815 3.66815 0.91 0.000517609 0.000471056 0.0459424 0.0419511 40 3422 29 6.99608e+06 279598 706193. 2443.58 4.40 0.173477 0.152466 26914 176310 -1 2507 22 2086 2957 290244 65678 3.62741 3.62741 -134.801 -3.62741 0 0 926341. 3205.33 0.34 0.10 0.17 -1 -1 0.34 0.0266837 0.0237382 101 47 60 30 56 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 9.01 vpr 64.85 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 34004 -1 -1 16 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66404 27 32 269 226 1 152 75 17 17 289 -1 unnamed_device 26.4 MiB 1.56 589 11925 5033 6263 629 64.8 MiB 0.08 0.00 3.68305 -110.555 -3.68305 3.68305 0.89 0.00039159 0.00035617 0.0321414 0.0293821 40 1692 28 6.99608e+06 235451 706193. 2443.58 4.41 0.166198 0.143933 26914 176310 -1 1433 19 1151 1593 139670 30760 3.87401 3.87401 -124.064 -3.87401 0 0 926341. 3205.33 0.35 0.05 0.17 -1 -1 0.35 0.0180118 0.0159704 67 26 54 27 27 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 10.16 vpr 66.18 MiB 0.02 7444 -1 -1 1 0.04 -1 -1 34120 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67764 32 32 493 378 1 313 85 17 17 289 -1 unnamed_device 27.9 MiB 0.98 1512 15151 5383 7381 2387 66.2 MiB 0.15 0.00 4.46404 -157.207 -4.46404 4.46404 0.90 0.000671143 0.000610581 0.056869 0.0517322 54 3932 27 6.99608e+06 309029 949917. 3286.91 5.74 0.294021 0.256776 29506 232905 -1 3228 23 2653 3708 434053 80854 4.60891 4.60891 -163.196 -4.60891 0 0 1.17392e+06 4061.99 0.44 0.12 0.23 -1 -1 0.44 0.0345948 0.0307875 141 85 62 31 95 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 21.43 vpr 65.83 MiB 0.02 7292 -1 -1 1 0.03 -1 -1 34364 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67408 31 32 455 371 1 302 85 17 17 289 -1 unnamed_device 27.6 MiB 3.05 1389 9013 2681 4820 1512 65.8 MiB 0.08 0.00 4.97674 -167.764 -4.97674 4.97674 0.89 0.000589296 0.000537034 0.0314426 0.028702 42 3808 25 6.99608e+06 323745 744469. 2576.02 15.21 0.270807 0.233454 27202 183097 -1 2980 22 2696 3055 322151 63359 4.52204 4.52204 -166.56 -4.52204 0 0 949917. 3286.91 0.35 0.10 0.18 -1 -1 0.35 0.0296781 0.0263763 138 105 0 0 124 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 8.63 vpr 65.64 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 33804 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67216 32 32 355 304 1 233 79 17 17 289 -1 unnamed_device 26.9 MiB 3.30 1031 11233 4729 6294 210 65.6 MiB 0.09 0.00 3.87693 -140.03 -3.87693 3.87693 0.86 0.000480869 0.000438957 0.0359115 0.0327453 46 3029 25 6.99608e+06 220735 828058. 2865.25 2.22 0.138572 0.122006 28066 200906 -1 2233 21 1682 2023 212330 43607 3.8735 3.8735 -140.554 -3.8735 0 0 1.01997e+06 3529.29 0.38 0.08 0.19 -1 -1 0.38 0.0241401 0.0214656 102 86 0 0 89 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 9.30 vpr 65.75 MiB 0.02 7332 -1 -1 1 0.03 -1 -1 34124 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67332 32 32 364 282 1 217 80 17 17 289 -1 unnamed_device 27.1 MiB 1.08 1034 14184 5996 7912 276 65.8 MiB 0.11 0.00 3.78975 -136.67 -3.78975 3.78975 0.89 0.000486966 0.000440653 0.043638 0.0396854 46 3037 39 6.99608e+06 235451 828058. 2865.25 5.07 0.226796 0.196978 28066 200906 -1 2411 23 2014 2763 226465 47089 4.14942 4.14942 -146.662 -4.14942 0 0 1.01997e+06 3529.29 0.39 0.08 0.18 -1 -1 0.39 0.0261244 0.023147 92 31 90 30 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 16.84 vpr 66.14 MiB 0.02 7380 -1 -1 1 0.03 -1 -1 34328 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67732 31 32 443 336 1 261 83 17 17 289 -1 unnamed_device 27.6 MiB 1.62 1068 13943 4857 7191 1895 66.1 MiB 0.11 0.00 3.9689 -135.877 -3.9689 3.9689 0.85 0.00052402 0.00047846 0.0460794 0.0419891 38 3765 35 6.99608e+06 294314 678818. 2348.85 12.18 0.330563 0.28887 26626 170182 -1 2652 19 2280 3067 243980 51586 4.53931 4.53931 -159.576 -4.53931 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.0275507 0.0245592 117 50 87 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 8.24 vpr 65.65 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 34148 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67228 30 32 373 297 1 228 82 17 17 289 -1 unnamed_device 27.0 MiB 1.23 1088 13788 5313 5928 2547 65.7 MiB 0.11 0.00 3.56069 -123.887 -3.56069 3.56069 0.91 0.000533889 0.000488932 0.0432862 0.0394952 36 3765 43 6.99608e+06 294314 648988. 2245.63 3.87 0.157322 0.137942 26050 158493 -1 2745 24 2121 3006 327402 82327 3.86606 3.86606 -143.244 -3.86606 0 0 828058. 2865.25 0.33 0.10 0.16 -1 -1 0.33 0.0267725 0.0237062 101 50 58 30 58 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 7.07 vpr 66.05 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 34152 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67632 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 27.1 MiB 0.74 1034 13906 5203 6656 2047 66.0 MiB 0.12 0.00 4.17744 -150.809 -4.17744 4.17744 0.90 0.000545381 0.000496954 0.0480788 0.0438008 46 3490 34 6.99608e+06 250167 828058. 2865.25 3.10 0.170664 0.150062 28066 200906 -1 2372 20 2365 2885 199600 43888 4.29595 4.29595 -158.61 -4.29595 0 0 1.01997e+06 3529.29 0.39 0.08 0.20 -1 -1 0.39 0.0264237 0.0235259 107 61 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 6.85 vpr 65.97 MiB 0.02 7424 -1 -1 1 0.03 -1 -1 33836 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67552 32 32 405 318 1 253 82 17 17 289 -1 unnamed_device 27.2 MiB 0.80 1295 11830 3708 6867 1255 66.0 MiB 0.10 0.00 3.61179 -138.351 -3.61179 3.61179 0.88 0.000558012 0.000508178 0.0395265 0.0361203 44 3300 26 6.99608e+06 264882 787024. 2723.27 2.90 0.179197 0.157978 27778 195446 -1 2703 20 2135 2793 251311 48954 3.60016 3.60016 -142.717 -3.60016 0 0 997811. 3452.63 0.37 0.09 0.18 -1 -1 0.37 0.0274689 0.0245003 108 61 63 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 8.35 vpr 65.34 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 33916 -1 -1 14 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66904 29 32 287 238 1 172 75 17 17 289 -1 unnamed_device 26.8 MiB 1.37 714 7817 3113 4376 328 65.3 MiB 0.06 0.00 3.29694 -113.946 -3.29694 3.29694 0.89 0.000420336 0.000383622 0.0228023 0.0208634 36 2003 34 6.99608e+06 206020 648988. 2245.63 4.01 0.165619 0.143038 26050 158493 -1 1694 21 1692 2179 190249 39843 3.33251 3.33251 -123.942 -3.33251 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0201826 0.0178775 73 28 58 29 29 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 8.28 vpr 65.17 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33984 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66736 32 32 334 290 1 207 78 17 17 289 -1 unnamed_device 26.8 MiB 2.85 796 13192 4518 6301 2373 65.2 MiB 0.09 0.00 3.75163 -124.237 -3.75163 3.75163 0.89 0.00047636 0.000433132 0.0376071 0.0341118 48 2528 41 6.99608e+06 206020 865456. 2994.66 2.31 0.132793 0.115979 28354 207349 -1 1828 24 1787 2127 220585 54742 3.81306 3.81306 -131.476 -3.81306 0 0 1.05005e+06 3633.38 0.40 0.08 0.19 -1 -1 0.40 0.0241853 0.0213518 91 79 0 0 82 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 17.18 vpr 65.65 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 33688 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67228 31 32 365 281 1 217 80 17 17 289 -1 unnamed_device 27.0 MiB 0.70 1104 8164 1792 5984 388 65.7 MiB 0.07 0.00 3.79614 -138.31 -3.79614 3.79614 0.92 0.000562287 0.000515576 0.0280644 0.0256598 38 3147 50 6.99608e+06 250167 678818. 2348.85 13.41 0.270941 0.23464 26626 170182 -1 2366 24 2350 3073 243957 50555 4.16842 4.16842 -156.14 -4.16842 0 0 902133. 3121.57 0.33 0.08 0.15 -1 -1 0.33 0.0252423 0.0223025 92 29 93 31 31 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 7.96 vpr 65.43 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33788 -1 -1 16 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66996 29 32 297 254 1 191 77 17 17 289 -1 unnamed_device 26.8 MiB 1.88 924 11813 4851 6237 725 65.4 MiB 0.08 0.00 3.23604 -112.025 -3.23604 3.23604 0.90 0.000441097 0.000401906 0.0337346 0.0308183 38 2436 26 6.99608e+06 235451 678818. 2348.85 3.02 0.13259 0.115757 26626 170182 -1 2073 24 1525 1707 165264 33337 3.16816 3.16816 -115.879 -3.16816 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.0212031 0.018691 81 48 29 29 52 26 -fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 6.54 vpr 65.28 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 33696 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66848 32 32 314 256 1 188 77 17 17 289 -1 unnamed_device 26.8 MiB 0.80 800 12628 5339 6973 316 65.3 MiB 0.09 0.00 3.56959 -131.903 -3.56959 3.56959 0.89 0.00044999 0.000409323 0.0379195 0.0345763 44 2487 30 6.99608e+06 191304 787024. 2723.27 2.62 0.137641 0.121125 27778 195446 -1 1705 17 1533 1922 131004 29711 3.46386 3.46386 -135.208 -3.46386 0 0 997811. 3452.63 0.39 0.06 0.19 -1 -1 0.39 0.0196209 0.0175189 79 31 64 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 17.92 vpr 65.72 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 33684 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67296 31 32 387 307 1 239 82 17 17 289 -1 unnamed_device 27.0 MiB 1.37 964 11296 3574 5293 2429 65.7 MiB 0.09 0.00 4.06828 -143.162 -4.06828 4.06828 0.89 0.000533734 0.000486932 0.0368985 0.0337134 40 3214 32 6.99608e+06 279598 706193. 2443.58 13.42 0.289775 0.250671 26914 176310 -1 2600 22 2312 3132 302196 67204 4.44055 4.44055 -164.36 -4.44055 0 0 926341. 3205.33 0.34 0.09 0.17 -1 -1 0.34 0.0265691 0.0235694 105 60 58 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 9.01 vpr 65.13 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 34112 -1 -1 13 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66696 31 32 308 262 1 192 76 17 17 289 -1 unnamed_device 26.5 MiB 2.76 694 11756 4613 5996 1147 65.1 MiB 0.08 0.00 3.23724 -109.795 -3.23724 3.23724 0.88 0.000432362 0.000393682 0.0355787 0.0325258 48 2270 42 6.99608e+06 191304 865456. 2994.66 3.17 0.156816 0.137666 28354 207349 -1 1708 21 1433 1798 169413 41404 3.02657 3.02657 -117.748 -3.02657 0 0 1.05005e+06 3633.38 0.39 0.06 0.19 -1 -1 0.39 0.0207282 0.0183914 81 49 31 31 53 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 7.79 vpr 65.89 MiB 0.02 7280 -1 -1 1 0.03 -1 -1 34088 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67476 32 32 383 307 1 232 82 17 17 289 -1 unnamed_device 27.2 MiB 1.76 911 15034 6476 7971 587 65.9 MiB 0.11 0.00 3.61105 -126.923 -3.61105 3.61105 0.90 0.000492435 0.000447155 0.0461108 0.0418664 52 2649 36 6.99608e+06 264882 926341. 3205.33 2.78 0.167153 0.146724 29218 227130 -1 1955 21 1562 2310 216108 47411 3.58131 3.58131 -132.928 -3.58131 0 0 1.14541e+06 3963.36 0.44 0.08 0.21 -1 -1 0.44 0.0248187 0.021854 103 56 52 26 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 7.89 vpr 65.88 MiB 0.02 7276 -1 -1 1 0.03 -1 -1 34236 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67464 31 32 422 339 1 272 85 17 17 289 -1 unnamed_device 27.5 MiB 0.91 1135 16081 6006 7648 2427 65.9 MiB 0.13 0.00 4.67827 -157.924 -4.67827 4.67827 0.92 0.000564731 0.000512334 0.0526284 0.0478914 44 3513 45 6.99608e+06 323745 787024. 2723.27 3.68 0.224344 0.198013 27778 195446 -1 2487 19 2432 3368 259814 58474 4.16544 4.16544 -153.653 -4.16544 0 0 997811. 3452.63 0.39 0.09 0.18 -1 -1 0.39 0.0262946 0.0234748 123 88 31 31 92 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 18.37 vpr 65.82 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 33776 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67404 32 32 333 279 1 208 79 17 17 289 -1 unnamed_device 27.2 MiB 2.87 1185 10050 2506 6241 1303 65.8 MiB 0.07 0.00 3.59004 -135.268 -3.59004 3.59004 0.92 0.000490321 0.000447425 0.0308558 0.0281868 38 3007 50 6.99608e+06 220735 678818. 2348.85 12.47 0.241743 0.209263 26626 170182 -1 2497 20 1576 2252 189478 38614 3.61641 3.61641 -137.232 -3.61641 0 0 902133. 3121.57 0.31 0.06 0.15 -1 -1 0.31 0.0197351 0.0175678 88 54 32 32 60 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 9.19 vpr 65.64 MiB 0.02 7032 -1 -1 1 0.03 -1 -1 33716 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67220 32 32 339 283 1 212 78 17 17 289 -1 unnamed_device 26.9 MiB 0.87 844 13856 5698 7170 988 65.6 MiB 0.10 0.00 3.30794 -123.058 -3.30794 3.30794 0.90 0.000476342 0.000434387 0.0432915 0.0395323 46 2571 29 6.99608e+06 206020 828058. 2865.25 5.13 0.201161 0.175433 28066 200906 -1 1932 23 1732 2132 182492 39438 3.46881 3.46881 -137.482 -3.46881 0 0 1.01997e+06 3529.29 0.38 0.07 0.20 -1 -1 0.38 0.0242335 0.0214462 91 60 32 32 62 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 9.17 vpr 66.12 MiB 0.02 7388 -1 -1 1 0.03 -1 -1 34140 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67712 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 27.3 MiB 1.00 1239 11118 3579 5407 2132 66.1 MiB 0.09 0.00 3.81515 -143.501 -3.81515 3.81515 0.90 0.000543624 0.000494555 0.03625 0.0330261 46 2851 29 6.99608e+06 264882 828058. 2865.25 4.99 0.232673 0.201744 28066 200906 -1 2313 22 2167 2631 155247 34639 4.06012 4.06012 -156.461 -4.06012 0 0 1.01997e+06 3529.29 0.39 0.07 0.18 -1 -1 0.39 0.0264249 0.0234221 110 49 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 17.82 vpr 65.66 MiB 0.02 7288 -1 -1 1 0.03 -1 -1 34092 -1 -1 21 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67240 29 32 367 293 1 222 82 17 17 289 -1 unnamed_device 26.9 MiB 1.80 913 9160 3758 4976 426 65.7 MiB 0.07 0.00 3.41124 -117.262 -3.41124 3.41124 0.89 0.000502256 0.000457878 0.0289042 0.0264421 38 3163 50 6.99608e+06 309029 678818. 2348.85 12.96 0.265886 0.229297 26626 170182 -1 2366 22 2021 2666 214143 45591 3.45781 3.45781 -128.418 -3.45781 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.0250339 0.0221555 101 54 56 29 58 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 9.43 vpr 65.88 MiB 0.02 7300 -1 -1 1 0.03 -1 -1 34372 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67460 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 27.6 MiB 0.87 1399 13316 4006 7788 1522 65.9 MiB 0.12 0.00 4.54237 -164.626 -4.54237 4.54237 0.92 0.000614169 0.000556704 0.0465023 0.0423268 44 3699 26 6.99608e+06 323745 787024. 2723.27 5.23 0.263611 0.229401 27778 195446 -1 3075 19 2759 3301 260793 54943 5.01404 5.01404 -183.666 -5.01404 0 0 997811. 3452.63 0.40 0.09 0.18 -1 -1 0.40 0.0279763 0.0249355 140 117 0 0 128 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 14.37 vpr 64.94 MiB 0.02 7156 -1 -1 1 0.03 -1 -1 33976 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66500 31 32 259 212 1 143 74 17 17 289 -1 unnamed_device 26.4 MiB 1.13 486 10149 3821 5138 1190 64.9 MiB 0.07 0.00 2.81885 -95.7056 -2.81885 2.81885 0.91 0.000392233 0.000357777 0.0281173 0.0256926 44 2052 46 6.99608e+06 161872 787024. 2723.27 10.16 0.228814 0.197233 27778 195446 -1 1238 21 1095 1683 125081 30710 2.96677 2.96677 -105.273 -2.96677 0 0 997811. 3452.63 0.38 0.05 0.19 -1 -1 0.38 0.0193101 0.0170343 57 -1 85 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 19.13 vpr 66.14 MiB 0.02 7392 -1 -1 1 0.03 -1 -1 34044 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67732 32 32 418 338 1 263 83 17 17 289 -1 unnamed_device 27.6 MiB 3.16 1299 14303 5218 6688 2397 66.1 MiB 0.12 0.00 4.76923 -166.635 -4.76923 4.76923 0.91 0.000569455 0.000509644 0.0484843 0.0442262 46 3535 24 6.99608e+06 279598 828058. 2865.25 12.72 0.312892 0.272412 28066 200906 -1 2677 20 2133 2707 206557 44781 4.9183 4.9183 -179.353 -4.9183 0 0 1.01997e+06 3529.29 0.38 0.08 0.20 -1 -1 0.38 0.0263936 0.0234762 118 89 28 28 92 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 9.46 vpr 65.54 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 33732 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67108 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 26.8 MiB 0.93 1244 15216 5143 8703 1370 65.5 MiB 0.12 0.00 4.66407 -173.875 -4.66407 4.66407 0.92 0.000505747 0.000460516 0.0483146 0.0440646 44 3377 41 6.99608e+06 235451 787024. 2723.27 5.28 0.260436 0.228418 27778 195446 -1 2710 23 2830 3577 334042 64971 4.41784 4.41784 -170.681 -4.41784 0 0 997811. 3452.63 0.39 0.10 0.18 -1 -1 0.39 0.0274511 0.024379 110 93 0 0 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 9.89 vpr 66.04 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 34016 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67624 32 32 401 316 1 247 83 17 17 289 -1 unnamed_device 27.2 MiB 0.85 1129 13403 5326 6238 1839 66.0 MiB 0.11 0.00 3.33684 -128.417 -3.33684 3.33684 0.90 0.000540794 0.000492806 0.0437741 0.0398585 38 3758 46 6.99608e+06 279598 678818. 2348.85 5.81 0.196004 0.171649 26626 170182 -1 2630 34 2888 3886 472852 174027 3.46381 3.46381 -137.765 -3.46381 0 0 902133. 3121.57 0.34 0.17 0.16 -1 -1 0.34 0.0399673 0.0352549 106 59 61 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 7.56 vpr 65.95 MiB 0.02 7596 -1 -1 1 0.04 -1 -1 34532 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67536 32 32 500 382 1 312 86 17 17 289 -1 unnamed_device 27.7 MiB 0.83 1500 14261 4373 7976 1912 66.0 MiB 0.12 0.00 4.89654 -177.942 -4.89654 4.89654 0.89 0.000644108 0.000583671 0.051708 0.0470042 40 4008 30 6.99608e+06 323745 706193. 2443.58 3.50 0.205874 0.180536 26914 176310 -1 3530 20 2959 3413 351818 70177 5.7166 5.7166 -206.283 -5.7166 0 0 926341. 3205.33 0.34 0.10 0.18 -1 -1 0.34 0.0300896 0.0267894 140 81 64 32 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 7.51 vpr 65.12 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 33664 -1 -1 13 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 30 32 246 229 1 154 75 17 17 289 -1 unnamed_device 26.8 MiB 2.49 577 8449 3482 4728 239 65.1 MiB 0.05 0.00 2.75275 -95.2487 -2.75275 2.75275 0.93 0.000356077 0.000323318 0.0216468 0.0197055 36 2266 49 6.99608e+06 191304 648988. 2245.63 1.99 0.111055 0.096516 26050 158493 -1 1499 21 1050 1078 106570 24258 2.50972 2.50972 -92.34 -2.50972 0 0 828058. 2865.25 0.34 0.05 0.15 -1 -1 0.34 0.0178081 0.0157134 65 51 0 0 53 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 8.81 vpr 64.99 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 34092 -1 -1 14 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 30 32 296 244 1 167 76 17 17 289 -1 unnamed_device 26.5 MiB 3.47 870 9516 3877 5353 286 65.0 MiB 0.06 0.00 3.41559 -121.499 -3.41559 3.41559 0.90 0.00040412 0.000362637 0.0271285 0.024719 34 2262 25 6.99608e+06 206020 618332. 2139.56 2.36 0.130317 0.11379 25762 151098 -1 2017 17 1345 1924 207544 41045 3.77871 3.77871 -138.876 -3.77871 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0182474 0.0162652 72 29 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 19.40 vpr 64.91 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 33756 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66468 32 32 314 256 1 192 76 17 17 289 -1 unnamed_device 26.4 MiB 0.20 764 10316 3722 4683 1911 64.9 MiB 0.08 0.00 3.37904 -128.379 -3.37904 3.37904 0.92 0.000467078 0.000424127 0.0319675 0.0290332 44 3301 35 6.99608e+06 176588 787024. 2723.27 16.03 0.268181 0.234364 27778 195446 -1 2175 23 1997 3097 279579 59041 4.02761 4.02761 -148.877 -4.02761 0 0 997811. 3452.63 0.38 0.09 0.18 -1 -1 0.38 0.0239384 0.0211835 80 31 64 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 5.97 vpr 65.20 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 34076 -1 -1 18 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 25 32 251 214 1 151 75 17 17 289 -1 unnamed_device 26.8 MiB 0.81 497 10819 4307 4933 1579 65.2 MiB 0.07 0.00 3.31386 -89.9377 -3.31386 3.31386 0.90 0.000377005 0.00034572 0.0280224 0.0256282 38 1712 31 6.99608e+06 264882 678818. 2348.85 2.16 0.116451 0.101332 26626 170182 -1 1320 22 963 1230 96690 22063 3.39857 3.39857 -101.795 -3.39857 0 0 902133. 3121.57 0.33 0.05 0.17 -1 -1 0.33 0.0186351 0.0164306 68 19 50 25 25 25 -fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 8.11 vpr 65.64 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 34236 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67220 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 27.3 MiB 0.96 1423 14358 4574 7658 2126 65.6 MiB 0.12 0.00 3.77875 -143.667 -3.77875 3.77875 0.93 0.000560787 0.000512298 0.0482774 0.043977 46 3969 25 6.99608e+06 294314 828058. 2865.25 3.84 0.202036 0.178776 28066 200906 -1 3185 20 2725 3857 351467 66878 4.26372 4.26372 -163.922 -4.26372 0 0 1.01997e+06 3529.29 0.40 0.10 0.19 -1 -1 0.40 0.0290712 0.0257814 125 84 32 32 94 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 9.31 vpr 65.89 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 33680 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67468 31 32 421 339 1 270 85 17 17 289 -1 unnamed_device 27.3 MiB 0.98 1182 13663 4698 6384 2581 65.9 MiB 0.11 0.00 4.16978 -143.827 -4.16978 4.16978 0.91 0.000568374 0.000518829 0.0454386 0.0414853 46 3209 24 6.99608e+06 323745 828058. 2865.25 5.05 0.240628 0.210059 28066 200906 -1 2521 22 2567 3385 263451 56153 4.22545 4.22545 -148.772 -4.22545 0 0 1.01997e+06 3529.29 0.39 0.09 0.19 -1 -1 0.39 0.0288432 0.025647 121 88 29 29 93 31 -fixed_k6_frac_N8_22nm.xml mult_001.v common 9.37 vpr 65.30 MiB 0.02 7084 -1 -1 14 0.33 -1 -1 36424 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66872 32 32 280 312 1 207 83 17 17 289 -1 unnamed_device 26.8 MiB 2.58 1265 9263 2276 5364 1623 65.3 MiB 0.09 0.00 8.4853 -170.751 -8.4853 8.4853 0.89 0.000637376 0.000569651 0.0369857 0.0334637 44 3187 47 6.79088e+06 255968 787024. 2723.27 3.24 0.213196 0.186791 27118 194962 -1 2631 28 1281 3462 414391 183728 7.3431 7.3431 -158.204 -7.3431 0 0 997811. 3452.63 0.38 0.16 0.19 -1 -1 0.38 0.040808 0.0363935 134 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_002.v common 8.94 vpr 65.08 MiB 0.02 7044 -1 -1 14 0.32 -1 -1 36412 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66644 30 32 277 309 1 214 82 17 17 289 -1 unnamed_device 26.6 MiB 1.82 1228 8270 2008 5297 965 65.1 MiB 0.08 0.00 7.98833 -161.421 -7.98833 7.98833 0.89 0.000657906 0.000596887 0.0342456 0.0310669 38 3303 16 6.79088e+06 269440 678818. 2348.85 3.79 0.195173 0.172552 25966 169698 -1 2639 16 1263 3342 171552 38680 6.92108 6.92108 -150.777 -6.92108 0 0 902133. 3121.57 0.35 0.07 0.16 -1 -1 0.35 0.0288565 0.0261548 132 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_003.v common 11.11 vpr 64.72 MiB 0.02 7104 -1 -1 11 0.26 -1 -1 36728 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 32 32 274 306 1 200 84 17 17 289 -1 unnamed_device 26.3 MiB 2.01 1125 11613 3520 5862 2231 64.7 MiB 0.10 0.00 7.03202 -141.666 -7.03202 7.03202 0.90 0.000597564 0.000533268 0.0430739 0.0389525 38 3591 44 6.79088e+06 269440 678818. 2348.85 5.77 0.227027 0.199656 25966 169698 -1 2625 14 1280 3774 213979 47553 6.12643 6.12643 -134.975 -6.12643 0 0 902133. 3121.57 0.34 0.07 0.15 -1 -1 0.34 0.0255451 0.0231901 138 179 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_004.v common 9.75 vpr 64.82 MiB 0.02 7120 -1 -1 12 0.43 -1 -1 36636 -1 -1 22 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66380 29 32 269 301 1 191 83 17 17 289 -1 unnamed_device 26.4 MiB 1.80 1021 7643 1879 4700 1064 64.8 MiB 0.07 0.00 7.24011 -138.658 -7.24011 7.24011 0.90 0.000632251 0.000573461 0.0309742 0.0281419 44 2625 22 6.79088e+06 296384 787024. 2723.27 4.39 0.233788 0.203424 27118 194962 -1 2281 16 1190 3689 186383 43387 6.41977 6.41977 -132.045 -6.41977 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0279172 0.0251537 136 180 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_005.v common 11.28 vpr 65.13 MiB 0.02 6964 -1 -1 13 0.37 -1 -1 36660 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 32 32 317 349 1 251 88 17 17 289 -1 unnamed_device 26.8 MiB 2.60 1463 12568 3276 7023 2269 65.1 MiB 0.12 0.00 8.02445 -169.708 -8.02445 8.02445 0.92 0.000720096 0.000649233 0.052405 0.0475401 46 3660 20 6.79088e+06 323328 828058. 2865.25 5.07 0.281903 0.247783 27406 200422 -1 2903 15 1384 3728 182895 41588 7.21431 7.21431 -161.115 -7.21431 0 0 1.01997e+06 3529.29 0.40 0.08 0.19 -1 -1 0.40 0.0318752 0.0289702 160 222 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_006.v common 9.11 vpr 65.16 MiB 0.02 7000 -1 -1 12 0.34 -1 -1 36388 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66724 32 32 299 331 1 221 88 17 17 289 -1 unnamed_device 26.6 MiB 2.87 1344 4768 918 3685 165 65.2 MiB 0.05 0.00 7.61832 -163.245 -7.61832 7.61832 0.91 0.000670107 0.00060634 0.0211571 0.0192948 44 3529 23 6.79088e+06 323328 787024. 2723.27 2.73 0.159229 0.141664 27118 194962 -1 2985 17 1359 4066 236003 51425 6.72076 6.72076 -157.449 -6.72076 0 0 997811. 3452.63 0.39 0.09 0.19 -1 -1 0.39 0.0326412 0.0295226 150 204 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_007.v common 9.65 vpr 64.48 MiB 0.02 6816 -1 -1 12 0.23 -1 -1 35984 -1 -1 20 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66028 27 32 210 242 1 166 79 17 17 289 -1 unnamed_device 26.0 MiB 1.76 1000 7177 1656 4753 768 64.5 MiB 0.06 0.00 7.28149 -137.47 -7.28149 7.28149 0.90 0.00051283 0.000461312 0.0247277 0.0225758 36 2895 37 6.79088e+06 269440 648988. 2245.63 4.69 0.16371 0.143919 25390 158009 -1 2329 17 1036 2684 168880 36813 6.33023 6.33023 -130.669 -6.33023 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0229764 0.0207447 101 125 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_008.v common 21.29 vpr 64.92 MiB 0.02 6920 -1 -1 11 0.22 -1 -1 36672 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66476 31 32 264 296 1 191 81 17 17 289 -1 unnamed_device 26.5 MiB 1.57 1129 9531 2421 6090 1020 64.9 MiB 0.08 0.00 6.82017 -140.384 -6.82017 6.82017 0.89 0.000569078 0.000512204 0.0339907 0.0306127 38 3033 23 6.79088e+06 242496 678818. 2348.85 16.48 0.318989 0.278046 25966 169698 -1 2485 16 1084 3157 175367 37866 5.90727 5.90727 -134.309 -5.90727 0 0 902133. 3121.57 0.33 0.07 0.17 -1 -1 0.33 0.0259106 0.0233632 118 171 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_009.v common 10.53 vpr 64.68 MiB 0.02 6956 -1 -1 12 0.21 -1 -1 36316 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66236 31 32 234 266 1 191 81 17 17 289 -1 unnamed_device 26.1 MiB 3.22 1115 11631 3187 7135 1309 64.7 MiB 0.09 0.00 6.73244 -139.285 -6.73244 6.73244 0.89 0.000520115 0.00047212 0.0379323 0.0344731 36 2986 40 6.79088e+06 242496 648988. 2245.63 4.12 0.177917 0.155184 25390 158009 -1 2466 16 1109 2457 151344 34475 5.61753 5.61753 -130.399 -5.61753 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0232205 0.0209111 111 141 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_010.v common 9.11 vpr 64.82 MiB 0.02 6828 -1 -1 13 0.22 -1 -1 36408 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66380 32 32 253 285 1 183 80 17 17 289 -1 unnamed_device 26.2 MiB 1.77 1011 5412 1090 4064 258 64.8 MiB 0.05 0.00 7.30367 -163.797 -7.30367 7.30367 0.89 0.000525821 0.00047402 0.0208086 0.0189418 38 2844 25 6.79088e+06 215552 678818. 2348.85 4.17 0.181689 0.157881 25966 169698 -1 2242 16 1046 2661 140774 31740 6.24757 6.24757 -156.538 -6.24757 0 0 902133. 3121.57 0.34 0.06 0.16 -1 -1 0.34 0.024189 0.0218347 107 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_011.v common 7.06 vpr 64.72 MiB 0.02 6872 -1 -1 12 0.21 -1 -1 36456 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66272 30 32 217 249 1 159 78 17 17 289 -1 unnamed_device 26.2 MiB 1.73 838 6386 1352 4871 163 64.7 MiB 0.05 0.00 7.31171 -145.298 -7.31171 7.31171 0.90 0.000514374 0.00046873 0.0225887 0.0205997 38 2306 22 6.79088e+06 215552 678818. 2348.85 2.14 0.135142 0.118028 25966 169698 -1 1871 14 880 2296 117186 27589 5.99697 5.99697 -134.057 -5.99697 0 0 902133. 3121.57 0.33 0.05 0.17 -1 -1 0.33 0.0193923 0.0175111 93 126 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_012.v common 9.58 vpr 64.36 MiB 0.02 6960 -1 -1 12 0.17 -1 -1 36276 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65908 32 32 227 259 1 170 78 17 17 289 -1 unnamed_device 25.9 MiB 2.34 1055 4560 1014 3240 306 64.4 MiB 0.04 0.00 6.46989 -155.558 -6.46989 6.46989 0.91 0.000494815 0.000447425 0.0169113 0.0154025 44 2506 15 6.79088e+06 188608 787024. 2723.27 4.02 0.169783 0.147494 27118 194962 -1 2245 17 965 2486 151023 33451 5.57489 5.57489 -144.5 -5.57489 0 0 997811. 3452.63 0.39 0.06 0.18 -1 -1 0.39 0.0225472 0.0202901 94 132 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_013.v common 12.55 vpr 65.57 MiB 0.02 7092 -1 -1 13 0.34 -1 -1 36720 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67144 32 32 306 338 1 226 85 17 17 289 -1 unnamed_device 26.8 MiB 1.81 1239 11431 3102 6258 2071 65.6 MiB 0.10 0.00 7.91359 -165.523 -7.91359 7.91359 0.89 0.000675701 0.000610341 0.0459427 0.0416631 36 3864 39 6.79088e+06 282912 648988. 2245.63 7.33 0.228176 0.199807 25390 158009 -1 2940 20 1414 4034 257854 56811 6.96366 6.96366 -158.79 -6.96366 0 0 828058. 2865.25 0.31 0.09 0.15 -1 -1 0.31 0.0341354 0.0306587 148 211 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_014.v common 8.59 vpr 65.26 MiB 0.02 7052 -1 -1 14 0.40 -1 -1 36824 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 32 32 302 334 1 227 85 17 17 289 -1 unnamed_device 26.7 MiB 2.12 1366 11245 3016 6173 2056 65.3 MiB 0.11 0.00 9.12295 -182.881 -9.12295 9.12295 0.89 0.000671011 0.000604781 0.0452563 0.0410161 40 3379 26 6.79088e+06 282912 706193. 2443.58 2.87 0.217871 0.19184 26254 175826 -1 3220 26 1846 5278 524665 186744 7.97735 7.97735 -176.98 -7.97735 0 0 926341. 3205.33 0.35 0.17 0.17 -1 -1 0.35 0.0426486 0.0380389 149 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_015.v common 9.32 vpr 64.88 MiB 0.02 6992 -1 -1 11 0.21 -1 -1 36320 -1 -1 20 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66436 29 32 238 270 1 181 81 17 17 289 -1 unnamed_device 26.4 MiB 1.83 857 12681 3929 6469 2283 64.9 MiB 0.09 0.00 6.92892 -133.02 -6.92892 6.92892 0.89 0.000519073 0.000469763 0.0411509 0.0373716 44 2366 27 6.79088e+06 269440 787024. 2723.27 4.20 0.212648 0.184628 27118 194962 -1 1895 17 1033 2535 134756 31487 5.95428 5.95428 -123.689 -5.95428 0 0 997811. 3452.63 0.37 0.06 0.19 -1 -1 0.37 0.0234677 0.0210832 111 149 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_016.v common 9.32 vpr 65.43 MiB 0.02 7076 -1 -1 12 0.33 -1 -1 36712 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66996 32 32 306 338 1 232 84 17 17 289 -1 unnamed_device 27.1 MiB 2.89 1420 13992 4103 7703 2186 65.4 MiB 0.13 0.00 7.6046 -160.271 -7.6046 7.6046 0.89 0.000686822 0.000626684 0.0564928 0.0508672 46 4023 39 6.79088e+06 269440 828058. 2865.25 2.93 0.217849 0.191528 27406 200422 -1 3200 19 1574 4974 254840 56326 6.46241 6.46241 -152.411 -6.46241 0 0 1.01997e+06 3529.29 0.39 0.09 0.18 -1 -1 0.39 0.03385 0.0303468 146 211 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_017.v common 21.97 vpr 64.95 MiB 0.02 7008 -1 -1 13 0.34 -1 -1 36636 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 32 32 311 343 1 226 85 17 17 289 -1 unnamed_device 26.6 MiB 1.91 1236 10687 3174 5565 1948 65.0 MiB 0.10 0.00 8.28661 -168.45 -8.28661 8.28661 0.91 0.000714508 0.00064795 0.0448041 0.0406667 38 3417 39 6.79088e+06 282912 678818. 2348.85 16.64 0.389012 0.33945 25966 169698 -1 2856 18 1463 4224 225289 50661 7.25695 7.25695 -164.08 -7.25695 0 0 902133. 3121.57 0.32 0.08 0.16 -1 -1 0.32 0.0310986 0.0279798 144 216 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_018.v common 8.05 vpr 64.83 MiB 0.02 6836 -1 -1 12 0.19 -1 -1 36064 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66384 32 32 230 262 1 172 80 17 17 289 -1 unnamed_device 26.3 MiB 2.55 945 7992 1779 4650 1563 64.8 MiB 0.07 0.00 6.70943 -154.61 -6.70943 6.70943 0.90 0.000508099 0.000461734 0.0277747 0.025214 36 2644 29 6.79088e+06 215552 648988. 2245.63 2.36 0.151274 0.131705 25390 158009 -1 2265 14 924 2438 141434 32012 6.24403 6.24403 -153.622 -6.24403 0 0 828058. 2865.25 0.31 0.05 0.15 -1 -1 0.31 0.0207871 0.0187606 104 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_019.v common 8.70 vpr 63.98 MiB 0.02 6824 -1 -1 10 0.12 -1 -1 36196 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65512 30 32 176 208 1 138 74 17 17 289 -1 unnamed_device 25.5 MiB 3.16 878 7049 1926 4350 773 64.0 MiB 0.05 0.00 5.18321 -124.627 -5.18321 5.18321 0.90 0.000394343 0.000358957 0.0200358 0.0182182 38 2075 46 6.79088e+06 161664 678818. 2348.85 2.47 0.133577 0.116456 25966 169698 -1 1842 15 742 1729 104172 22975 4.71101 4.71101 -125.986 -4.71101 0 0 902133. 3121.57 0.35 0.04 0.16 -1 -1 0.35 0.0161824 0.0145254 67 85 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_020.v common 10.16 vpr 64.57 MiB 0.02 6880 -1 -1 13 0.21 -1 -1 36268 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66124 31 32 226 258 1 173 79 17 17 289 -1 unnamed_device 26.1 MiB 2.37 974 6332 1469 4570 293 64.6 MiB 0.06 0.00 7.59608 -163.359 -7.59608 7.59608 0.89 0.000527501 0.000479631 0.0234435 0.0213691 38 2544 18 6.79088e+06 215552 678818. 2348.85 4.61 0.207473 0.180107 25966 169698 -1 2069 15 925 2237 117468 27019 6.53742 6.53742 -150.943 -6.53742 0 0 902133. 3121.57 0.33 0.05 0.17 -1 -1 0.33 0.0216631 0.0194591 99 133 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_021.v common 8.68 vpr 64.90 MiB 0.02 7120 -1 -1 13 0.36 -1 -1 36992 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66456 32 32 302 334 1 222 86 17 17 289 -1 unnamed_device 26.3 MiB 1.52 1254 12371 3408 7445 1518 64.9 MiB 0.11 0.00 7.46133 -157.73 -7.46133 7.46133 0.91 0.000684461 0.000618055 0.0494885 0.0447808 38 3224 45 6.79088e+06 296384 678818. 2348.85 3.67 0.267535 0.23689 25966 169698 -1 2788 18 1503 4101 216942 48982 6.74533 6.74533 -153.39 -6.74533 0 0 902133. 3121.57 0.35 0.09 0.16 -1 -1 0.35 0.0332501 0.0299426 143 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_022.v common 24.24 vpr 65.39 MiB 0.02 7144 -1 -1 13 0.36 -1 -1 36676 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66956 32 32 299 331 1 221 83 17 17 289 -1 unnamed_device 26.8 MiB 2.42 1425 10883 2960 6054 1869 65.4 MiB 0.10 0.00 8.13867 -171.504 -8.13867 8.13867 0.86 0.000650645 0.000587941 0.0442711 0.0402497 40 3438 18 6.79088e+06 255968 706193. 2443.58 18.38 0.352793 0.30839 26254 175826 -1 3243 28 1533 4313 517934 211444 7.06211 7.06211 -164.608 -7.06211 0 0 926341. 3205.33 0.33 0.17 0.15 -1 -1 0.33 0.0407173 0.0362095 141 204 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_023.v common 7.68 vpr 64.12 MiB 0.02 6804 -1 -1 9 0.10 -1 -1 35944 -1 -1 16 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65656 26 32 149 181 1 119 74 17 17 289 -1 unnamed_device 25.6 MiB 1.78 588 10149 2859 5591 1699 64.1 MiB 0.06 0.00 4.97273 -93.6629 -4.97273 4.97273 0.90 0.000340219 0.000308173 0.024562 0.0223214 30 1736 26 6.79088e+06 215552 556674. 1926.21 2.99 0.127695 0.110125 24526 138013 -1 1364 16 573 1321 72341 16600 4.27123 4.27123 -90.7925 -4.27123 0 0 706193. 2443.58 0.29 0.04 0.13 -1 -1 0.29 0.0145177 0.0129629 64 66 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_024.v common 10.30 vpr 65.68 MiB 0.02 7156 -1 -1 13 0.39 -1 -1 36296 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67256 32 32 304 336 1 222 86 17 17 289 -1 unnamed_device 26.9 MiB 2.78 1289 7268 1575 5261 432 65.7 MiB 0.08 0.00 8.3813 -168.316 -8.3813 8.3813 0.91 0.000691366 0.00062602 0.0308721 0.0280731 38 3745 37 6.79088e+06 296384 678818. 2348.85 4.03 0.209034 0.182842 25966 169698 -1 2829 22 1498 3994 208332 49057 7.33967 7.33967 -159.087 -7.33967 0 0 902133. 3121.57 0.33 0.09 0.16 -1 -1 0.33 0.0366995 0.032883 137 209 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_025.v common 11.20 vpr 64.04 MiB 0.02 6772 -1 -1 8 0.10 -1 -1 36272 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65580 32 32 155 187 1 128 81 17 17 289 -1 unnamed_device 25.7 MiB 2.99 737 11631 4246 5219 2166 64.0 MiB 0.06 0.00 4.77835 -104.906 -4.77835 4.77835 0.89 0.000318069 0.000285821 0.0243067 0.0220554 30 1930 29 6.79088e+06 229024 556674. 1926.21 5.30 0.131984 0.114361 24526 138013 -1 1556 18 651 1433 81377 18685 4.0956 4.0956 -102.965 -4.0956 0 0 706193. 2443.58 0.29 0.04 0.12 -1 -1 0.29 0.0149122 0.0132951 64 60 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_026.v common 8.09 vpr 64.92 MiB 0.02 7004 -1 -1 15 0.29 -1 -1 36532 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66480 32 32 253 285 1 192 81 17 17 289 -1 unnamed_device 26.6 MiB 2.34 1155 10581 3115 6097 1369 64.9 MiB 0.09 0.00 8.86251 -178.17 -8.86251 8.86251 0.89 0.000605511 0.000545286 0.0375453 0.0341138 46 2717 18 6.79088e+06 229024 828058. 2865.25 2.35 0.173633 0.152844 27406 200422 -1 2305 15 984 2683 138652 31196 7.79833 7.79833 -164.21 -7.79833 0 0 1.01997e+06 3529.29 0.39 0.06 0.19 -1 -1 0.39 0.0258555 0.0234473 118 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_027.v common 11.58 vpr 65.57 MiB 0.02 7148 -1 -1 12 0.32 -1 -1 36532 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67148 32 32 309 341 1 218 86 17 17 289 -1 unnamed_device 26.8 MiB 2.02 1241 4433 817 3477 139 65.6 MiB 0.05 0.00 7.21583 -155.808 -7.21583 7.21583 0.90 0.000673568 0.000608625 0.0201608 0.0183867 36 4047 49 6.79088e+06 296384 648988. 2245.63 6.18 0.214257 0.186876 25390 158009 -1 3080 26 1780 5685 441383 135939 6.24054 6.24054 -147.996 -6.24054 0 0 828058. 2865.25 0.32 0.15 0.15 -1 -1 0.32 0.0413264 0.0368067 145 214 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_028.v common 15.67 vpr 65.14 MiB 0.02 7216 -1 -1 13 0.35 -1 -1 36572 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66708 32 32 289 321 1 212 84 17 17 289 -1 unnamed_device 26.6 MiB 1.75 1284 4659 748 3690 221 65.1 MiB 0.05 0.00 8.13835 -165.274 -8.13835 8.13835 0.89 0.000633653 0.000574107 0.0207193 0.01886 38 3292 49 6.79088e+06 269440 678818. 2348.85 10.55 0.322833 0.279574 25966 169698 -1 2675 18 1339 3722 195352 44319 6.88526 6.88526 -154.561 -6.88526 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.0298028 0.0267819 136 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_029.v common 10.05 vpr 64.79 MiB 0.02 6832 -1 -1 12 0.20 -1 -1 36192 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 32 32 239 271 1 179 83 17 17 289 -1 unnamed_device 26.3 MiB 2.68 1045 5303 1002 3952 349 64.8 MiB 0.05 0.00 6.60115 -147.873 -6.60115 6.60115 0.92 0.000548775 0.000498639 0.0196006 0.0178683 38 2622 19 6.79088e+06 255968 678818. 2348.85 4.15 0.173159 0.150548 25966 169698 -1 2310 14 940 2469 134532 30494 5.90389 5.90389 -141.743 -5.90389 0 0 902133. 3121.57 0.35 0.06 0.16 -1 -1 0.35 0.0224741 0.020298 106 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_030.v common 8.44 vpr 64.41 MiB 0.02 7016 -1 -1 11 0.19 -1 -1 36504 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65956 30 32 213 245 1 166 82 17 17 289 -1 unnamed_device 26.0 MiB 2.50 954 11652 3379 7115 1158 64.4 MiB 0.08 0.00 6.23714 -130.615 -6.23714 6.23714 0.83 0.000411302 0.000373814 0.0351937 0.0318419 38 2452 30 6.79088e+06 269440 678818. 2348.85 2.91 0.145979 0.127483 25966 169698 -1 2025 16 952 2455 147220 32167 5.44954 5.44954 -130.105 -5.44954 0 0 902133. 3121.57 0.32 0.05 0.15 -1 -1 0.32 0.0185529 0.0166793 97 122 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_031.v common 9.18 vpr 64.77 MiB 0.02 7036 -1 -1 11 0.20 -1 -1 36816 -1 -1 19 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66324 28 32 221 253 1 179 79 17 17 289 -1 unnamed_device 26.3 MiB 1.56 1013 7346 1810 4929 607 64.8 MiB 0.06 0.00 6.76313 -133.919 -6.76313 6.76313 0.91 0.000533179 0.000484518 0.0261663 0.0238654 36 2839 26 6.79088e+06 255968 648988. 2245.63 4.45 0.184354 0.160569 25390 158009 -1 2411 17 1234 3161 183810 41439 5.81774 5.81774 -129.793 -5.81774 0 0 828058. 2865.25 0.31 0.07 0.15 -1 -1 0.31 0.0230549 0.0207093 107 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_032.v common 8.90 vpr 65.11 MiB 0.02 6896 -1 -1 12 0.24 -1 -1 36444 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66668 32 32 273 305 1 207 83 17 17 289 -1 unnamed_device 26.7 MiB 2.58 1274 9443 2812 5690 941 65.1 MiB 0.08 0.00 6.88424 -161.28 -6.88424 6.88424 0.88 0.000596368 0.000536302 0.0353511 0.0321933 38 3239 49 6.79088e+06 255968 678818. 2348.85 3.07 0.200812 0.17537 25966 169698 -1 2702 19 1357 3398 176130 39887 6.07609 6.07609 -157.356 -6.07609 0 0 902133. 3121.57 0.33 0.07 0.16 -1 -1 0.33 0.0285285 0.0255675 119 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_033.v common 8.44 vpr 64.38 MiB 0.02 7016 -1 -1 11 0.20 -1 -1 36264 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65928 31 32 238 270 1 181 80 17 17 289 -1 unnamed_device 25.9 MiB 1.86 908 10056 3226 4794 2036 64.4 MiB 0.08 0.00 6.39517 -140.882 -6.39517 6.39517 0.89 0.000558881 0.000502818 0.0359041 0.0325461 36 2970 31 6.79088e+06 229024 648988. 2245.63 3.40 0.173053 0.150598 25390 158009 -1 2301 17 1161 3108 192775 44194 5.65324 5.65324 -139.772 -5.65324 0 0 828058. 2865.25 0.31 0.07 0.16 -1 -1 0.31 0.0245878 0.0220649 107 145 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_034.v common 6.96 vpr 64.80 MiB 0.02 6896 -1 -1 10 0.18 -1 -1 36544 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66352 29 32 221 253 1 160 79 17 17 289 -1 unnamed_device 26.3 MiB 1.80 870 8022 2297 4713 1012 64.8 MiB 0.06 0.00 6.19022 -129.37 -6.19022 6.19022 0.89 0.000503188 0.000457348 0.0275994 0.0250914 34 2314 24 6.79088e+06 242496 618332. 2139.56 2.04 0.147245 0.128864 25102 150614 -1 2008 19 795 2271 131804 30171 5.57822 5.57822 -125.253 -5.57822 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0247577 0.0221927 103 132 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_035.v common 11.70 vpr 65.41 MiB 0.02 7376 -1 -1 13 0.39 -1 -1 37316 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66976 32 32 333 365 1 236 86 17 17 289 -1 unnamed_device 26.6 MiB 1.80 1352 10103 2504 6636 963 65.4 MiB 0.10 0.00 7.85531 -169.709 -7.85531 7.85531 0.90 0.000760705 0.000679188 0.0449199 0.0405477 38 3914 48 6.79088e+06 296384 678818. 2348.85 6.38 0.286194 0.252924 25966 169698 -1 3084 20 1441 4689 253476 55219 6.88531 6.88531 -159.581 -6.88531 0 0 902133. 3121.57 0.35 0.10 0.16 -1 -1 0.35 0.0385855 0.0345795 162 238 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_036.v common 24.81 vpr 64.98 MiB 0.02 7020 -1 -1 13 0.39 -1 -1 36756 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66536 32 32 297 329 1 231 85 17 17 289 -1 unnamed_device 26.7 MiB 2.24 1274 13849 4315 6877 2657 65.0 MiB 0.13 0.00 7.85526 -169.716 -7.85526 7.85526 0.92 0.000676636 0.000610824 0.0560852 0.0505917 36 4447 42 6.79088e+06 282912 648988. 2245.63 18.99 0.410467 0.360576 25390 158009 -1 3232 21 1963 5759 386051 89615 6.78453 6.78453 -165.458 -6.78453 0 0 828058. 2865.25 0.33 0.13 0.15 -1 -1 0.33 0.0385514 0.0345571 152 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_037.v common 19.15 vpr 64.57 MiB 0.02 7060 -1 -1 12 0.18 -1 -1 36356 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66124 31 32 234 266 1 169 81 17 17 289 -1 unnamed_device 26.1 MiB 1.68 851 11631 4796 6628 207 64.6 MiB 0.09 0.00 7.11438 -152.359 -7.11438 7.11438 0.89 0.000508692 0.000460426 0.0378121 0.0342949 36 2928 40 6.79088e+06 242496 648988. 2245.63 14.30 0.259764 0.224806 25390 158009 -1 2261 17 1051 2832 184145 41060 6.29098 6.29098 -147.205 -6.29098 0 0 828058. 2865.25 0.31 0.07 0.15 -1 -1 0.31 0.0232302 0.0208134 102 141 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_038.v common 8.08 vpr 65.28 MiB 0.02 7224 -1 -1 12 0.32 -1 -1 37144 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 31 32 310 342 1 217 86 17 17 289 -1 unnamed_device 26.5 MiB 1.56 1154 12749 3915 6368 2466 65.3 MiB 0.12 0.00 7.84323 -159.621 -7.84323 7.84323 0.90 0.000730456 0.000664934 0.0519293 0.0471553 40 3413 28 6.79088e+06 309856 706193. 2443.58 3.00 0.228216 0.201726 26254 175826 -1 2995 23 1839 5712 332103 77359 6.96022 6.96022 -155.826 -6.96022 0 0 926341. 3205.33 0.35 0.12 0.17 -1 -1 0.35 0.0399496 0.0358629 148 217 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_039.v common 9.45 vpr 65.24 MiB 0.02 7296 -1 -1 14 0.42 -1 -1 36604 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 31 32 284 316 1 219 84 17 17 289 -1 unnamed_device 26.7 MiB 1.40 1375 11247 2864 6672 1711 65.2 MiB 0.10 0.00 8.18012 -172.817 -8.18012 8.18012 0.87 0.00066858 0.000609188 0.0427715 0.0389248 40 3259 24 6.79088e+06 282912 706193. 2443.58 4.64 0.264773 0.232428 26254 175826 -1 3232 17 1428 3947 258674 57943 7.30047 7.30047 -164.869 -7.30047 0 0 926341. 3205.33 0.33 0.09 0.16 -1 -1 0.33 0.0321 0.0290274 146 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_040.v common 8.44 vpr 64.97 MiB 0.02 7180 -1 -1 13 0.31 -1 -1 36824 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66532 31 32 271 303 1 211 84 17 17 289 -1 unnamed_device 26.5 MiB 2.70 1310 10149 2655 5632 1862 65.0 MiB 0.09 0.00 7.78561 -164.423 -7.78561 7.78561 0.89 0.00063653 0.000575804 0.0386501 0.0351284 40 3171 33 6.79088e+06 282912 706193. 2443.58 2.46 0.187522 0.16432 26254 175826 -1 2932 18 1410 3652 240235 52553 7.08209 7.08209 -161.624 -7.08209 0 0 926341. 3205.33 0.32 0.08 0.15 -1 -1 0.32 0.0283532 0.0254241 126 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_041.v common 9.26 vpr 65.20 MiB 0.02 7228 -1 -1 12 0.28 -1 -1 36688 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66764 31 32 280 312 1 206 86 17 17 289 -1 unnamed_device 26.7 MiB 1.08 1267 10859 2857 6722 1280 65.2 MiB 0.10 0.00 7.65156 -158.395 -7.65156 7.65156 0.90 0.000680262 0.000615237 0.0412933 0.0372823 44 3168 15 6.79088e+06 309856 787024. 2723.27 4.81 0.244024 0.213493 27118 194962 -1 2657 16 1145 3375 184343 41330 6.59546 6.59546 -149.762 -6.59546 0 0 997811. 3452.63 0.39 0.07 0.19 -1 -1 0.39 0.0291614 0.0264196 135 187 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_042.v common 17.42 vpr 65.09 MiB 0.02 7052 -1 -1 12 0.23 -1 -1 36108 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66656 32 32 264 296 1 188 81 17 17 289 -1 unnamed_device 26.7 MiB 1.44 1093 11106 3659 5731 1716 65.1 MiB 0.09 0.00 7.11863 -144.901 -7.11863 7.11863 0.89 0.000575951 0.0005208 0.0397927 0.0361373 36 3341 42 6.79088e+06 229024 648988. 2245.63 12.73 0.283874 0.246245 25390 158009 -1 2534 19 1305 3419 209779 47129 6.48693 6.48693 -144.823 -6.48693 0 0 828058. 2865.25 0.31 0.08 0.15 -1 -1 0.31 0.0272893 0.0243683 113 169 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_043.v common 29.99 vpr 65.68 MiB 0.02 7220 -1 -1 14 0.55 -1 -1 36532 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67252 32 32 339 371 1 247 89 17 17 289 -1 unnamed_device 27.0 MiB 1.62 1406 13355 3498 8147 1710 65.7 MiB 0.12 0.00 8.18038 -175.8 -8.18038 8.18038 0.90 0.000676796 0.000607301 0.0550028 0.0497219 38 4021 47 6.79088e+06 336800 678818. 2348.85 24.65 0.480481 0.420705 25966 169698 -1 3245 16 1675 4934 268217 59005 7.49762 7.49762 -171.824 -7.49762 0 0 902133. 3121.57 0.34 0.09 0.15 -1 -1 0.34 0.0342781 0.0311052 169 244 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_044.v common 8.03 vpr 64.95 MiB 0.02 6784 -1 -1 11 0.24 -1 -1 36268 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66508 31 32 246 278 1 185 81 17 17 289 -1 unnamed_device 26.4 MiB 2.24 1088 9006 2212 5478 1316 64.9 MiB 0.08 0.00 6.58747 -141.672 -6.58747 6.58747 0.89 0.000568724 0.000517295 0.0327831 0.0297445 36 3313 23 6.79088e+06 242496 648988. 2245.63 2.55 0.143609 0.12554 25390 158009 -1 2796 18 1373 3660 246448 53510 5.94647 5.94647 -142.293 -5.94647 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.0264011 0.0236152 113 153 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_045.v common 7.08 vpr 64.93 MiB 0.02 7280 -1 -1 13 0.33 -1 -1 37176 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66488 31 32 268 300 1 191 82 17 17 289 -1 unnamed_device 26.5 MiB 1.86 1133 5422 1123 3954 345 64.9 MiB 0.05 0.00 7.76692 -152.212 -7.76692 7.76692 0.85 0.000614656 0.000559669 0.0221431 0.0202309 36 3213 29 6.79088e+06 255968 648988. 2245.63 2.04 0.162795 0.143372 25390 158009 -1 2683 17 1135 3524 216222 47111 6.59546 6.59546 -146.118 -6.59546 0 0 828058. 2865.25 0.30 0.08 0.14 -1 -1 0.30 0.0285928 0.0257938 132 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_046.v common 32.96 vpr 65.45 MiB 0.04 7012 -1 -1 12 0.34 -1 -1 36616 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67016 32 32 318 350 1 227 85 17 17 289 -1 unnamed_device 26.6 MiB 1.77 1437 6967 1505 4666 796 65.4 MiB 0.08 0.00 7.30746 -159.645 -7.30746 7.30746 0.91 0.000712319 0.000643677 0.031433 0.028578 38 3828 35 6.79088e+06 282912 678818. 2348.85 27.70 0.408908 0.357242 25966 169698 -1 3129 20 1505 4519 268216 58977 6.50582 6.50582 -154.121 -6.50582 0 0 902133. 3121.57 0.34 0.10 0.16 -1 -1 0.34 0.0371003 0.0335058 153 223 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_047.v common 7.73 vpr 65.21 MiB 0.02 6936 -1 -1 13 0.30 -1 -1 36624 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66772 32 32 273 305 1 198 83 17 17 289 -1 unnamed_device 26.8 MiB 1.63 1157 7823 1835 4914 1074 65.2 MiB 0.07 0.00 7.47708 -158.746 -7.47708 7.47708 0.90 0.000638834 0.000579133 0.0313179 0.0284926 36 3541 41 6.79088e+06 255968 648988. 2245.63 2.78 0.167875 0.147072 25390 158009 -1 2777 16 1346 3846 223572 50333 6.62347 6.62347 -153.831 -6.62347 0 0 828058. 2865.25 0.31 0.08 0.15 -1 -1 0.31 0.0271492 0.0245488 131 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_048.v common 9.34 vpr 65.39 MiB 0.02 7088 -1 -1 13 0.28 -1 -1 36576 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66964 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 26.7 MiB 2.53 1097 11106 3753 5771 1582 65.4 MiB 0.09 0.00 7.69072 -162.222 -7.69072 7.69072 0.90 0.000594203 0.000538182 0.0420005 0.0381134 34 3515 39 6.79088e+06 229024 618332. 2139.56 3.47 0.202217 0.176643 25102 150614 -1 2637 24 1428 3851 351737 110675 6.58083 6.58083 -153.595 -6.58083 0 0 787024. 2723.27 0.30 0.12 0.15 -1 -1 0.30 0.0343177 0.0305594 118 174 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_049.v common 11.16 vpr 65.37 MiB 0.02 6996 -1 -1 12 0.34 -1 -1 36888 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66940 32 32 298 330 1 217 87 17 17 289 -1 unnamed_device 26.8 MiB 2.39 1359 8151 1869 5680 602 65.4 MiB 0.08 0.00 7.62073 -165.231 -7.62073 7.62073 0.90 0.000709146 0.000640594 0.0340278 0.030847 36 3806 40 6.79088e+06 309856 648988. 2245.63 5.38 0.212638 0.186169 25390 158009 -1 3171 19 1335 4203 269671 57713 7.12467 7.12467 -166.166 -7.12467 0 0 828058. 2865.25 0.30 0.09 0.15 -1 -1 0.30 0.0310445 0.0278471 150 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_050.v common 11.03 vpr 65.07 MiB 0.02 7108 -1 -1 13 0.34 -1 -1 36808 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 32 32 299 331 1 229 84 17 17 289 -1 unnamed_device 26.6 MiB 2.46 1315 9051 2036 5908 1107 65.1 MiB 0.09 0.00 7.55776 -165.084 -7.55776 7.55776 0.91 0.000620887 0.000561205 0.0376254 0.0340858 44 3354 21 6.79088e+06 269440 787024. 2723.27 5.10 0.282295 0.247507 27118 194962 -1 2672 17 1265 3553 183266 41178 6.95247 6.95247 -157.937 -6.95247 0 0 997811. 3452.63 0.38 0.07 0.18 -1 -1 0.38 0.0310653 0.02808 143 204 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_051.v common 10.44 vpr 64.93 MiB 0.02 7064 -1 -1 14 0.35 -1 -1 36804 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66484 32 32 259 291 1 195 82 17 17 289 -1 unnamed_device 26.5 MiB 2.67 1139 8270 1889 5806 575 64.9 MiB 0.08 0.00 8.36252 -172.285 -8.36252 8.36252 0.90 0.000603289 0.000547676 0.0319539 0.0290943 44 3128 32 6.79088e+06 242496 787024. 2723.27 4.35 0.240196 0.210888 27118 194962 -1 2534 14 1111 3223 182733 40388 7.46496 7.46496 -165.503 -7.46496 0 0 997811. 3452.63 0.37 0.06 0.17 -1 -1 0.37 0.0230043 0.0208591 123 164 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_052.v common 10.14 vpr 65.32 MiB 0.02 7236 -1 -1 13 0.33 -1 -1 36560 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66884 32 32 293 325 1 216 84 17 17 289 -1 unnamed_device 26.6 MiB 3.78 1159 8868 1881 6136 851 65.3 MiB 0.08 0.00 8.02321 -165.348 -8.02321 8.02321 0.85 0.000618676 0.000561793 0.0346033 0.03146 36 3689 32 6.79088e+06 269440 648988. 2245.63 3.16 0.218413 0.19343 25390 158009 -1 2935 19 1521 3981 226668 51258 6.75652 6.75652 -158.777 -6.75652 0 0 828058. 2865.25 0.31 0.08 0.14 -1 -1 0.31 0.031657 0.0285481 134 198 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_053.v common 22.57 vpr 65.43 MiB 0.02 7296 -1 -1 13 0.37 -1 -1 36520 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67004 31 32 311 343 1 236 86 17 17 289 -1 unnamed_device 26.6 MiB 1.53 1323 8591 2185 5991 415 65.4 MiB 0.09 0.00 8.19403 -174.315 -8.19403 8.19403 0.90 0.000728317 0.00066147 0.0363935 0.0329855 40 3394 20 6.79088e+06 309856 706193. 2443.58 17.45 0.386567 0.338669 26254 175826 -1 3066 25 1743 5231 489753 175031 7.25772 7.25772 -167.404 -7.25772 0 0 926341. 3205.33 0.35 0.17 0.17 -1 -1 0.35 0.0436235 0.0392456 154 218 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_054.v common 8.27 vpr 65.54 MiB 0.02 7240 -1 -1 12 0.39 -1 -1 36576 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67112 32 32 324 356 1 230 88 17 17 289 -1 unnamed_device 26.7 MiB 1.65 1325 11983 3288 6841 1854 65.5 MiB 0.11 0.00 7.62163 -166.383 -7.62163 7.62163 0.90 0.000721323 0.000653146 0.0486488 0.0439269 44 3682 36 6.79088e+06 323328 787024. 2723.27 3.04 0.23115 0.202624 27118 194962 -1 2742 18 1471 4099 199138 47944 6.49812 6.49812 -156.573 -6.49812 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0331893 0.0299018 157 229 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_055.v common 8.75 vpr 64.51 MiB 0.02 6948 -1 -1 11 0.16 -1 -1 36100 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66060 32 32 216 248 1 162 77 17 17 289 -1 unnamed_device 26.1 MiB 1.68 956 7249 1855 4884 510 64.5 MiB 0.06 0.00 6.10061 -138.097 -6.10061 6.10061 0.86 0.000496121 0.000449662 0.0240094 0.0218414 44 2204 16 6.79088e+06 175136 787024. 2723.27 3.99 0.178028 0.15528 27118 194962 -1 1994 14 890 2260 140178 30612 5.5245 5.5245 -131.032 -5.5245 0 0 997811. 3452.63 0.37 0.05 0.18 -1 -1 0.37 0.0184306 0.0166258 90 121 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_056.v common 23.69 vpr 65.03 MiB 0.02 6792 -1 -1 13 0.23 -1 -1 36224 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 32 32 245 277 1 192 81 17 17 289 -1 unnamed_device 26.7 MiB 3.03 1073 11631 3861 5991 1779 65.0 MiB 0.09 0.00 7.81611 -170.556 -7.81611 7.81611 0.92 0.000557006 0.000504135 0.0410628 0.0372122 38 2825 21 6.79088e+06 229024 678818. 2348.85 17.37 0.276793 0.242492 25966 169698 -1 2314 16 1060 2726 147569 33312 6.70962 6.70962 -158.286 -6.70962 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0242333 0.0219279 113 150 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_057.v common 10.21 vpr 65.81 MiB 0.02 7112 -1 -1 14 0.54 -1 -1 36484 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67388 32 32 361 393 1 262 88 17 17 289 -1 unnamed_device 27.2 MiB 1.27 1399 15493 4561 8338 2594 65.8 MiB 0.15 0.00 8.67312 -179.019 -8.67312 8.67312 0.92 0.00077423 0.000688893 0.0691753 0.0623332 40 4316 49 6.79088e+06 323328 706193. 2443.58 4.95 0.31352 0.27687 26254 175826 -1 3795 37 3221 10978 976505 293645 7.9304 7.9304 -179.416 -7.9304 0 0 926341. 3205.33 0.36 0.30 0.16 -1 -1 0.36 0.0685108 0.0610316 180 266 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_058.v common 8.80 vpr 65.75 MiB 0.02 6968 -1 -1 13 0.42 -1 -1 36832 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67332 32 32 318 350 1 242 85 17 17 289 -1 unnamed_device 27.1 MiB 2.93 1244 13849 3731 7364 2754 65.8 MiB 0.13 0.00 8.43396 -178.911 -8.43396 8.43396 0.92 0.000708632 0.000638866 0.0583658 0.0527449 38 3697 23 6.79088e+06 282912 678818. 2348.85 2.25 0.194771 0.171664 25966 169698 -1 2755 16 1418 3990 204815 47150 7.34737 7.34737 -164.785 -7.34737 0 0 902133. 3121.57 0.35 0.08 0.17 -1 -1 0.35 0.032967 0.0298192 154 223 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_059.v common 5.87 vpr 64.29 MiB 0.02 6824 -1 -1 11 0.21 -1 -1 36236 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65836 30 32 223 255 1 164 79 17 17 289 -1 unnamed_device 25.8 MiB 0.84 899 5994 1459 3795 740 64.3 MiB 0.05 0.00 6.69493 -140.456 -6.69493 6.69493 0.89 0.000501463 0.000455345 0.0210234 0.0190847 30 2669 49 6.79088e+06 229024 556674. 1926.21 1.91 0.119689 0.104712 24526 138013 -1 2044 17 941 2630 130731 31260 5.90384 5.90384 -134.218 -5.90384 0 0 706193. 2443.58 0.30 0.06 0.13 -1 -1 0.30 0.0242045 0.0217882 99 132 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_060.v common 11.10 vpr 65.32 MiB 0.02 7472 -1 -1 15 0.53 -1 -1 37632 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66884 32 32 335 367 1 254 88 17 17 289 -1 unnamed_device 26.8 MiB 1.51 1572 8083 1890 5078 1115 65.3 MiB 0.09 0.00 9.61575 -193.644 -9.61575 9.61575 0.85 0.000763412 0.000684489 0.0363489 0.0329148 44 4110 31 6.79088e+06 323328 787024. 2723.27 6.02 0.34046 0.302383 27118 194962 -1 3390 17 1634 4978 276321 60698 8.1454 8.1454 -178.826 -8.1454 0 0 997811. 3452.63 0.37 0.10 0.17 -1 -1 0.37 0.037497 0.0341999 172 240 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_061.v common 8.37 vpr 65.24 MiB 0.02 7144 -1 -1 13 0.40 -1 -1 36444 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66804 32 32 301 333 1 229 86 17 17 289 -1 unnamed_device 26.7 MiB 1.42 1447 9914 2954 6315 645 65.2 MiB 0.10 0.00 8.38843 -181.197 -8.38843 8.38843 0.90 0.00068396 0.00061835 0.0402916 0.0365181 38 3572 19 6.79088e+06 296384 678818. 2348.85 3.45 0.197046 0.17332 25966 169698 -1 3018 18 1464 4144 216137 47891 7.081 7.081 -169.041 -7.081 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.0325599 0.0293957 149 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_062.v common 6.85 vpr 64.74 MiB 0.02 7028 -1 -1 11 0.15 -1 -1 36484 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66292 32 32 238 270 1 173 80 17 17 289 -1 unnamed_device 26.3 MiB 2.02 1043 11604 3704 5973 1927 64.7 MiB 0.09 0.00 6.83225 -151.19 -6.83225 6.83225 0.92 0.000524732 0.000474277 0.0384421 0.0348636 30 2701 43 6.79088e+06 215552 556674. 1926.21 1.70 0.139229 0.123308 24526 138013 -1 2242 18 991 2518 138088 31398 6.20139 6.20139 -146.884 -6.20139 0 0 706193. 2443.58 0.29 0.06 0.13 -1 -1 0.29 0.0241195 0.0216283 97 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_063.v common 20.32 vpr 65.73 MiB 0.02 7348 -1 -1 12 0.38 -1 -1 36456 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67312 32 32 308 340 1 226 85 17 17 289 -1 unnamed_device 26.9 MiB 1.95 1321 11989 3057 7272 1660 65.7 MiB 0.11 0.00 7.80487 -167.158 -7.80487 7.80487 0.89 0.000680592 0.000606443 0.0481128 0.0433883 40 3150 27 6.79088e+06 282912 706193. 2443.58 14.87 0.363313 0.315836 26254 175826 -1 3019 17 1406 4153 254158 55179 6.74877 6.74877 -155.224 -6.74877 0 0 926341. 3205.33 0.34 0.09 0.17 -1 -1 0.34 0.0312611 0.028181 152 213 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_064.v common 10.23 vpr 64.72 MiB 0.02 6856 -1 -1 12 0.25 -1 -1 35968 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66272 32 32 253 285 1 190 80 17 17 289 -1 unnamed_device 26.4 MiB 2.10 1076 11776 3996 5804 1976 64.7 MiB 0.10 0.00 7.20737 -155.525 -7.20737 7.20737 0.87 0.0006003 0.000548038 0.0450582 0.0410224 38 3023 28 6.79088e+06 215552 678818. 2348.85 4.87 0.201325 0.178169 25966 169698 -1 2627 22 1335 3623 254853 62853 6.20488 6.20488 -150.164 -6.20488 0 0 902133. 3121.57 0.33 0.09 0.15 -1 -1 0.33 0.0308735 0.0276631 115 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_065.v common 5.99 vpr 64.77 MiB 0.02 7084 -1 -1 12 0.23 -1 -1 36456 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 30 32 227 259 1 163 81 17 17 289 -1 unnamed_device 26.3 MiB 1.64 861 12331 3461 6927 1943 64.8 MiB 0.09 0.00 7.68992 -150.206 -7.68992 7.68992 0.91 0.000537498 0.000488289 0.041058 0.0373185 30 2423 23 6.79088e+06 255968 556674. 1926.21 1.16 0.117636 0.104105 24526 138013 -1 1934 14 767 2134 98458 23749 6.47016 6.47016 -138.444 -6.47016 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.0218305 0.0198015 105 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_066.v common 9.59 vpr 65.23 MiB 0.02 7172 -1 -1 12 0.35 -1 -1 36532 -1 -1 24 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66792 29 32 292 324 1 202 85 17 17 289 -1 unnamed_device 26.7 MiB 1.64 1109 13105 4321 6403 2381 65.2 MiB 0.11 0.00 7.73882 -148.46 -7.73882 7.73882 0.89 0.000645914 0.000581108 0.0490743 0.0443109 36 3249 25 6.79088e+06 323328 648988. 2245.63 4.57 0.221655 0.195379 25390 158009 -1 2672 17 1266 3743 206131 47941 6.80802 6.80802 -140.964 -6.80802 0 0 828058. 2865.25 0.32 0.08 0.14 -1 -1 0.32 0.0308778 0.0278672 144 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_067.v common 11.65 vpr 65.70 MiB 0.02 7212 -1 -1 14 0.41 -1 -1 36832 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67280 32 32 316 348 1 248 86 17 17 289 -1 unnamed_device 27.1 MiB 3.08 1442 8024 2021 5399 604 65.7 MiB 0.08 0.00 8.63126 -174.325 -8.63126 8.63126 0.89 0.000738658 0.000670602 0.0350112 0.0317577 46 3512 20 6.79088e+06 296384 828058. 2865.25 5.00 0.240937 0.210588 27406 200422 -1 2947 17 1622 4161 220693 49235 7.51525 7.51525 -163.122 -7.51525 0 0 1.01997e+06 3529.29 0.37 0.08 0.20 -1 -1 0.37 0.0322696 0.0291591 155 221 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_068.v common 9.25 vpr 65.04 MiB 0.02 7180 -1 -1 12 0.29 -1 -1 36364 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66604 32 32 286 318 1 212 83 17 17 289 -1 unnamed_device 26.6 MiB 1.78 1323 12503 3954 6429 2120 65.0 MiB 0.11 0.00 7.68002 -164.527 -7.68002 7.68002 0.90 0.000653824 0.000590979 0.0496309 0.0449697 38 3480 45 6.79088e+06 255968 678818. 2348.85 4.00 0.226657 0.198883 25966 169698 -1 2900 27 1408 4170 412991 165317 6.75652 6.75652 -157.509 -6.75652 0 0 902133. 3121.57 0.33 0.15 0.16 -1 -1 0.33 0.040802 0.0363304 137 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_069.v common 8.12 vpr 64.33 MiB 0.02 7064 -1 -1 12 0.18 -1 -1 36636 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65872 32 32 221 253 1 164 79 17 17 289 -1 unnamed_device 25.9 MiB 1.64 883 6839 1546 5160 133 64.3 MiB 0.06 0.00 7.22527 -147.319 -7.22527 7.22527 0.92 0.000518552 0.000456075 0.0243419 0.0220238 34 2749 47 6.79088e+06 202080 618332. 2139.56 3.27 0.14133 0.124011 25102 150614 -1 2163 27 965 2570 323922 137593 6.16917 6.16917 -143.092 -6.16917 0 0 787024. 2723.27 0.31 0.12 0.14 -1 -1 0.31 0.030622 0.0272172 95 126 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_070.v common 10.21 vpr 65.08 MiB 0.02 7028 -1 -1 12 0.27 -1 -1 35976 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 31 32 261 293 1 187 81 17 17 289 -1 unnamed_device 26.7 MiB 2.31 1016 11806 3829 5905 2072 65.1 MiB 0.09 0.00 7.21239 -153.602 -7.21239 7.21239 0.85 0.000598521 0.000541095 0.0405573 0.0368419 46 2377 20 6.79088e+06 242496 828058. 2865.25 4.65 0.27105 0.238793 27406 200422 -1 2052 17 949 2614 129035 29625 6.38057 6.38057 -145.937 -6.38057 0 0 1.01997e+06 3529.29 0.37 0.06 0.18 -1 -1 0.37 0.0256155 0.0231439 114 168 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_071.v common 11.35 vpr 65.12 MiB 0.02 7084 -1 -1 11 0.24 -1 -1 36648 -1 -1 22 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 30 32 277 309 1 200 84 17 17 289 -1 unnamed_device 26.6 MiB 3.23 1192 7587 1799 4901 887 65.1 MiB 0.07 0.00 6.65573 -139.172 -6.65573 6.65573 0.89 0.000574949 0.000516418 0.0280068 0.0253138 44 3222 24 6.79088e+06 296384 787024. 2723.27 4.84 0.222189 0.192853 27118 194962 -1 2529 15 1183 3751 197012 43772 5.78973 5.78973 -133.446 -5.78973 0 0 997811. 3452.63 0.37 0.07 0.17 -1 -1 0.37 0.0260877 0.0236679 129 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_072.v common 9.69 vpr 65.02 MiB 0.02 7052 -1 -1 11 0.26 -1 -1 36560 -1 -1 21 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 28 32 251 283 1 191 81 17 17 289 -1 unnamed_device 26.6 MiB 1.66 990 12156 4943 6412 801 65.0 MiB 0.10 0.00 6.59863 -125.892 -6.59863 6.59863 0.91 0.000584921 0.000528262 0.0437753 0.0396737 44 2904 27 6.79088e+06 282912 787024. 2723.27 4.58 0.253484 0.220501 27118 194962 -1 2227 20 1278 3711 190655 44513 6.15444 6.15444 -122.054 -6.15444 0 0 997811. 3452.63 0.38 0.08 0.20 -1 -1 0.38 0.0303758 0.0272323 125 164 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_073.v common 10.65 vpr 64.50 MiB 0.02 6872 -1 -1 13 0.23 -1 -1 36308 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66052 30 32 223 255 1 173 78 17 17 289 -1 unnamed_device 26.0 MiB 3.61 1023 6220 1452 4481 287 64.5 MiB 0.05 0.00 7.37394 -146.255 -7.37394 7.37394 0.89 0.000527914 0.000479019 0.0225268 0.0205109 36 2646 31 6.79088e+06 215552 648988. 2245.63 3.92 0.172655 0.149601 25390 158009 -1 2284 14 901 2336 132417 30127 6.50592 6.50592 -141.822 -6.50592 0 0 828058. 2865.25 0.30 0.05 0.14 -1 -1 0.30 0.0191923 0.0173404 104 132 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_074.v common 8.97 vpr 64.89 MiB 0.02 6752 -1 -1 12 0.24 -1 -1 36312 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66444 32 32 269 301 1 197 84 17 17 289 -1 unnamed_device 26.5 MiB 2.41 1239 4476 858 3235 383 64.9 MiB 0.04 0.00 7.13568 -159.479 -7.13568 7.13568 0.91 0.000659961 0.000592701 0.0182292 0.0166029 36 3048 33 6.79088e+06 269440 648988. 2245.63 3.32 0.177287 0.155031 25390 158009 -1 2617 16 1096 2894 182823 39794 6.45548 6.45548 -153.776 -6.45548 0 0 828058. 2865.25 0.32 0.07 0.16 -1 -1 0.32 0.0271065 0.0245067 125 174 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_075.v common 8.05 vpr 64.87 MiB 0.02 7056 -1 -1 13 0.36 -1 -1 36688 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66424 31 32 283 315 1 193 83 17 17 289 -1 unnamed_device 26.4 MiB 2.37 1176 7283 1697 4959 627 64.9 MiB 0.07 0.00 7.98183 -162.706 -7.98183 7.98183 0.90 0.000632577 0.000573434 0.0294611 0.0267782 38 2773 17 6.79088e+06 269440 678818. 2348.85 2.26 0.178581 0.156796 25966 169698 -1 2364 19 1086 3314 147941 34759 6.84611 6.84611 -150.495 -6.84611 0 0 902133. 3121.57 0.35 0.07 0.16 -1 -1 0.35 0.0323128 0.0290925 137 190 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_076.v common 9.25 vpr 65.68 MiB 0.02 6956 -1 -1 14 0.36 -1 -1 36780 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67252 32 32 308 340 1 224 85 17 17 289 -1 unnamed_device 26.9 MiB 1.90 1408 9013 2325 5592 1096 65.7 MiB 0.09 0.00 8.8032 -181.521 -8.8032 8.8032 0.92 0.000712026 0.000647753 0.0393847 0.035774 36 3712 28 6.79088e+06 282912 648988. 2245.63 3.89 0.225783 0.199652 25390 158009 -1 3077 16 1355 3646 217262 48005 7.85554 7.85554 -178.788 -7.85554 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.0309957 0.0280798 149 213 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_077.v common 11.16 vpr 65.25 MiB 0.02 7112 -1 -1 14 0.33 -1 -1 36736 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66820 32 32 277 309 1 209 84 17 17 289 -1 unnamed_device 26.7 MiB 2.85 1168 12528 4001 6466 2061 65.3 MiB 0.11 0.00 8.11366 -160.164 -8.11366 8.11366 0.91 0.000645537 0.000584417 0.0488708 0.0442858 44 3141 20 6.79088e+06 269440 787024. 2723.27 4.81 0.271659 0.238743 27118 194962 -1 2405 15 1112 3343 161383 37575 7.21863 7.21863 -147.209 -7.21863 0 0 997811. 3452.63 0.36 0.07 0.17 -1 -1 0.36 0.0267632 0.0243185 136 182 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_078.v common 11.75 vpr 65.13 MiB 0.02 7188 -1 -1 13 0.44 -1 -1 36988 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 32 32 288 320 1 210 83 17 17 289 -1 unnamed_device 26.6 MiB 2.56 1266 7823 1896 4973 954 65.1 MiB 0.08 0.00 7.98865 -167.696 -7.98865 7.98865 0.92 0.000679832 0.000615829 0.0339452 0.030815 44 3303 29 6.79088e+06 255968 787024. 2723.27 5.54 0.300005 0.264046 27118 194962 -1 2645 17 1220 3736 198638 44655 6.74882 6.74882 -154.997 -6.74882 0 0 997811. 3452.63 0.40 0.08 0.19 -1 -1 0.40 0.031051 0.0280225 139 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_079.v common 16.85 vpr 64.92 MiB 0.02 7060 -1 -1 13 0.22 -1 -1 36408 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66480 30 32 230 262 1 176 78 17 17 289 -1 unnamed_device 26.4 MiB 1.98 955 5888 1275 4387 226 64.9 MiB 0.06 0.00 7.30909 -151.711 -7.30909 7.30909 0.91 0.000545782 0.000497359 0.022538 0.0205787 40 2382 30 6.79088e+06 215552 706193. 2443.58 11.62 0.275842 0.239022 26254 175826 -1 2197 16 1037 2468 154235 34830 6.41977 6.41977 -144.343 -6.41977 0 0 926341. 3205.33 0.34 0.06 0.17 -1 -1 0.34 0.0230679 0.0207382 106 139 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_080.v common 8.19 vpr 65.27 MiB 0.02 7152 -1 -1 13 0.57 -1 -1 36816 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66840 30 32 294 326 1 222 85 17 17 289 -1 unnamed_device 26.5 MiB 1.82 1281 12175 3045 7735 1395 65.3 MiB 0.11 0.00 8.2401 -167.978 -8.2401 8.2401 0.90 0.000693457 0.000631689 0.0497886 0.045255 36 3566 29 6.79088e+06 309856 648988. 2245.63 2.65 0.189994 0.168377 25390 158009 -1 3025 23 1642 4310 364544 125273 7.47605 7.47605 -167.45 -7.47605 0 0 828058. 2865.25 0.32 0.13 0.15 -1 -1 0.32 0.0388317 0.034841 144 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_081.v common 10.50 vpr 65.27 MiB 0.02 7112 -1 -1 14 0.37 -1 -1 36272 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66836 32 32 276 308 1 206 84 17 17 289 -1 unnamed_device 26.8 MiB 2.08 1252 6306 1410 4478 418 65.3 MiB 0.06 0.00 8.1933 -176.786 -8.1933 8.1933 0.89 0.000639354 0.000578147 0.0252798 0.0229716 46 3049 24 6.79088e+06 269440 828058. 2865.25 4.92 0.212082 0.184731 27406 200422 -1 2560 18 1161 3517 179903 39884 7.43347 7.43347 -170.772 -7.43347 0 0 1.01997e+06 3529.29 0.39 0.07 0.19 -1 -1 0.39 0.0304105 0.0274155 133 181 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_082.v common 20.38 vpr 65.00 MiB 0.02 7152 -1 -1 12 0.32 -1 -1 36808 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 31 32 293 325 1 212 84 17 17 289 -1 unnamed_device 26.5 MiB 2.19 1214 6855 1626 4139 1090 65.0 MiB 0.07 0.00 7.87232 -159.238 -7.87232 7.87232 0.91 0.000672914 0.000612074 0.029028 0.0264293 38 3142 49 6.79088e+06 282912 678818. 2348.85 14.78 0.387383 0.339688 25966 169698 -1 2595 16 1318 3782 197344 44613 6.75996 6.75996 -149.088 -6.75996 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.029968 0.0271587 143 200 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_083.v common 22.79 vpr 65.04 MiB 0.02 7280 -1 -1 13 0.30 -1 -1 36296 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66596 30 32 273 305 1 208 83 17 17 289 -1 unnamed_device 26.3 MiB 2.47 1166 13583 4513 7114 1956 65.0 MiB 0.12 0.00 8.05477 -151.514 -8.05477 8.05477 0.91 0.000622712 0.000566502 0.0523669 0.0476428 38 3283 21 6.79088e+06 282912 678818. 2348.85 16.89 0.31256 0.274314 25966 169698 -1 2677 16 1345 3593 186223 41846 7.08558 7.08558 -144.629 -7.08558 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0275188 0.0248772 126 182 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_084.v common 10.33 vpr 65.47 MiB 0.02 7064 -1 -1 14 0.44 -1 -1 36888 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67044 32 32 310 342 1 235 85 17 17 289 -1 unnamed_device 27.1 MiB 1.89 1356 6595 1328 4700 567 65.5 MiB 0.07 0.00 8.2637 -174.994 -8.2637 8.2637 0.91 0.000711175 0.000644319 0.0299098 0.027269 38 3897 30 6.79088e+06 282912 678818. 2348.85 4.85 0.220312 0.194601 25966 169698 -1 3095 22 1828 5270 279232 60897 7.22201 7.22201 -164.867 -7.22201 0 0 902133. 3121.57 0.34 0.11 0.16 -1 -1 0.34 0.0394935 0.0354841 154 215 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_085.v common 21.95 vpr 65.25 MiB 0.02 6940 -1 -1 11 0.36 -1 -1 36348 -1 -1 22 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 29 32 259 291 1 194 83 17 17 289 -1 unnamed_device 26.8 MiB 1.57 1061 13403 4351 6899 2153 65.2 MiB 0.11 0.00 6.99502 -136.053 -6.99502 6.99502 0.89 0.00061488 0.00055283 0.0488385 0.0441376 30 3783 49 6.79088e+06 296384 556674. 1926.21 16.97 0.339534 0.296902 24526 138013 -1 2675 25 1322 3998 313633 101063 5.87926 5.87926 -131.148 -5.87926 0 0 706193. 2443.58 0.29 0.12 0.13 -1 -1 0.29 0.0372615 0.0333428 130 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_086.v common 16.56 vpr 64.84 MiB 0.02 6896 -1 -1 13 0.20 -1 -1 36196 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66392 32 32 225 257 1 182 78 17 17 289 -1 unnamed_device 26.3 MiB 3.77 995 4062 701 3272 89 64.8 MiB 0.04 0.00 6.9771 -161.617 -6.9771 6.9771 0.88 0.000445789 0.000405922 0.0137433 0.012625 36 2919 36 6.79088e+06 188608 648988. 2245.63 9.65 0.253024 0.220132 25390 158009 -1 2556 16 1141 2694 195830 44691 6.36594 6.36594 -160.729 -6.36594 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0238625 0.0215166 99 130 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_087.v common 10.15 vpr 65.19 MiB 0.02 7004 -1 -1 14 0.30 -1 -1 36372 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66752 32 32 273 305 1 212 83 17 17 289 -1 unnamed_device 26.7 MiB 2.25 1302 5483 1117 4002 364 65.2 MiB 0.06 0.00 8.68565 -176.783 -8.68565 8.68565 0.90 0.000629178 0.000571498 0.0226418 0.0206574 36 3263 26 6.79088e+06 255968 648988. 2245.63 4.58 0.177659 0.155745 25390 158009 -1 2860 16 1237 3380 208791 44870 7.59375 7.59375 -167.243 -7.59375 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.027432 0.0247692 129 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_088.v common 20.97 vpr 65.42 MiB 0.02 7204 -1 -1 15 0.47 -1 -1 36668 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66992 32 32 322 354 1 240 86 17 17 289 -1 unnamed_device 27.0 MiB 2.36 1292 9914 2574 6184 1156 65.4 MiB 0.10 0.00 9.1052 -186.475 -9.1052 9.1052 0.89 0.000731243 0.000662019 0.0434404 0.0393815 40 3560 37 6.79088e+06 296384 706193. 2443.58 15.00 0.404028 0.353107 26254 175826 -1 3108 21 1753 4648 284834 65709 7.8164 7.8164 -175.32 -7.8164 0 0 926341. 3205.33 0.34 0.10 0.17 -1 -1 0.34 0.0376495 0.0337181 153 227 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_089.v common 8.95 vpr 64.72 MiB 0.02 6872 -1 -1 11 0.20 -1 -1 36340 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66272 32 32 218 250 1 160 78 17 17 289 -1 unnamed_device 26.3 MiB 2.58 829 6054 1305 4663 86 64.7 MiB 0.05 0.00 6.63906 -133.693 -6.63906 6.63906 0.92 0.000444057 0.000405331 0.0208684 0.0189588 34 2844 35 6.79088e+06 188608 618332. 2139.56 3.19 0.151502 0.132118 25102 150614 -1 2151 17 993 2556 165416 38824 5.66443 5.66443 -134.501 -5.66443 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0217952 0.0194945 91 123 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_090.v common 8.31 vpr 64.50 MiB 0.02 7036 -1 -1 12 0.24 -1 -1 36328 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66048 31 32 244 276 1 185 79 17 17 289 -1 unnamed_device 25.9 MiB 1.92 1045 8360 2472 4444 1444 64.5 MiB 0.07 0.00 7.09988 -155.106 -7.09988 7.09988 0.91 0.000572382 0.000519893 0.031287 0.0285004 36 3087 23 6.79088e+06 215552 648988. 2245.63 3.13 0.16182 0.141605 25390 158009 -1 2519 19 1185 3042 166105 39305 6.07958 6.07958 -147.379 -6.07958 0 0 828058. 2865.25 0.31 0.07 0.15 -1 -1 0.31 0.026763 0.0239858 111 151 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_091.v common 8.74 vpr 65.12 MiB 0.02 7180 -1 -1 12 0.39 -1 -1 36428 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 32 32 301 333 1 214 84 17 17 289 -1 unnamed_device 26.6 MiB 1.76 1231 6306 1337 4274 695 65.1 MiB 0.07 0.00 7.48442 -156.804 -7.48442 7.48442 0.86 0.000677822 0.000616983 0.0283551 0.0258353 36 3798 37 6.79088e+06 269440 648988. 2245.63 3.65 0.230191 0.204334 25390 158009 -1 2961 20 1445 3931 275428 71510 6.67381 6.67381 -156.005 -6.67381 0 0 828058. 2865.25 0.31 0.10 0.14 -1 -1 0.31 0.0354584 0.0320524 145 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_092.v common 10.17 vpr 65.25 MiB 0.02 7212 -1 -1 12 0.31 -1 -1 36848 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66816 32 32 278 310 1 207 83 17 17 289 -1 unnamed_device 26.5 MiB 2.11 1313 9443 2521 5826 1096 65.2 MiB 0.09 0.00 7.56551 -160.745 -7.56551 7.56551 0.89 0.000626971 0.000568705 0.0372686 0.0339104 36 3623 36 6.79088e+06 255968 648988. 2245.63 4.69 0.253654 0.222074 25390 158009 -1 3056 18 1341 4044 240255 52849 6.72081 6.72081 -158.475 -6.72081 0 0 828058. 2865.25 0.32 0.09 0.15 -1 -1 0.32 0.0303112 0.02731 133 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_093.v common 9.84 vpr 65.70 MiB 0.02 7264 -1 -1 14 0.58 -1 -1 36808 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67280 32 32 333 365 1 242 87 17 17 289 -1 unnamed_device 26.9 MiB 1.70 1284 5079 907 4069 103 65.7 MiB 0.07 0.00 8.77515 -179.37 -8.77515 8.77515 0.90 0.000771297 0.000693737 0.0263096 0.0239547 38 4131 35 6.79088e+06 309856 678818. 2348.85 4.42 0.239371 0.211453 25966 169698 -1 3224 19 1704 5050 265728 61838 7.75826 7.75826 -171.928 -7.75826 0 0 902133. 3121.57 0.34 0.10 0.16 -1 -1 0.34 0.0394663 0.0357577 170 238 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_094.v common 9.94 vpr 64.93 MiB 0.02 7200 -1 -1 11 0.29 -1 -1 36236 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66488 30 32 261 293 1 195 83 17 17 289 -1 unnamed_device 26.5 MiB 2.45 1159 11963 3648 6429 1886 64.9 MiB 0.10 0.00 7.06667 -142.983 -7.06667 7.06667 0.88 0.000591742 0.000534176 0.0436434 0.0395729 44 2874 16 6.79088e+06 282912 787024. 2723.27 4.06 0.230457 0.201232 27118 194962 -1 2495 13 1107 3189 172215 38308 6.29442 6.29442 -134.943 -6.29442 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0248722 0.0227077 128 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_095.v common 8.87 vpr 64.62 MiB 0.02 6940 -1 -1 11 0.22 -1 -1 36476 -1 -1 19 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66168 27 32 217 249 1 154 78 17 17 289 -1 unnamed_device 26.2 MiB 1.50 770 7714 1883 5409 422 64.6 MiB 0.06 0.00 6.64923 -122.654 -6.64923 6.64923 0.90 0.00051867 0.000464699 0.0263987 0.0239277 44 2104 48 6.79088e+06 255968 787024. 2723.27 4.09 0.213271 0.185001 27118 194962 -1 1646 17 783 2028 103450 24460 5.81779 5.81779 -115.345 -5.81779 0 0 997811. 3452.63 0.38 0.05 0.19 -1 -1 0.38 0.0229047 0.0205492 101 132 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_096.v common 11.15 vpr 66.08 MiB 0.02 7172 -1 -1 13 0.55 -1 -1 36740 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67664 32 32 373 405 1 276 93 17 17 289 -1 unnamed_device 27.3 MiB 2.24 1654 14793 4090 8037 2666 66.1 MiB 0.16 0.00 8.15219 -167.23 -8.15219 8.15219 0.92 0.000842398 0.000749858 0.0651443 0.0585332 40 4464 26 6.79088e+06 390688 706193. 2443.58 4.80 0.286578 0.253436 26254 175826 -1 4342 43 3548 11778 1281392 416657 7.30036 7.30036 -164.554 -7.30036 0 0 926341. 3205.33 0.35 0.40 0.16 -1 -1 0.35 0.0817993 0.0727266 191 278 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_097.v common 16.72 vpr 64.80 MiB 0.02 7232 -1 -1 14 0.34 -1 -1 36528 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66356 31 32 269 301 1 201 83 17 17 289 -1 unnamed_device 26.4 MiB 1.67 1216 6923 1704 4584 635 64.8 MiB 0.07 0.00 8.60637 -173.25 -8.60637 8.60637 0.91 0.00063506 0.00057574 0.0286734 0.0261952 30 3569 30 6.79088e+06 269440 556674. 1926.21 11.69 0.235119 0.206366 24526 138013 -1 2784 18 1329 3487 180050 42102 7.39006 7.39006 -168.706 -7.39006 0 0 706193. 2443.58 0.29 0.08 0.13 -1 -1 0.29 0.0299107 0.0269751 128 176 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_098.v common 11.24 vpr 64.64 MiB 0.02 6960 -1 -1 12 0.19 -1 -1 36312 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66192 32 32 228 260 1 188 83 17 17 289 -1 unnamed_device 26.1 MiB 2.82 1144 8723 2365 5890 468 64.6 MiB 0.07 0.00 7.40683 -169.316 -7.40683 7.40683 0.89 0.000527915 0.000479488 0.0289501 0.0263156 44 3005 29 6.79088e+06 255968 787024. 2723.27 5.15 0.218471 0.189914 27118 194962 -1 2396 17 1034 2599 148015 32235 6.54507 6.54507 -160.371 -6.54507 0 0 997811. 3452.63 0.38 0.06 0.19 -1 -1 0.38 0.0250852 0.0226017 109 133 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_099.v common 11.98 vpr 65.23 MiB 0.02 7172 -1 -1 13 0.37 -1 -1 36400 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66796 32 32 265 297 1 195 82 17 17 289 -1 unnamed_device 26.8 MiB 3.49 1115 5066 1001 3852 213 65.2 MiB 0.05 0.00 8.33866 -169.136 -8.33866 8.33866 0.91 0.000615077 0.000557305 0.0213318 0.0194691 48 2783 21 6.79088e+06 242496 865456. 2994.66 4.95 0.247528 0.2172 27694 206865 -1 2457 17 1071 3000 181658 40341 7.04987 7.04987 -154.557 -7.04987 0 0 1.05005e+06 3633.38 0.40 0.07 0.20 -1 -1 0.40 0.0280874 0.0253877 125 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_100.v common 9.64 vpr 65.47 MiB 0.02 7260 -1 -1 13 0.39 -1 -1 36764 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67044 31 32 325 357 1 249 88 17 17 289 -1 unnamed_device 26.8 MiB 2.45 1490 8083 1681 5214 1188 65.5 MiB 0.09 0.00 7.4732 -162.473 -7.4732 7.4732 0.90 0.000751712 0.000678013 0.0355775 0.0322763 44 3967 47 6.79088e+06 336800 787024. 2723.27 3.61 0.225825 0.199019 27118 194962 -1 3167 19 1591 4399 235762 52009 6.50587 6.50587 -151.156 -6.50587 0 0 997811. 3452.63 0.39 0.09 0.19 -1 -1 0.39 0.0377806 0.0342915 159 232 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_101.v common 10.37 vpr 65.13 MiB 0.02 7104 -1 -1 11 0.28 -1 -1 36360 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66696 30 32 287 319 1 197 85 17 17 289 -1 unnamed_device 26.6 MiB 1.88 1209 11059 2877 6113 2069 65.1 MiB 0.09 0.00 7.11391 -144.84 -7.11391 7.11391 0.90 0.000687891 0.000619895 0.0415575 0.0375553 38 3561 49 6.79088e+06 309856 678818. 2348.85 5.15 0.241888 0.212989 25966 169698 -1 2802 19 1231 4028 222812 48680 6.29442 6.29442 -138.469 -6.29442 0 0 902133. 3121.57 0.34 0.08 0.15 -1 -1 0.34 0.0315772 0.028325 140 196 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_102.v common 7.94 vpr 65.13 MiB 0.02 7060 -1 -1 15 0.42 -1 -1 36896 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66696 32 32 297 329 1 220 83 17 17 289 -1 unnamed_device 26.5 MiB 1.94 1211 12503 3460 7559 1484 65.1 MiB 0.11 0.00 9.11536 -184.558 -9.11536 9.11536 0.91 0.000662 0.000586266 0.0505598 0.0457167 40 2992 23 6.79088e+06 255968 706193. 2443.58 2.39 0.2084 0.183178 26254 175826 -1 2859 22 1385 3747 325915 107909 7.59386 7.59386 -167.071 -7.59386 0 0 926341. 3205.33 0.34 0.12 0.17 -1 -1 0.34 0.0361152 0.0323183 142 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_103.v common 25.27 vpr 65.18 MiB 0.02 7124 -1 -1 13 0.38 -1 -1 36568 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66740 32 32 311 343 1 230 87 17 17 289 -1 unnamed_device 26.8 MiB 2.38 1357 5463 1001 4200 262 65.2 MiB 0.06 0.00 8.32676 -176.58 -8.32676 8.32676 0.92 0.000736276 0.000659005 0.0250044 0.0226749 36 4143 34 6.79088e+06 309856 648988. 2245.63 19.42 0.340779 0.29778 25390 158009 -1 3215 15 1397 4264 255465 56839 7.3039 7.3039 -167.703 -7.3039 0 0 828058. 2865.25 0.31 0.08 0.15 -1 -1 0.31 0.0300667 0.0272759 154 216 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_104.v common 9.78 vpr 64.57 MiB 0.02 6792 -1 -1 12 0.25 -1 -1 36016 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66124 29 32 236 268 1 182 79 17 17 289 -1 unnamed_device 26.1 MiB 2.48 941 10557 3755 4946 1856 64.6 MiB 0.08 0.00 7.68137 -155.362 -7.68137 7.68137 0.89 0.000535501 0.000484909 0.0377456 0.0343982 36 2695 26 6.79088e+06 242496 648988. 2245.63 4.05 0.196884 0.171572 25390 158009 -1 2097 18 1092 2579 149818 35102 6.42326 6.42326 -142.319 -6.42326 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0253739 0.022795 109 147 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_105.v common 9.60 vpr 64.60 MiB 0.02 6944 -1 -1 11 0.20 -1 -1 36312 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66148 32 32 231 263 1 184 78 17 17 289 -1 unnamed_device 26.1 MiB 1.78 1148 5224 1190 3763 271 64.6 MiB 0.05 0.00 6.84847 -147.97 -6.84847 6.84847 0.92 0.000531616 0.000482654 0.0196511 0.0179057 48 2763 18 6.79088e+06 188608 865456. 2994.66 4.49 0.214464 0.186863 27694 206865 -1 2400 16 1054 2657 164840 36234 6.07953 6.07953 -142.602 -6.07953 0 0 1.05005e+06 3633.38 0.40 0.06 0.20 -1 -1 0.40 0.023269 0.0209982 98 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_106.v common 9.58 vpr 65.45 MiB 0.02 7112 -1 -1 13 0.39 -1 -1 36544 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67016 31 32 294 326 1 214 85 17 17 289 -1 unnamed_device 26.9 MiB 1.39 1115 8455 2194 4906 1355 65.4 MiB 0.08 0.00 7.89179 -153.02 -7.89179 7.89179 0.90 0.00067598 0.000611234 0.0352797 0.0320172 38 3369 23 6.79088e+06 296384 678818. 2348.85 4.68 0.19696 0.172679 25966 169698 -1 2582 19 1522 4380 232121 52519 7.01056 7.01056 -146.958 -7.01056 0 0 902133. 3121.57 0.34 0.09 0.17 -1 -1 0.34 0.0342981 0.0309737 144 201 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_107.v common 9.67 vpr 64.63 MiB 0.02 6992 -1 -1 10 0.21 -1 -1 36116 -1 -1 17 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66180 29 32 221 253 1 164 78 17 17 289 -1 unnamed_device 26.2 MiB 2.18 851 10204 2504 7246 454 64.6 MiB 0.08 0.00 6.11518 -125.484 -6.11518 6.11518 0.90 0.000512339 0.00046553 0.0341173 0.0310531 38 2368 25 6.79088e+06 229024 678818. 2348.85 4.28 0.191192 0.165806 25966 169698 -1 1961 20 991 2669 141776 33456 5.23803 5.23803 -121.582 -5.23803 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0247784 0.0221423 98 132 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_108.v common 10.00 vpr 64.98 MiB 0.02 6860 -1 -1 14 0.23 -1 -1 36320 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 32 32 240 272 1 188 82 17 17 289 -1 unnamed_device 26.4 MiB 3.45 1049 6312 1330 4556 426 65.0 MiB 0.06 0.00 7.76918 -161.081 -7.76918 7.76918 0.89 0.000552504 0.000501594 0.0224572 0.0204374 36 3203 45 6.79088e+06 242496 648988. 2245.63 3.21 0.156791 0.137344 25390 158009 -1 2679 40 1212 3341 519010 263304 6.83492 6.83492 -157.055 -6.83492 0 0 828058. 2865.25 0.31 0.21 0.15 -1 -1 0.31 0.0484325 0.0428836 110 145 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_109.v common 10.49 vpr 65.37 MiB 0.02 7024 -1 -1 12 0.39 -1 -1 36616 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66936 31 32 292 324 1 210 85 17 17 289 -1 unnamed_device 26.8 MiB 1.45 1262 12919 3620 7000 2299 65.4 MiB 0.12 0.00 7.60154 -161.988 -7.60154 7.60154 0.92 0.000687672 0.000617547 0.0512276 0.0464385 36 3634 39 6.79088e+06 296384 648988. 2245.63 5.52 0.241322 0.21335 25390 158009 -1 2971 17 1351 4072 238734 51864 6.42321 6.42321 -153.96 -6.42321 0 0 828058. 2865.25 0.32 0.09 0.15 -1 -1 0.32 0.0312715 0.0282867 143 199 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_110.v common 16.48 vpr 64.79 MiB 0.02 6844 -1 -1 12 0.17 -1 -1 36216 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66340 31 32 229 261 1 179 79 17 17 289 -1 unnamed_device 26.3 MiB 2.46 992 10726 2823 7181 722 64.8 MiB 0.08 0.00 6.58069 -144.507 -6.58069 6.58069 0.86 0.000510293 0.000449635 0.0351614 0.0319403 30 2929 43 6.79088e+06 215552 556674. 1926.21 11.02 0.231907 0.203525 24526 138013 -1 2473 14 1119 2569 158771 34817 5.98999 5.98999 -142.769 -5.98999 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.0202026 0.018244 101 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_111.v common 9.64 vpr 64.79 MiB 0.02 7248 -1 -1 12 0.24 -1 -1 36672 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 32 32 282 314 1 202 82 17 17 289 -1 unnamed_device 26.3 MiB 1.73 1163 7736 1889 5402 445 64.8 MiB 0.07 0.00 7.51176 -154.757 -7.51176 7.51176 0.92 0.000636019 0.000577241 0.0312719 0.0283938 38 3181 29 6.79088e+06 242496 678818. 2348.85 4.59 0.190178 0.166544 25966 169698 -1 2515 17 1225 3565 177970 39879 6.38406 6.38406 -145.925 -6.38406 0 0 902133. 3121.57 0.33 0.07 0.17 -1 -1 0.33 0.029415 0.026579 123 187 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_112.v common 19.42 vpr 65.12 MiB 0.02 7260 -1 -1 13 0.35 -1 -1 36588 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 31 32 269 301 1 204 82 17 17 289 -1 unnamed_device 26.6 MiB 1.85 1250 11296 2557 6849 1890 65.1 MiB 0.10 0.00 7.49717 -162.624 -7.49717 7.49717 0.89 0.000609814 0.000549853 0.0430712 0.0390927 40 2968 20 6.79088e+06 255968 706193. 2443.58 14.08 0.340277 0.296933 26254 175826 -1 2890 18 1359 3719 224408 50533 6.33367 6.33367 -151.835 -6.33367 0 0 926341. 3205.33 0.35 0.08 0.17 -1 -1 0.35 0.0298818 0.0267833 134 176 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_113.v common 9.95 vpr 64.69 MiB 0.02 6788 -1 -1 11 0.20 -1 -1 35980 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66244 32 32 237 269 1 188 79 17 17 289 -1 unnamed_device 26.1 MiB 1.63 937 7515 1724 5667 124 64.7 MiB 0.07 0.00 7.16165 -142.405 -7.16165 7.16165 0.90 0.000527434 0.000477817 0.026632 0.0242165 46 2683 20 6.79088e+06 202080 828058. 2865.25 5.02 0.210589 0.182628 27406 200422 -1 2105 16 1065 2783 146822 34446 6.16912 6.16912 -137.479 -6.16912 0 0 1.01997e+06 3529.29 0.38 0.06 0.20 -1 -1 0.38 0.0228812 0.0206129 105 142 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_114.v common 7.79 vpr 65.06 MiB 0.02 6884 -1 -1 13 0.24 -1 -1 36488 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66620 32 32 259 291 1 191 81 17 17 289 -1 unnamed_device 26.7 MiB 2.33 1005 13381 4639 6392 2350 65.1 MiB 0.11 0.00 7.38301 -157.601 -7.38301 7.38301 0.90 0.000600687 0.000543709 0.0480937 0.0435376 38 2883 22 6.79088e+06 229024 678818. 2348.85 2.14 0.153567 0.135092 25966 169698 -1 2179 17 1098 2908 144764 33900 6.33367 6.33367 -144.611 -6.33367 0 0 902133. 3121.57 0.36 0.06 0.17 -1 -1 0.36 0.0270546 0.024379 116 164 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_115.v common 8.20 vpr 65.23 MiB 0.02 7240 -1 -1 13 0.33 -1 -1 36224 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66796 32 32 277 309 1 213 82 17 17 289 -1 unnamed_device 26.7 MiB 1.98 1327 8092 2018 5457 617 65.2 MiB 0.08 0.00 7.14878 -159.209 -7.14878 7.14878 0.91 0.000634318 0.000577495 0.0334998 0.0304513 46 3203 25 6.79088e+06 242496 828058. 2865.25 2.70 0.195209 0.172539 27406 200422 -1 2726 18 1482 4155 215129 47900 6.28328 6.28328 -149.019 -6.28328 0 0 1.01997e+06 3529.29 0.38 0.08 0.19 -1 -1 0.38 0.0307678 0.027774 130 182 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_116.v common 8.72 vpr 64.77 MiB 0.02 7236 -1 -1 11 0.22 -1 -1 36344 -1 -1 22 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 29 32 245 277 1 176 83 17 17 289 -1 unnamed_device 26.2 MiB 1.85 925 13403 4743 6446 2214 64.8 MiB 0.10 0.00 6.69836 -125.024 -6.69836 6.69836 0.86 0.000546446 0.000495635 0.0433984 0.0393596 36 2760 29 6.79088e+06 296384 648988. 2245.63 3.76 0.19376 0.170947 25390 158009 -1 2154 17 1003 2901 164149 37455 5.69593 5.69593 -121.036 -5.69593 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0250173 0.0225737 115 156 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_117.v common 7.81 vpr 65.50 MiB 0.02 7048 -1 -1 14 0.40 -1 -1 37148 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67076 32 32 316 348 1 232 86 17 17 289 -1 unnamed_device 26.9 MiB 1.82 1410 8213 2036 5597 580 65.5 MiB 0.09 0.00 9.10514 -189.548 -9.10514 9.10514 0.91 0.000723411 0.000655715 0.0362425 0.0328626 44 3396 25 6.79088e+06 296384 787024. 2723.27 2.39 0.186872 0.164205 27118 194962 -1 2903 16 1318 3784 199349 45117 7.69105 7.69105 -175.013 -7.69105 0 0 997811. 3452.63 0.37 0.08 0.19 -1 -1 0.37 0.0341626 0.0310825 160 221 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_118.v common 18.09 vpr 64.82 MiB 0.02 6864 -1 -1 12 0.21 -1 -1 35972 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66376 31 32 230 262 1 188 81 17 17 289 -1 unnamed_device 26.3 MiB 3.57 1093 11281 2937 6811 1533 64.8 MiB 0.09 0.00 6.61653 -142.296 -6.61653 6.61653 0.90 0.000533228 0.000483869 0.041123 0.0371749 34 3493 43 6.79088e+06 242496 618332. 2139.56 11.33 0.256367 0.22289 25102 150614 -1 2644 17 1058 2530 171616 37701 5.57833 5.57833 -135.866 -5.57833 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0251974 0.0227427 108 137 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_119.v common 8.88 vpr 65.08 MiB 0.02 7092 -1 -1 13 0.35 -1 -1 36592 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66644 32 32 282 314 1 208 83 17 17 289 -1 unnamed_device 26.6 MiB 2.45 1323 14123 4442 7710 1971 65.1 MiB 0.12 0.00 7.64293 -157.325 -7.64293 7.64293 0.90 0.000631202 0.000570224 0.0539266 0.0488849 44 3212 24 6.79088e+06 255968 787024. 2723.27 2.88 0.174531 0.15381 27118 194962 -1 2727 18 1357 4001 218500 48455 6.37287 6.37287 -147.379 -6.37287 0 0 997811. 3452.63 0.37 0.08 0.19 -1 -1 0.37 0.0303725 0.0273157 132 187 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_120.v common 8.08 vpr 64.91 MiB 0.02 6904 -1 -1 13 0.22 -1 -1 36116 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 32 32 235 267 1 182 80 17 17 289 -1 unnamed_device 26.4 MiB 2.56 1020 12120 3554 6383 2183 64.9 MiB 0.09 0.00 7.35402 -164.423 -7.35402 7.35402 0.90 0.000522876 0.00047525 0.0409512 0.0371869 36 3009 44 6.79088e+06 215552 648988. 2245.63 2.29 0.15521 0.13626 25390 158009 -1 2467 19 1120 2675 158666 36333 6.53393 6.53393 -161.337 -6.53393 0 0 828058. 2865.25 0.31 0.07 0.16 -1 -1 0.31 0.0261723 0.0234736 104 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_121.v common 8.39 vpr 65.11 MiB 0.02 6972 -1 -1 12 0.27 -1 -1 36236 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66672 32 32 265 297 1 189 83 17 17 289 -1 unnamed_device 26.5 MiB 2.48 1030 11783 4465 6036 1282 65.1 MiB 0.10 0.00 7.13827 -153.033 -7.13827 7.13827 0.91 0.000603279 0.000544237 0.0429871 0.0389079 44 2856 22 6.79088e+06 255968 787024. 2723.27 2.44 0.162454 0.142768 27118 194962 -1 2225 15 1084 3330 175817 42092 6.16912 6.16912 -142.865 -6.16912 0 0 997811. 3452.63 0.40 0.07 0.18 -1 -1 0.40 0.0269856 0.0244453 121 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_122.v common 8.45 vpr 65.81 MiB 0.02 7260 -1 -1 15 0.58 -1 -1 36608 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67388 32 32 344 376 1 260 88 17 17 289 -1 unnamed_device 27.2 MiB 2.38 1457 12373 3076 6798 2499 65.8 MiB 0.12 0.00 9.48621 -188.88 -9.48621 9.48621 0.86 0.000808431 0.00073697 0.0551729 0.0502143 46 4011 21 6.79088e+06 323328 828058. 2865.25 2.38 0.213661 0.190213 27406 200422 -1 3155 20 1759 5315 268635 60438 8.1923 8.1923 -173.082 -8.1923 0 0 1.01997e+06 3529.29 0.37 0.10 0.18 -1 -1 0.37 0.041886 0.0378121 176 249 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_123.v common 7.08 vpr 63.97 MiB 0.02 6752 -1 -1 10 0.11 -1 -1 35948 -1 -1 11 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65504 30 32 173 205 1 129 73 17 17 289 -1 unnamed_device 25.4 MiB 1.98 678 9345 2965 4615 1765 64.0 MiB 0.06 0.00 5.03415 -115.492 -5.03415 5.03415 0.91 0.000389905 0.000354034 0.0262048 0.0238499 36 1722 23 6.79088e+06 148192 648988. 2245.63 2.06 0.113991 0.0993589 25390 158009 -1 1490 19 617 1422 82833 19307 4.47925 4.47925 -110.656 -4.47925 0 0 828058. 2865.25 0.32 0.05 0.15 -1 -1 0.32 0.0182834 0.0162907 63 82 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_124.v common 8.96 vpr 64.82 MiB 0.02 6988 -1 -1 13 0.22 -1 -1 36344 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66380 30 32 229 261 1 179 81 17 17 289 -1 unnamed_device 26.3 MiB 2.20 930 9881 2975 5177 1729 64.8 MiB 0.08 0.00 7.15369 -149.901 -7.15369 7.15369 0.89 0.000525097 0.000477372 0.0331221 0.0301523 36 2757 44 6.79088e+06 255968 648988. 2245.63 3.57 0.179148 0.156676 25390 158009 -1 2162 19 1034 2563 146984 34951 6.58089 6.58089 -147.837 -6.58089 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0267215 0.023976 105 138 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_125.v common 21.13 vpr 65.05 MiB 0.02 6908 -1 -1 12 0.24 -1 -1 36308 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66608 32 32 261 293 1 204 81 17 17 289 -1 unnamed_device 26.7 MiB 2.42 1026 12331 4984 6774 573 65.0 MiB 0.11 0.00 7.35057 -161.147 -7.35057 7.35057 0.91 0.00059761 0.000541913 0.0455365 0.0413817 38 3211 42 6.79088e+06 229024 678818. 2348.85 15.39 0.331165 0.289836 25966 169698 -1 2536 19 1368 3347 180087 42413 6.29447 6.29447 -152.265 -6.29447 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.0294603 0.026521 115 166 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_126.v common 7.23 vpr 64.53 MiB 0.02 6880 -1 -1 9 0.16 -1 -1 36380 -1 -1 20 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66080 25 32 184 216 1 138 77 17 17 289 -1 unnamed_device 26.0 MiB 1.39 772 8553 2593 4994 966 64.5 MiB 0.06 0.00 5.4216 -101.246 -5.4216 5.4216 0.89 0.000425331 0.000386083 0.0249294 0.0226645 32 2040 31 6.79088e+06 269440 586450. 2029.24 2.79 0.154711 0.13388 24814 144142 -1 1839 15 706 1824 129932 28936 5.04314 5.04314 -102.623 -5.04314 0 0 744469. 2576.02 0.30 0.05 0.14 -1 -1 0.30 0.0169876 0.0152821 86 103 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_127.v common 27.64 vpr 65.21 MiB 0.02 7044 -1 -1 12 0.33 -1 -1 36328 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66780 32 32 302 334 1 236 87 17 17 289 -1 unnamed_device 26.4 MiB 3.04 1475 10263 2607 5842 1814 65.2 MiB 0.10 0.00 7.81518 -176.908 -7.81518 7.81518 0.90 0.000674714 0.0006118 0.0409278 0.0371236 38 4034 49 6.79088e+06 309856 678818. 2348.85 21.17 0.378346 0.330848 25966 169698 -1 3243 17 1703 4413 238466 53477 6.59551 6.59551 -164.984 -6.59551 0 0 902133. 3121.57 0.34 0.09 0.16 -1 -1 0.34 0.0316271 0.0286579 146 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_128.v common 9.15 vpr 65.41 MiB 0.02 7016 -1 -1 14 0.37 -1 -1 36660 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66980 31 32 295 327 1 217 85 17 17 289 -1 unnamed_device 27.1 MiB 1.48 1195 12733 3723 6434 2576 65.4 MiB 0.12 0.00 9.14434 -182.838 -9.14434 9.14434 0.85 0.000692153 0.000629086 0.050445 0.0457064 38 3451 34 6.79088e+06 296384 678818. 2348.85 4.28 0.232276 0.204589 25966 169698 -1 2866 18 1467 4253 248414 55322 7.60495 7.60495 -165.543 -7.60495 0 0 902133. 3121.57 0.33 0.09 0.16 -1 -1 0.33 0.0321449 0.0289961 151 202 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 6.06 vpr 65.87 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 34256 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67452 32 32 438 350 1 202 101 17 17 289 -1 unnamed_device 27.1 MiB 1.60 895 12321 3076 8292 953 65.9 MiB 0.12 0.00 4.3249 -144.349 -4.3249 4.3249 0.90 0.000562863 0.000512322 0.0322987 0.0293249 30 2780 27 6.87369e+06 517032 556674. 1926.21 1.44 0.114426 0.100257 25186 138497 -1 1954 20 1593 2579 127329 33406 3.6718 3.6718 -141.768 -3.6718 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.0246026 0.0217635 155 80 32 32 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 8.56 vpr 65.77 MiB 0.02 7480 -1 -1 1 0.03 -1 -1 33808 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67348 30 32 409 330 1 192 85 17 17 289 -1 unnamed_device 27.1 MiB 4.35 889 13477 4603 6656 2218 65.8 MiB 0.12 0.00 4.22285 -135.326 -4.22285 4.22285 0.89 0.000550684 0.000501012 0.0422494 0.0385271 32 3092 26 6.87369e+06 321398 586450. 2029.24 1.13 0.115359 0.101453 25474 144626 -1 2288 23 2027 3381 287011 67177 4.121 4.121 -145.685 -4.121 0 0 744469. 2576.02 0.30 0.09 0.14 -1 -1 0.30 0.0266994 0.023274 141 78 30 30 89 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 6.49 vpr 65.82 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33944 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67396 32 32 387 309 1 191 100 17 17 289 -1 unnamed_device 27.2 MiB 2.29 953 18428 5979 9684 2765 65.8 MiB 0.15 0.00 3.74716 -129.333 -3.74716 3.74716 0.90 0.000532016 0.00048147 0.0449681 0.0407548 30 2530 23 6.87369e+06 503058 556674. 1926.21 1.12 0.115521 0.101367 25186 138497 -1 1991 22 1373 2248 151771 33644 3.4165 3.4165 -128.179 -3.4165 0 0 706193. 2443.58 0.28 0.07 0.13 -1 -1 0.28 0.0244228 0.0214097 145 50 54 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 6.66 vpr 65.56 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 33720 -1 -1 23 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67132 29 32 343 267 1 184 84 17 17 289 -1 unnamed_device 26.7 MiB 1.67 922 15090 5352 7218 2520 65.6 MiB 0.13 0.00 4.1666 -130.205 -4.1666 4.1666 0.92 0.000489852 0.000446781 0.0433377 0.0395062 34 2444 21 6.87369e+06 321398 618332. 2139.56 1.83 0.147616 0.129089 25762 151098 -1 2020 23 1917 3359 239341 55969 4.3166 4.3166 -143.125 -4.3166 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0246258 0.0216803 136 25 87 29 29 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 7.21 vpr 65.55 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 34044 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67120 32 32 376 288 1 202 85 17 17 289 -1 unnamed_device 26.9 MiB 2.17 1047 14965 5078 8038 1849 65.5 MiB 0.14 0.00 4.2175 -149.421 -4.2175 4.2175 0.90 0.000528291 0.00048123 0.0455339 0.0415396 34 2922 24 6.87369e+06 293451 618332. 2139.56 1.86 0.167323 0.146605 25762 151098 -1 2467 23 2282 4190 341515 77402 3.9847 3.9847 -156.502 -3.9847 0 0 787024. 2723.27 0.33 0.10 0.15 -1 -1 0.33 0.0274918 0.0243 147 31 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 5.83 vpr 65.52 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 33976 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67092 32 32 402 316 1 200 103 17 17 289 -1 unnamed_device 26.9 MiB 1.54 1041 20588 6432 11323 2833 65.5 MiB 0.16 0.00 3.55395 -124.862 -3.55395 3.55395 0.96 0.000576184 0.000520483 0.0490235 0.0445512 32 2871 28 6.87369e+06 544980 586450. 2029.24 1.11 0.127355 0.112357 25474 144626 -1 2313 19 1603 2531 206076 47316 3.10926 3.10926 -120.656 -3.10926 0 0 744469. 2576.02 0.29 0.07 0.14 -1 -1 0.29 0.0231389 0.0204112 154 61 63 32 63 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 6.40 vpr 64.84 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 34120 -1 -1 20 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66392 27 32 269 226 1 146 79 17 17 289 -1 unnamed_device 26.5 MiB 2.59 640 10388 2730 6621 1037 64.8 MiB 0.08 0.00 3.6994 -105.15 -3.6994 3.6994 0.86 0.00040753 0.000372565 0.0261597 0.0238892 28 1921 25 6.87369e+06 279477 531479. 1839.03 1.01 0.0807521 0.0709316 24610 126494 -1 1647 24 1322 2212 167417 39122 3.02426 3.02426 -109.231 -3.02426 0 0 648988. 2245.63 0.26 0.06 0.11 -1 -1 0.26 0.0198637 0.017412 102 26 54 27 27 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 8.64 vpr 65.63 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33448 -1 -1 35 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67204 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 26.8 MiB 1.16 969 14273 4212 7662 2399 65.6 MiB 0.11 0.00 3.61131 -114.549 -3.61131 3.61131 0.90 0.000487143 0.000444532 0.0324517 0.0295102 30 2496 28 6.87369e+06 489084 556674. 1926.21 4.47 0.174242 0.151945 25186 138497 -1 1952 21 1179 2018 122816 28697 2.78496 2.78496 -110.852 -2.78496 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.0210026 0.0184808 141 -1 115 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 7.27 vpr 65.02 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33808 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66576 31 32 338 292 1 153 79 17 17 289 -1 unnamed_device 26.6 MiB 3.34 735 9712 2823 5738 1151 65.0 MiB 0.08 0.00 3.24697 -108.666 -3.24697 3.24697 0.93 0.000483585 0.000440374 0.0293497 0.0267791 28 1915 21 6.87369e+06 223581 531479. 1839.03 0.94 0.088263 0.0774991 24610 126494 -1 1739 17 919 1420 107737 25602 2.89926 2.89926 -113.073 -2.89926 0 0 648988. 2245.63 0.27 0.05 0.13 -1 -1 0.27 0.018434 0.0162738 103 81 0 0 84 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 9.61 vpr 64.95 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 34020 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 26.5 MiB 4.71 706 12808 2978 8428 1402 65.0 MiB 0.09 0.00 3.8076 -131.302 -3.8076 3.8076 0.93 0.000464588 0.000422987 0.0366257 0.0333864 34 2315 45 6.87369e+06 223581 618332. 2139.56 1.83 0.155799 0.136166 25762 151098 -1 1639 23 1661 2634 166704 41893 3.15451 3.15451 -129.185 -3.15451 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0220794 0.0194025 114 31 64 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 7.81 vpr 65.11 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 33760 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66668 30 32 325 273 1 160 80 17 17 289 -1 unnamed_device 26.4 MiB 3.81 860 11776 3165 7564 1047 65.1 MiB 0.10 0.00 3.7375 -122.128 -3.7375 3.7375 0.90 0.000474713 0.000429942 0.0339315 0.0309624 32 2014 21 6.87369e+06 251529 586450. 2029.24 0.99 0.0925941 0.0814372 25474 144626 -1 1835 18 1296 1880 151371 35407 3.03531 3.03531 -122.731 -3.03531 0 0 744469. 2576.02 0.31 0.06 0.14 -1 -1 0.31 0.0194515 0.0171462 109 58 30 30 60 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 6.19 vpr 65.57 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 34012 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67140 32 32 331 280 1 161 96 17 17 289 -1 unnamed_device 26.8 MiB 1.67 881 15207 4108 9975 1124 65.6 MiB 0.11 0.00 3.45001 -118.108 -3.45001 3.45001 0.86 0.000472298 0.000415264 0.032725 0.0296452 34 2251 27 6.87369e+06 447163 618332. 2139.56 1.58 0.134438 0.116666 25762 151098 -1 1843 20 1213 2051 155533 34394 2.62536 2.62536 -111.579 -2.62536 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0202654 0.0177697 116 57 25 25 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 10.64 vpr 65.51 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 33608 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67084 32 32 386 305 1 195 99 17 17 289 -1 unnamed_device 26.8 MiB 5.79 958 19935 5624 11872 2439 65.5 MiB 0.17 0.00 3.64005 -125.972 -3.64005 3.64005 0.89 0.000532753 0.000483637 0.0488784 0.0443446 34 2786 25 6.87369e+06 489084 618332. 2139.56 1.75 0.164921 0.144324 25762 151098 -1 2241 18 1734 2943 202750 49391 3.10426 3.10426 -124.888 -3.10426 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0217143 0.0191877 147 55 64 32 57 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 7.02 vpr 65.80 MiB 0.02 7372 -1 -1 1 0.03 -1 -1 34216 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67376 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 27.1 MiB 2.78 1059 21016 6637 11817 2562 65.8 MiB 0.17 0.00 4.34584 -150.842 -4.34584 4.34584 0.91 0.00055449 0.000504138 0.0530632 0.0482242 30 2683 24 6.87369e+06 517032 556674. 1926.21 1.10 0.127578 0.112542 25186 138497 -1 2163 23 1814 2997 177827 41708 3.8954 3.8954 -147.648 -3.8954 0 0 706193. 2443.58 0.28 0.07 0.13 -1 -1 0.28 0.0265304 0.023307 155 60 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 6.32 vpr 64.48 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 33828 -1 -1 19 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66032 29 32 272 228 1 148 80 17 17 289 -1 unnamed_device 26.1 MiB 2.32 791 11776 3380 6895 1501 64.5 MiB 0.08 0.00 3.6364 -112.843 -3.6364 3.6364 0.91 0.000360231 0.000328346 0.0281281 0.0257074 32 2110 22 6.87369e+06 265503 586450. 2029.24 1.01 0.0807878 0.0709846 25474 144626 -1 1823 20 1173 1939 168036 38331 2.94926 2.94926 -110.312 -2.94926 0 0 744469. 2576.02 0.31 0.06 0.14 -1 -1 0.31 0.0184507 0.0163057 102 21 58 29 24 24 -fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 8.06 vpr 65.30 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33692 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66872 32 32 401 315 1 200 85 17 17 289 -1 unnamed_device 26.6 MiB 3.11 930 14221 5969 7807 445 65.3 MiB 0.13 0.00 3.52575 -124.171 -3.52575 3.52575 0.86 0.000532591 0.000484708 0.0429144 0.0390455 36 2582 25 6.87369e+06 293451 648988. 2245.63 1.96 0.169666 0.148661 26050 158493 -1 2034 22 1927 3356 229504 55016 3.46446 3.46446 -129.72 -3.46446 0 0 828058. 2865.25 0.31 0.08 0.14 -1 -1 0.31 0.0258646 0.0228239 145 60 64 32 62 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 9.73 vpr 65.75 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 33692 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67328 32 32 383 303 1 193 102 17 17 289 -1 unnamed_device 27.0 MiB 5.63 1056 17238 4537 10962 1739 65.8 MiB 0.14 0.00 3.55695 -127.024 -3.55695 3.55695 0.90 0.000542914 0.000494432 0.0422682 0.0384689 28 2543 24 6.87369e+06 531006 531479. 1839.03 1.06 0.114344 0.10068 24610 126494 -1 2220 24 1752 2626 193827 42633 2.76296 2.76296 -120.046 -2.76296 0 0 648988. 2245.63 0.26 0.08 0.12 -1 -1 0.26 0.0266836 0.0233694 148 54 64 32 56 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 7.50 vpr 65.42 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 33696 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66992 32 32 339 284 1 165 93 17 17 289 -1 unnamed_device 26.7 MiB 3.00 836 17103 4501 10697 1905 65.4 MiB 0.13 0.00 3.09156 -112.02 -3.09156 3.09156 0.90 0.000492498 0.000448306 0.0419066 0.0381564 26 2266 24 6.87369e+06 405241 503264. 1741.40 1.52 0.109476 0.0963304 24322 120374 -1 2041 21 1192 1809 149970 34919 2.68907 2.68907 -114.096 -2.68907 0 0 618332. 2139.56 0.25 0.06 0.12 -1 -1 0.25 0.021519 0.0188526 117 62 29 29 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 4.35 vpr 64.52 MiB 0.02 6824 -1 -1 1 0.03 -1 -1 33524 -1 -1 14 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66072 30 32 226 208 1 119 76 17 17 289 -1 unnamed_device 26.1 MiB 0.65 560 9036 3714 4978 344 64.5 MiB 0.06 0.00 2.94056 -94.1681 -2.94056 2.94056 0.86 0.000374817 0.000344579 0.0211555 0.0193493 28 1745 31 6.87369e+06 195634 531479. 1839.03 0.99 0.0723089 0.0631867 24610 126494 -1 1394 18 735 1051 92304 21605 2.33662 2.33662 -95.3449 -2.33662 0 0 648988. 2245.63 0.26 0.04 0.11 -1 -1 0.26 0.0140582 0.0123758 73 29 24 24 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 5.52 vpr 64.79 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 33864 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 31 32 335 280 1 165 80 17 17 289 -1 unnamed_device 26.4 MiB 1.46 944 12636 3568 7641 1427 64.8 MiB 0.10 0.00 4.39847 -135.821 -4.39847 4.39847 0.92 0.000486277 0.000444524 0.0374753 0.0342393 32 2277 24 6.87369e+06 237555 586450. 2029.24 1.01 0.097935 0.0863645 25474 144626 -1 1947 22 1174 1750 172510 36533 3.3365 3.3365 -129.527 -3.3365 0 0 744469. 2576.02 0.29 0.07 0.14 -1 -1 0.29 0.0222245 0.0194967 113 55 31 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 5.82 vpr 65.69 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 33840 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67264 32 32 366 283 1 197 100 17 17 289 -1 unnamed_device 27.0 MiB 1.12 894 19124 5624 10425 3075 65.7 MiB 0.15 0.00 4.20059 -139.885 -4.20059 4.20059 0.86 0.000441949 0.000402826 0.0439164 0.0399141 34 2709 23 6.87369e+06 503058 618332. 2139.56 1.72 0.156961 0.137571 25762 151098 -1 2001 22 1790 2566 197699 45882 3.8879 3.8879 -138.638 -3.8879 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0244067 0.0214861 150 31 91 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 10.69 vpr 65.89 MiB 0.02 7488 -1 -1 1 0.03 -1 -1 34304 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67476 32 32 460 375 1 199 104 17 17 289 -1 unnamed_device 27.1 MiB 3.87 951 19380 5821 10599 2960 65.9 MiB 0.17 0.00 3.81248 -128.436 -3.81248 3.81248 0.90 0.000601 0.000544129 0.0501843 0.0453016 34 2805 27 6.87369e+06 558954 618332. 2139.56 3.68 0.251117 0.217389 25762 151098 -1 2062 23 1561 2406 174013 41452 3.6181 3.6181 -129.211 -3.6181 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0277636 0.0243135 154 108 0 0 125 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 6.21 vpr 64.54 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 33996 -1 -1 16 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66092 26 32 198 186 1 109 74 17 17 289 -1 unnamed_device 26.3 MiB 2.40 600 9219 3759 4898 562 64.5 MiB 0.05 0.00 2.91856 -82.7442 -2.91856 2.91856 0.90 0.000309101 0.000281056 0.0195816 0.0178688 28 1359 19 6.87369e+06 223581 531479. 1839.03 0.96 0.0595765 0.0523122 24610 126494 -1 1250 23 736 1165 95982 22384 2.15012 2.15012 -80.673 -2.15012 0 0 648988. 2245.63 0.27 0.05 0.12 -1 -1 0.27 0.0154686 0.0135718 69 21 26 26 22 22 -fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 8.89 vpr 65.54 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 34092 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67112 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 26.7 MiB 1.67 1038 9757 2635 6591 531 65.5 MiB 0.09 0.00 4.1666 -141.416 -4.1666 4.1666 0.89 0.000507829 0.00046401 0.0285196 0.0260292 36 2506 23 6.87369e+06 293451 648988. 2245.63 4.14 0.188518 0.16339 26050 158493 -1 2117 22 1706 2907 189677 46185 3.8514 3.8514 -146.011 -3.8514 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0235451 0.0207479 141 -1 122 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 4.64 vpr 64.47 MiB 0.02 6628 -1 -1 1 0.03 -1 -1 33904 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66020 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 26.1 MiB 0.51 506 9516 2238 6770 508 64.5 MiB 0.06 0.00 2.55523 -88.1124 -2.55523 2.55523 0.86 0.000324441 0.000297657 0.020569 0.0187929 34 1387 22 6.87369e+06 167686 618332. 2139.56 1.34 0.0853202 0.0744489 25762 151098 -1 1150 20 592 734 48391 12727 2.11717 2.11717 -87.019 -2.11717 0 0 787024. 2723.27 0.30 0.03 0.14 -1 -1 0.30 0.0142665 0.0126029 71 -1 53 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 5.26 vpr 65.61 MiB 0.02 7320 -1 -1 1 0.03 -1 -1 33888 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67188 32 32 376 288 1 202 100 17 17 289 -1 unnamed_device 26.9 MiB 0.98 1092 17964 4627 11625 1712 65.6 MiB 0.14 0.00 4.26205 -149.131 -4.26205 4.26205 0.90 0.000560318 0.000503452 0.0425472 0.0387294 32 3060 24 6.87369e+06 503058 586450. 2029.24 1.18 0.116331 0.102712 25474 144626 -1 2548 20 1822 2753 230312 52330 3.9206 3.9206 -152.653 -3.9206 0 0 744469. 2576.02 0.29 0.08 0.14 -1 -1 0.29 0.0237359 0.0209854 155 21 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 4.96 vpr 65.66 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33924 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67236 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 27.0 MiB 1.02 964 9612 2267 6482 863 65.7 MiB 0.09 0.00 3.55269 -121.215 -3.55269 3.55269 0.86 0.000489183 0.00044298 0.0222985 0.0203009 32 2813 35 6.87369e+06 503058 586450. 2029.24 1.07 0.0963882 0.0845084 25474 144626 -1 2169 20 1584 2557 178230 43373 2.96796 2.96796 -121.474 -2.96796 0 0 744469. 2576.02 0.28 0.07 0.13 -1 -1 0.28 0.0213497 0.018876 151 -1 124 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 10.26 vpr 65.64 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 34224 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67216 32 32 407 319 1 202 103 17 17 289 -1 unnamed_device 27.0 MiB 1.21 1088 13358 3512 8899 947 65.6 MiB 0.12 0.00 4.2809 -148.724 -4.2809 4.2809 0.93 0.000549679 0.000493894 0.0348407 0.0316519 26 3507 43 6.87369e+06 544980 503264. 1741.40 5.95 0.227684 0.198421 24322 120374 -1 2777 24 2222 3984 399516 88533 4.0287 4.0287 -159.105 -4.0287 0 0 618332. 2139.56 0.25 0.11 0.12 -1 -1 0.25 0.0274817 0.02415 156 54 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 5.74 vpr 65.07 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 33984 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 32 32 294 246 1 157 79 17 17 289 -1 unnamed_device 26.6 MiB 1.19 734 6839 1724 4743 372 65.1 MiB 0.06 0.00 3.07332 -108.035 -3.07332 3.07332 0.91 0.000467129 0.000427374 0.0194667 0.017802 34 2178 27 6.87369e+06 209608 618332. 2139.56 1.55 0.114252 0.0990762 25762 151098 -1 1783 17 1068 1727 121433 29608 3.05556 3.05556 -115.804 -3.05556 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0173 0.0153413 104 31 54 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 5.38 vpr 64.93 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 33576 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66488 30 32 296 244 1 160 80 17 17 289 -1 unnamed_device 26.5 MiB 1.29 856 11260 3834 5392 2034 64.9 MiB 0.09 0.00 3.7936 -125.971 -3.7936 3.7936 0.92 0.000444019 0.000404289 0.0312666 0.028557 32 2233 22 6.87369e+06 251529 586450. 2029.24 1.05 0.0894487 0.0788139 25474 144626 -1 1734 18 1225 1760 141072 32466 3.21861 3.21861 -125.851 -3.21861 0 0 744469. 2576.02 0.29 0.06 0.14 -1 -1 0.29 0.0180484 0.0159527 109 29 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 5.30 vpr 64.96 MiB 0.02 7156 -1 -1 1 0.03 -1 -1 33640 -1 -1 19 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66524 28 32 278 232 1 150 79 17 17 289 -1 unnamed_device 26.6 MiB 1.35 743 13092 5209 6121 1762 65.0 MiB 0.10 0.00 3.48175 -108.034 -3.48175 3.48175 0.85 0.000401514 0.000367286 0.0334508 0.0306121 28 2217 26 6.87369e+06 265503 531479. 1839.03 1.09 0.0931203 0.0822469 24610 126494 -1 1863 20 1315 2251 185300 42415 3.23286 3.23286 -118.946 -3.23286 0 0 648988. 2245.63 0.26 0.06 0.11 -1 -1 0.26 0.0181397 0.0159739 104 27 56 28 28 28 -fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 6.30 vpr 65.15 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 33956 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66712 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 26.7 MiB 1.58 861 14700 5460 6955 2285 65.1 MiB 0.11 0.00 3.58201 -129.205 -3.58201 3.58201 0.91 0.000447973 0.000409703 0.0393061 0.0359263 34 2321 22 6.87369e+06 223581 618332. 2139.56 1.63 0.131316 0.114891 25762 151098 -1 1919 21 1522 2476 189897 42368 2.98996 2.98996 -129.209 -2.98996 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0209972 0.0184968 114 -1 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 4.86 vpr 64.74 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 34012 -1 -1 32 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66292 31 32 303 249 1 163 95 17 17 289 -1 unnamed_device 26.2 MiB 1.00 924 11975 3064 7554 1357 64.7 MiB 0.09 0.00 3.50375 -121.402 -3.50375 3.50375 0.86 0.00043367 0.000394479 0.0261739 0.0238615 32 2375 25 6.87369e+06 447163 586450. 2029.24 0.97 0.0848079 0.0743443 25474 144626 -1 2070 24 1467 2345 210193 47487 2.97126 2.97126 -122.609 -2.97126 0 0 744469. 2576.02 0.28 0.07 0.13 -1 -1 0.28 0.0219346 0.019257 119 26 61 31 31 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 7.62 vpr 65.04 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 33612 -1 -1 32 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66604 29 32 312 264 1 155 93 17 17 289 -1 unnamed_device 26.3 MiB 3.28 824 15003 4455 7859 2689 65.0 MiB 0.11 0.00 2.90021 -94.838 -2.90021 2.90021 0.87 0.000427113 0.000388669 0.032987 0.029996 34 1788 20 6.87369e+06 447163 618332. 2139.56 1.42 0.120908 0.105279 25762 151098 -1 1448 21 1212 2084 125367 29858 2.01852 2.01852 -85.8352 -2.01852 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0197653 0.0174086 113 55 29 29 57 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 10.70 vpr 65.99 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 33956 -1 -1 44 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67572 32 32 423 310 1 231 108 17 17 289 -1 unnamed_device 27.3 MiB 4.96 1315 20411 5511 12546 2354 66.0 MiB 0.20 0.00 4.25391 -147.758 -4.25391 4.25391 0.92 0.00058492 0.000527985 0.0490264 0.0443389 28 3619 31 6.87369e+06 614849 531479. 1839.03 2.53 0.138758 0.122077 24610 126494 -1 3097 23 2411 4323 372744 82822 4.1853 4.1853 -157.686 -4.1853 0 0 648988. 2245.63 0.26 0.12 0.12 -1 -1 0.26 0.0300345 0.0265129 184 26 128 32 27 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 7.95 vpr 65.91 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 34196 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67488 32 32 403 317 1 200 103 17 17 289 -1 unnamed_device 27.2 MiB 3.80 1049 18419 4848 10881 2690 65.9 MiB 0.15 0.00 3.66825 -130.624 -3.66825 3.66825 0.92 0.000540839 0.000492402 0.0443554 0.040285 32 2652 21 6.87369e+06 544980 586450. 2029.24 1.04 0.114015 0.10038 25474 144626 -1 2174 17 1649 2433 172499 39302 2.87266 2.87266 -123.401 -2.87266 0 0 744469. 2576.02 0.29 0.07 0.14 -1 -1 0.29 0.0217683 0.019285 154 62 62 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 9.09 vpr 65.39 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34188 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66956 31 32 353 302 1 160 94 17 17 289 -1 unnamed_device 26.6 MiB 4.30 881 17134 5393 9307 2434 65.4 MiB 0.13 0.00 3.56305 -119.83 -3.56305 3.56305 0.91 0.000485702 0.000440465 0.0413347 0.0374865 34 1979 19 6.87369e+06 433189 618332. 2139.56 1.71 0.143376 0.125096 25762 151098 -1 1755 20 1161 1937 141124 32855 2.74101 2.74101 -108.676 -2.74101 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0205162 0.0180306 116 77 0 0 89 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 7.23 vpr 65.57 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 33808 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67144 31 32 391 309 1 195 85 17 17 289 -1 unnamed_device 26.9 MiB 2.41 1019 8641 2131 5612 898 65.6 MiB 0.10 0.00 3.59121 -120.774 -3.59121 3.59121 0.91 0.000558039 0.000508808 0.0278286 0.0254139 34 2671 24 6.87369e+06 307425 618332. 2139.56 1.72 0.14604 0.127254 25762 151098 -1 2251 23 1813 3000 244202 55078 3.15256 3.15256 -124.24 -3.15256 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0275275 0.0242882 141 59 60 30 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 11.37 vpr 65.77 MiB 0.02 7408 -1 -1 1 0.03 -1 -1 34168 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67344 31 32 455 371 1 198 85 17 17 289 -1 unnamed_device 27.0 MiB 6.24 1071 16825 7101 8757 967 65.8 MiB 0.16 0.00 4.97069 -151.888 -4.97069 4.97069 0.93 0.000599566 0.000545166 0.05681 0.0517274 34 2813 21 6.87369e+06 307425 618332. 2139.56 1.93 0.186198 0.163132 25762 151098 -1 2372 20 1593 2572 232898 50187 4.30295 4.30295 -153.122 -4.30295 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.026125 0.0230086 145 111 0 0 124 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 6.90 vpr 65.30 MiB 0.02 7236 -1 -1 1 0.03 -1 -1 34056 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66868 31 32 413 333 1 195 85 17 17 289 -1 unnamed_device 26.6 MiB 2.22 980 12175 3299 8119 757 65.3 MiB 0.11 0.00 4.75154 -140.36 -4.75154 4.75154 0.87 0.000562184 0.000515324 0.0383602 0.0350565 34 2589 22 6.87369e+06 307425 618332. 2139.56 1.72 0.161173 0.140981 25762 151098 -1 2152 22 1658 2704 201753 47080 3.66545 3.66545 -138.955 -3.66545 0 0 787024. 2723.27 0.29 0.07 0.13 -1 -1 0.29 0.025872 0.0227699 141 86 31 31 89 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 7.59 vpr 65.59 MiB 0.02 7428 -1 -1 1 0.03 -1 -1 34016 -1 -1 36 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67164 31 32 391 309 1 195 99 17 17 289 -1 unnamed_device 26.9 MiB 2.98 1053 19023 5653 10954 2416 65.6 MiB 0.15 0.00 3.64005 -125.414 -3.64005 3.64005 0.86 0.000539877 0.000493879 0.0470648 0.0427901 34 2453 25 6.87369e+06 503058 618332. 2139.56 1.63 0.164424 0.143968 25762 151098 -1 2058 22 1911 3227 218788 51238 2.76466 2.76466 -117.377 -2.76466 0 0 787024. 2723.27 0.30 0.08 0.14 -1 -1 0.30 0.0252077 0.0221574 148 58 60 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 9.18 vpr 65.74 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 34340 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67316 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 27.1 MiB 2.24 1150 19618 5466 12522 1630 65.7 MiB 0.16 0.00 4.1996 -145.707 -4.1996 4.1996 0.91 0.000558041 0.000504818 0.0472736 0.0428279 34 2754 24 6.87369e+06 531006 618332. 2139.56 3.75 0.229769 0.199323 25762 151098 -1 2446 23 2018 3153 285501 61588 3.6528 3.6528 -145.952 -3.6528 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0270911 0.023704 156 42 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 8.59 vpr 65.68 MiB 0.02 7316 -1 -1 1 0.04 -1 -1 34168 -1 -1 42 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67260 32 32 496 380 1 234 106 17 17 289 -1 unnamed_device 27.3 MiB 4.17 1303 13356 3327 8820 1209 65.7 MiB 0.14 0.00 4.31511 -149.42 -4.31511 4.31511 0.90 0.000654912 0.000587431 0.0380705 0.0343869 28 3336 22 6.87369e+06 586901 531479. 1839.03 1.33 0.124859 0.109658 24610 126494 -1 2813 21 2231 3611 254602 59974 4.0493 4.0493 -151.462 -4.0493 0 0 648988. 2245.63 0.26 0.09 0.13 -1 -1 0.26 0.030361 0.0267942 186 91 62 32 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 8.93 vpr 65.06 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 34088 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66624 31 32 305 250 1 164 80 17 17 289 -1 unnamed_device 26.6 MiB 2.46 908 12636 4255 7048 1333 65.1 MiB 0.10 0.00 3.7654 -130.371 -3.7654 3.7654 0.92 0.000445082 0.000407385 0.0342845 0.0312937 34 2191 32 6.87369e+06 237555 618332. 2139.56 3.41 0.161269 0.140278 25762 151098 -1 1901 19 1345 2114 161441 36556 3.16561 3.16561 -127.759 -3.16561 0 0 787024. 2723.27 0.31 0.06 0.16 -1 -1 0.31 0.0189829 0.0167124 112 24 62 31 31 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 7.86 vpr 65.91 MiB 0.02 7324 -1 -1 1 0.03 -1 -1 33964 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67496 31 32 395 311 1 198 100 17 17 289 -1 unnamed_device 27.2 MiB 3.31 1036 19820 6398 10981 2441 65.9 MiB 0.16 0.00 4.25889 -142.345 -4.25889 4.25889 0.91 0.000547116 0.000497932 0.0487985 0.0443702 32 3207 38 6.87369e+06 517032 586450. 2029.24 1.39 0.136501 0.120395 25474 144626 -1 2384 23 1979 3333 315549 70052 3.8954 3.8954 -144.974 -3.8954 0 0 744469. 2576.02 0.29 0.10 0.14 -1 -1 0.29 0.0268328 0.0236188 152 59 62 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 6.68 vpr 65.56 MiB 0.02 7344 -1 -1 1 0.04 -1 -1 33872 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67136 32 32 397 313 1 198 99 17 17 289 -1 unnamed_device 26.8 MiB 2.28 1118 16515 4839 10227 1449 65.6 MiB 0.14 0.00 3.56001 -125.702 -3.56001 3.56001 0.86 0.000540362 0.000492778 0.0402555 0.0366265 28 2719 24 6.87369e+06 489084 531479. 1839.03 1.48 0.120909 0.10707 24610 126494 -1 2454 22 1851 3206 255819 57374 3.09956 3.09956 -129.409 -3.09956 0 0 648988. 2245.63 0.25 0.08 0.11 -1 -1 0.25 0.0251943 0.0221473 150 54 62 32 62 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 9.19 vpr 65.43 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 33588 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67004 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 26.8 MiB 1.90 942 16081 4088 11306 687 65.4 MiB 0.14 0.00 4.1996 -144.758 -4.1996 4.1996 0.91 0.000531078 0.000488044 0.0466953 0.0426211 34 3051 25 6.87369e+06 293451 618332. 2139.56 4.13 0.200708 0.175393 25762 151098 -1 2458 24 2272 3946 289627 70974 4.038 4.038 -157.316 -4.038 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0257448 0.0226263 147 -1 128 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 9.68 vpr 65.95 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 34012 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67528 32 32 424 343 1 195 100 17 17 289 -1 unnamed_device 27.2 MiB 4.79 1066 20980 7180 11264 2536 65.9 MiB 0.18 0.00 3.54349 -125.696 -3.54349 3.54349 0.92 0.000569563 0.000515513 0.0586016 0.0535064 34 2404 23 6.87369e+06 503058 618332. 2139.56 1.71 0.182424 0.160166 25762 151098 -1 2064 21 1654 2544 172073 40140 3.11856 3.11856 -124.399 -3.11856 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0255529 0.0224714 148 81 25 25 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 8.89 vpr 65.63 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 33708 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67204 32 32 395 311 1 198 103 17 17 289 -1 unnamed_device 27.0 MiB 4.50 1032 19142 4987 12020 2135 65.6 MiB 0.16 0.00 3.61805 -127.505 -3.61805 3.61805 0.87 0.000556954 0.000506429 0.0456525 0.0416049 28 2710 41 6.87369e+06 544980 531479. 1839.03 1.43 0.142779 0.126162 24610 126494 -1 2177 24 1467 2685 183400 45007 3.20756 3.20756 -128.693 -3.20756 0 0 648988. 2245.63 0.26 0.08 0.11 -1 -1 0.26 0.0274282 0.0240894 152 58 64 32 60 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 7.85 vpr 65.78 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 33948 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67360 32 32 405 318 1 201 104 17 17 289 -1 unnamed_device 27.0 MiB 3.64 1111 18648 5184 11229 2235 65.8 MiB 0.15 0.00 3.58025 -126.995 -3.58025 3.58025 0.90 0.000573914 0.000522572 0.0451848 0.0409114 32 2918 26 6.87369e+06 558954 586450. 2029.24 1.09 0.119188 0.104726 25474 144626 -1 2322 21 1852 2981 273061 60337 2.98226 2.98226 -124.39 -2.98226 0 0 744469. 2576.02 0.29 0.09 0.14 -1 -1 0.29 0.0252646 0.0222447 156 61 63 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 7.63 vpr 65.81 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 33872 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67388 32 32 376 288 1 202 103 17 17 289 -1 unnamed_device 27.1 MiB 1.00 973 12876 3455 7707 1714 65.8 MiB 0.09 0.00 4.3249 -147.802 -4.3249 4.3249 0.85 0.000505894 0.000462506 0.0286365 0.0260267 34 2850 24 6.87369e+06 544980 618332. 2139.56 3.70 0.186727 0.162778 25762 151098 -1 2253 21 1907 3029 202354 51263 4.099 4.099 -155.694 -4.099 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.023561 0.0208534 156 21 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 8.62 vpr 65.74 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 34288 -1 -1 41 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67316 32 32 407 319 1 202 105 17 17 289 -1 unnamed_device 27.0 MiB 3.57 1087 15172 3966 9854 1352 65.7 MiB 0.13 0.00 4.1996 -143.047 -4.1996 4.1996 0.91 0.000577764 0.000525268 0.0366858 0.0332986 34 2680 28 6.87369e+06 572927 618332. 2139.56 1.90 0.164669 0.144038 25762 151098 -1 2383 23 2194 3480 262882 60946 3.9034 3.9034 -147.818 -3.9034 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0276909 0.0244067 157 50 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 12.47 vpr 65.59 MiB 0.02 7352 -1 -1 1 0.03 -1 -1 33924 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67168 31 32 449 367 1 195 100 17 17 289 -1 unnamed_device 26.8 MiB 5.02 988 19356 5396 10906 3054 65.6 MiB 0.18 0.00 4.16785 -135.645 -4.16785 4.16785 0.92 0.000598999 0.000541836 0.0520314 0.0470904 30 2632 23 6.87369e+06 517032 556674. 1926.21 4.29 0.210191 0.183415 25186 138497 -1 2033 22 1505 2618 168069 38438 3.4725 3.4725 -128.631 -3.4725 0 0 706193. 2443.58 0.30 0.07 0.13 -1 -1 0.30 0.0274947 0.0241437 150 110 0 0 122 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 8.64 vpr 65.35 MiB 0.02 7336 -1 -1 1 0.03 -1 -1 33920 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66920 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 26.6 MiB 3.56 1079 15709 4633 9421 1655 65.4 MiB 0.15 0.00 4.13359 -143.515 -4.13359 4.13359 0.91 0.000585645 0.000532389 0.0519564 0.0472347 34 3228 24 6.87369e+06 293451 618332. 2139.56 1.89 0.179406 0.156725 25762 151098 -1 2526 23 2128 3896 292262 68799 3.7624 3.7624 -144.624 -3.7624 0 0 787024. 2723.27 0.30 0.10 0.15 -1 -1 0.30 0.028139 0.0246684 145 86 32 32 94 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 5.25 vpr 64.98 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 33956 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66544 32 32 312 255 1 167 96 17 17 289 -1 unnamed_device 26.5 MiB 1.13 919 15426 4260 9754 1412 65.0 MiB 0.12 0.00 3.51475 -125.544 -3.51475 3.51475 0.92 0.000465665 0.000424366 0.0344461 0.0312959 32 2428 31 6.87369e+06 447163 586450. 2029.24 1.06 0.0996039 0.0873306 25474 144626 -1 1987 23 1581 2437 217566 48085 2.95396 2.95396 -122.94 -2.95396 0 0 744469. 2576.02 0.29 0.08 0.14 -1 -1 0.29 0.0221335 0.0194066 121 20 63 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 8.06 vpr 65.48 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 33728 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67052 32 32 370 314 1 166 80 17 17 289 -1 unnamed_device 26.7 MiB 3.95 953 12980 4579 7047 1354 65.5 MiB 0.11 0.00 3.6884 -132.193 -3.6884 3.6884 0.90 0.000490872 0.000446787 0.0400058 0.0364614 32 2548 27 6.87369e+06 223581 586450. 2029.24 1.05 0.108412 0.0952358 25474 144626 -1 2133 23 1484 2336 225729 48654 3.18556 3.18556 -130.661 -3.18556 0 0 744469. 2576.02 0.30 0.08 0.14 -1 -1 0.30 0.0249082 0.0218028 112 91 0 0 94 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 14.39 vpr 65.66 MiB 0.02 7300 -1 -1 1 0.04 -1 -1 34192 -1 -1 44 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67240 32 32 469 351 1 236 108 17 17 289 -1 unnamed_device 27.3 MiB 2.57 1419 16556 4403 10830 1323 65.7 MiB 0.16 0.00 4.99284 -170.715 -4.99284 4.99284 0.90 0.000611969 0.000555854 0.0427306 0.0387611 28 3950 45 6.87369e+06 614849 531479. 1839.03 8.67 0.232941 0.203255 24610 126494 -1 3285 23 2755 4689 480810 98758 5.07045 5.07045 -183.474 -5.07045 0 0 648988. 2245.63 0.26 0.13 0.12 -1 -1 0.26 0.0310808 0.0275059 189 53 96 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 7.35 vpr 65.53 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 33984 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67100 32 32 368 284 1 198 99 17 17 289 -1 unnamed_device 26.9 MiB 3.21 1069 15831 4027 10006 1798 65.5 MiB 0.13 0.00 3.59121 -127.943 -3.59121 3.59121 0.86 0.000520065 0.00047293 0.0383174 0.0348015 26 2546 23 6.87369e+06 489084 503264. 1741.40 1.25 0.114155 0.101189 24322 120374 -1 2396 32 2226 3289 246797 55862 3.21856 3.21856 -133.794 -3.21856 0 0 618332. 2139.56 0.25 0.10 0.11 -1 -1 0.25 0.0322052 0.0282299 150 31 92 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 4.76 vpr 65.20 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 33500 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 30 32 296 244 1 160 93 17 17 289 -1 unnamed_device 26.4 MiB 0.83 823 15633 5297 7776 2560 65.2 MiB 0.11 0.00 3.51601 -116.196 -3.51601 3.51601 0.87 0.000424496 0.000385108 0.0330973 0.0299853 28 2054 23 6.87369e+06 433189 531479. 1839.03 1.10 0.0956609 0.0844265 24610 126494 -1 1737 22 1350 2077 160529 36914 3.06026 3.06026 -118.11 -3.06026 0 0 648988. 2245.63 0.26 0.06 0.11 -1 -1 0.26 0.0201325 0.0176575 116 29 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 12.06 vpr 65.92 MiB 0.02 7580 -1 -1 1 0.04 -1 -1 34292 -1 -1 47 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67504 32 32 531 413 1 236 111 17 17 289 -1 unnamed_device 27.5 MiB 7.16 1193 22455 6528 13018 2909 65.9 MiB 0.20 0.00 4.91264 -167.151 -4.91264 4.91264 0.86 0.00066778 0.000610093 0.0582322 0.052882 32 3593 50 6.87369e+06 656770 586450. 2029.24 1.78 0.185682 0.164413 25474 144626 -1 2679 25 2765 4463 413666 88971 4.85905 4.85905 -176.73 -4.85905 0 0 744469. 2576.02 0.29 0.12 0.13 -1 -1 0.29 0.0355429 0.0313985 190 109 32 32 128 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 8.82 vpr 65.68 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 33628 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67256 32 32 376 288 1 202 104 17 17 289 -1 unnamed_device 26.9 MiB 3.86 975 19868 5843 10688 3337 65.7 MiB 0.15 0.00 4.28153 -144.516 -4.28153 4.28153 0.91 0.000543219 0.000494571 0.0468357 0.0426627 32 2796 48 6.87369e+06 558954 586450. 2029.24 1.83 0.164165 0.143668 25474 144626 -1 2049 20 1866 2816 214883 49440 3.684 3.684 -141.143 -3.684 0 0 744469. 2576.02 0.29 0.08 0.14 -1 -1 0.29 0.0236658 0.0208477 156 31 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 4.79 vpr 64.98 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 33924 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66536 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 26.5 MiB 0.82 857 11197 2857 7409 931 65.0 MiB 0.09 0.00 3.64005 -128.736 -3.64005 3.64005 0.89 0.000441825 0.000403148 0.0236811 0.0216202 30 2290 23 6.87369e+06 461137 556674. 1926.21 1.01 0.0802588 0.070274 25186 138497 -1 1821 20 1230 1962 126723 29562 2.83966 2.83966 -120.97 -2.83966 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.0187636 0.0165543 123 -1 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 8.15 vpr 65.88 MiB 0.02 7440 -1 -1 1 0.04 -1 -1 34416 -1 -1 45 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67460 32 32 438 320 1 236 109 17 17 289 -1 unnamed_device 27.2 MiB 3.25 1249 21169 5887 12519 2763 65.9 MiB 0.18 0.00 4.9297 -168.732 -4.9297 4.9297 0.91 0.000643137 0.000586991 0.0506838 0.0459636 28 3487 31 6.87369e+06 628823 531479. 1839.03 1.70 0.144441 0.127371 24610 126494 -1 2951 24 2799 4931 437770 97531 4.83715 4.83715 -177.425 -4.83715 0 0 648988. 2245.63 0.26 0.13 0.12 -1 -1 0.26 0.0323338 0.0284717 189 26 128 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 5.58 vpr 64.92 MiB 0.02 6800 -1 -1 1 0.03 -1 -1 33948 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66480 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 26.5 MiB 1.17 806 12292 2857 8871 564 64.9 MiB 0.09 0.00 3.7764 -134.344 -3.7764 3.7764 0.86 0.000413729 0.000377152 0.0319735 0.029214 34 2200 24 6.87369e+06 223581 618332. 2139.56 1.53 0.121636 0.106351 25762 151098 -1 1826 23 1612 2529 189821 43692 3.24061 3.24061 -134.105 -3.24061 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0203611 0.017916 114 -1 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 6.93 vpr 65.13 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 33816 -1 -1 33 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66696 30 32 296 244 1 162 95 17 17 289 -1 unnamed_device 26.6 MiB 2.95 719 10463 2628 6946 889 65.1 MiB 0.09 0.00 3.56001 -114.458 -3.56001 3.56001 0.89 0.000432518 0.00039425 0.0230064 0.0209149 28 2094 21 6.87369e+06 461137 531479. 1839.03 1.05 0.0794563 0.0695694 24610 126494 -1 1794 23 1547 2588 207889 48329 3.06826 3.06826 -118.701 -3.06826 0 0 648988. 2245.63 0.26 0.07 0.12 -1 -1 0.26 0.0208676 0.0183067 118 29 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 8.90 vpr 65.25 MiB 0.02 7500 -1 -1 1 0.03 -1 -1 34080 -1 -1 35 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66816 29 32 393 319 1 186 96 17 17 289 -1 unnamed_device 26.6 MiB 4.11 1008 14550 3923 8443 2184 65.2 MiB 0.12 0.00 3.54707 -114.227 -3.54707 3.54707 0.90 0.000548786 0.000499026 0.0386508 0.0351555 34 2543 22 6.87369e+06 489084 618332. 2139.56 1.69 0.154733 0.134923 25762 151098 -1 2164 21 1661 2781 199378 47628 2.96496 2.96496 -116.623 -2.96496 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0243597 0.0214544 141 81 29 29 85 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 7.78 vpr 65.49 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 33980 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67064 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 26.8 MiB 2.66 854 12175 2685 7576 1914 65.5 MiB 0.10 0.00 4.2388 -146.065 -4.2388 4.2388 0.90 0.000557899 0.000507546 0.0392427 0.0357463 34 2806 28 6.87369e+06 293451 618332. 2139.56 2.04 0.171906 0.150632 25762 151098 -1 2128 25 2375 3614 256909 62781 4.0459 4.0459 -155.816 -4.0459 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0287808 0.0251882 147 53 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 9.03 vpr 65.75 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 33948 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67328 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 27.0 MiB 4.88 1100 18901 5336 11603 1962 65.8 MiB 0.15 0.00 4.27679 -150.534 -4.27679 4.27679 0.89 0.000527223 0.000473832 0.0452618 0.0410389 30 2779 22 6.87369e+06 517032 556674. 1926.21 1.10 0.119445 0.105376 25186 138497 -1 2296 23 1941 3228 203722 46819 3.6781 3.6781 -148.543 -3.6781 0 0 706193. 2443.58 0.27 0.07 0.12 -1 -1 0.27 0.0253637 0.0222921 155 55 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 8.65 vpr 65.58 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 33924 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67156 32 32 345 287 1 168 97 17 17 289 -1 unnamed_device 26.8 MiB 3.80 825 17191 6233 8742 2216 65.6 MiB 0.13 0.00 3.60705 -126.657 -3.60705 3.60705 0.91 0.000497634 0.000447431 0.0404726 0.0366824 36 2048 23 6.87369e+06 461137 648988. 2245.63 1.71 0.143946 0.125421 26050 158493 -1 1649 21 1425 2224 134529 32913 2.98526 2.98526 -118.315 -2.98526 0 0 828058. 2865.25 0.33 0.06 0.15 -1 -1 0.33 0.0221982 0.0195514 123 55 32 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 8.99 vpr 65.02 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 34004 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 31 32 353 302 1 160 81 17 17 289 -1 unnamed_device 26.6 MiB 4.38 738 4456 873 3135 448 65.0 MiB 0.05 0.00 3.6994 -119.902 -3.6994 3.6994 0.91 0.000519088 0.000474944 0.0145115 0.0132503 34 2217 18 6.87369e+06 251529 618332. 2139.56 1.67 0.114449 0.0986535 25762 151098 -1 1875 22 1387 2476 191987 45689 3.11956 3.11956 -117.478 -3.11956 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0226197 0.0198008 108 82 0 0 89 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 7.96 vpr 65.70 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 34252 -1 -1 34 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67276 30 32 374 297 1 189 96 17 17 289 -1 unnamed_device 27.0 MiB 3.55 914 16740 4391 9932 2417 65.7 MiB 0.14 0.00 3.59605 -116.379 -3.59605 3.59605 0.86 0.000511536 0.000467569 0.0416498 0.0380319 34 2147 21 6.87369e+06 475111 618332. 2139.56 1.47 0.147092 0.128635 25762 151098 -1 1808 19 1286 2110 120121 31186 3.07756 3.07756 -113.914 -3.07756 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0208789 0.0184177 143 52 60 30 57 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 6.89 vpr 65.42 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 34116 -1 -1 35 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66988 28 32 332 260 1 180 95 17 17 289 -1 unnamed_device 26.6 MiB 1.99 905 12191 3346 7959 886 65.4 MiB 0.10 0.00 4.19891 -125.962 -4.19891 4.19891 0.91 0.000439137 0.000399673 0.0286271 0.0259334 26 2593 24 6.87369e+06 489084 503264. 1741.40 1.89 0.100042 0.0879947 24322 120374 -1 2263 28 2010 3451 348753 73625 4.2133 4.2133 -142.681 -4.2133 0 0 618332. 2139.56 0.26 0.10 0.12 -1 -1 0.26 0.0266022 0.0232413 139 20 84 28 28 28 -fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 7.08 vpr 64.95 MiB 0.02 7272 -1 -1 1 0.03 -1 -1 33868 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 30 32 325 273 1 161 80 17 17 289 -1 unnamed_device 26.5 MiB 3.08 882 11432 3518 6484 1430 65.0 MiB 0.10 0.00 3.7324 -126.153 -3.7324 3.7324 0.92 0.00048185 0.000439878 0.0335982 0.0306571 30 2191 20 6.87369e+06 251529 556674. 1926.21 0.99 0.0919993 0.0809561 25186 138497 -1 1853 21 1294 2164 150246 32740 2.82871 2.82871 -116.084 -2.82871 0 0 706193. 2443.58 0.28 0.06 0.14 -1 -1 0.28 0.0209283 0.0183849 110 58 30 30 60 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 8.72 vpr 64.96 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 33772 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66520 32 32 361 308 1 163 81 17 17 289 -1 unnamed_device 26.3 MiB 4.13 904 14256 4718 7453 2085 65.0 MiB 0.12 0.00 3.6144 -123.374 -3.6144 3.6144 0.89 0.00047964 0.00043635 0.0418981 0.0381536 34 2227 20 6.87369e+06 237555 618332. 2139.56 1.56 0.143114 0.124718 25762 151098 -1 1931 21 1128 1866 148478 33442 2.97226 2.97226 -121.122 -2.97226 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.022444 0.0196621 110 88 0 0 91 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 5.81 vpr 65.50 MiB 0.02 7344 -1 -1 1 0.03 -1 -1 34060 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67068 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 27.1 MiB 1.05 962 16804 5215 8614 2975 65.5 MiB 0.14 0.00 4.24789 -140.354 -4.24789 4.24789 0.91 0.000518454 0.000473934 0.0386431 0.0352535 28 3199 26 6.87369e+06 517032 531479. 1839.03 1.64 0.11599 0.102882 24610 126494 -1 2450 19 1768 2821 237606 55531 4.1383 4.1383 -148.079 -4.1383 0 0 648988. 2245.63 0.26 0.08 0.11 -1 -1 0.26 0.0207336 0.0183014 151 -1 124 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 9.76 vpr 65.59 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 33896 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67168 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 26.9 MiB 5.08 1093 19380 5712 11198 2470 65.6 MiB 0.16 0.00 4.29189 -149.386 -4.29189 4.29189 0.91 0.000574311 0.000523663 0.0483277 0.0439765 28 2995 25 6.87369e+06 531006 531479. 1839.03 1.54 0.128135 0.113245 24610 126494 -1 2670 25 2267 3928 339145 75328 4.0207 4.0207 -157.565 -4.0207 0 0 648988. 2245.63 0.26 0.11 0.13 -1 -1 0.26 0.0290414 0.0254265 156 57 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 8.92 vpr 65.77 MiB 0.02 7268 -1 -1 1 0.03 -1 -1 34060 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67344 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 26.9 MiB 4.70 1146 17256 4889 10338 2029 65.8 MiB 0.14 0.00 4.30289 -150.744 -4.30289 4.30289 0.92 0.000568984 0.00051641 0.0429575 0.0390208 30 3045 23 6.87369e+06 517032 556674. 1926.21 1.14 0.116946 0.102876 25186 138497 -1 2268 21 1665 2813 150264 36836 3.7671 3.7671 -149.208 -3.7671 0 0 706193. 2443.58 0.28 0.07 0.13 -1 -1 0.28 0.0252885 0.0223328 155 62 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 8.41 vpr 65.62 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 33984 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67196 32 32 399 315 1 198 103 17 17 289 -1 unnamed_device 27.0 MiB 3.68 1114 16491 4519 10066 1906 65.6 MiB 0.14 0.00 4.16249 -142.489 -4.16249 4.16249 0.90 0.000561068 0.000510245 0.04116 0.0373506 28 3159 33 6.87369e+06 544980 531479. 1839.03 1.67 0.126826 0.111297 24610 126494 -1 2632 22 1851 3241 245138 57811 3.9647 3.9647 -149.766 -3.9647 0 0 648988. 2245.63 0.26 0.09 0.13 -1 -1 0.26 0.0258963 0.02268 152 62 60 30 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 7.18 vpr 64.95 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 34180 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66508 30 32 296 244 1 160 81 17 17 289 -1 unnamed_device 26.5 MiB 3.14 746 10406 2932 6420 1054 64.9 MiB 0.08 0.00 3.7324 -121.378 -3.7324 3.7324 0.92 0.000398557 0.000365237 0.0273244 0.0249538 32 2264 21 6.87369e+06 265503 586450. 2029.24 1.04 0.0836753 0.0735561 25474 144626 -1 1944 19 1250 2056 193370 43340 3.31086 3.31086 -121.534 -3.31086 0 0 744469. 2576.02 0.29 0.06 0.14 -1 -1 0.29 0.0184392 0.0162677 110 29 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 7.89 vpr 65.37 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 34168 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66940 30 32 383 303 1 192 85 17 17 289 -1 unnamed_device 26.7 MiB 3.97 980 15709 4819 8970 1920 65.4 MiB 0.13 0.00 4.23999 -140.261 -4.23999 4.23999 0.86 0.000511081 0.000467296 0.0454016 0.041459 30 2357 25 6.87369e+06 321398 556674. 1926.21 1.02 0.117433 0.103782 25186 138497 -1 1983 20 1484 2354 155562 33827 3.7184 3.7184 -141.349 -3.7184 0 0 706193. 2443.58 0.28 0.06 0.12 -1 -1 0.28 0.0227762 0.0200898 140 58 60 30 60 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 10.63 vpr 65.65 MiB 0.02 7532 -1 -1 1 0.03 -1 -1 34212 -1 -1 43 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67228 32 32 469 381 1 202 107 17 17 289 -1 unnamed_device 27.0 MiB 6.17 1155 15540 3963 10188 1389 65.7 MiB 0.13 0.00 4.23385 -146.284 -4.23385 4.23385 0.90 0.000582331 0.000521411 0.0367929 0.0329965 32 3029 43 6.87369e+06 600875 586450. 2029.24 1.36 0.13482 0.117372 25474 144626 -1 2474 24 2205 3740 360243 77125 3.7941 3.7941 -146.23 -3.7941 0 0 744469. 2576.02 0.30 0.11 0.13 -1 -1 0.30 0.02856 0.0249341 158 106 0 0 128 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 6.04 vpr 65.77 MiB 0.02 7276 -1 -1 1 0.03 -1 -1 33784 -1 -1 33 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67344 31 32 425 341 1 197 96 17 17 289 -1 unnamed_device 27.0 MiB 1.45 1029 18273 5989 9373 2911 65.8 MiB 0.16 0.00 4.26989 -143.564 -4.26989 4.26989 0.90 0.000576976 0.000525221 0.0503892 0.0458467 28 2783 23 6.87369e+06 461137 531479. 1839.03 1.50 0.128539 0.113404 24610 126494 -1 2420 23 2143 3547 280375 63485 4.102 4.102 -152.634 -4.102 0 0 648988. 2245.63 0.26 0.09 0.13 -1 -1 0.26 0.0275947 0.0241818 149 79 31 31 93 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 7.10 vpr 65.73 MiB 0.02 7512 -1 -1 1 0.03 -1 -1 34024 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67312 30 32 404 328 1 188 94 17 17 289 -1 unnamed_device 27.1 MiB 2.90 942 16921 5030 8706 3185 65.7 MiB 0.16 0.00 3.63595 -118.056 -3.63595 3.63595 0.91 0.000561644 0.00050523 0.0470833 0.0427841 30 2456 23 6.87369e+06 447163 556674. 1926.21 1.12 0.119163 0.104842 25186 138497 -1 1779 22 1419 2439 131400 32524 2.92396 2.92396 -111.704 -2.92396 0 0 706193. 2443.58 0.28 0.06 0.14 -1 -1 0.28 0.0254521 0.0223408 141 83 26 26 90 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 10.86 vpr 65.67 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 34292 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67248 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 27.0 MiB 5.69 1087 14593 4252 9147 1194 65.7 MiB 0.14 0.00 4.1996 -148.308 -4.1996 4.1996 0.89 0.000545252 0.000496592 0.0454056 0.041387 34 3260 29 6.87369e+06 293451 618332. 2139.56 2.06 0.171592 0.149901 25762 151098 -1 2669 23 2273 3881 337747 75784 4.102 4.102 -157.524 -4.102 0 0 787024. 2723.27 0.30 0.10 0.15 -1 -1 0.30 0.027226 0.0239829 147 58 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 6.81 vpr 65.80 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 34048 -1 -1 36 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67380 29 32 387 316 1 181 97 17 17 289 -1 unnamed_device 27.1 MiB 2.72 943 12751 3363 8405 983 65.8 MiB 0.11 0.00 3.54105 -112.818 -3.54105 3.54105 0.91 0.000535373 0.000485985 0.0335337 0.0304219 26 2618 24 6.87369e+06 503058 503264. 1741.40 1.06 0.10432 0.0913609 24322 120374 -1 2300 23 1689 2777 271257 63076 3.58206 3.58206 -122.754 -3.58206 0 0 618332. 2139.56 0.26 0.09 0.12 -1 -1 0.26 0.0255766 0.0224009 138 81 26 26 85 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 5.45 vpr 64.91 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 33816 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66464 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 26.5 MiB 0.81 862 12292 3174 7904 1214 64.9 MiB 0.10 0.00 3.7104 -131.958 -3.7104 3.7104 0.91 0.000433695 0.000395087 0.0334193 0.0305307 34 2313 18 6.87369e+06 223581 618332. 2139.56 1.58 0.121146 0.105756 25762 151098 -1 1950 20 1422 2169 170148 39363 3.29991 3.29991 -133.305 -3.29991 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0201696 0.0178976 114 -1 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 9.44 vpr 65.78 MiB 0.02 7392 -1 -1 1 0.03 -1 -1 33628 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67360 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 27.0 MiB 5.36 1088 19841 5443 12522 1876 65.8 MiB 0.16 0.00 4.3249 -149.309 -4.3249 4.3249 0.86 0.000556859 0.000509388 0.0478548 0.0435792 32 3036 24 6.87369e+06 517032 586450. 2029.24 1.08 0.12236 0.108175 25474 144626 -1 2367 24 2066 3250 279137 64767 3.9207 3.9207 -150.114 -3.9207 0 0 744469. 2576.02 0.28 0.09 0.13 -1 -1 0.28 0.0277214 0.0243911 155 62 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 10.00 vpr 65.59 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 33868 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67164 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 26.9 MiB 5.05 1071 15151 5130 8107 1914 65.6 MiB 0.13 0.00 4.2388 -148.068 -4.2388 4.2388 0.90 0.000583437 0.000530374 0.0490798 0.0446373 36 2570 23 6.87369e+06 293451 648988. 2245.63 1.81 0.171046 0.14929 26050 158493 -1 2102 22 2152 3479 208398 51233 3.6638 3.6638 -145.28 -3.6638 0 0 828058. 2865.25 0.31 0.08 0.16 -1 -1 0.31 0.0267208 0.0234607 147 62 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 8.77 vpr 65.16 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 34164 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 26.4 MiB 4.23 885 16708 4981 9424 2303 65.2 MiB 0.12 0.00 3.50501 -121.209 -3.50501 3.50501 0.91 0.000406917 0.000369409 0.036566 0.0330846 34 2092 22 6.87369e+06 419215 618332. 2139.56 1.50 0.126822 0.110236 25762 151098 -1 1758 22 1214 2091 161943 37394 2.93226 2.93226 -114.098 -2.93226 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0205235 0.0179718 112 47 32 32 54 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 5.17 vpr 64.88 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 33832 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66436 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 26.6 MiB 1.10 723 6960 1528 4773 659 64.9 MiB 0.06 0.00 3.7434 -125.643 -3.7434 3.7434 0.93 0.000375445 0.000345241 0.0180952 0.0165492 32 2245 24 6.87369e+06 237555 586450. 2029.24 1.04 0.0750948 0.0657785 25474 144626 -1 1812 20 1388 2205 168538 38814 3.09956 3.09956 -123.67 -3.09956 0 0 744469. 2576.02 0.30 0.06 0.15 -1 -1 0.30 0.0193584 0.0170991 112 -1 93 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 7.72 vpr 65.25 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 33932 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 32 32 381 303 1 194 99 17 17 289 -1 unnamed_device 26.6 MiB 3.58 1023 18795 5447 10788 2560 65.2 MiB 0.15 0.00 4.30799 -144.78 -4.30799 4.30799 0.90 0.000540647 0.000493135 0.0467183 0.0424507 28 2603 22 6.87369e+06 489084 531479. 1839.03 1.07 0.118853 0.105002 24610 126494 -1 2312 20 1627 2445 176945 40331 3.637 3.637 -140.477 -3.637 0 0 648988. 2245.63 0.27 0.07 0.12 -1 -1 0.27 0.0239316 0.0211124 144 56 60 32 58 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 5.93 vpr 65.37 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 33964 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66940 32 32 406 330 1 191 97 17 17 289 -1 unnamed_device 26.6 MiB 1.45 1094 18745 5603 10775 2367 65.4 MiB 0.16 0.00 4.21185 -141.009 -4.21185 4.21185 0.91 0.000558915 0.000509292 0.049161 0.0446191 28 2842 31 6.87369e+06 461137 531479. 1839.03 1.36 0.133033 0.117053 24610 126494 -1 2441 24 1849 2884 230492 51132 4.10256 4.10256 -145.761 -4.10256 0 0 648988. 2245.63 0.28 0.09 0.13 -1 -1 0.28 0.0281407 0.0246645 142 81 28 28 88 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 9.52 vpr 66.06 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 33980 -1 -1 41 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67648 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 27.4 MiB 1.13 1329 17642 5677 9392 2573 66.1 MiB 0.17 0.00 4.98719 -165.596 -4.98719 4.98719 0.92 0.000525378 0.000480662 0.0442426 0.0401951 34 3730 48 6.87369e+06 572927 618332. 2139.56 5.17 0.270122 0.235451 25762 151098 -1 2666 23 2092 3309 293486 62129 4.59455 4.59455 -163.458 -4.59455 0 0 787024. 2723.27 0.31 0.10 0.15 -1 -1 0.31 0.0282961 0.0249321 183 -1 156 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 7.63 vpr 65.49 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 33796 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67064 30 32 371 295 1 188 94 17 17 289 -1 unnamed_device 26.9 MiB 3.10 1005 13300 3782 8501 1017 65.5 MiB 0.11 0.00 3.59605 -120.715 -3.59605 3.59605 0.86 0.000507787 0.000462481 0.0343111 0.031186 34 2294 27 6.87369e+06 447163 618332. 2139.56 1.60 0.146602 0.127806 25762 151098 -1 2011 19 1635 2586 164466 39881 2.93496 2.93496 -116.36 -2.93496 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0212465 0.0187293 141 47 60 30 56 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 4.93 vpr 64.93 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 34200 -1 -1 20 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66488 27 32 269 226 1 145 79 17 17 289 -1 unnamed_device 26.6 MiB 0.96 735 12247 4571 5926 1750 64.9 MiB 0.09 0.00 3.6866 -109.378 -3.6866 3.6866 0.92 0.000405506 0.000368443 0.0308604 0.0281314 32 1771 18 6.87369e+06 279477 586450. 2029.24 0.97 0.0807288 0.0710109 25474 144626 -1 1554 20 1118 1583 134320 29464 3.03351 3.03351 -108.423 -3.03351 0 0 744469. 2576.02 0.29 0.05 0.15 -1 -1 0.29 0.0180003 0.0158529 102 26 54 27 27 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 12.92 vpr 65.94 MiB 0.02 7252 -1 -1 1 0.04 -1 -1 34164 -1 -1 42 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67524 32 32 493 378 1 233 106 17 17 289 -1 unnamed_device 27.5 MiB 3.22 1290 11856 2585 8478 793 65.9 MiB 0.13 0.00 4.1886 -144.868 -4.1886 4.1886 0.90 0.000642002 0.000579601 0.033645 0.0304476 30 3626 23 6.87369e+06 586901 556674. 1926.21 6.59 0.217116 0.188821 25186 138497 -1 2701 23 2039 3711 246498 54124 3.4805 3.4805 -140.124 -3.4805 0 0 706193. 2443.58 0.28 0.09 0.13 -1 -1 0.28 0.0304908 0.0268346 184 85 62 31 95 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 9.82 vpr 65.71 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 33956 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67288 31 32 455 371 1 199 86 17 17 289 -1 unnamed_device 27.0 MiB 4.27 874 9914 2276 6234 1404 65.7 MiB 0.09 0.00 4.91157 -150.663 -4.91157 4.91157 0.93 0.000582216 0.000528519 0.0332627 0.0302756 34 2604 24 6.87369e+06 321398 618332. 2139.56 2.43 0.184751 0.162291 25762 151098 -1 1968 22 1570 2400 176110 43897 4.09455 4.09455 -145.251 -4.09455 0 0 787024. 2723.27 0.32 0.08 0.14 -1 -1 0.32 0.0278965 0.0245105 144 105 0 0 124 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 8.62 vpr 65.12 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 33732 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66688 32 32 355 304 1 162 80 17 17 289 -1 unnamed_device 26.6 MiB 4.00 802 14356 5267 6628 2461 65.1 MiB 0.11 0.00 4.598 -126.496 -4.598 4.598 0.92 0.000447166 0.000407568 0.0416078 0.0378321 34 2153 24 6.87369e+06 223581 618332. 2139.56 1.60 0.145969 0.127179 25762 151098 -1 1756 15 795 1183 93190 21619 3.18321 3.18321 -119.099 -3.18321 0 0 787024. 2723.27 0.31 0.04 0.14 -1 -1 0.31 0.0172282 0.0153209 107 86 0 0 89 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 8.21 vpr 65.62 MiB 0.02 7360 -1 -1 1 0.03 -1 -1 34084 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67196 32 32 364 282 1 196 98 17 17 289 -1 unnamed_device 26.9 MiB 1.26 1114 14723 4652 8968 1103 65.6 MiB 0.13 0.00 4.1955 -143.003 -4.1955 4.1955 0.92 0.00054923 0.000501939 0.0376323 0.0341699 28 2955 24 6.87369e+06 475111 531479. 1839.03 3.86 0.220099 0.191829 24610 126494 -1 2662 21 1784 2607 314392 88903 4.151 4.151 -151.44 -4.151 0 0 648988. 2245.63 0.26 0.10 0.13 -1 -1 0.26 0.0241615 0.0212778 147 31 90 30 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 7.92 vpr 65.78 MiB 0.02 7376 -1 -1 1 0.03 -1 -1 34248 -1 -1 40 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67360 31 32 443 336 1 224 103 17 17 289 -1 unnamed_device 27.2 MiB 2.47 1006 19865 6118 9930 3817 65.8 MiB 0.17 0.00 4.28153 -140.004 -4.28153 4.28153 0.92 0.0006115 0.000545065 0.0528139 0.0478992 34 3026 32 6.87369e+06 558954 618332. 2139.56 2.22 0.198041 0.173284 25762 151098 -1 2189 23 2117 3144 206084 51178 4.0632 4.0632 -141.309 -4.0632 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0298691 0.0263785 176 50 87 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 7.30 vpr 65.40 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 34180 -1 -1 36 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66968 30 32 373 297 1 188 98 17 17 289 -1 unnamed_device 26.8 MiB 2.33 1085 17873 5357 10009 2507 65.4 MiB 0.15 0.00 3.50639 -115.998 -3.50639 3.50639 0.91 0.000521679 0.000475245 0.0443439 0.0402034 34 2647 22 6.87369e+06 503058 618332. 2139.56 1.82 0.158488 0.138682 25762 151098 -1 2153 22 1658 2864 201610 47113 2.80196 2.80196 -110.281 -2.80196 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0249711 0.0219609 144 50 58 30 58 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 7.76 vpr 65.71 MiB 0.02 7288 -1 -1 1 0.03 -1 -1 34184 -1 -1 46 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67292 32 32 407 319 1 202 110 17 17 289 -1 unnamed_device 26.9 MiB 3.16 1127 20887 5685 13197 2005 65.7 MiB 0.17 0.00 4.26133 -148.826 -4.26133 4.26133 0.87 0.000538379 0.0004877 0.0456635 0.0414606 28 2839 24 6.87369e+06 642796 531479. 1839.03 1.63 0.131721 0.116823 24610 126494 -1 2475 24 2081 3460 266999 60202 4.0097 4.0097 -157.752 -4.0097 0 0 648988. 2245.63 0.25 0.09 0.11 -1 -1 0.25 0.0277467 0.0243844 160 61 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 8.37 vpr 65.92 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 33676 -1 -1 42 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67504 32 32 405 318 1 201 106 17 17 289 -1 unnamed_device 27.2 MiB 3.62 1115 19606 5308 11826 2472 65.9 MiB 0.15 0.00 3.52575 -126.542 -3.52575 3.52575 0.91 0.000571422 0.000519745 0.0465321 0.0422663 26 2952 46 6.87369e+06 586901 503264. 1741.40 1.65 0.149113 0.13121 24322 120374 -1 2600 24 1925 3092 270852 57727 3.26586 3.26586 -133.903 -3.26586 0 0 618332. 2139.56 0.26 0.10 0.12 -1 -1 0.26 0.0290671 0.0255982 157 61 63 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 6.71 vpr 64.79 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 33788 -1 -1 19 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 29 32 287 238 1 155 80 17 17 289 -1 unnamed_device 26.4 MiB 2.24 669 12808 5105 6141 1562 64.8 MiB 0.09 0.00 3.73366 -117.212 -3.73366 3.73366 0.91 0.000428541 0.000390194 0.0324529 0.0295049 34 1767 23 6.87369e+06 265503 618332. 2139.56 1.45 0.116971 0.101526 25762 151098 -1 1473 20 1280 1843 130614 29379 3.01631 3.01631 -114.603 -3.01631 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.018334 0.0161372 107 28 58 29 29 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 7.69 vpr 65.52 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 34176 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67092 32 32 334 290 1 156 81 17 17 289 -1 unnamed_device 26.8 MiB 2.94 808 7256 1653 5365 238 65.5 MiB 0.07 0.00 4.2805 -117.484 -4.2805 4.2805 0.93 0.000464807 0.000424209 0.0215073 0.0195989 34 2056 25 6.87369e+06 237555 618332. 2139.56 1.74 0.130516 0.113878 25762 151098 -1 1666 12 728 1027 80728 18767 2.95265 2.95265 -112.069 -2.95265 0 0 787024. 2723.27 0.32 0.04 0.14 -1 -1 0.32 0.014721 0.0131654 102 79 0 0 82 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 7.10 vpr 65.66 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 34212 -1 -1 39 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67240 31 32 365 281 1 197 102 17 17 289 -1 unnamed_device 27.0 MiB 2.17 1136 19618 6151 11073 2394 65.7 MiB 0.17 0.00 4.1886 -141.394 -4.1886 4.1886 0.89 0.000530404 0.000482121 0.0467803 0.0424788 28 2901 39 6.87369e+06 544980 531479. 1839.03 1.85 0.136486 0.119934 24610 126494 -1 2491 21 2032 3397 317230 66691 4.146 4.146 -150.688 -4.146 0 0 648988. 2245.63 0.25 0.09 0.13 -1 -1 0.25 0.0243425 0.0214074 152 29 93 31 31 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 11.33 vpr 64.88 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 33708 -1 -1 32 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66432 29 32 297 254 1 148 93 17 17 289 -1 unnamed_device 26.4 MiB 4.07 794 17103 5256 9538 2309 64.9 MiB 0.12 0.00 3.45975 -106.144 -3.45975 3.45975 0.90 0.000430529 0.000392827 0.0366213 0.0332691 24 2312 34 6.87369e+06 447163 470940. 1629.55 4.32 0.173099 0.149957 24034 113901 -1 2020 25 1539 2525 317977 69202 3.18086 3.18086 -116.05 -3.18086 0 0 586450. 2029.24 0.23 0.09 0.11 -1 -1 0.23 0.0222711 0.0194278 108 48 29 29 52 26 -fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 8.68 vpr 64.94 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33876 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66500 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 26.4 MiB 4.00 809 12464 3077 8852 535 64.9 MiB 0.10 0.00 3.7104 -131.395 -3.7104 3.7104 0.90 0.0004644 0.000424093 0.0358617 0.0327199 34 2309 26 6.87369e+06 223581 618332. 2139.56 1.65 0.138121 0.120425 25762 151098 -1 1864 22 1545 2458 186905 44531 3.17461 3.17461 -128.489 -3.17461 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0219385 0.0192461 114 31 64 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 7.51 vpr 65.70 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 34100 -1 -1 35 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67276 31 32 387 307 1 193 98 17 17 289 -1 unnamed_device 27.0 MiB 3.07 1003 13598 3664 8482 1452 65.7 MiB 0.11 0.00 3.61625 -124.489 -3.61625 3.61625 0.87 0.000545972 0.000488986 0.0349119 0.0316688 34 2208 22 6.87369e+06 489084 618332. 2139.56 1.53 0.143453 0.125034 25762 151098 -1 1890 20 1820 2793 169616 40025 2.93196 2.93196 -117.837 -2.93196 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0227834 0.0201315 146 60 58 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 7.61 vpr 64.92 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 33836 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66476 31 32 308 262 1 154 79 17 17 289 -1 unnamed_device 26.5 MiB 3.60 698 11402 3727 5924 1751 64.9 MiB 0.09 0.00 3.33623 -109.833 -3.33623 3.33623 0.90 0.000449823 0.000413789 0.0322318 0.0294365 26 2239 28 6.87369e+06 223581 503264. 1741.40 1.09 0.0955793 0.0838343 24322 120374 -1 1867 21 1246 1962 158994 38515 3.19191 3.19191 -123.167 -3.19191 0 0 618332. 2139.56 0.25 0.06 0.12 -1 -1 0.25 0.0190178 0.0166711 103 49 31 31 53 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 7.61 vpr 65.47 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 33860 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67040 32 32 383 307 1 190 101 17 17 289 -1 unnamed_device 26.8 MiB 3.40 1019 17256 4700 9815 2741 65.5 MiB 0.14 0.00 3.59195 -122.625 -3.59195 3.59195 0.90 0.000488817 0.000442872 0.0411482 0.0374372 32 2782 36 6.87369e+06 517032 586450. 2029.24 1.14 0.12331 0.108492 25474 144626 -1 2123 22 1479 2492 193417 44922 3.16886 3.16886 -118.293 -3.16886 0 0 744469. 2576.02 0.30 0.07 0.14 -1 -1 0.30 0.0250445 0.0219687 143 56 52 26 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 8.43 vpr 65.56 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33768 -1 -1 39 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67136 31 32 422 339 1 196 102 17 17 289 -1 unnamed_device 26.8 MiB 4.24 929 10336 2368 6764 1204 65.6 MiB 0.10 0.00 3.59605 -120.102 -3.59605 3.59605 0.94 0.000578692 0.0005269 0.0274018 0.0248812 32 2620 21 6.87369e+06 544980 586450. 2029.24 1.06 0.10034 0.0879021 25474 144626 -1 1977 23 2042 3063 228409 54704 3.05556 3.05556 -120.265 -3.05556 0 0 744469. 2576.02 0.30 0.08 0.14 -1 -1 0.30 0.0275735 0.0241594 151 88 31 31 92 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 7.99 vpr 65.39 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 34028 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66960 32 32 333 279 1 164 81 17 17 289 -1 unnamed_device 26.7 MiB 3.38 812 13206 3975 7418 1813 65.4 MiB 0.11 0.00 3.26897 -114.681 -3.26897 3.26897 0.90 0.00046264 0.000421788 0.037131 0.0338135 34 2174 27 6.87369e+06 237555 618332. 2139.56 1.57 0.139441 0.121477 25762 151098 -1 1858 21 1290 2029 166499 37639 2.94126 2.94126 -117.102 -2.94126 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0214609 0.0188699 110 54 32 32 60 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 7.56 vpr 65.30 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 33848 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66864 32 32 339 283 1 166 80 17 17 289 -1 unnamed_device 26.6 MiB 3.70 923 10056 2840 6443 773 65.3 MiB 0.09 0.00 3.6884 -128.712 -3.6884 3.6884 0.86 0.000451803 0.000411722 0.0292687 0.0267665 32 2547 22 6.87369e+06 223581 586450. 2029.24 0.99 0.090773 0.0799633 25474 144626 -1 2104 23 1487 2433 226899 49342 3.04626 3.04626 -128.09 -3.04626 0 0 744469. 2576.02 0.28 0.08 0.13 -1 -1 0.28 0.0236831 0.0208045 112 60 32 32 62 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 9.89 vpr 65.55 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34392 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67120 32 32 407 319 1 202 104 17 17 289 -1 unnamed_device 26.8 MiB 3.50 1032 14988 3846 9829 1313 65.5 MiB 0.13 0.00 4.29009 -147.998 -4.29009 4.29009 0.88 0.000607637 0.000527847 0.0366441 0.0332738 34 2540 20 6.87369e+06 558954 618332. 2139.56 3.33 0.185987 0.162354 25762 151098 -1 2226 23 2038 3314 227209 52582 3.8283 3.8283 -150.515 -3.8283 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0278076 0.0243846 157 49 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 8.04 vpr 65.65 MiB 0.02 7416 -1 -1 1 0.03 -1 -1 33980 -1 -1 34 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67228 29 32 367 293 1 185 95 17 17 289 -1 unnamed_device 27.0 MiB 3.05 880 11759 2826 8215 718 65.7 MiB 0.10 0.00 3.59605 -112.745 -3.59605 3.59605 0.91 0.000518199 0.000470407 0.0304129 0.027603 26 2672 41 6.87369e+06 475111 503264. 1741.40 1.94 0.11949 0.104622 24322 120374 -1 2326 23 1580 2473 242244 65796 3.09026 3.09026 -123.914 -3.09026 0 0 618332. 2139.56 0.27 0.09 0.14 -1 -1 0.27 0.0273157 0.0239879 140 54 56 29 58 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 11.64 vpr 65.96 MiB 0.02 7324 -1 -1 1 0.03 -1 -1 34128 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67544 32 32 469 381 1 202 104 17 17 289 -1 unnamed_device 27.4 MiB 6.44 930 19136 5654 10352 3130 66.0 MiB 0.16 0.00 4.25669 -144.754 -4.25669 4.25669 0.91 0.000581885 0.000524317 0.0501857 0.0452994 34 2868 25 6.87369e+06 558954 618332. 2139.56 2.02 0.186599 0.162793 25762 151098 -1 2197 23 2099 3388 250736 58546 4.0317 4.0317 -148.667 -4.0317 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0292193 0.0255607 157 117 0 0 128 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 4.75 vpr 65.02 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 33784 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 26.4 MiB 0.86 801 6501 1452 4525 524 65.0 MiB 0.05 0.00 3.09052 -106.923 -3.09052 3.09052 0.90 0.000373145 0.000342198 0.0161426 0.0148154 32 2327 32 6.87369e+06 223581 586450. 2029.24 0.99 0.0736669 0.0643926 25474 144626 -1 1761 20 1169 1781 155204 36100 3.01046 3.01046 -118.138 -3.01046 0 0 744469. 2576.02 0.29 0.06 0.13 -1 -1 0.29 0.017968 0.0158572 104 -1 85 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 6.52 vpr 65.59 MiB 0.02 7340 -1 -1 1 0.03 -1 -1 33812 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67164 32 32 418 338 1 194 101 17 17 289 -1 unnamed_device 26.8 MiB 1.92 977 17961 5555 9821 2585 65.6 MiB 0.14 0.00 4.24789 -140.827 -4.24789 4.24789 0.86 0.00053898 0.000492163 0.0447862 0.040779 34 2366 23 6.87369e+06 517032 618332. 2139.56 1.64 0.166806 0.146426 25762 151098 -1 1978 17 1468 2127 144770 34492 3.7313 3.7313 -136.286 -3.7313 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.021724 0.0192518 147 89 28 28 92 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 9.43 vpr 65.14 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 33632 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66708 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 26.4 MiB 4.95 961 12808 4157 6979 1672 65.1 MiB 0.09 0.00 3.7416 -135.274 -3.7416 3.7416 0.87 0.000439019 0.000398346 0.0372573 0.0338926 34 2201 17 6.87369e+06 223581 618332. 2139.56 1.54 0.140765 0.122622 25762 151098 -1 2005 22 1516 2173 167105 38026 3.11226 3.11226 -134.014 -3.11226 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.024211 0.0211701 114 93 0 0 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 8.12 vpr 65.46 MiB 0.02 7412 -1 -1 1 0.03 -1 -1 33788 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67028 32 32 401 316 1 199 103 17 17 289 -1 unnamed_device 26.8 MiB 3.68 1013 13117 3136 9263 718 65.5 MiB 0.12 0.00 3.62407 -127.528 -3.62407 3.62407 0.90 0.00054925 0.00049931 0.0324106 0.0293624 28 2551 39 6.87369e+06 544980 531479. 1839.03 1.43 0.122371 0.107098 24610 126494 -1 2315 24 1674 2618 204769 46581 3.43616 3.43616 -129.921 -3.43616 0 0 648988. 2245.63 0.26 0.08 0.12 -1 -1 0.26 0.0270189 0.0236967 153 59 61 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 10.92 vpr 66.13 MiB 0.02 7492 -1 -1 1 0.04 -1 -1 34272 -1 -1 47 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67720 32 32 500 382 1 236 111 17 17 289 -1 unnamed_device 27.2 MiB 5.42 1138 14475 3597 10051 827 66.1 MiB 0.13 0.00 4.97494 -166.026 -4.97494 4.97494 0.91 0.000643957 0.000586798 0.0373421 0.0336975 32 3530 43 6.87369e+06 656770 586450. 2029.24 2.37 0.190146 0.16629 25474 144626 -1 2649 23 2462 3966 355319 77702 4.60855 4.60855 -171.893 -4.60855 0 0 744469. 2576.02 0.30 0.11 0.13 -1 -1 0.30 0.0301838 0.026493 190 81 64 32 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 6.44 vpr 64.75 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 33468 -1 -1 14 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 30 32 246 229 1 118 76 17 17 289 -1 unnamed_device 26.3 MiB 2.55 613 9036 2242 6211 583 64.7 MiB 0.06 0.00 2.94746 -92.2629 -2.94746 2.94746 0.92 0.000384267 0.000351864 0.0231314 0.021096 32 1520 24 6.87369e+06 195634 586450. 2029.24 0.93 0.0715282 0.0624826 25474 144626 -1 1331 16 658 912 81906 19438 2.13917 2.13917 -90.061 -2.13917 0 0 744469. 2576.02 0.29 0.04 0.14 -1 -1 0.29 0.0140958 0.0124368 72 51 0 0 53 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 5.23 vpr 65.05 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 33760 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66616 30 32 296 244 1 158 80 17 17 289 -1 unnamed_device 26.7 MiB 1.21 764 12120 4745 5717 1658 65.1 MiB 0.09 0.00 3.7196 -120.247 -3.7196 3.7196 0.91 0.000431908 0.000393147 0.0331118 0.0301913 32 2131 23 6.87369e+06 251529 586450. 2029.24 1.00 0.0889573 0.078429 25474 144626 -1 1739 21 1445 2038 178621 39973 3.28591 3.28591 -121.948 -3.28591 0 0 744469. 2576.02 0.29 0.06 0.13 -1 -1 0.29 0.0199888 0.0176314 109 29 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 6.38 vpr 65.21 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 33524 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66776 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 26.5 MiB 1.61 884 12464 4265 6183 2016 65.2 MiB 0.11 0.00 3.52575 -127.584 -3.52575 3.52575 0.91 0.000469394 0.000428112 0.0360033 0.0328833 34 2591 20 6.87369e+06 223581 618332. 2139.56 1.71 0.13419 0.117385 25762 151098 -1 2230 22 1709 3066 262084 58779 3.08856 3.08856 -127.988 -3.08856 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0216898 0.0190405 114 31 64 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 4.83 vpr 64.77 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 34000 -1 -1 37 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66320 25 32 251 214 1 139 94 17 17 289 -1 unnamed_device 26.3 MiB 0.94 742 15004 4316 8330 2358 64.8 MiB 0.10 0.00 3.44875 -93.4127 -3.44875 3.44875 0.91 0.000380422 0.000347394 0.0283607 0.0258839 30 1638 20 6.87369e+06 517032 556674. 1926.21 0.93 0.0736533 0.0646506 25186 138497 -1 1402 22 950 1565 87054 21069 2.67036 2.67036 -92.3339 -2.67036 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.017571 0.0153746 105 19 50 25 25 25 -fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 7.97 vpr 65.51 MiB 0.02 7336 -1 -1 1 0.03 -1 -1 33928 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67080 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 26.8 MiB 3.21 1035 11989 3061 8035 893 65.5 MiB 0.12 0.00 4.14459 -143.245 -4.14459 4.14459 0.86 0.000564198 0.000515137 0.0391256 0.0357196 34 2922 23 6.87369e+06 293451 618332. 2139.56 1.82 0.170651 0.150026 25762 151098 -1 2363 20 1886 3422 237506 56554 3.7261 3.7261 -146.04 -3.7261 0 0 787024. 2723.27 0.30 0.08 0.13 -1 -1 0.30 0.025373 0.0224458 145 84 32 32 94 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 8.07 vpr 65.86 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 34028 -1 -1 40 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67444 31 32 421 339 1 195 103 17 17 289 -1 unnamed_device 27.1 MiB 3.38 969 12394 3038 8536 820 65.9 MiB 0.11 0.00 3.62425 -121.977 -3.62425 3.62425 0.91 0.000550204 0.000496332 0.0317635 0.0287028 34 2208 23 6.87369e+06 558954 618332. 2139.56 1.60 0.148286 0.128657 25762 151098 -1 1964 22 2020 3079 203389 49390 2.88196 2.88196 -119.328 -2.88196 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0260477 0.0228675 151 88 29 29 93 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 9.27 vpr 65.80 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 34180 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67384 32 32 438 350 1 295 93 17 17 289 -1 unnamed_device 27.1 MiB 1.98 1383 18363 6134 9531 2698 65.8 MiB 0.16 0.00 5.11247 -173.262 -5.11247 5.11247 0.90 0.000602376 0.000547834 0.053715 0.0489064 36 3373 46 6.89349e+06 408721 648988. 2245.63 4.13 0.255967 0.222288 26050 158493 -1 2894 20 2329 2889 204014 45929 4.53065 4.53065 -169.913 -4.53065 0 0 828058. 2865.25 0.31 0.08 0.15 -1 -1 0.31 0.0255616 0.0226103 192 80 32 32 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 7.06 vpr 65.69 MiB 0.02 7476 -1 -1 1 0.03 -1 -1 33980 -1 -1 29 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67264 30 32 409 330 1 262 91 17 17 289 -1 unnamed_device 26.9 MiB 1.74 1338 16411 5641 8181 2589 65.7 MiB 0.14 0.00 5.22297 -160.634 -5.22297 5.22297 0.85 0.000529614 0.000484026 0.0445403 0.0405965 36 3246 31 6.89349e+06 408721 648988. 2245.63 2.28 0.171644 0.150472 26050 158493 -1 2686 24 2108 2969 221728 48494 4.53198 4.53198 -155.377 -4.53198 0 0 828058. 2865.25 0.32 0.09 0.15 -1 -1 0.32 0.0290103 0.0256754 177 78 30 30 89 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 7.80 vpr 65.65 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33964 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67224 32 32 387 309 1 253 89 17 17 289 -1 unnamed_device 27.0 MiB 2.29 1277 15533 4267 9018 2248 65.6 MiB 0.14 0.00 4.0146 -140.879 -4.0146 4.0146 0.92 0.00051888 0.000464725 0.0435883 0.0397347 34 3518 44 6.89349e+06 352346 618332. 2139.56 2.37 0.190472 0.166977 25762 151098 -1 2677 21 1751 2210 191142 41206 3.9037 3.9037 -142.762 -3.9037 0 0 787024. 2723.27 0.32 0.08 0.14 -1 -1 0.32 0.0250325 0.0221295 167 50 54 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 6.98 vpr 65.02 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 34100 -1 -1 25 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 29 32 343 267 1 209 86 17 17 289 -1 unnamed_device 26.2 MiB 2.34 1071 16718 5447 9404 1867 65.0 MiB 0.14 0.00 4.53305 -141.516 -4.53305 4.53305 0.86 0.000464892 0.000424811 0.0446716 0.0408212 34 2586 28 6.89349e+06 352346 618332. 2139.56 1.70 0.157582 0.138588 25762 151098 -1 2003 23 1782 2683 158633 39220 4.01296 4.01296 -142.769 -4.01296 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0234029 0.020658 148 25 87 29 29 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 9.83 vpr 65.55 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 33992 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67128 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 26.9 MiB 2.31 1361 14518 4265 8140 2113 65.6 MiB 0.13 0.00 5.03124 -172.909 -5.03124 5.03124 0.91 0.000558237 0.000508147 0.0418903 0.038106 36 3336 26 6.89349e+06 338252 648988. 2245.63 4.35 0.216582 0.188309 26050 158493 -1 2797 21 2223 3856 262196 58328 4.14865 4.14865 -163.069 -4.14865 0 0 828058. 2865.25 0.33 0.09 0.16 -1 -1 0.33 0.0250693 0.0221045 163 31 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 7.18 vpr 65.88 MiB 0.02 7396 -1 -1 1 0.03 -1 -1 33844 -1 -1 41 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67456 32 32 402 316 1 257 105 17 17 289 -1 unnamed_device 27.1 MiB 2.20 1499 20359 6047 11800 2512 65.9 MiB 0.18 0.00 4.44565 -148.532 -4.44565 4.44565 0.90 0.000557334 0.000508542 0.0477159 0.0433276 34 3677 25 6.89349e+06 577847 618332. 2139.56 1.83 0.167084 0.145522 25762 151098 -1 2932 24 2054 3264 227716 50763 3.46365 3.46365 -138.668 -3.46365 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0273811 0.0239793 179 61 63 32 63 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 5.84 vpr 64.72 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 34096 -1 -1 21 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 27 32 269 226 1 164 80 17 17 289 -1 unnamed_device 26.4 MiB 1.84 730 14528 4147 9388 993 64.7 MiB 0.10 0.00 3.83226 -109.129 -3.83226 3.83226 0.90 0.000417023 0.000380701 0.0361495 0.0329714 30 2039 26 6.89349e+06 295971 556674. 1926.21 1.01 0.0918646 0.0807942 25186 138497 -1 1610 19 1077 1556 98401 24134 3.16615 3.16615 -109.066 -3.16615 0 0 706193. 2443.58 0.28 0.05 0.14 -1 -1 0.28 0.0172253 0.0151496 112 26 54 27 27 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 5.68 vpr 65.29 MiB 0.02 7300 -1 -1 1 0.03 -1 -1 33636 -1 -1 35 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66860 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 26.6 MiB 0.94 921 14273 4335 7347 2591 65.3 MiB 0.11 0.00 3.53335 -112.01 -3.53335 3.53335 0.92 0.000469008 0.000424912 0.0315971 0.0287245 34 2397 23 6.89349e+06 493284 618332. 2139.56 1.70 0.131752 0.11504 25762 151098 -1 1930 20 1233 2018 129329 30123 2.76481 2.76481 -107.874 -2.76481 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0204502 0.0180066 141 -1 115 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 6.41 vpr 65.12 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 33628 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 31 32 338 292 1 225 84 17 17 289 -1 unnamed_device 26.5 MiB 1.86 1141 14358 3961 8348 2049 65.1 MiB 0.12 0.00 3.63141 -123.531 -3.63141 3.63141 0.91 0.000479564 0.000436659 0.0397067 0.0362041 34 2852 46 6.89349e+06 295971 618332. 2139.56 1.58 0.129741 0.113053 25762 151098 -1 2258 20 1623 1983 132304 31127 3.03746 3.03746 -119.802 -3.03746 0 0 787024. 2723.27 0.29 0.05 0.13 -1 -1 0.29 0.0191076 0.0167917 140 81 0 0 84 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 6.36 vpr 64.68 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 33704 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66228 32 32 314 256 1 193 83 17 17 289 -1 unnamed_device 26.3 MiB 1.89 873 6923 1573 5100 250 64.7 MiB 0.07 0.00 3.71245 -131.003 -3.71245 3.71245 0.86 0.000456887 0.000411057 0.0193327 0.0177009 34 2505 33 6.89349e+06 267783 618332. 2139.56 1.62 0.120653 0.104707 25762 151098 -1 2040 21 1696 2217 167201 38798 3.19856 3.19856 -130.67 -3.19856 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0205078 0.0180743 127 31 64 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 7.00 vpr 64.89 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 33460 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66452 30 32 325 273 1 203 83 17 17 289 -1 unnamed_device 26.4 MiB 2.48 942 6923 1677 4944 302 64.9 MiB 0.07 0.00 4.3965 -138.695 -4.3965 4.3965 0.90 0.00046172 0.000422016 0.019958 0.018226 34 2532 21 6.89349e+06 295971 618332. 2139.56 1.56 0.11526 0.0991047 25762 151098 -1 2019 19 1555 2064 144585 32989 3.78655 3.78655 -137.938 -3.78655 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0191683 0.0168758 135 58 30 30 60 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 7.40 vpr 65.41 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 33844 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66976 32 32 331 280 1 215 84 17 17 289 -1 unnamed_device 26.7 MiB 1.95 883 15822 6326 7340 2156 65.4 MiB 0.12 0.00 3.8129 -121.35 -3.8129 3.8129 0.93 0.000453437 0.000412518 0.0424352 0.038628 36 2401 21 6.89349e+06 281877 648988. 2245.63 2.34 0.1569 0.13788 26050 158493 -1 1750 16 1148 1290 88420 21821 3.16081 3.16081 -112.317 -3.16081 0 0 828058. 2865.25 0.33 0.05 0.15 -1 -1 0.33 0.0180934 0.0160608 135 57 25 25 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 8.86 vpr 65.34 MiB 0.02 7156 -1 -1 1 0.03 -1 -1 33920 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66912 32 32 386 305 1 239 89 17 17 289 -1 unnamed_device 26.7 MiB 1.47 987 17513 5731 7853 3929 65.3 MiB 0.14 0.00 4.23419 -140.25 -4.23419 4.23419 0.91 0.000533053 0.000485602 0.0502524 0.0457526 38 3008 43 6.89349e+06 352346 678818. 2348.85 4.26 0.197206 0.172842 26626 170182 -1 2047 21 1870 2551 179023 42643 3.158 3.158 -120.917 -3.158 0 0 902133. 3121.57 0.32 0.07 0.17 -1 -1 0.32 0.0244147 0.021475 161 55 64 32 57 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 10.46 vpr 65.80 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 33792 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67376 32 32 407 319 1 264 92 17 17 289 -1 unnamed_device 27.1 MiB 1.75 1162 11063 2970 6995 1098 65.8 MiB 0.11 0.00 5.02024 -166.562 -5.02024 5.02024 0.90 0.000622192 0.000568474 0.0335933 0.030602 36 3019 23 6.89349e+06 394628 648988. 2245.63 5.65 0.257179 0.222036 26050 158493 -1 2473 20 2078 2744 172262 40553 4.63875 4.63875 -165.591 -4.63875 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0244498 0.0214143 175 60 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 6.20 vpr 64.79 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 34116 -1 -1 21 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 29 32 272 228 1 171 82 17 17 289 -1 unnamed_device 26.4 MiB 1.72 754 11296 2879 7697 720 64.8 MiB 0.08 0.00 3.61645 -112 -3.61645 3.61645 0.90 0.000397056 0.00036288 0.0271423 0.0247973 34 1919 28 6.89349e+06 295971 618332. 2139.56 1.51 0.115868 0.1008 25762 151098 -1 1620 21 1078 1505 115201 26818 2.94016 2.94016 -107.534 -2.94016 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0183307 0.0160791 112 21 58 29 24 24 -fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 7.79 vpr 65.54 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 34060 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67112 32 32 401 315 1 256 89 17 17 289 -1 unnamed_device 26.8 MiB 2.61 1259 17315 5682 9212 2421 65.5 MiB 0.16 0.00 4.31019 -146.5 -4.31019 4.31019 0.85 0.000547902 0.000489185 0.0503129 0.0457192 34 3889 35 6.89349e+06 352346 618332. 2139.56 2.20 0.193814 0.170398 25762 151098 -1 3012 22 2472 3856 304331 66969 3.9642 3.9642 -153.037 -3.9642 0 0 787024. 2723.27 0.30 0.10 0.13 -1 -1 0.30 0.0262225 0.0230982 174 60 64 32 62 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 5.86 vpr 65.29 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 33872 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66852 32 32 383 303 1 236 89 17 17 289 -1 unnamed_device 26.7 MiB 1.37 1183 12365 3291 7811 1263 65.3 MiB 0.11 0.00 3.69045 -130.871 -3.69045 3.69045 0.88 0.000534171 0.000487218 0.0355316 0.032449 34 2840 24 6.89349e+06 352346 618332. 2139.56 1.55 0.145698 0.127224 25762 151098 -1 2358 17 1669 2089 152593 34412 3.06081 3.06081 -123.816 -3.06081 0 0 787024. 2723.27 0.29 0.06 0.14 -1 -1 0.29 0.020784 0.0184741 160 54 64 32 56 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 7.10 vpr 65.32 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 33736 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66888 32 32 339 284 1 224 86 17 17 289 -1 unnamed_device 26.5 MiB 2.11 1015 15395 4903 8010 2482 65.3 MiB 0.13 0.00 3.61051 -123.557 -3.61051 3.61051 0.93 0.000480029 0.000436581 0.0411812 0.0374416 38 2435 45 6.89349e+06 310065 678818. 2348.85 1.86 0.164181 0.14298 26626 170182 -1 1964 20 1472 2002 131218 30024 2.82146 2.82146 -110.196 -2.82146 0 0 902133. 3121.57 0.35 0.06 0.16 -1 -1 0.35 0.0221505 0.0196285 139 62 29 29 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 5.39 vpr 64.26 MiB 0.02 6824 -1 -1 1 0.03 -1 -1 33804 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65804 30 32 226 208 1 142 77 17 17 289 -1 unnamed_device 25.8 MiB 1.17 569 8227 1998 5670 559 64.3 MiB 0.05 0.00 3.06366 -95.1937 -3.06366 3.06366 0.89 0.000302631 0.000277281 0.0173984 0.0158903 34 1571 21 6.89349e+06 211408 618332. 2139.56 1.38 0.087997 0.0757353 25762 151098 -1 1189 20 733 875 64480 15598 2.11917 2.11917 -85.5775 -2.11917 0 0 787024. 2723.27 0.29 0.04 0.13 -1 -1 0.29 0.0153558 0.0133913 85 29 24 24 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 6.37 vpr 65.03 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 33784 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 31 32 335 280 1 217 85 17 17 289 -1 unnamed_device 26.3 MiB 1.67 1101 13663 4048 7780 1835 65.0 MiB 0.11 0.00 4.32835 -147.32 -4.32835 4.32835 0.90 0.000467544 0.000425696 0.0369393 0.033725 34 2756 25 6.89349e+06 310065 618332. 2139.56 1.67 0.138479 0.120625 25762 151098 -1 2197 20 1528 2052 155926 35353 3.38045 3.38045 -136.099 -3.38045 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0205179 0.0180655 141 55 31 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 5.88 vpr 65.44 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 33776 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67012 32 32 366 283 1 228 104 17 17 289 -1 unnamed_device 26.8 MiB 1.12 1052 20112 6009 11047 3056 65.4 MiB 0.16 0.00 4.67003 -155.404 -4.67003 4.67003 0.88 0.000540502 0.000494312 0.0450711 0.0410505 34 2792 26 6.89349e+06 563754 618332. 2139.56 1.73 0.168395 0.147956 25762 151098 -1 2216 20 1950 2674 199058 44989 3.95124 3.95124 -146.782 -3.95124 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0230658 0.0203695 166 31 91 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 8.31 vpr 65.86 MiB 0.02 7400 -1 -1 1 0.03 -1 -1 34196 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67444 32 32 460 375 1 309 95 17 17 289 -1 unnamed_device 27.2 MiB 1.42 1507 16511 4972 9774 1765 65.9 MiB 0.15 0.00 4.34661 -147.62 -4.34661 4.34661 0.86 0.00058042 0.000530564 0.0469591 0.0428523 36 3423 27 6.89349e+06 436909 648988. 2245.63 3.89 0.257018 0.223804 26050 158493 -1 2914 22 2279 2613 182020 41823 3.8883 3.8883 -142.486 -3.8883 0 0 828058. 2865.25 0.31 0.08 0.14 -1 -1 0.31 0.0280845 0.0248216 201 108 0 0 125 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 7.38 vpr 64.54 MiB 0.02 6800 -1 -1 1 0.02 -1 -1 33880 -1 -1 18 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66088 26 32 198 186 1 129 76 17 17 289 -1 unnamed_device 26.2 MiB 1.53 692 10476 3888 5359 1229 64.5 MiB 0.06 0.00 2.84541 -81.5212 -2.84541 2.84541 0.94 0.000316607 0.000288443 0.0222115 0.0202553 34 1440 20 6.89349e+06 253689 618332. 2139.56 2.88 0.111501 0.0964731 25762 151098 -1 1275 19 537 676 51771 11421 2.04335 2.04335 -77.3366 -2.04335 0 0 787024. 2723.27 0.31 0.03 0.14 -1 -1 0.31 0.0135702 0.0119985 77 21 26 26 22 22 -fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 5.77 vpr 65.00 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 34172 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66556 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 26.5 MiB 1.33 1016 9571 2543 6414 614 65.0 MiB 0.09 0.00 4.12784 -139.243 -4.12784 4.12784 0.87 0.000505075 0.000461998 0.0275037 0.0251406 30 2786 37 6.89349e+06 295971 556674. 1926.21 1.54 0.113633 0.100206 25186 138497 -1 2116 24 1422 2615 150282 36059 3.85235 3.85235 -144.388 -3.85235 0 0 706193. 2443.58 0.28 0.06 0.12 -1 -1 0.28 0.0223898 0.0196497 141 -1 122 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 4.10 vpr 64.23 MiB 0.02 6876 -1 -1 1 0.03 -1 -1 34144 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65776 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 25.8 MiB 0.40 514 9356 2285 6456 615 64.2 MiB 0.06 0.00 2.43188 -86.7872 -2.43188 2.43188 0.89 0.000346789 0.000316383 0.0199339 0.0181921 28 1509 16 6.89349e+06 169126 531479. 1839.03 0.92 0.0592659 0.0521364 24610 126494 -1 1311 19 741 1063 81209 20552 1.89376 1.89376 -87.0135 -1.89376 0 0 648988. 2245.63 0.26 0.04 0.12 -1 -1 0.26 0.0137198 0.0121116 71 -1 53 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 5.77 vpr 65.36 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 34008 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66924 32 32 376 288 1 233 89 17 17 289 -1 unnamed_device 26.5 MiB 1.65 1097 15929 4551 10101 1277 65.4 MiB 0.15 0.00 4.62958 -159.64 -4.62958 4.62958 0.91 0.000544844 0.000499858 0.0445377 0.0407395 30 2755 25 6.89349e+06 352346 556674. 1926.21 1.05 0.115093 0.101597 25186 138497 -1 2149 18 1484 2021 120282 29101 3.99286 3.99286 -151.639 -3.99286 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.021154 0.0187214 161 21 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 4.82 vpr 65.52 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 34024 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67092 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 26.8 MiB 0.87 885 10772 2583 7345 844 65.5 MiB 0.09 0.00 3.4709 -116.935 -3.4709 3.4709 0.86 0.000452912 0.000414526 0.0227167 0.0205996 32 2653 40 6.89349e+06 507378 586450. 2029.24 1.03 0.0937421 0.0815543 25474 144626 -1 2071 21 1546 2415 157585 39663 2.84981 2.84981 -118.371 -2.84981 0 0 744469. 2576.02 0.28 0.06 0.13 -1 -1 0.28 0.0202753 0.017857 151 -1 124 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 6.82 vpr 65.78 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 33956 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67356 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 27.1 MiB 1.94 1365 8130 1863 5269 998 65.8 MiB 0.09 0.00 4.69935 -162.091 -4.69935 4.69935 0.86 0.000537252 0.000491536 0.0240979 0.0220898 34 3698 26 6.89349e+06 366440 618332. 2139.56 1.97 0.137276 0.120643 25762 151098 -1 2937 22 2290 3311 239159 52119 4.21846 4.21846 -163.604 -4.21846 0 0 787024. 2723.27 0.30 0.09 0.13 -1 -1 0.30 0.0269564 0.023753 174 54 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 7.23 vpr 64.63 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 34116 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66180 32 32 294 246 1 188 81 17 17 289 -1 unnamed_device 26.2 MiB 2.17 863 14256 5690 7135 1431 64.6 MiB 0.11 0.00 3.57625 -122.952 -3.57625 3.57625 0.87 0.000437419 0.000396598 0.0375528 0.0342182 36 2395 27 6.89349e+06 239595 648988. 2245.63 2.12 0.146411 0.128445 26050 158493 -1 1954 22 1507 2255 187460 40961 2.79796 2.79796 -116.127 -2.79796 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0204534 0.0180372 118 31 54 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 6.71 vpr 64.77 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 33592 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66324 30 32 296 244 1 182 81 17 17 289 -1 unnamed_device 26.3 MiB 1.99 1065 12331 4460 6746 1125 64.8 MiB 0.10 0.00 4.27029 -139.911 -4.27029 4.27029 0.90 0.000432125 0.000393479 0.0330171 0.0301648 34 2653 21 6.89349e+06 267783 618332. 2139.56 1.73 0.130674 0.114194 25762 151098 -1 2175 20 1480 2326 199572 41781 3.57495 3.57495 -136.569 -3.57495 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0196092 0.0172787 121 29 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 6.52 vpr 64.61 MiB 0.02 7036 -1 -1 1 0.03 -1 -1 33848 -1 -1 21 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66164 28 32 278 232 1 173 81 17 17 289 -1 unnamed_device 26.2 MiB 2.52 839 10231 2827 6777 627 64.6 MiB 0.09 0.00 4.26535 -126.926 -4.26535 4.26535 0.90 0.000414696 0.00037927 0.0257945 0.0235597 30 2437 23 6.89349e+06 295971 556674. 1926.21 1.05 0.0799253 0.070149 25186 138497 -1 1837 21 1164 1980 126771 30045 3.5641 3.5641 -124.418 -3.5641 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.0187585 0.0164575 115 27 56 28 28 28 -fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 5.60 vpr 64.68 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 33628 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66232 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 26.1 MiB 1.19 860 14700 5342 7547 1811 64.7 MiB 0.11 0.00 3.60535 -129.612 -3.60535 3.60535 0.86 0.000431579 0.000395586 0.0377272 0.0344825 34 2261 23 6.89349e+06 225501 618332. 2139.56 1.53 0.12803 0.112281 25762 151098 -1 1953 20 1495 2467 200666 42802 2.88526 2.88526 -123.256 -2.88526 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0193016 0.017042 114 -1 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 7.50 vpr 64.80 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 34088 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66360 31 32 303 249 1 191 82 17 17 289 -1 unnamed_device 26.3 MiB 1.59 985 14322 4727 7440 2155 64.8 MiB 0.12 0.00 3.69435 -127.028 -3.69435 3.69435 0.87 0.000437747 0.000400331 0.0370937 0.0338503 30 2355 32 6.89349e+06 267783 556674. 1926.21 2.97 0.156135 0.135612 25186 138497 -1 1904 18 1088 1540 90311 21257 2.89006 2.89006 -117.579 -2.89006 0 0 706193. 2443.58 0.28 0.05 0.14 -1 -1 0.28 0.0182619 0.0160554 121 26 61 31 31 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 6.47 vpr 64.97 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 34016 -1 -1 23 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66528 29 32 312 264 1 201 84 17 17 289 -1 unnamed_device 26.4 MiB 1.80 1052 14724 4760 7779 2185 65.0 MiB 0.12 0.00 3.57215 -115.596 -3.57215 3.57215 0.94 0.000444215 0.000406541 0.0378247 0.0344915 34 2412 48 6.89349e+06 324158 618332. 2139.56 1.57 0.150759 0.131333 25762 151098 -1 2059 18 1204 1615 110153 25182 2.84821 2.84821 -110.088 -2.84821 0 0 787024. 2723.27 0.32 0.05 0.14 -1 -1 0.32 0.0189605 0.0168313 130 55 29 29 57 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 7.96 vpr 65.80 MiB 0.02 7456 -1 -1 1 0.03 -1 -1 34120 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67380 32 32 423 310 1 254 91 17 17 289 -1 unnamed_device 27.0 MiB 2.36 1199 18247 5521 9891 2835 65.8 MiB 0.17 0.00 4.73855 -160.484 -4.73855 4.73855 0.88 0.000562759 0.000513075 0.0532427 0.0484829 34 3612 43 6.89349e+06 380534 618332. 2139.56 2.54 0.225633 0.19917 25762 151098 -1 2796 20 2035 3278 238805 52979 4.28236 4.28236 -159.226 -4.28236 0 0 787024. 2723.27 0.30 0.09 0.13 -1 -1 0.30 0.0272866 0.0241108 184 26 128 32 27 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 7.30 vpr 65.65 MiB 0.02 7232 -1 -1 1 0.03 -1 -1 33916 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67228 32 32 403 317 1 260 89 17 17 289 -1 unnamed_device 26.8 MiB 2.11 1143 14147 4354 7296 2497 65.7 MiB 0.13 0.00 4.17974 -143.168 -4.17974 4.17974 0.91 0.000552768 0.000503613 0.041889 0.038195 34 3686 37 6.89349e+06 352346 618332. 2139.56 2.06 0.178196 0.155488 25762 151098 -1 2757 24 2870 3968 321931 71661 3.9572 3.9572 -151.377 -3.9572 0 0 787024. 2723.27 0.30 0.10 0.15 -1 -1 0.30 0.0279289 0.0245588 173 62 62 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 5.55 vpr 65.30 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 33924 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66872 31 32 353 302 1 229 85 17 17 289 -1 unnamed_device 26.5 MiB 1.00 1094 14965 4562 8063 2340 65.3 MiB 0.12 0.00 3.67235 -123.222 -3.67235 3.67235 0.88 0.0004804 0.000437092 0.0414638 0.0378012 34 2583 23 6.89349e+06 310065 618332. 2139.56 1.56 0.141676 0.123508 25762 151098 -1 2152 20 1279 1328 109559 24885 3.11566 3.11566 -119.952 -3.11566 0 0 787024. 2723.27 0.29 0.05 0.15 -1 -1 0.29 0.0196038 0.0172331 143 77 0 0 89 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 7.32 vpr 65.64 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 33696 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67216 31 32 391 309 1 246 89 17 17 289 -1 unnamed_device 27.0 MiB 2.58 1244 16523 4277 10843 1403 65.6 MiB 0.16 0.00 4.45875 -146.616 -4.45875 4.45875 0.87 0.000513783 0.000468341 0.0461455 0.0420666 34 3212 33 6.89349e+06 366440 618332. 2139.56 1.77 0.176645 0.155152 25762 151098 -1 2592 22 1886 2726 189128 43273 3.575 3.575 -140.253 -3.575 0 0 787024. 2723.27 0.29 0.07 0.13 -1 -1 0.29 0.0251001 0.0221464 170 59 60 30 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 7.36 vpr 65.92 MiB 0.02 7564 -1 -1 1 0.03 -1 -1 34252 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67504 31 32 455 371 1 307 94 17 17 289 -1 unnamed_device 27.3 MiB 2.27 1489 17560 4957 10293 2310 65.9 MiB 0.16 0.00 5.02254 -165.43 -5.02254 5.02254 0.86 0.000615991 0.000551334 0.0478218 0.0434981 34 3603 25 6.89349e+06 436909 618332. 2139.56 2.02 0.187326 0.164274 25762 151098 -1 2828 19 2056 2331 149675 36960 4.78164 4.78164 -163.804 -4.78164 0 0 787024. 2723.27 0.32 0.07 0.14 -1 -1 0.32 0.0256139 0.0226163 201 111 0 0 124 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 7.79 vpr 65.77 MiB 0.02 7532 -1 -1 1 0.03 -1 -1 33968 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67352 31 32 413 333 1 269 91 17 17 289 -1 unnamed_device 27.1 MiB 2.90 1401 11923 3470 7236 1217 65.8 MiB 0.12 0.00 5.49816 -175.294 -5.49816 5.49816 0.90 0.000549967 0.000501631 0.0344439 0.0314276 38 3017 23 6.89349e+06 394628 678818. 2348.85 1.77 0.129848 0.11367 26626 170182 -1 2506 19 1826 2480 147944 34484 4.87284 4.87284 -166.744 -4.87284 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.023587 0.0208167 181 86 31 31 89 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 6.76 vpr 65.73 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 33860 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67304 31 32 391 309 1 249 90 17 17 289 -1 unnamed_device 27.0 MiB 1.92 1340 14763 4284 8311 2168 65.7 MiB 0.13 0.00 3.76655 -130.012 -3.76655 3.76655 0.88 0.000550208 0.000499829 0.0394292 0.0359828 34 3258 47 6.89349e+06 380534 618332. 2139.56 1.78 0.167399 0.145764 25762 151098 -1 2645 22 2257 3104 229312 50693 3.07996 3.07996 -123.899 -3.07996 0 0 787024. 2723.27 0.30 0.08 0.16 -1 -1 0.30 0.0267594 0.0235613 168 58 60 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 10.78 vpr 65.81 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 33972 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67388 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 27.1 MiB 2.17 1284 16207 4365 9844 1998 65.8 MiB 0.15 0.00 4.62085 -160.706 -4.62085 4.62085 0.88 0.000542244 0.000490738 0.0453376 0.0414106 34 3366 50 6.89349e+06 380534 618332. 2139.56 5.57 0.317232 0.27595 25762 151098 -1 2675 20 2097 2768 213441 47597 4.08816 4.08816 -158.057 -4.08816 0 0 787024. 2723.27 0.30 0.08 0.13 -1 -1 0.30 0.0252997 0.0223763 178 42 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 8.66 vpr 65.70 MiB 0.02 7488 -1 -1 1 0.03 -1 -1 34184 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67276 32 32 496 380 1 321 95 17 17 289 -1 unnamed_device 27.3 MiB 2.41 1764 15215 4236 8627 2352 65.7 MiB 0.16 0.00 5.15348 -175.341 -5.15348 5.15348 0.86 0.000623808 0.000569496 0.0469918 0.0428478 34 4947 37 6.89349e+06 436909 618332. 2139.56 3.19 0.20203 0.178647 25762 151098 -1 3930 21 3340 4681 433075 89564 5.07269 5.07269 -188.593 -5.07269 0 0 787024. 2723.27 0.30 0.13 0.13 -1 -1 0.30 0.0326402 0.0290695 220 91 62 32 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 6.40 vpr 64.84 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 33984 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66400 31 32 305 250 1 192 83 17 17 289 -1 unnamed_device 26.4 MiB 1.94 822 6743 1455 4759 529 64.8 MiB 0.06 0.00 3.853 -129.297 -3.853 3.853 0.86 0.00046556 0.000424287 0.0188397 0.0171491 34 2124 38 6.89349e+06 281877 618332. 2139.56 1.53 0.122597 0.1064 25762 151098 -1 1695 21 1403 1837 121272 28905 3.14351 3.14351 -127.25 -3.14351 0 0 787024. 2723.27 0.29 0.05 0.15 -1 -1 0.29 0.0198343 0.0174623 127 24 62 31 31 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 7.33 vpr 65.30 MiB 0.02 7420 -1 -1 1 0.03 -1 -1 34080 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66864 31 32 395 311 1 251 90 17 17 289 -1 unnamed_device 26.7 MiB 1.99 1294 17376 6419 8627 2330 65.3 MiB 0.16 0.00 5.00234 -161.335 -5.00234 5.00234 0.90 0.000536657 0.000487627 0.048752 0.044378 34 3454 30 6.89349e+06 380534 618332. 2139.56 2.23 0.157341 0.137959 25762 151098 -1 2537 22 1852 2286 198519 43793 4.09035 4.09035 -145.609 -4.09035 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0252649 0.0222241 168 59 62 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 7.44 vpr 65.58 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 33860 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67156 32 32 397 313 1 254 91 17 17 289 -1 unnamed_device 26.9 MiB 2.14 1356 15391 5368 7626 2397 65.6 MiB 0.14 0.00 4.39449 -148.549 -4.39449 4.39449 0.88 0.000552153 0.00050432 0.0432926 0.0394514 36 3343 28 6.89349e+06 380534 648988. 2245.63 2.29 0.174524 0.153243 26050 158493 -1 2717 19 1647 2572 179704 41804 3.4417 3.4417 -136.201 -3.4417 0 0 828058. 2865.25 0.30 0.07 0.14 -1 -1 0.30 0.0227058 0.0201029 172 54 62 32 62 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 6.71 vpr 65.47 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33684 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67040 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 26.7 MiB 1.50 953 14407 3720 10033 654 65.5 MiB 0.13 0.00 4.3344 -147.594 -4.3344 4.3344 0.87 0.000492975 0.000449675 0.0414501 0.0377811 34 3038 25 6.89349e+06 295971 618332. 2139.56 2.21 0.167279 0.147654 25762 151098 -1 2307 22 1927 3367 226780 53457 4.0709 4.0709 -157.004 -4.0709 0 0 787024. 2723.27 0.30 0.08 0.14 -1 -1 0.30 0.0244249 0.0215386 147 -1 128 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 6.88 vpr 65.80 MiB 0.02 7392 -1 -1 1 0.03 -1 -1 33796 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67376 32 32 424 343 1 281 92 17 17 289 -1 unnamed_device 27.0 MiB 1.82 1279 18101 5797 9598 2706 65.8 MiB 0.16 0.00 4.41459 -148.068 -4.41459 4.41459 0.92 0.000591532 0.000539033 0.0504333 0.0459773 34 3456 36 6.89349e+06 394628 618332. 2139.56 1.94 0.186088 0.16207 25762 151098 -1 2495 17 1742 2005 141326 32991 3.5498 3.5498 -134.758 -3.5498 0 0 787024. 2723.27 0.29 0.06 0.15 -1 -1 0.29 0.0226601 0.0200792 184 81 25 25 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 8.68 vpr 65.52 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33424 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67096 32 32 395 311 1 255 91 17 17 289 -1 unnamed_device 26.9 MiB 2.35 1221 17635 5673 8836 3126 65.5 MiB 0.14 0.00 4.28929 -146.442 -4.28929 4.28929 0.86 0.000535655 0.000489374 0.0482609 0.0440801 36 3258 26 6.89349e+06 380534 648988. 2245.63 3.33 0.189916 0.167763 26050 158493 -1 2353 25 2033 3153 228574 54200 3.7364 3.7364 -144.199 -3.7364 0 0 828058. 2865.25 0.31 0.09 0.14 -1 -1 0.31 0.0278875 0.0245227 169 58 64 32 60 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 6.91 vpr 65.66 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34140 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67240 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 27.0 MiB 2.07 1303 7027 1560 5110 357 65.7 MiB 0.08 0.00 3.72045 -130.455 -3.72045 3.72045 0.90 0.000569025 0.000514123 0.0218029 0.0198918 34 3432 32 6.89349e+06 380534 618332. 2139.56 1.80 0.150272 0.130458 25762 151098 -1 2779 19 2292 3111 220573 50545 3.34586 3.34586 -134.809 -3.34586 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0239405 0.0211407 175 61 63 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 6.63 vpr 65.55 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33732 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67128 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 26.7 MiB 1.88 1190 14518 4171 8562 1785 65.6 MiB 0.13 0.00 4.63815 -161.109 -4.63815 4.63815 0.88 0.000528013 0.000483692 0.0410251 0.0375197 34 2867 24 6.89349e+06 338252 618332. 2139.56 1.75 0.160527 0.140646 25762 151098 -1 2297 20 1953 2892 199364 44289 3.94566 3.94566 -153.36 -3.94566 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0232074 0.0204375 161 21 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 8.82 vpr 65.67 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 34084 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67244 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 27.0 MiB 1.62 1201 13351 3240 8446 1665 65.7 MiB 0.12 0.00 4.60525 -158.398 -4.60525 4.60525 0.94 0.000522576 0.000475599 0.0391952 0.0357238 36 3088 18 6.89349e+06 380534 648988. 2245.63 4.04 0.212877 0.184911 26050 158493 -1 2542 22 2132 2720 189470 43438 3.95366 3.95366 -155.201 -3.95366 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0256682 0.022498 177 50 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 6.17 vpr 65.76 MiB 0.02 7352 -1 -1 1 0.03 -1 -1 33944 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67336 31 32 449 367 1 300 94 17 17 289 -1 unnamed_device 27.1 MiB 1.41 1470 18625 5270 10765 2590 65.8 MiB 0.17 0.00 5.00359 -155.604 -5.00359 5.00359 0.86 0.00056419 0.000514874 0.0528325 0.0481729 34 3523 29 6.89349e+06 436909 618332. 2139.56 1.77 0.190407 0.167382 25762 151098 -1 2759 20 1882 2213 161482 36768 4.39925 4.39925 -149.753 -4.39925 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0258822 0.0228946 195 110 0 0 122 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 10.23 vpr 65.49 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 33820 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67060 32 32 432 346 1 287 91 17 17 289 -1 unnamed_device 27.0 MiB 3.01 1648 15391 4130 9133 2128 65.5 MiB 0.15 0.00 4.77885 -161.828 -4.77885 4.77885 0.87 0.000778753 0.000712333 0.0441756 0.0403558 36 3608 22 6.89349e+06 380534 648988. 2245.63 4.15 0.224256 0.194526 26050 158493 -1 2977 22 2584 3747 246133 55196 3.9931 3.9931 -155.328 -3.9931 0 0 828058. 2865.25 0.30 0.09 0.14 -1 -1 0.30 0.0272333 0.0238187 190 86 32 32 94 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 6.38 vpr 65.05 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 34140 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66612 32 32 312 255 1 198 85 17 17 289 -1 unnamed_device 26.7 MiB 1.87 1067 16081 5068 9178 1835 65.1 MiB 0.13 0.00 3.68745 -131.866 -3.68745 3.68745 0.88 0.000437262 0.000398261 0.0406007 0.0369906 34 2400 20 6.89349e+06 295971 618332. 2139.56 1.56 0.137655 0.120802 25762 151098 -1 2004 18 1181 1671 111213 25748 2.83886 2.83886 -122.699 -2.83886 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0185599 0.0164375 127 20 63 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 8.92 vpr 65.37 MiB 0.02 6992 -1 -1 1 0.03 -1 -1 33676 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66936 32 32 370 314 1 250 85 17 17 289 -1 unnamed_device 26.7 MiB 1.83 1122 7711 1541 6020 150 65.4 MiB 0.08 0.00 4.29439 -143.523 -4.29439 4.29439 0.89 0.000495491 0.00045093 0.0230977 0.0210725 38 2565 21 6.89349e+06 295971 678818. 2348.85 4.04 0.171538 0.148009 26626 170182 -1 2184 20 1590 1872 134734 29974 3.67705 3.67705 -137.39 -3.67705 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.0220898 0.0194193 154 91 0 0 94 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 7.47 vpr 65.55 MiB 0.02 7380 -1 -1 1 0.04 -1 -1 34148 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67128 32 32 469 351 1 298 94 17 17 289 -1 unnamed_device 26.9 MiB 2.15 1537 17347 5978 9037 2332 65.6 MiB 0.19 0.00 5.35709 -181.872 -5.35709 5.35709 0.92 0.000635451 0.000577423 0.0539734 0.0490937 38 3731 22 6.89349e+06 422815 678818. 2348.85 2.02 0.207523 0.183163 26626 170182 -1 3131 21 2573 3590 244368 53394 5.0127 5.0127 -182.62 -5.0127 0 0 902133. 3121.57 0.35 0.09 0.16 -1 -1 0.35 0.0303642 0.0268761 209 53 96 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 7.25 vpr 65.32 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 34072 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66888 32 32 368 284 1 225 87 17 17 289 -1 unnamed_device 26.6 MiB 2.04 1176 14295 4272 7910 2113 65.3 MiB 0.13 0.00 3.7808 -134.415 -3.7808 3.7808 0.86 0.000496535 0.000453165 0.039621 0.0362187 34 2997 45 6.89349e+06 324158 618332. 2139.56 2.27 0.188015 0.165484 25762 151098 -1 2396 24 2126 3102 261342 57832 3.48181 3.48181 -130.98 -3.48181 0 0 787024. 2723.27 0.29 0.09 0.13 -1 -1 0.29 0.0272918 0.0240759 156 31 92 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 5.75 vpr 64.65 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 33720 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66204 30 32 296 244 1 183 94 17 17 289 -1 unnamed_device 26.1 MiB 1.30 932 11809 3108 7963 738 64.7 MiB 0.10 0.00 4.33203 -134.423 -4.33203 4.33203 0.89 0.000450165 0.000410544 0.0265491 0.0242195 34 2124 20 6.89349e+06 451003 618332. 2139.56 1.50 0.116023 0.100886 25762 151098 -1 1763 20 1114 1836 110640 27034 3.45265 3.45265 -126.061 -3.45265 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0195471 0.0171294 129 29 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 7.40 vpr 65.64 MiB 0.02 7412 -1 -1 1 0.04 -1 -1 34428 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67212 32 32 531 413 1 356 99 17 17 289 -1 unnamed_device 27.5 MiB 2.05 1787 18111 5206 10704 2201 65.6 MiB 0.20 0.00 5.73258 -193.193 -5.73258 5.73258 0.87 0.000723322 0.000659749 0.056662 0.0515609 36 4099 45 6.89349e+06 493284 648988. 2245.63 2.21 0.214923 0.189808 26050 158493 -1 3443 22 2883 3553 247502 56234 5.31523 5.31523 -188.864 -5.31523 0 0 828058. 2865.25 0.32 0.09 0.14 -1 -1 0.32 0.0321995 0.0284862 239 109 32 32 128 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 6.48 vpr 65.57 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 33984 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67148 32 32 376 288 1 225 87 17 17 289 -1 unnamed_device 27.0 MiB 1.63 1091 13143 3864 7923 1356 65.6 MiB 0.12 0.00 4.41749 -154.465 -4.41749 4.41749 0.90 0.000561575 0.000515016 0.0387981 0.0354213 34 2892 26 6.89349e+06 324158 618332. 2139.56 1.78 0.156876 0.137186 25762 151098 -1 2392 21 2162 2968 238683 51533 3.84896 3.84896 -151.21 -3.84896 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0237585 0.0209586 159 31 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 4.42 vpr 64.75 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 33932 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66308 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 26.4 MiB 0.62 849 10087 2557 6780 750 64.8 MiB 0.09 0.00 3.73565 -131.011 -3.73565 3.73565 0.86 0.000420869 0.000383727 0.0210811 0.0192622 30 2269 22 6.89349e+06 465097 556674. 1926.21 0.99 0.0764557 0.0668473 25186 138497 -1 1801 19 1159 1980 121392 27199 2.88986 2.88986 -122.13 -2.88986 0 0 706193. 2443.58 0.27 0.05 0.12 -1 -1 0.27 0.0177943 0.0157007 123 -1 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 7.69 vpr 65.49 MiB 0.02 7200 -1 -1 1 0.04 -1 -1 34284 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67064 32 32 438 320 1 267 93 17 17 289 -1 unnamed_device 26.7 MiB 2.17 1275 12273 3390 7733 1150 65.5 MiB 0.12 0.00 5.39711 -179.414 -5.39711 5.39711 0.85 0.000621384 0.000563423 0.0342814 0.0312577 34 3822 27 6.89349e+06 408721 618332. 2139.56 2.47 0.156009 0.136805 25762 151098 -1 2912 22 2549 3843 311394 66607 5.1379 5.1379 -187.584 -5.1379 0 0 787024. 2723.27 0.32 0.10 0.15 -1 -1 0.32 0.03043 0.0268548 194 26 128 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 5.59 vpr 64.73 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 33976 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66284 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 26.2 MiB 0.95 787 10056 2193 7590 273 64.7 MiB 0.08 0.00 3.8468 -135.678 -3.8468 3.8468 0.89 0.00044288 0.000404594 0.0270475 0.0247103 34 2224 26 6.89349e+06 225501 618332. 2139.56 1.68 0.128068 0.112028 25762 151098 -1 1846 22 1541 2509 193294 43434 3.19371 3.19371 -132.436 -3.19371 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0201989 0.0177193 114 -1 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 6.23 vpr 65.03 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 34068 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 26.5 MiB 1.36 801 8131 1824 5536 771 65.0 MiB 0.07 0.00 3.71635 -120.03 -3.71635 3.71635 0.87 0.000439733 0.000401091 0.0221647 0.020293 36 2120 22 6.89349e+06 267783 648988. 2245.63 1.96 0.126475 0.11065 26050 158493 -1 1750 19 1241 1698 126802 29254 3.19991 3.19991 -118.784 -3.19991 0 0 828058. 2865.25 0.31 0.05 0.15 -1 -1 0.31 0.018671 0.0165106 121 29 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 6.22 vpr 65.62 MiB 0.02 7372 -1 -1 1 0.03 -1 -1 34020 -1 -1 31 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67192 29 32 393 319 1 253 92 17 17 289 -1 unnamed_device 26.9 MiB 1.66 1254 15203 3953 9019 2231 65.6 MiB 0.13 0.00 4.1318 -129.307 -4.1318 4.1318 0.87 0.00052466 0.000479688 0.0412644 0.0376302 34 2921 25 6.89349e+06 436909 618332. 2139.56 1.62 0.156524 0.136612 25762 151098 -1 2342 21 1662 2222 140241 33338 3.5421 3.5421 -128.502 -3.5421 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0237346 0.0209174 171 81 29 29 85 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 7.41 vpr 65.61 MiB 0.02 7288 -1 -1 1 0.03 -1 -1 33936 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67184 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 26.9 MiB 2.28 1381 16974 4929 9664 2381 65.6 MiB 0.14 0.00 5.29596 -177.687 -5.29596 5.29596 0.90 0.000543755 0.000495363 0.0492938 0.0449108 36 3381 23 6.89349e+06 366440 648988. 2245.63 2.00 0.17032 0.148957 26050 158493 -1 2889 22 2137 3133 238064 52828 4.75305 4.75305 -177.116 -4.75305 0 0 828058. 2865.25 0.32 0.09 0.15 -1 -1 0.32 0.0263807 0.0232839 178 53 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 7.01 vpr 65.77 MiB 0.02 7276 -1 -1 1 0.03 -1 -1 34384 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67344 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 27.1 MiB 1.90 1376 18180 6112 9250 2818 65.8 MiB 0.17 0.00 5.13064 -174.448 -5.13064 5.13064 0.87 0.000527136 0.00048232 0.0514762 0.0469933 34 3618 39 6.89349e+06 366440 618332. 2139.56 2.04 0.191133 0.167982 25762 151098 -1 2890 21 2383 3336 267896 58265 4.49945 4.49945 -170.954 -4.49945 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0257044 0.0226388 175 55 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 6.21 vpr 65.45 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 33964 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67024 32 32 345 287 1 218 85 17 17 289 -1 unnamed_device 26.7 MiB 1.43 1013 14221 3579 9597 1045 65.5 MiB 0.11 0.00 4.30029 -147.314 -4.30029 4.30029 0.87 0.000475422 0.000434462 0.0382137 0.0349332 34 2793 24 6.89349e+06 295971 618332. 2139.56 1.83 0.152458 0.133744 25762 151098 -1 2061 19 1391 1569 107953 25914 3.5608 3.5608 -135.674 -3.5608 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0210489 0.0185472 141 55 32 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 6.57 vpr 65.43 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 34100 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67004 31 32 353 302 1 231 85 17 17 289 -1 unnamed_device 26.6 MiB 1.91 1168 10501 2617 6825 1059 65.4 MiB 0.09 0.00 4.23729 -139.76 -4.23729 4.23729 0.90 0.000478339 0.000436088 0.0294832 0.0268961 34 2811 21 6.89349e+06 310065 618332. 2139.56 1.65 0.132537 0.115112 25762 151098 -1 2304 21 1494 1888 140373 31134 3.437 3.437 -131.651 -3.437 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0220983 0.0194146 146 82 0 0 89 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 7.16 vpr 64.99 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 33972 -1 -1 29 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 30 32 374 297 1 236 91 17 17 289 -1 unnamed_device 26.4 MiB 2.24 1158 18043 5948 9235 2860 65.0 MiB 0.15 0.00 3.9471 -130.183 -3.9471 3.9471 0.87 0.000510294 0.000465224 0.0467254 0.0426112 36 2742 19 6.89349e+06 408721 648988. 2245.63 1.86 0.166074 0.146227 26050 158493 -1 2236 22 1585 2245 148948 33787 3.17971 3.17971 -124.133 -3.17971 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0252471 0.0221223 164 52 60 30 57 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 5.32 vpr 64.71 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 34144 -1 -1 27 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66264 28 32 332 260 1 203 87 17 17 289 -1 unnamed_device 26.2 MiB 1.40 970 11031 2869 6600 1562 64.7 MiB 0.09 0.00 4.51585 -132.654 -4.51585 4.51585 0.86 0.000453392 0.000413594 0.0290603 0.0264598 30 2598 22 6.89349e+06 380534 556674. 1926.21 1.06 0.0931748 0.0821232 25186 138497 -1 2048 21 1376 2097 140015 34156 3.80466 3.80466 -129.854 -3.80466 0 0 706193. 2443.58 0.28 0.06 0.12 -1 -1 0.28 0.0219436 0.0193895 145 20 84 28 28 28 -fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 7.35 vpr 65.19 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 33812 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66756 30 32 325 273 1 208 83 17 17 289 -1 unnamed_device 26.7 MiB 2.26 1087 9083 2557 5800 726 65.2 MiB 0.08 0.00 4.36859 -139.508 -4.36859 4.36859 0.91 0.000454334 0.000413681 0.0251185 0.0228962 36 2461 21 6.89349e+06 295971 648988. 2245.63 2.04 0.135649 0.118885 26050 158493 -1 2210 18 1549 2144 153888 34396 3.93924 3.93924 -143.927 -3.93924 0 0 828058. 2865.25 0.33 0.06 0.15 -1 -1 0.33 0.0194844 0.0172715 136 58 30 30 60 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 6.80 vpr 65.56 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 33780 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67136 32 32 361 308 1 245 85 17 17 289 -1 unnamed_device 27.0 MiB 2.01 1180 8827 2269 5871 687 65.6 MiB 0.09 0.00 3.8008 -130.21 -3.8008 3.8008 0.90 0.000495353 0.00044626 0.0256148 0.0233301 34 2947 27 6.89349e+06 295971 618332. 2139.56 1.78 0.118498 0.103059 25762 151098 -1 2298 19 1784 2086 141746 33966 3.33536 3.33536 -124.603 -3.33536 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0207497 0.018277 150 88 0 0 91 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 6.06 vpr 65.14 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 33880 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66700 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 26.4 MiB 0.89 1032 15180 4497 8229 2454 65.1 MiB 0.13 0.00 4.35445 -144.691 -4.35445 4.35445 0.93 0.000495064 0.000449568 0.0345629 0.0314341 28 3116 24 6.89349e+06 521472 531479. 1839.03 2.08 0.115567 0.102329 24610 126494 -1 2417 23 1852 2944 264887 56478 4.146 4.146 -146.482 -4.146 0 0 648988. 2245.63 0.27 0.09 0.12 -1 -1 0.27 0.0244215 0.0214476 151 -1 124 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 6.34 vpr 65.23 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 34188 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66796 32 32 407 319 1 257 90 17 17 289 -1 unnamed_device 26.6 MiB 1.49 1263 12351 3110 8140 1101 65.2 MiB 0.12 0.00 4.78058 -162.367 -4.78058 4.78058 0.86 0.000551815 0.000506684 0.0356609 0.0325457 34 3370 34 6.89349e+06 366440 618332. 2139.56 1.86 0.174567 0.153098 25762 151098 -1 2699 20 2011 2692 190290 44248 4.11729 4.11729 -159.216 -4.11729 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0242474 0.0213787 173 57 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 7.97 vpr 65.55 MiB 0.02 7412 -1 -1 1 0.03 -1 -1 34060 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67128 32 32 407 319 1 256 90 17 17 289 -1 unnamed_device 26.8 MiB 1.98 1405 10743 3107 6650 986 65.6 MiB 0.11 0.00 4.9601 -169.723 -4.9601 4.9601 0.91 0.000564512 0.000514997 0.0322932 0.0294416 36 3352 21 6.89349e+06 366440 648988. 2245.63 2.83 0.174736 0.154222 26050 158493 -1 2841 24 2714 3829 281475 60219 4.60149 4.60149 -175.01 -4.60149 0 0 828058. 2865.25 0.33 0.10 0.15 -1 -1 0.33 0.0297181 0.0262051 171 62 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 7.91 vpr 65.78 MiB 0.02 7412 -1 -1 1 0.03 -1 -1 33812 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67360 32 32 399 315 1 257 91 17 17 289 -1 unnamed_device 27.1 MiB 2.15 1306 10087 2279 7315 493 65.8 MiB 0.11 0.00 4.3224 -145.723 -4.3224 4.3224 0.90 0.000546982 0.000498375 0.0291611 0.0265829 34 4019 38 6.89349e+06 380534 618332. 2139.56 2.67 0.168976 0.147223 25762 151098 -1 2959 22 2024 2984 275031 58181 3.8787 3.8787 -143.052 -3.8787 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0259745 0.0228581 172 62 60 30 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 6.75 vpr 64.87 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 33748 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66428 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 26.4 MiB 2.00 814 9181 2458 5686 1037 64.9 MiB 0.08 0.00 3.809 -121.257 -3.809 3.809 0.93 0.000443559 0.000403935 0.0249875 0.022784 34 2414 23 6.89349e+06 267783 618332. 2139.56 1.68 0.122621 0.106838 25762 151098 -1 1981 18 1325 1862 137906 31352 3.32811 3.32811 -124.606 -3.32811 0 0 787024. 2723.27 0.32 0.05 0.15 -1 -1 0.32 0.0181387 0.0160482 122 29 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 7.52 vpr 65.55 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 34020 -1 -1 26 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67124 30 32 383 303 1 241 88 17 17 289 -1 unnamed_device 26.9 MiB 2.63 1287 12568 3293 7724 1551 65.6 MiB 0.12 0.00 5.05854 -160.711 -5.05854 5.05854 0.86 0.000517586 0.000472769 0.0360875 0.0329649 34 3215 23 6.89349e+06 366440 618332. 2139.56 1.94 0.162851 0.142904 25762 151098 -1 2669 22 2168 2985 251473 53133 4.62785 4.62785 -167.287 -4.62785 0 0 787024. 2723.27 0.30 0.08 0.13 -1 -1 0.30 0.0256588 0.0226682 165 58 60 30 60 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 6.60 vpr 66.05 MiB 0.02 7412 -1 -1 1 0.03 -1 -1 34312 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67640 32 32 469 381 1 316 94 17 17 289 -1 unnamed_device 27.3 MiB 1.32 1479 11383 3062 7492 829 66.1 MiB 0.11 0.00 4.57601 -155.587 -4.57601 4.57601 0.90 0.000587296 0.000533316 0.0341483 0.0310368 36 3485 21 6.89349e+06 422815 648988. 2245.63 2.21 0.16102 0.140075 26050 158493 -1 2832 22 2013 2060 161581 36432 4.3846 4.3846 -161.201 -4.3846 0 0 828058. 2865.25 0.31 0.07 0.15 -1 -1 0.31 0.0276778 0.0242739 204 106 0 0 128 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 9.15 vpr 65.66 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 34060 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67240 31 32 425 341 1 280 92 17 17 289 -1 unnamed_device 26.9 MiB 1.89 1301 16445 5093 9336 2016 65.7 MiB 0.16 0.00 5.17904 -171.173 -5.17904 5.17904 0.92 0.000581529 0.000531796 0.0484602 0.0441659 36 3067 22 6.89349e+06 408721 648988. 2245.63 4.08 0.222521 0.19372 26050 158493 -1 2596 21 2101 2656 176406 39956 4.55855 4.55855 -167.212 -4.55855 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0266357 0.0235455 186 79 31 31 93 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 8.09 vpr 65.77 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 34008 -1 -1 28 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67352 30 32 404 328 1 261 90 17 17 289 -1 unnamed_device 27.1 MiB 2.44 1252 12351 3368 8179 804 65.8 MiB 0.12 0.00 4.25135 -136.296 -4.25135 4.25135 0.93 0.000545339 0.000496821 0.0361907 0.0328687 34 3685 43 6.89349e+06 394628 618332. 2139.56 2.50 0.167625 0.147296 25762 151098 -1 2594 20 2113 2985 216177 51036 3.6894 3.6894 -134.45 -3.6894 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0254369 0.0224709 175 83 26 26 90 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 7.30 vpr 65.68 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 33952 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67260 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 27.0 MiB 2.06 1349 14160 4180 8412 1568 65.7 MiB 0.13 0.00 5.11687 -171.214 -5.11687 5.11687 0.91 0.000546699 0.000495954 0.0410605 0.0373364 34 3581 27 6.89349e+06 366440 618332. 2139.56 2.11 0.151608 0.133424 25762 151098 -1 2791 20 2316 3288 250957 53444 4.38015 4.38015 -167.903 -4.38015 0 0 787024. 2723.27 0.31 0.08 0.14 -1 -1 0.31 0.0244921 0.0216307 177 58 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 7.14 vpr 65.71 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33888 -1 -1 30 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67292 29 32 387 316 1 251 91 17 17 289 -1 unnamed_device 27.0 MiB 2.38 1337 17431 5595 9274 2562 65.7 MiB 0.15 0.00 4.49555 -136.793 -4.49555 4.49555 0.90 0.000523004 0.000475959 0.0472617 0.0431298 34 3073 24 6.89349e+06 422815 618332. 2139.56 1.67 0.159553 0.139128 25762 151098 -1 2550 21 1725 2466 178342 39501 3.5011 3.5011 -124.119 -3.5011 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0239218 0.0210335 170 81 26 26 85 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 5.25 vpr 64.62 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 33700 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66168 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 26.1 MiB 0.64 851 10744 3065 7267 412 64.6 MiB 0.09 0.00 3.7888 -133.854 -3.7888 3.7888 0.92 0.000458019 0.00041877 0.0297314 0.0271213 34 2305 21 6.89349e+06 225501 618332. 2139.56 1.59 0.118714 0.103588 25762 151098 -1 2030 19 1345 2174 159532 36663 3.14346 3.14346 -132.265 -3.14346 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0182026 0.0160892 114 -1 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 7.57 vpr 65.71 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 33616 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67284 32 32 407 319 1 259 91 17 17 289 -1 unnamed_device 27.0 MiB 1.84 1266 16411 5685 8276 2450 65.7 MiB 0.16 0.00 5.17997 -174.972 -5.17997 5.17997 0.90 0.000575633 0.000518787 0.0486017 0.0442576 34 3964 24 6.89349e+06 380534 618332. 2139.56 2.54 0.176042 0.153853 25762 151098 -1 2919 22 2505 3449 295666 64678 4.51349 4.51349 -172.423 -4.51349 0 0 787024. 2723.27 0.30 0.10 0.15 -1 -1 0.30 0.0265195 0.0234295 174 62 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 8.28 vpr 65.72 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 33936 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67300 32 32 407 319 1 263 89 17 17 289 -1 unnamed_device 27.0 MiB 2.96 1294 9791 2343 6863 585 65.7 MiB 0.09 0.00 5.01095 -168.663 -5.01095 5.01095 0.85 0.000489565 0.000446171 0.0270254 0.0246654 34 3734 27 6.89349e+06 352346 618332. 2139.56 2.29 0.151603 0.131775 25762 151098 -1 3073 21 2521 3502 329891 67655 4.83919 4.83919 -182.492 -4.83919 0 0 787024. 2723.27 0.30 0.10 0.15 -1 -1 0.30 0.0271235 0.0237734 176 62 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 6.43 vpr 64.91 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 33992 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66464 32 32 315 267 1 204 83 17 17 289 -1 unnamed_device 26.5 MiB 1.84 971 13043 4021 6975 2047 64.9 MiB 0.10 0.00 3.51612 -116.281 -3.51612 3.51612 0.91 0.000423432 0.000390166 0.0333942 0.0303787 34 2366 21 6.89349e+06 267783 618332. 2139.56 1.59 0.126699 0.110164 25762 151098 -1 2000 20 1104 1335 121547 26462 2.8625 2.8625 -110.607 -2.8625 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0191144 0.0168311 128 47 32 32 54 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 4.88 vpr 64.70 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 33808 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66252 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 26.2 MiB 0.91 734 11604 2641 7381 1582 64.7 MiB 0.09 0.00 3.8218 -128.161 -3.8218 3.8218 0.90 0.00041088 0.000374692 0.0300425 0.0274781 32 2249 20 6.89349e+06 239595 586450. 2029.24 1.00 0.0828335 0.0730345 25474 144626 -1 1818 21 1430 2242 171277 39732 3.12151 3.12151 -125.297 -3.12151 0 0 744469. 2576.02 0.29 0.06 0.14 -1 -1 0.29 0.0190563 0.0167158 112 -1 93 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 6.58 vpr 65.26 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33932 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 32 32 381 303 1 240 89 17 17 289 -1 unnamed_device 26.6 MiB 1.70 1234 14147 4178 8444 1525 65.3 MiB 0.13 0.00 4.31849 -141.833 -4.31849 4.31849 0.91 0.000561054 0.000513708 0.0423258 0.0386282 34 3001 25 6.89349e+06 352346 618332. 2139.56 1.75 0.160958 0.14083 25762 151098 -1 2423 23 1713 2161 161461 37745 3.7616 3.7616 -139.443 -3.7616 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0265058 0.0233655 158 56 60 32 58 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 6.63 vpr 65.68 MiB 0.02 7456 -1 -1 1 0.03 -1 -1 33676 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67256 32 32 406 330 1 261 90 17 17 289 -1 unnamed_device 27.0 MiB 1.69 1314 10341 2747 6842 752 65.7 MiB 0.11 0.00 5.10864 -160.907 -5.10864 5.10864 0.85 0.000523595 0.000479136 0.030374 0.0276962 34 3382 28 6.89349e+06 366440 618332. 2139.56 1.96 0.158418 0.138611 25762 151098 -1 2663 21 1947 2359 175874 40231 4.70585 4.70585 -165.127 -4.70585 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0260071 0.0230221 170 81 28 28 88 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 6.21 vpr 65.45 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 34000 -1 -1 41 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67020 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 26.8 MiB 0.96 1292 15419 3797 10101 1521 65.4 MiB 0.14 0.00 4.85078 -164.688 -4.85078 4.85078 0.93 0.000592634 0.000541099 0.0390735 0.0354945 34 3291 24 6.89349e+06 577847 618332. 2139.56 2.08 0.171456 0.150063 25762 151098 -1 2778 22 2120 3540 253505 56982 4.41009 4.41009 -164.794 -4.41009 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0263406 0.0229399 183 -1 156 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 6.78 vpr 65.28 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 33796 -1 -1 27 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 30 32 371 295 1 235 89 17 17 289 -1 unnamed_device 26.7 MiB 1.94 1124 9395 2323 6078 994 65.3 MiB 0.09 0.00 3.8961 -125.22 -3.8961 3.8961 0.92 0.000555707 0.000505418 0.025812 0.0234819 34 2687 35 6.89349e+06 380534 618332. 2139.56 1.76 0.146315 0.127129 25762 151098 -1 2215 22 1871 2641 178277 40722 3.23245 3.23245 -123.072 -3.23245 0 0 787024. 2723.27 0.32 0.07 0.14 -1 -1 0.32 0.0241409 0.0212665 160 47 60 30 56 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 6.01 vpr 64.80 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 34216 -1 -1 22 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66352 27 32 269 226 1 168 81 17 17 289 -1 unnamed_device 26.4 MiB 1.43 915 13031 5095 6351 1585 64.8 MiB 0.10 0.00 4.34539 -126.288 -4.34539 4.34539 0.92 0.000408142 0.000372838 0.0320455 0.0292798 34 2091 19 6.89349e+06 310065 618332. 2139.56 1.55 0.11573 0.10112 25762 151098 -1 1747 20 1241 1802 139980 30557 3.5341 3.5341 -120.468 -3.5341 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0176556 0.015488 112 26 54 27 27 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 7.48 vpr 66.23 MiB 0.02 7412 -1 -1 1 0.04 -1 -1 34196 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67824 32 32 493 378 1 322 96 17 17 289 -1 unnamed_device 27.5 MiB 1.97 1748 16302 4126 10044 2132 66.2 MiB 0.19 0.00 5.09354 -170.611 -5.09354 5.09354 0.89 0.000656156 0.000599879 0.0510587 0.0465545 34 4285 25 6.89349e+06 451003 618332. 2139.56 2.38 0.208365 0.183972 25762 151098 -1 3468 22 2649 3800 298982 65983 4.56475 4.56475 -168.829 -4.56475 0 0 787024. 2723.27 0.30 0.10 0.14 -1 -1 0.30 0.0299272 0.0265123 219 85 62 31 95 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 8.00 vpr 65.61 MiB 0.02 7460 -1 -1 1 0.03 -1 -1 34140 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67188 31 32 455 371 1 306 94 17 17 289 -1 unnamed_device 27.0 MiB 2.53 1467 12661 2948 8528 1185 65.6 MiB 0.13 0.00 5.14784 -166.315 -5.14784 5.14784 0.91 0.000638322 0.000577836 0.0393864 0.0359459 36 3334 29 6.89349e+06 436909 648988. 2245.63 2.31 0.178617 0.156239 26050 158493 -1 2867 20 2116 2465 175785 40132 4.44755 4.44755 -164.311 -4.44755 0 0 828058. 2865.25 0.31 0.07 0.16 -1 -1 0.31 0.0263859 0.023288 201 105 0 0 124 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 7.25 vpr 65.16 MiB 0.02 7300 -1 -1 1 0.03 -1 -1 33604 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66720 32 32 355 304 1 245 86 17 17 289 -1 unnamed_device 26.3 MiB 2.25 1133 9914 2313 7132 469 65.2 MiB 0.09 0.00 4.28535 -139.234 -4.28535 4.28535 0.92 0.000511286 0.000462328 0.0273151 0.0247733 34 3076 43 6.89349e+06 310065 618332. 2139.56 1.96 0.150726 0.130715 25762 151098 -1 2412 19 1636 1891 160594 35200 3.481 3.481 -133.609 -3.481 0 0 787024. 2723.27 0.32 0.06 0.14 -1 -1 0.32 0.0201578 0.0177399 150 86 0 0 89 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 6.79 vpr 65.46 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 34016 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67028 32 32 364 282 1 225 87 17 17 289 -1 unnamed_device 26.6 MiB 2.04 1114 12951 3612 7720 1619 65.5 MiB 0.12 0.00 4.53785 -150.754 -4.53785 4.53785 0.92 0.000507447 0.000467033 0.0382251 0.0348559 34 2799 24 6.89349e+06 324158 618332. 2139.56 1.65 0.149349 0.130217 25762 151098 -1 2218 20 1438 2033 143461 35360 3.7092 3.7092 -142.167 -3.7092 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0230551 0.0202319 151 31 90 30 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 7.08 vpr 65.68 MiB 0.02 7536 -1 -1 1 0.03 -1 -1 34172 -1 -1 30 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67256 31 32 443 336 1 280 93 17 17 289 -1 unnamed_device 26.9 MiB 1.87 1475 19413 5609 11709 2095 65.7 MiB 0.20 0.00 4.64537 -154.979 -4.64537 4.64537 0.94 0.000630453 0.000564426 0.0591485 0.0536332 34 3553 32 6.89349e+06 422815 618332. 2139.56 1.95 0.205669 0.18039 25762 151098 -1 2807 23 2386 3265 238394 52982 4.17126 4.17126 -155.088 -4.17126 0 0 787024. 2723.27 0.32 0.09 0.15 -1 -1 0.32 0.0301466 0.0266315 193 50 87 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 7.27 vpr 65.12 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 34184 -1 -1 28 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 30 32 373 297 1 235 90 17 17 289 -1 unnamed_device 26.5 MiB 2.19 1223 16773 5429 8542 2802 65.1 MiB 0.14 0.00 4.28025 -135.791 -4.28025 4.28025 0.90 0.000527002 0.000479559 0.0455534 0.0414657 36 2894 24 6.89349e+06 394628 648988. 2245.63 1.96 0.164731 0.144376 26050 158493 -1 2401 18 1433 2202 145554 32451 3.6091 3.6091 -131.979 -3.6091 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0218962 0.0193885 162 50 58 30 58 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 7.20 vpr 65.70 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34120 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67276 32 32 407 319 1 260 92 17 17 289 -1 unnamed_device 27.0 MiB 1.71 1373 17066 5393 8866 2807 65.7 MiB 0.16 0.00 5.03124 -168.563 -5.03124 5.03124 0.91 0.000526456 0.00047693 0.0477618 0.043462 34 3693 35 6.89349e+06 394628 618332. 2139.56 2.36 0.190389 0.167176 25762 151098 -1 2740 22 2222 3059 251636 53797 4.29915 4.29915 -158.747 -4.29915 0 0 787024. 2723.27 0.31 0.09 0.14 -1 -1 0.31 0.0258877 0.0227927 173 61 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 7.13 vpr 65.71 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 33988 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67284 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 27.0 MiB 2.23 1418 13147 3928 7969 1250 65.7 MiB 0.13 0.00 3.78872 -134.171 -3.78872 3.78872 0.91 0.000526058 0.000481813 0.0383206 0.0348546 34 3370 23 6.89349e+06 380534 618332. 2139.56 1.78 0.158993 0.138479 25762 151098 -1 2925 21 1983 2746 211273 47183 3.17981 3.17981 -134.108 -3.17981 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0252843 0.0222396 175 61 63 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 6.21 vpr 64.60 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 33660 -1 -1 21 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66148 29 32 287 238 1 178 82 17 17 289 -1 unnamed_device 26.2 MiB 1.56 802 14322 5252 6511 2559 64.6 MiB 0.11 0.00 3.809 -119.785 -3.809 3.809 0.95 0.00043138 0.0003935 0.0365181 0.0333043 34 2019 23 6.89349e+06 295971 618332. 2139.56 1.56 0.127606 0.111341 25762 151098 -1 1751 19 1425 1879 137804 30801 3.26411 3.26411 -118.076 -3.26411 0 0 787024. 2723.27 0.32 0.05 0.15 -1 -1 0.32 0.0183792 0.0162306 118 28 58 29 29 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 6.19 vpr 65.15 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 34064 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66712 32 32 334 290 1 223 84 17 17 289 -1 unnamed_device 26.4 MiB 1.34 1059 7038 1561 5080 397 65.1 MiB 0.07 0.00 4.31213 -129.707 -4.31213 4.31213 0.92 0.000495745 0.000448858 0.0195793 0.0178198 34 2689 32 6.89349e+06 281877 618332. 2139.56 1.86 0.127445 0.110278 25762 151098 -1 2148 17 1344 1631 108759 26640 3.7788 3.7788 -131.06 -3.7788 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0179163 0.0158327 136 79 0 0 82 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 8.92 vpr 65.04 MiB 0.02 7340 -1 -1 1 0.03 -1 -1 33848 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66600 31 32 365 281 1 225 87 17 17 289 -1 unnamed_device 26.2 MiB 1.62 1144 15255 6301 7544 1410 65.0 MiB 0.13 0.00 4.60015 -151.135 -4.60015 4.60015 0.91 0.000541427 0.000491994 0.0435239 0.0396741 36 2816 23 6.89349e+06 338252 648988. 2245.63 4.14 0.205992 0.178747 26050 158493 -1 2145 19 1764 2558 160669 37103 3.92066 3.92066 -143.869 -3.92066 0 0 828058. 2865.25 0.33 0.07 0.16 -1 -1 0.33 0.022355 0.0197747 154 29 93 31 31 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 5.92 vpr 64.63 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 33688 -1 -1 21 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66180 29 32 297 254 1 193 82 17 17 289 -1 unnamed_device 26.2 MiB 1.40 955 13610 4945 6467 2198 64.6 MiB 0.10 0.00 3.4839 -106.878 -3.4839 3.4839 0.92 0.000382789 0.000345068 0.0338195 0.030742 34 2297 24 6.89349e+06 295971 618332. 2139.56 1.52 0.121656 0.105475 25762 151098 -1 1931 18 1315 1515 115667 26473 3.1574 3.1574 -109.197 -3.1574 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0171911 0.0151144 123 48 29 29 52 26 -fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 6.74 vpr 65.01 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 33700 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66568 32 32 314 256 1 194 82 17 17 289 -1 unnamed_device 26.6 MiB 1.95 1000 12186 3922 6390 1874 65.0 MiB 0.10 0.00 3.839 -135.657 -3.839 3.839 0.91 0.000479161 0.000436227 0.0328976 0.0300233 34 2613 22 6.89349e+06 253689 618332. 2139.56 1.79 0.140121 0.122595 25762 151098 -1 2132 22 1891 2640 232575 48135 3.10751 3.10751 -128.9 -3.10751 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0219621 0.0193475 127 31 64 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 7.32 vpr 65.34 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 33888 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66912 31 32 387 307 1 242 90 17 17 289 -1 unnamed_device 26.7 MiB 1.98 1201 16773 5048 9300 2425 65.3 MiB 0.15 0.00 4.20938 -143.511 -4.20938 4.20938 0.91 0.000546401 0.000497566 0.0480615 0.0437961 36 2859 23 6.89349e+06 380534 648988. 2245.63 2.16 0.170612 0.149238 26050 158493 -1 2419 22 2190 3082 242995 52192 3.64895 3.64895 -144.415 -3.64895 0 0 828058. 2865.25 0.34 0.09 0.16 -1 -1 0.34 0.0258891 0.0228426 164 60 58 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 6.24 vpr 64.75 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 33684 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 31 32 308 262 1 196 84 17 17 289 -1 unnamed_device 26.3 MiB 1.71 877 7953 1966 5579 408 64.7 MiB 0.07 0.00 3.31212 -108.619 -3.31212 3.31212 0.91 0.000450346 0.000411286 0.0215873 0.0197256 34 2321 22 6.89349e+06 295971 618332. 2139.56 1.53 0.112907 0.0979968 25762 151098 -1 1901 18 1276 1570 111572 25912 3.01256 3.01256 -113.321 -3.01256 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0179322 0.0157988 125 49 31 31 53 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 7.17 vpr 65.16 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 34036 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 32 32 383 307 1 242 89 17 17 289 -1 unnamed_device 26.6 MiB 2.09 1287 17711 6388 9306 2017 65.2 MiB 0.17 0.00 4.20729 -140.905 -4.20729 4.20729 0.90 0.00049716 0.000452844 0.0499208 0.0453513 34 3044 21 6.89349e+06 352346 618332. 2139.56 1.94 0.164147 0.143604 25762 151098 -1 2560 20 1544 2234 213895 43178 3.5641 3.5641 -135.638 -3.5641 0 0 787024. 2723.27 0.32 0.08 0.14 -1 -1 0.32 0.0249952 0.0221029 162 56 52 26 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 7.82 vpr 65.77 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 34104 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67352 31 32 422 339 1 277 94 17 17 289 -1 unnamed_device 27.0 MiB 2.10 1441 16921 4862 9627 2432 65.8 MiB 0.16 0.00 5.00842 -163.951 -5.00842 5.00842 0.91 0.000557698 0.0005081 0.0479133 0.0435307 36 3492 23 6.89349e+06 436909 648988. 2245.63 2.53 0.175952 0.153906 26050 158493 -1 2891 24 2593 3646 269905 59430 4.16489 4.16489 -156.414 -4.16489 0 0 828058. 2865.25 0.33 0.10 0.14 -1 -1 0.33 0.0292194 0.0257089 185 88 31 31 92 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 9.31 vpr 65.25 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 34048 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66816 32 32 333 279 1 216 85 17 17 289 -1 unnamed_device 26.5 MiB 2.88 1150 11245 3095 6987 1163 65.2 MiB 0.10 0.00 3.53115 -123.245 -3.53115 3.53115 0.87 0.000428136 0.000392674 0.0298037 0.0272074 34 2943 19 6.89349e+06 295971 618332. 2139.56 3.51 0.193321 0.167182 25762 151098 -1 2393 17 1450 1984 143036 31845 3.10156 3.10156 -121.146 -3.10156 0 0 787024. 2723.27 0.29 0.05 0.15 -1 -1 0.29 0.0171913 0.0151293 137 54 32 32 60 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 6.37 vpr 64.92 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33468 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66476 32 32 339 283 1 218 84 17 17 289 -1 unnamed_device 26.4 MiB 1.47 1121 13443 3684 8167 1592 64.9 MiB 0.11 0.00 3.817 -131.483 -3.817 3.817 0.90 0.000521921 0.000473977 0.035742 0.0324892 34 2949 27 6.89349e+06 281877 618332. 2139.56 1.85 0.143646 0.124868 25762 151098 -1 2392 21 1570 1870 159181 34078 3.24886 3.24886 -128.122 -3.24886 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0219865 0.0193604 139 60 32 32 62 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 9.62 vpr 65.50 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 34360 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67068 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 26.8 MiB 1.71 1272 13147 3375 7731 2041 65.5 MiB 0.12 0.00 4.61515 -160.202 -4.61515 4.61515 0.90 0.000544551 0.000496134 0.0374713 0.0341929 36 3093 23 6.89349e+06 380534 648988. 2245.63 4.82 0.245694 0.212705 26050 158493 -1 2636 20 2063 2521 193357 41596 3.88486 3.88486 -153.502 -3.88486 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0240611 0.0212179 178 49 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 5.90 vpr 65.62 MiB 0.02 7428 -1 -1 1 0.03 -1 -1 34180 -1 -1 26 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67192 29 32 367 293 1 231 87 17 17 289 -1 unnamed_device 27.0 MiB 1.87 1161 15639 4794 8641 2204 65.6 MiB 0.14 0.00 3.67945 -117.378 -3.67945 3.67945 0.91 0.000545871 0.000500988 0.0443632 0.0404931 30 2520 23 6.89349e+06 366440 556674. 1926.21 1.01 0.110899 0.0978778 25186 138497 -1 1989 19 1450 1920 111005 25802 2.84786 2.84786 -111.673 -2.84786 0 0 706193. 2443.58 0.28 0.05 0.12 -1 -1 0.28 0.0216525 0.0191564 157 54 56 29 58 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 8.51 vpr 65.93 MiB 0.02 7372 -1 -1 1 0.04 -1 -1 34196 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67516 32 32 469 381 1 315 93 17 17 289 -1 unnamed_device 27.3 MiB 1.65 1517 16893 4857 9388 2648 65.9 MiB 0.16 0.00 4.97404 -168.093 -4.97404 4.97404 0.90 0.00061903 0.000560663 0.0521018 0.047359 36 3623 47 6.89349e+06 408721 648988. 2245.63 3.69 0.287486 0.248943 26050 158493 -1 3156 22 2673 3071 248178 52666 4.42455 4.42455 -165.65 -4.42455 0 0 828058. 2865.25 0.31 0.09 0.16 -1 -1 0.31 0.0281699 0.0247672 203 117 0 0 128 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 4.58 vpr 64.79 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 33660 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 26.3 MiB 0.70 803 5149 1186 3599 364 64.8 MiB 0.05 0.00 2.99217 -104.791 -2.99217 2.99217 0.91 0.000403123 0.000368008 0.0139609 0.0127793 30 2012 19 6.89349e+06 225501 556674. 1926.21 0.97 0.0640912 0.0559133 25186 138497 -1 1603 22 963 1634 103346 23619 2.56431 2.56431 -108.433 -2.56431 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.0188323 0.0165298 104 -1 85 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 9.18 vpr 65.66 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 33812 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67240 32 32 418 338 1 273 92 17 17 289 -1 unnamed_device 26.9 MiB 1.87 1396 18101 5815 9868 2418 65.7 MiB 0.17 0.00 5.41163 -177.078 -5.41163 5.41163 0.88 0.000576328 0.000528775 0.0520395 0.047519 34 3746 48 6.89349e+06 394628 618332. 2139.56 4.23 0.304513 0.265972 25762 151098 -1 2832 22 2354 3065 225336 49285 4.79744 4.79744 -173.538 -4.79744 0 0 787024. 2723.27 0.30 0.08 0.14 -1 -1 0.30 0.0274093 0.0241565 179 89 28 28 92 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 9.99 vpr 65.37 MiB 0.02 7220 -1 -1 1 0.03 -1 -1 33848 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66940 32 32 376 318 1 259 88 17 17 289 -1 unnamed_device 26.7 MiB 2.61 1193 17248 5142 9796 2310 65.4 MiB 0.15 0.00 4.89074 -162.672 -4.89074 4.89074 0.89 0.000516047 0.000471754 0.047777 0.0435381 36 3213 26 6.89349e+06 338252 648988. 2245.63 4.27 0.209305 0.181822 26050 158493 -1 2595 22 2546 3207 264163 56603 4.16159 4.16159 -158.769 -4.16159 0 0 828058. 2865.25 0.31 0.09 0.15 -1 -1 0.31 0.0243154 0.0213789 161 93 0 0 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 6.75 vpr 65.56 MiB 0.02 7396 -1 -1 1 0.03 -1 -1 33812 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67132 32 32 401 316 1 253 89 17 17 289 -1 unnamed_device 26.8 MiB 2.03 1163 10187 2742 6187 1258 65.6 MiB 0.10 0.00 3.75965 -128.904 -3.75965 3.75965 0.89 0.000545774 0.00049777 0.0302772 0.0276414 34 3025 27 6.89349e+06 352346 618332. 2139.56 1.68 0.150219 0.130638 25762 151098 -1 2491 19 1597 2189 181128 38779 3.2337 3.2337 -127.372 -3.2337 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0237763 0.020958 170 59 61 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 8.09 vpr 65.99 MiB 0.02 7588 -1 -1 1 0.04 -1 -1 34184 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67572 32 32 500 382 1 323 97 17 17 289 -1 unnamed_device 27.2 MiB 1.96 1578 21409 7235 11132 3042 66.0 MiB 0.22 0.00 5.18464 -176.869 -5.18464 5.18464 0.90 0.000643123 0.000576417 0.0668427 0.0607187 36 3817 25 6.89349e+06 465097 648988. 2245.63 2.87 0.214787 0.188318 26050 158493 -1 3239 23 2994 3556 290956 61778 4.88125 4.88125 -179.725 -4.88125 0 0 828058. 2865.25 0.31 0.10 0.16 -1 -1 0.31 0.0316819 0.0278424 224 81 64 32 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 5.61 vpr 64.63 MiB 0.02 6860 -1 -1 1 0.03 -1 -1 33716 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66180 30 32 246 229 1 160 78 17 17 289 -1 unnamed_device 26.1 MiB 1.28 774 12860 4018 7384 1458 64.6 MiB 0.08 0.00 3.08706 -94.2237 -3.08706 3.08706 0.90 0.000365635 0.000333716 0.030067 0.0274466 34 1779 20 6.89349e+06 225501 618332. 2139.56 1.39 0.104979 0.0913278 25762 151098 -1 1561 15 687 705 51265 12169 2.43936 2.43936 -93.3328 -2.43936 0 0 787024. 2723.27 0.30 0.03 0.15 -1 -1 0.30 0.0133503 0.0118394 93 51 0 0 53 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 5.96 vpr 64.89 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 34064 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66444 30 32 296 244 1 181 83 17 17 289 -1 unnamed_device 26.4 MiB 1.40 936 13763 4663 7110 1990 64.9 MiB 0.11 0.00 4.23979 -138.497 -4.23979 4.23979 0.89 0.000430036 0.000391815 0.0353108 0.0323022 34 2090 22 6.89349e+06 295971 618332. 2139.56 1.56 0.126046 0.110038 25762 151098 -1 1767 23 1644 2455 174843 39582 3.62805 3.62805 -135.745 -3.62805 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0210948 0.0185153 124 29 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 7.96 vpr 65.03 MiB 0.02 6808 -1 -1 1 0.03 -1 -1 33700 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 32 32 314 256 1 199 82 17 17 289 -1 unnamed_device 26.6 MiB 2.53 1009 8448 2021 6048 379 65.0 MiB 0.08 0.00 4.33609 -148.866 -4.33609 4.33609 0.90 0.000452667 0.00041324 0.0235674 0.0215275 36 2726 23 6.89349e+06 253689 648988. 2245.63 2.41 0.127807 0.111252 26050 158493 -1 2244 23 1750 3033 226759 49740 3.981 3.981 -153.41 -3.981 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.0223715 0.0196189 129 31 64 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 5.88 vpr 64.66 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 33660 -1 -1 24 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66216 25 32 251 214 1 162 81 17 17 289 -1 unnamed_device 26.1 MiB 1.46 636 10231 2621 6138 1472 64.7 MiB 0.08 0.00 3.787 -96.2626 -3.787 3.787 0.90 0.000379909 0.000347874 0.0236614 0.0216467 34 1789 21 6.89349e+06 338252 618332. 2139.56 1.48 0.101888 0.0885405 25762 151098 -1 1441 21 1055 1429 95864 23033 3.07751 3.07751 -97.8095 -3.07751 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0170923 0.0149917 107 19 50 25 25 25 -fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 10.57 vpr 65.70 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 33948 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67280 32 32 432 346 1 288 92 17 17 289 -1 unnamed_device 27.2 MiB 3.03 1453 17273 5845 8574 2854 65.7 MiB 0.17 0.00 4.55715 -154.068 -4.55715 4.55715 0.89 0.00058276 0.000529605 0.0507773 0.0461893 38 3543 25 6.89349e+06 394628 678818. 2348.85 4.34 0.231546 0.201144 26626 170182 -1 2910 22 2580 3748 276062 57948 3.99116 3.99116 -151.47 -3.99116 0 0 902133. 3121.57 0.33 0.09 0.17 -1 -1 0.33 0.0272074 0.0239124 190 84 32 32 94 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 7.41 vpr 65.50 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 33788 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67076 31 32 421 339 1 274 90 17 17 289 -1 unnamed_device 26.7 MiB 2.30 1285 13758 3623 8223 1912 65.5 MiB 0.14 0.00 4.84654 -156.987 -4.84654 4.84654 0.90 0.000554482 0.000505385 0.0409441 0.0373291 34 3577 46 6.89349e+06 380534 618332. 2139.56 1.98 0.185703 0.161427 25762 151098 -1 2901 28 2703 3702 321887 69079 4.64999 4.64999 -160.617 -4.64999 0 0 787024. 2723.27 0.30 0.11 0.15 -1 -1 0.30 0.0324663 0.0284624 183 88 29 29 93 31 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 4.76 vpr 62.50 MiB 0.02 6740 -1 -1 14 0.24 -1 -1 32952 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 24.0 MiB 0.24 1354 8532 2094 5512 926 62.5 MiB 0.09 0.00 8.19013 -165.934 -8.19013 8.19013 0.63 0.000911572 0.000845455 0.0421278 0.0389893 28 3693 28 6.55708e+06 313430 500653. 1732.36 1.79 0.162717 0.142573 21310 115450 -1 3181 20 1654 5188 314521 70762 7.3219 7.3219 -163.86 -7.3219 0 0 612192. 2118.31 0.17 0.11 0.10 -1 -1 0.17 0.037161 0.0324187 186 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 4.52 vpr 62.45 MiB 0.03 6716 -1 -1 14 0.29 -1 -1 32772 -1 -1 30 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 30 32 277 309 1 215 92 17 17 289 -1 unnamed_device 23.9 MiB 0.40 1292 15824 4267 9033 2524 62.4 MiB 0.15 0.00 8.12966 -162.719 -8.12966 8.12966 0.66 0.000907128 0.000840271 0.0750926 0.0696213 30 3485 28 6.55708e+06 361650 526063. 1820.29 1.22 0.194161 0.171438 21886 126133 -1 2805 18 1296 3712 184432 43269 7.1187 7.1187 -155.263 -7.1187 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0341478 0.0299947 189 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 7.29 vpr 62.25 MiB 0.05 6840 -1 -1 11 0.22 -1 -1 32672 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 274 306 1 208 89 17 17 289 -1 unnamed_device 23.8 MiB 0.32 1266 13157 3416 7667 2074 62.3 MiB 0.13 0.00 6.4728 -136.716 -6.4728 6.4728 0.63 0.000893199 0.000827038 0.0631231 0.0583866 36 3746 35 6.55708e+06 301375 612192. 2118.31 4.11 0.262229 0.228441 22750 144809 -1 3090 21 1352 4535 306541 80605 6.05052 6.05052 -138.923 -6.05052 0 0 782063. 2706.10 0.21 0.11 0.13 -1 -1 0.21 0.0390401 0.0341413 180 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 6.75 vpr 62.76 MiB 0.02 6756 -1 -1 12 0.33 -1 -1 32892 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 29 32 269 301 1 203 90 17 17 289 -1 unnamed_device 24.1 MiB 0.28 1320 8130 2002 5291 837 62.8 MiB 0.09 0.00 7.77357 -147.192 -7.77357 7.77357 0.63 0.00093371 0.000839328 0.0402817 0.0372852 36 3542 23 6.55708e+06 349595 612192. 2118.31 3.73 0.224209 0.194478 22750 144809 -1 3059 17 1320 4139 245035 54560 6.78704 6.78704 -139.257 -6.78704 0 0 782063. 2706.10 0.21 0.09 0.12 -1 -1 0.21 0.0327015 0.0287213 185 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 5.15 vpr 62.83 MiB 0.02 6628 -1 -1 13 0.30 -1 -1 32868 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 317 349 1 246 96 17 17 289 -1 unnamed_device 24.3 MiB 0.41 1568 9951 2486 6481 984 62.8 MiB 0.11 0.00 7.68511 -161.036 -7.68511 7.68511 0.65 0.00103523 0.000958016 0.0514817 0.0476022 30 4458 47 6.55708e+06 385760 526063. 1820.29 1.87 0.214298 0.187068 21886 126133 -1 3448 19 1948 5673 274739 64317 6.90984 6.90984 -157.869 -6.90984 0 0 666494. 2306.21 0.18 0.11 0.11 -1 -1 0.18 0.0402365 0.0353162 223 223 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 5.58 vpr 63.07 MiB 0.05 6688 -1 -1 12 0.28 -1 -1 32676 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 32 32 299 331 1 232 98 17 17 289 -1 unnamed_device 24.2 MiB 0.47 1500 9773 2280 6498 995 63.1 MiB 0.10 0.00 7.53766 -152.093 -7.53766 7.53766 0.65 0.000958635 0.000887576 0.0456729 0.0422471 36 3688 23 6.55708e+06 409870 612192. 2118.31 2.27 0.236012 0.205012 22750 144809 -1 3225 15 1319 4177 239203 54214 6.91184 6.91184 -150.91 -6.91184 0 0 782063. 2706.10 0.20 0.09 0.12 -1 -1 0.20 0.0322298 0.0285026 209 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 4.58 vpr 62.11 MiB 0.02 6492 -1 -1 12 0.18 -1 -1 32272 -1 -1 27 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63596 27 32 210 242 1 167 86 17 17 289 -1 unnamed_device 23.6 MiB 0.22 1024 5945 1385 4013 547 62.1 MiB 0.06 0.00 7.15274 -128.455 -7.15274 7.15274 0.63 0.000568799 0.00052082 0.0237947 0.0220379 28 3014 27 6.55708e+06 325485 500653. 1732.36 1.80 0.119129 0.10371 21310 115450 -1 2471 17 1100 3184 192242 43720 6.17638 6.17638 -122.787 -6.17638 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.025201 0.0221632 136 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 4.42 vpr 62.32 MiB 0.05 6772 -1 -1 11 0.18 -1 -1 32816 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63812 31 32 264 296 1 199 91 17 17 289 -1 unnamed_device 23.9 MiB 0.24 1220 9679 2547 5973 1159 62.3 MiB 0.09 0.00 6.45772 -132.139 -6.45772 6.45772 0.62 0.000848956 0.00078669 0.0435893 0.0403683 30 3114 33 6.55708e+06 337540 526063. 1820.29 1.46 0.168525 0.148065 21886 126133 -1 2648 14 1146 3627 182841 42517 5.46178 5.46178 -127.489 -5.46178 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0268312 0.0236665 175 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 4.59 vpr 62.18 MiB 0.04 6788 -1 -1 12 0.17 -1 -1 32448 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63676 31 32 234 266 1 190 88 17 17 289 -1 unnamed_device 23.6 MiB 0.31 1146 12373 3633 6385 2355 62.2 MiB 0.11 0.00 7.00181 -148.703 -7.00181 7.00181 0.64 0.000750915 0.000694775 0.0508621 0.0470599 28 3391 24 6.55708e+06 301375 500653. 1732.36 1.65 0.148228 0.130496 21310 115450 -1 2708 18 1148 2832 193593 43225 6.33838 6.33838 -146.498 -6.33838 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0288059 0.0253076 145 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 4.22 vpr 62.32 MiB 0.03 6548 -1 -1 13 0.21 -1 -1 32768 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63812 32 32 253 285 1 194 89 17 17 289 -1 unnamed_device 23.7 MiB 0.38 1098 10979 3065 6306 1608 62.3 MiB 0.10 0.00 7.23855 -159.771 -7.23855 7.23855 0.63 0.000817545 0.000758341 0.0485073 0.044869 30 3034 26 6.55708e+06 301375 526063. 1820.29 1.12 0.152677 0.133991 21886 126133 -1 2486 17 1202 3260 160850 38687 6.18864 6.18864 -152.069 -6.18864 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0295727 0.0259776 162 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 4.49 vpr 62.00 MiB 0.04 6532 -1 -1 12 0.17 -1 -1 32736 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63484 30 32 217 249 1 169 84 17 17 289 -1 unnamed_device 23.5 MiB 0.30 1073 8868 2309 4974 1585 62.0 MiB 0.08 0.00 7.23424 -146.32 -7.23424 7.23424 0.67 0.000702278 0.000650303 0.0365744 0.033886 28 2862 44 6.55708e+06 265210 500653. 1732.36 1.53 0.148597 0.129912 21310 115450 -1 2498 16 977 2436 149415 34745 6.47024 6.47024 -144.559 -6.47024 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0242107 0.0213057 132 129 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 4.81 vpr 61.96 MiB 0.02 6584 -1 -1 12 0.17 -1 -1 32800 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63452 32 32 227 259 1 176 85 17 17 289 -1 unnamed_device 23.5 MiB 0.18 971 12175 3572 6038 2565 62.0 MiB 0.11 0.00 6.75009 -143.946 -6.75009 6.75009 0.63 0.000733129 0.000679315 0.0494691 0.045705 36 2632 22 6.55708e+06 253155 612192. 2118.31 1.99 0.192827 0.168024 22750 144809 -1 2147 14 895 2464 130147 31127 5.82038 5.82038 -139.659 -5.82038 0 0 782063. 2706.10 0.21 0.06 0.13 -1 -1 0.21 0.0231096 0.0204691 138 133 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 5.18 vpr 62.76 MiB 0.05 6736 -1 -1 13 0.29 -1 -1 32892 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 306 338 1 235 94 17 17 289 -1 unnamed_device 24.0 MiB 0.31 1456 5419 862 4216 341 62.8 MiB 0.07 0.00 7.90792 -162.801 -7.90792 7.90792 0.64 0.000982983 0.000909746 0.0287289 0.0266188 28 4018 41 6.55708e+06 361650 500653. 1732.36 1.85 0.181383 0.157595 21310 115450 -1 3487 18 1567 4568 296201 66664 7.0809 7.0809 -157.254 -7.0809 0 0 612192. 2118.31 0.17 0.11 0.10 -1 -1 0.17 0.037686 0.0331274 212 212 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 9.87 vpr 62.88 MiB 0.03 6776 -1 -1 14 0.32 -1 -1 33252 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 302 334 1 235 93 17 17 289 -1 unnamed_device 24.2 MiB 0.46 1487 7653 1685 5037 931 62.9 MiB 0.09 0.00 8.67599 -179.222 -8.67599 8.67599 0.64 0.00098071 0.000906993 0.0396785 0.0367267 30 3773 20 6.55708e+06 349595 526063. 1820.29 6.54 0.286875 0.248245 21886 126133 -1 3079 18 1487 4228 203303 48407 7.37842 7.37842 -169.663 -7.37842 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0373031 0.0327956 208 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 4.71 vpr 62.11 MiB 0.02 6536 -1 -1 11 0.22 -1 -1 32408 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63596 29 32 238 270 1 186 90 17 17 289 -1 unnamed_device 23.5 MiB 0.21 1095 15366 4454 8585 2327 62.1 MiB 0.13 0.00 6.42654 -129.9 -6.42654 6.42654 0.66 0.000754213 0.000693132 0.0639594 0.0592358 28 3139 21 6.55708e+06 349595 500653. 1732.36 1.73 0.155457 0.137734 21310 115450 -1 2830 20 1432 4043 278896 69092 5.81012 5.81012 -131.609 -5.81012 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.0308411 0.0270245 160 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 8.12 vpr 62.80 MiB 0.05 6748 -1 -1 12 0.27 -1 -1 32884 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 306 338 1 235 98 17 17 289 -1 unnamed_device 24.1 MiB 0.53 1497 7523 1547 5261 715 62.8 MiB 0.08 0.00 7.78498 -159.33 -7.78498 7.78498 0.64 0.000995265 0.000918752 0.0381691 0.0352965 36 3844 37 6.55708e+06 409870 612192. 2118.31 4.65 0.275563 0.239664 22750 144809 -1 3492 17 1523 4766 293540 65007 6.8013 6.8013 -151.57 -6.8013 0 0 782063. 2706.10 0.21 0.11 0.13 -1 -1 0.21 0.0364182 0.0321835 213 212 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 4.84 vpr 62.89 MiB 0.02 6736 -1 -1 13 0.25 -1 -1 32744 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 311 343 1 239 96 17 17 289 -1 unnamed_device 24.4 MiB 0.28 1448 9075 2050 5697 1328 62.9 MiB 0.10 0.00 8.28129 -168.719 -8.28129 8.28129 0.64 0.00101741 0.000942053 0.046806 0.0433115 30 3798 28 6.55708e+06 385760 526063. 1820.29 1.66 0.182792 0.16007 21886 126133 -1 2884 18 1330 3984 181686 43984 7.0769 7.0769 -158.369 -7.0769 0 0 666494. 2306.21 0.22 0.09 0.12 -1 -1 0.22 0.0379165 0.033406 217 217 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 4.54 vpr 62.10 MiB 0.04 6492 -1 -1 12 0.17 -1 -1 32592 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63592 32 32 230 262 1 182 86 17 17 289 -1 unnamed_device 23.6 MiB 0.49 1089 8402 1864 6112 426 62.1 MiB 0.08 0.00 7.26292 -158.375 -7.26292 7.26292 0.63 0.000749562 0.000693343 0.0363037 0.0335967 28 3024 19 6.55708e+06 265210 500653. 1732.36 1.42 0.125465 0.110246 21310 115450 -1 2550 16 1033 2869 170747 40245 6.2029 6.2029 -151.096 -6.2029 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0263692 0.0232836 139 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 3.76 vpr 61.68 MiB 0.04 6356 -1 -1 10 0.10 -1 -1 32304 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63160 30 32 176 208 1 139 82 17 17 289 -1 unnamed_device 23.2 MiB 0.14 786 5244 1130 3909 205 61.7 MiB 0.05 0.00 5.1986 -117.15 -5.1986 5.1986 0.64 0.000568228 0.000528103 0.0193127 0.0179301 30 2126 24 6.55708e+06 241100 526063. 1820.29 1.12 0.0866695 0.0754284 21886 126133 -1 1800 21 731 1861 102932 24553 4.7502 4.7502 -115.743 -4.7502 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0241224 0.0209538 96 88 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 5.35 vpr 62.18 MiB 0.02 6612 -1 -1 13 0.17 -1 -1 32636 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63672 31 32 226 258 1 176 87 17 17 289 -1 unnamed_device 23.6 MiB 0.30 1123 5079 946 3658 475 62.2 MiB 0.06 0.00 7.44701 -156.373 -7.44701 7.44701 0.64 0.000748003 0.000693257 0.0227339 0.0210382 26 3256 40 6.55708e+06 289320 477104. 1650.88 2.47 0.13633 0.118525 21022 109990 -1 2517 19 1006 2610 161976 37475 6.69638 6.69638 -154.813 -6.69638 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0288565 0.0253292 139 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 5.53 vpr 62.69 MiB 0.02 6668 -1 -1 13 0.28 -1 -1 32824 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 302 334 1 228 95 17 17 289 -1 unnamed_device 24.0 MiB 0.33 1494 10031 2522 6626 883 62.7 MiB 0.10 0.00 7.77584 -154.394 -7.77584 7.77584 0.67 0.000760707 0.000693863 0.0394374 0.0359732 28 4288 44 6.55708e+06 373705 500653. 1732.36 2.34 0.194262 0.168915 21310 115450 -1 3706 21 2129 6858 440821 99786 6.7621 6.7621 -155.774 -6.7621 0 0 612192. 2118.31 0.18 0.14 0.10 -1 -1 0.18 0.0414711 0.0363462 208 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 7.44 vpr 62.77 MiB 0.02 6740 -1 -1 13 0.29 -1 -1 33280 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 299 331 1 237 98 17 17 289 -1 unnamed_device 24.0 MiB 0.45 1626 7973 1601 5735 637 62.8 MiB 0.09 0.00 7.9648 -163.763 -7.9648 7.9648 0.64 0.000959812 0.000888632 0.0378658 0.0350273 34 4543 38 6.55708e+06 409870 585099. 2024.56 3.93 0.253937 0.220003 22462 138074 -1 3646 28 1614 5176 556730 217601 6.9607 6.9607 -155.121 -6.9607 0 0 742403. 2568.87 0.20 0.23 0.13 -1 -1 0.20 0.0632518 0.0560076 207 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 3.66 vpr 61.45 MiB 0.02 6316 -1 -1 9 0.09 -1 -1 32220 -1 -1 21 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62928 26 32 149 181 1 119 79 17 17 289 -1 unnamed_device 23.0 MiB 0.29 710 10557 2762 6888 907 61.5 MiB 0.07 0.00 4.66154 -94.5374 -4.66154 4.66154 0.66 0.000591432 0.000550371 0.0339111 0.0315476 28 1909 33 6.55708e+06 253155 500653. 1732.36 1.00 0.110688 0.0969159 21310 115450 -1 1723 14 613 1618 108492 24712 4.12668 4.12668 -93.2747 -4.12668 0 0 612192. 2118.31 0.16 0.03 0.07 -1 -1 0.16 0.00926188 0.00831013 83 73 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 6.68 vpr 62.79 MiB 0.02 6612 -1 -1 13 0.31 -1 -1 32676 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 304 336 1 228 94 17 17 289 -1 unnamed_device 24.1 MiB 0.19 1530 4780 793 3650 337 62.8 MiB 0.06 0.00 7.84695 -156.636 -7.84695 7.84695 0.65 0.00098049 0.000906089 0.0279149 0.0258923 26 4457 46 6.55708e+06 361650 477104. 1650.88 3.15 0.186585 0.162037 21022 109990 -1 3674 77 4873 15394 2166006 1013891 6.8431 6.8431 -156.396 -6.8431 0 0 585099. 2024.56 0.18 0.69 0.08 -1 -1 0.18 0.130392 0.112362 211 210 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 3.73 vpr 61.49 MiB 0.02 6296 -1 -1 8 0.09 -1 -1 31108 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62964 32 32 155 187 1 113 81 17 17 289 -1 unnamed_device 22.9 MiB 0.22 436 8831 2193 4716 1922 61.5 MiB 0.06 0.00 4.66158 -87.3613 -4.66158 4.66158 0.66 0.000512117 0.000476279 0.0275763 0.025635 30 1374 37 6.55708e+06 204935 526063. 1820.29 1.11 0.10112 0.0883793 21886 126133 -1 1041 13 558 1070 51330 16054 3.84606 3.84606 -87.0064 -3.84606 0 0 666494. 2306.21 0.18 0.04 0.11 -1 -1 0.18 0.0149569 0.0131562 77 61 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 4.46 vpr 62.53 MiB 0.03 6736 -1 -1 15 0.23 -1 -1 33240 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 253 285 1 192 89 17 17 289 -1 unnamed_device 23.9 MiB 0.20 1127 8999 2110 5455 1434 62.5 MiB 0.09 0.00 8.78748 -168.447 -8.78748 8.78748 0.71 0.000840897 0.000779905 0.0417058 0.0386975 30 3036 31 6.55708e+06 301375 526063. 1820.29 1.45 0.159054 0.139405 21886 126133 -1 2468 19 1238 3712 182654 43019 7.41762 7.41762 -157.962 -7.41762 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0330986 0.0289932 161 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 7.59 vpr 62.84 MiB 0.05 6548 -1 -1 12 0.24 -1 -1 32752 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 309 341 1 232 95 17 17 289 -1 unnamed_device 24.1 MiB 0.22 1426 7871 1871 5355 645 62.8 MiB 0.09 0.00 6.97141 -150.212 -6.97141 6.97141 0.68 0.000987461 0.000913708 0.0405558 0.0374732 34 3985 37 6.55708e+06 373705 585099. 2024.56 4.30 0.373319 0.321778 22462 138074 -1 3469 18 1513 4862 300913 67896 6.49978 6.49978 -149.655 -6.49978 0 0 742403. 2568.87 0.20 0.11 0.13 -1 -1 0.20 0.0378 0.0332635 218 215 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 10.43 vpr 62.62 MiB 0.02 6724 -1 -1 13 0.26 -1 -1 32836 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 289 321 1 218 92 17 17 289 -1 unnamed_device 23.9 MiB 0.31 1403 8993 2077 6178 738 62.6 MiB 0.10 0.00 7.73601 -160.617 -7.73601 7.73601 0.63 0.000932834 0.000852773 0.0437932 0.040496 30 3593 32 6.55708e+06 337540 526063. 1820.29 7.35 0.276862 0.239839 21886 126133 -1 3072 18 1384 4308 205516 48866 6.67144 6.67144 -155.896 -6.67144 0 0 666494. 2306.21 0.19 0.09 0.12 -1 -1 0.19 0.0353125 0.0309999 196 195 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 4.25 vpr 62.32 MiB 0.03 6480 -1 -1 12 0.17 -1 -1 32336 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63816 32 32 239 271 1 188 86 17 17 289 -1 unnamed_device 23.7 MiB 0.20 1093 9158 2327 6239 592 62.3 MiB 0.09 0.00 6.471 -143.803 -6.471 6.471 0.66 0.000762234 0.000702162 0.0402733 0.0372186 28 3047 45 6.55708e+06 265210 500653. 1732.36 1.41 0.160538 0.140399 21310 115450 -1 2474 19 1018 2717 197086 59712 5.83566 5.83566 -141.372 -5.83566 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0297925 0.026162 146 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 3.67 vpr 61.88 MiB 0.04 6508 -1 -1 11 0.16 -1 -1 32688 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63364 30 32 213 245 1 162 85 17 17 289 -1 unnamed_device 23.5 MiB 0.18 1045 6781 1469 4387 925 61.9 MiB 0.06 0.00 6.28146 -130.954 -6.28146 6.28146 0.63 0.000689475 0.000639119 0.0278034 0.0257913 30 2354 17 6.55708e+06 277265 526063. 1820.29 0.91 0.103511 0.0909063 21886 126133 -1 2021 12 791 2190 98726 24085 5.56972 5.56972 -126.582 -5.56972 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0200318 0.0178077 128 125 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 4.30 vpr 62.13 MiB 0.04 6516 -1 -1 11 0.16 -1 -1 32636 -1 -1 27 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63620 28 32 221 253 1 183 87 17 17 289 -1 unnamed_device 23.6 MiB 0.25 1079 8535 1915 5707 913 62.1 MiB 0.08 0.00 6.57292 -128.193 -6.57292 6.57292 0.62 0.000727551 0.000674546 0.035076 0.0325199 30 2815 48 6.55708e+06 325485 526063. 1820.29 1.35 0.149491 0.130269 21886 126133 -1 2388 26 1218 3712 282058 98410 5.74138 5.74138 -125.741 -5.74138 0 0 666494. 2306.21 0.18 0.11 0.11 -1 -1 0.18 0.0371363 0.0324386 142 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 3.89 vpr 62.67 MiB 0.04 6516 -1 -1 12 0.20 -1 -1 32492 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 32 32 273 305 1 210 92 17 17 289 -1 unnamed_device 24.0 MiB 0.20 1327 6716 1263 5020 433 62.7 MiB 0.07 0.00 7.20375 -160.021 -7.20375 7.20375 0.63 0.000861993 0.000799266 0.0312838 0.0289936 30 3050 19 6.55708e+06 337540 526063. 1820.29 0.99 0.122561 0.107355 21886 126133 -1 2691 19 1273 3474 162936 39368 6.22984 6.22984 -154.18 -6.22984 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0340653 0.0298833 180 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 3.96 vpr 62.15 MiB 0.02 6544 -1 -1 11 0.17 -1 -1 32764 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 31 32 238 270 1 182 86 17 17 289 -1 unnamed_device 23.6 MiB 0.27 1072 4244 722 3315 207 62.1 MiB 0.05 0.00 6.41894 -136.128 -6.41894 6.41894 0.63 0.000768605 0.000711708 0.0208966 0.0193635 28 2847 26 6.55708e+06 277265 500653. 1732.36 1.10 0.119701 0.104074 21310 115450 -1 2367 22 1328 3668 183355 45773 5.95786 5.95786 -137.356 -5.95786 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0342294 0.0299412 147 147 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 3.72 vpr 62.05 MiB 0.04 6612 -1 -1 10 0.14 -1 -1 32692 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63536 29 32 221 253 1 165 85 17 17 289 -1 unnamed_device 23.6 MiB 0.23 967 12733 4051 6442 2240 62.0 MiB 0.11 0.00 6.08886 -123.876 -6.08886 6.08886 0.63 0.000725097 0.000671423 0.0527031 0.0487447 32 2471 22 6.55708e+06 289320 554710. 1919.41 0.84 0.140261 0.123877 22174 131602 -1 2206 14 801 2338 151536 34935 5.30638 5.30638 -118.227 -5.30638 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0230223 0.0203407 138 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 5.81 vpr 63.01 MiB 0.05 6944 -1 -1 13 0.32 -1 -1 33412 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 333 365 1 249 97 17 17 289 -1 unnamed_device 24.5 MiB 0.32 1621 5869 1104 4212 553 63.0 MiB 0.04 0.00 7.46683 -155.207 -7.46683 7.46683 0.63 0.000476956 0.000437109 0.0159413 0.0146369 30 3995 44 6.55708e+06 397815 526063. 1820.29 2.53 0.14845 0.129059 21886 126133 -1 3247 17 1408 4754 234861 53197 6.6419 6.6419 -150.395 -6.6419 0 0 666494. 2306.21 0.20 0.10 0.11 -1 -1 0.20 0.0379468 0.0335009 239 239 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 6.66 vpr 62.67 MiB 0.02 6720 -1 -1 13 0.28 -1 -1 32972 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 297 329 1 227 93 17 17 289 -1 unnamed_device 24.0 MiB 0.37 1508 8283 1888 5355 1040 62.7 MiB 0.09 0.00 8.09706 -175.077 -8.09706 8.09706 0.63 0.000975472 0.00090224 0.0422161 0.0389818 36 3925 27 6.55708e+06 349595 612192. 2118.31 3.42 0.254466 0.220908 22750 144809 -1 3320 18 1479 5044 281064 62523 7.1599 7.1599 -166.383 -7.1599 0 0 782063. 2706.10 0.21 0.11 0.13 -1 -1 0.21 0.0372485 0.0327661 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 5.09 vpr 62.34 MiB 0.04 6620 -1 -1 12 0.15 -1 -1 32752 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 31 32 234 266 1 181 88 17 17 289 -1 unnamed_device 23.8 MiB 0.28 1096 12568 3446 6926 2196 62.3 MiB 0.11 0.00 6.66868 -144.132 -6.66868 6.66868 0.64 0.000738521 0.0006831 0.0506349 0.0467321 36 2895 29 6.55708e+06 301375 612192. 2118.31 2.11 0.207701 0.181103 22750 144809 -1 2369 14 1000 2801 155714 35509 5.70218 5.70218 -135.308 -5.70218 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.0234613 0.0207376 150 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 5.58 vpr 62.84 MiB 0.05 6712 -1 -1 12 0.26 -1 -1 33112 -1 -1 34 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 31 32 310 342 1 234 97 17 17 289 -1 unnamed_device 24.0 MiB 0.22 1489 8977 2020 5913 1044 62.8 MiB 0.09 0.00 8.10558 -165.766 -8.10558 8.10558 0.66 0.00100419 0.000931709 0.0352035 0.0324236 36 3566 22 6.55708e+06 409870 612192. 2118.31 2.46 0.232694 0.201434 22750 144809 -1 3177 15 1286 3966 226508 50828 7.1965 7.1965 -161.557 -7.1965 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0338183 0.0299356 219 219 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 5.28 vpr 62.64 MiB 0.05 6936 -1 -1 14 0.36 -1 -1 33216 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 31 32 284 316 1 221 91 17 17 289 -1 unnamed_device 24.0 MiB 0.21 1460 6211 1289 4295 627 62.6 MiB 0.07 0.00 8.35283 -161.679 -8.35283 8.35283 0.65 0.000956704 0.0008874 0.0328082 0.03042 30 3894 50 6.55708e+06 337540 526063. 1820.29 2.11 0.189678 0.16467 21886 126133 -1 3049 17 1301 3796 180761 41849 7.32956 7.32956 -155.157 -7.32956 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0350292 0.0308772 194 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 4.00 vpr 62.37 MiB 0.04 6896 -1 -1 13 0.28 -1 -1 32820 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 31 32 271 303 1 212 91 17 17 289 -1 unnamed_device 23.8 MiB 0.21 1364 9271 2151 5683 1437 62.4 MiB 0.10 0.00 7.40806 -157.551 -7.40806 7.40806 0.55 0.000899304 0.000831062 0.044975 0.0415022 30 3656 29 6.55708e+06 337540 526063. 1820.29 1.18 0.162745 0.142374 21886 126133 -1 2977 17 1505 4283 207121 49411 6.45598 6.45598 -150.636 -6.45598 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0320359 0.0281335 181 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 6.96 vpr 62.67 MiB 0.05 6692 -1 -1 12 0.25 -1 -1 32892 -1 -1 30 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 31 32 280 312 1 211 93 17 17 289 -1 unnamed_device 23.9 MiB 0.48 1374 13743 3666 8130 1947 62.7 MiB 0.13 0.00 6.76701 -143.203 -6.76701 6.76701 0.63 0.000911643 0.000843971 0.0637128 0.0589754 34 4200 50 6.55708e+06 361650 585099. 2024.56 3.58 0.302333 0.263807 22462 138074 -1 3213 21 1381 4314 250002 57093 6.05052 6.05052 -141.872 -6.05052 0 0 742403. 2568.87 0.20 0.10 0.12 -1 -1 0.20 0.0387178 0.0338767 189 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 3.81 vpr 62.56 MiB 0.04 6828 -1 -1 12 0.17 -1 -1 32920 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 264 296 1 194 88 17 17 289 -1 unnamed_device 23.9 MiB 0.25 1252 8278 1977 5044 1257 62.6 MiB 0.08 0.00 7.19338 -143.847 -7.19338 7.19338 0.65 0.000835498 0.000774578 0.0387252 0.035867 30 3079 17 6.55708e+06 289320 526063. 1820.29 0.92 0.133688 0.117273 21886 126133 -1 2609 17 1076 3072 145494 34382 6.1631 6.1631 -137.248 -6.1631 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0298981 0.0262802 172 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 6.65 vpr 62.80 MiB 0.05 6932 -1 -1 14 0.43 -1 -1 32476 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 339 371 1 259 98 17 17 289 -1 unnamed_device 24.4 MiB 0.34 1757 10673 2583 7118 972 62.8 MiB 0.12 0.00 8.08019 -170.094 -8.08019 8.08019 0.64 0.00107206 0.000991306 0.0553479 0.0511759 38 4328 19 6.55708e+06 409870 638502. 2209.35 3.16 0.269697 0.235114 23326 155178 -1 3689 18 1672 5907 302681 66882 7.0815 7.0815 -159.011 -7.0815 0 0 851065. 2944.86 0.22 0.11 0.13 -1 -1 0.22 0.0418706 0.0369416 245 245 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 4.29 vpr 62.25 MiB 0.04 6604 -1 -1 11 0.20 -1 -1 32528 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 31 32 246 278 1 188 89 17 17 289 -1 unnamed_device 23.7 MiB 0.23 1212 8009 2047 5116 846 62.2 MiB 0.08 0.00 6.43815 -136.573 -6.43815 6.43815 0.64 0.000811093 0.000752324 0.0362993 0.0336181 30 3062 33 6.55708e+06 313430 526063. 1820.29 1.28 0.151057 0.131804 21886 126133 -1 2590 18 1146 3284 165082 37542 5.53052 5.53052 -131.48 -5.53052 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0307915 0.0270527 160 155 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 6.19 vpr 62.52 MiB 0.04 6688 -1 -1 13 0.30 -1 -1 32744 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64024 31 32 268 300 1 203 90 17 17 289 -1 unnamed_device 23.9 MiB 0.37 1339 4512 785 3381 346 62.5 MiB 0.06 0.00 8.23298 -156.44 -8.23298 8.23298 0.63 0.000896123 0.000819016 0.0233624 0.0216121 36 3361 29 6.55708e+06 325485 612192. 2118.31 3.06 0.212056 0.182395 22750 144809 -1 2821 16 1119 3725 204036 46190 7.0815 7.0815 -147.855 -7.0815 0 0 782063. 2706.10 0.21 0.08 0.08 -1 -1 0.21 0.0311296 0.0274297 177 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 6.07 vpr 62.84 MiB 0.05 6692 -1 -1 12 0.23 -1 -1 32896 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 318 350 1 229 98 17 17 289 -1 unnamed_device 24.2 MiB 0.35 1513 7973 1697 5548 728 62.8 MiB 0.09 0.00 7.05697 -153.444 -7.05697 7.05697 0.63 0.000992776 0.000918071 0.0392452 0.0363086 34 4231 45 6.55708e+06 409870 585099. 2024.56 2.87 0.275637 0.238104 22462 138074 -1 3578 28 1731 6789 581214 199837 6.38158 6.38158 -150.391 -6.38158 0 0 742403. 2568.87 0.20 0.19 0.12 -1 -1 0.20 0.0532504 0.0463601 227 224 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 9.01 vpr 62.64 MiB 0.04 6728 -1 -1 13 0.24 -1 -1 32968 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 273 305 1 205 92 17 17 289 -1 unnamed_device 24.2 MiB 0.18 1286 13340 3362 8056 1922 62.6 MiB 0.13 0.00 7.57452 -156.038 -7.57452 7.57452 0.63 0.000908581 0.000842402 0.0614507 0.0568175 28 3767 45 6.55708e+06 337540 500653. 1732.36 5.94 0.350158 0.303313 21310 115450 -1 3132 28 1519 4299 373726 132229 6.63024 6.63024 -153.52 -6.63024 0 0 612192. 2118.31 0.17 0.14 0.11 -1 -1 0.17 0.0471903 0.0410931 184 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 9.48 vpr 62.50 MiB 0.06 6808 -1 -1 13 0.25 -1 -1 32740 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 269 301 1 197 89 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1203 12563 3367 6823 2373 62.5 MiB 0.12 0.00 7.77281 -162.033 -7.77281 7.77281 0.63 0.000870649 0.000805904 0.0589842 0.0544377 30 2961 38 6.55708e+06 301375 526063. 1820.29 6.35 0.300193 0.260036 21886 126133 -1 2447 14 1081 3296 149761 36490 6.6027 6.6027 -148.076 -6.6027 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0281982 0.0249356 175 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 6.53 vpr 62.76 MiB 0.04 6800 -1 -1 12 0.29 -1 -1 32708 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 298 330 1 223 95 17 17 289 -1 unnamed_device 24.0 MiB 0.59 1416 10679 2747 6565 1367 62.8 MiB 0.11 0.00 6.86528 -151.049 -6.86528 6.86528 0.66 0.00108601 0.00100035 0.0539988 0.0498462 36 3519 46 6.55708e+06 373705 612192. 2118.31 3.04 0.288389 0.250122 22750 144809 -1 2974 16 1200 4296 232211 52518 6.01898 6.01898 -141.834 -6.01898 0 0 782063. 2706.10 0.20 0.09 0.13 -1 -1 0.20 0.0338705 0.0298649 205 204 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 6.82 vpr 62.63 MiB 0.04 6728 -1 -1 13 0.25 -1 -1 32708 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 299 331 1 235 93 17 17 289 -1 unnamed_device 24.1 MiB 0.33 1584 11223 2635 7117 1471 62.6 MiB 0.12 0.00 7.96921 -159.229 -7.96921 7.96921 0.64 0.000967061 0.000895486 0.0557484 0.051563 36 3876 21 6.55708e+06 349595 612192. 2118.31 3.68 0.253433 0.220653 22750 144809 -1 3352 17 1445 4276 256567 56929 7.1201 7.1201 -153.032 -7.1201 0 0 782063. 2706.10 0.21 0.10 0.13 -1 -1 0.21 0.0350936 0.0309186 205 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 5.39 vpr 62.41 MiB 0.02 6708 -1 -1 14 0.28 -1 -1 32860 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63908 32 32 259 291 1 193 89 17 17 289 -1 unnamed_device 24.0 MiB 0.38 1228 9197 2464 5958 775 62.4 MiB 0.10 0.00 7.91369 -163.421 -7.91369 7.91369 0.66 0.000869014 0.000796924 0.0469801 0.0434289 28 3563 32 6.55708e+06 301375 500653. 1732.36 2.10 0.168672 0.1478 21310 115450 -1 3051 21 1512 4831 274990 63994 7.14824 7.14824 -160.088 -7.14824 0 0 612192. 2118.31 0.20 0.11 0.12 -1 -1 0.20 0.0365672 0.0319997 167 165 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 5.60 vpr 62.56 MiB 0.03 6772 -1 -1 13 0.27 -1 -1 32804 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 293 325 1 226 94 17 17 289 -1 unnamed_device 24.0 MiB 0.50 1537 7336 1683 5066 587 62.6 MiB 0.08 0.00 8.38432 -170.174 -8.38432 8.38432 0.66 0.00107264 0.00100343 0.0368505 0.0340221 30 3969 38 6.55708e+06 361650 526063. 1820.29 2.27 0.178969 0.15636 21886 126133 -1 3163 16 1446 4156 214013 48953 7.21136 7.21136 -158.492 -7.21136 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0326727 0.0288024 199 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 5.05 vpr 62.67 MiB 0.05 6744 -1 -1 13 0.28 -1 -1 33100 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 31 32 311 343 1 231 95 17 17 289 -1 unnamed_device 24.0 MiB 0.34 1531 8951 1993 6087 871 62.7 MiB 0.10 0.00 8.45326 -176.134 -8.45326 8.45326 0.63 0.000995902 0.000921594 0.0454643 0.041904 30 3859 27 6.55708e+06 385760 526063. 1820.29 1.85 0.175429 0.1535 21886 126133 -1 3179 14 1309 4204 206454 47477 7.48636 7.48636 -165.351 -7.48636 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0318034 0.0281455 221 220 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 6.72 vpr 62.93 MiB 0.05 6728 -1 -1 12 0.30 -1 -1 32668 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 324 356 1 240 96 17 17 289 -1 unnamed_device 24.4 MiB 0.40 1599 7323 1463 5208 652 62.9 MiB 0.09 0.00 7.47193 -159.786 -7.47193 7.47193 0.63 0.00102005 0.000941953 0.0379666 0.0350937 36 4072 27 6.55708e+06 385760 612192. 2118.31 3.42 0.236312 0.204878 22750 144809 -1 3352 17 1551 4973 264330 61331 6.8843 6.8843 -158.012 -6.8843 0 0 782063. 2706.10 0.21 0.10 0.13 -1 -1 0.21 0.0369305 0.0325417 231 230 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 3.89 vpr 61.92 MiB 0.04 6508 -1 -1 11 0.15 -1 -1 32360 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63408 32 32 216 248 1 165 83 17 17 289 -1 unnamed_device 23.5 MiB 0.20 1043 10883 2916 6057 1910 61.9 MiB 0.10 0.00 5.95009 -133.303 -5.95009 5.95009 0.63 0.000684026 0.000632855 0.0443481 0.0409612 30 2668 32 6.55708e+06 229045 526063. 1820.29 0.98 0.142295 0.124386 21886 126133 -1 2161 17 907 2533 119548 28213 5.21172 5.21172 -128.769 -5.21172 0 0 666494. 2306.21 0.18 0.06 0.13 -1 -1 0.18 0.025023 0.0219396 127 122 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 4.73 vpr 62.25 MiB 0.04 6520 -1 -1 13 0.19 -1 -1 32868 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 245 277 1 195 91 17 17 289 -1 unnamed_device 23.6 MiB 0.44 1281 6211 1217 4524 470 62.3 MiB 0.07 0.00 7.73937 -166.104 -7.73937 7.73937 0.63 0.000805651 0.000747502 0.0283327 0.0262887 28 3459 26 6.55708e+06 325485 500653. 1732.36 1.63 0.126889 0.110711 21310 115450 -1 3044 23 1179 3248 221073 50907 6.82684 6.82684 -159.687 -6.82684 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0360988 0.0314731 156 151 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 6.18 vpr 62.86 MiB 0.05 6944 -1 -1 14 0.44 -1 -1 32916 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 361 393 1 263 100 17 17 289 -1 unnamed_device 24.6 MiB 0.36 1818 9380 1999 6471 910 62.9 MiB 0.11 0.00 8.82888 -183.788 -8.82888 8.82888 0.63 0.00114881 0.00106353 0.0505866 0.0467001 30 4907 35 6.55708e+06 433980 526063. 1820.29 2.69 0.218196 0.191133 21886 126133 -1 3812 17 1794 5584 296408 67225 7.76595 7.76595 -174.414 -7.76595 0 0 666494. 2306.21 0.19 0.14 0.11 -1 -1 0.19 0.0478678 0.0425258 267 267 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 6.31 vpr 63.19 MiB 0.04 6620 -1 -1 13 0.33 -1 -1 32792 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 32 32 318 350 1 241 95 17 17 289 -1 unnamed_device 24.7 MiB 0.46 1477 8735 1981 6002 752 63.2 MiB 0.10 0.00 7.79483 -168.531 -7.79483 7.79483 0.63 0.00102872 0.00095177 0.0468266 0.0431886 26 4757 42 6.55708e+06 373705 477104. 1650.88 2.87 0.213452 0.186126 21022 109990 -1 3635 37 1743 4947 476492 172939 6.74984 6.74984 -161.687 -6.74984 0 0 585099. 2024.56 0.17 0.19 0.10 -1 -1 0.17 0.0692161 0.0601008 224 224 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 4.75 vpr 62.11 MiB 0.03 6560 -1 -1 11 0.17 -1 -1 32772 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63604 30 32 223 255 1 165 85 17 17 289 -1 unnamed_device 23.6 MiB 0.20 916 9943 3248 5072 1623 62.1 MiB 0.09 0.00 6.47975 -131.851 -6.47975 6.47975 0.66 0.000731304 0.000676574 0.0431961 0.0398932 36 2386 24 6.55708e+06 277265 612192. 2118.31 1.78 0.189 0.164258 22750 144809 -1 1953 16 887 2571 135686 32427 5.54018 5.54018 -123.221 -5.54018 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.026683 0.0235345 137 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 7.53 vpr 62.97 MiB 0.05 7068 -1 -1 15 0.45 -1 -1 32884 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 335 367 1 253 97 17 17 289 -1 unnamed_device 24.4 MiB 0.35 1670 7867 1614 5465 788 63.0 MiB 0.09 0.00 8.70958 -179.837 -8.70958 8.70958 0.65 0.00107842 0.000996852 0.0428172 0.0395571 36 4552 44 6.55708e+06 397815 612192. 2118.31 4.01 0.316407 0.275579 22750 144809 -1 3787 21 2018 6815 375358 85536 7.67329 7.67329 -171.304 -7.67329 0 0 782063. 2706.10 0.20 0.13 0.13 -1 -1 0.20 0.0473525 0.0415923 241 241 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 14.44 vpr 62.79 MiB 0.05 6732 -1 -1 13 0.32 -1 -1 33264 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 301 333 1 226 93 17 17 289 -1 unnamed_device 24.0 MiB 0.43 1370 12483 3068 7076 2339 62.8 MiB 0.13 0.00 7.72925 -154.988 -7.72925 7.72925 0.64 0.000978501 0.000906426 0.0628185 0.0581343 38 3720 24 6.55708e+06 349595 638502. 2209.35 10.95 0.430567 0.373341 23326 155178 -1 2846 17 1323 3926 193252 45298 7.0025 7.0025 -149.156 -7.0025 0 0 851065. 2944.86 0.22 0.09 0.13 -1 -1 0.22 0.0356639 0.0314547 207 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 4.34 vpr 62.30 MiB 0.04 6488 -1 -1 11 0.14 -1 -1 32656 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63792 32 32 238 270 1 183 88 17 17 289 -1 unnamed_device 23.8 MiB 0.23 1161 6718 1477 4583 658 62.3 MiB 0.07 0.00 6.62468 -135.028 -6.62468 6.62468 0.64 0.00073168 0.000678159 0.0279979 0.0259334 28 3179 30 6.55708e+06 289320 500653. 1732.36 1.52 0.127649 0.111375 21310 115450 -1 2732 20 1110 3078 249082 79074 6.09938 6.09938 -138.109 -6.09938 0 0 612192. 2118.31 0.17 0.10 0.10 -1 -1 0.17 0.0298159 0.0261519 149 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 9.24 vpr 62.73 MiB 0.05 6868 -1 -1 12 0.29 -1 -1 32776 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 308 340 1 230 95 17 17 289 -1 unnamed_device 23.9 MiB 0.33 1540 8735 2140 5810 785 62.7 MiB 0.09 0.00 7.17512 -150.872 -7.17512 7.17512 0.65 0.000977688 0.000903307 0.0435449 0.0402436 34 3975 42 6.55708e+06 373705 585099. 2024.56 5.95 0.38864 0.334264 22462 138074 -1 3408 21 1468 4452 271452 60248 6.59444 6.59444 -149.82 -6.59444 0 0 742403. 2568.87 0.20 0.11 0.12 -1 -1 0.20 0.0419011 0.0367126 217 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 4.03 vpr 62.36 MiB 0.02 6588 -1 -1 12 0.20 -1 -1 32380 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 32 32 253 285 1 192 90 17 17 289 -1 unnamed_device 23.7 MiB 0.25 1252 5517 962 4221 334 62.4 MiB 0.06 0.00 7.41221 -152.744 -7.41221 7.41221 0.63 0.000837982 0.000777388 0.0275411 0.0256044 30 2953 20 6.55708e+06 313430 526063. 1820.29 1.10 0.12738 0.111337 21886 126133 -1 2560 17 1155 3176 147387 35186 6.3623 6.3623 -144.661 -6.3623 0 0 666494. 2306.21 0.18 0.07 0.12 -1 -1 0.18 0.0303534 0.0267501 164 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 3.84 vpr 62.02 MiB 0.03 6564 -1 -1 12 0.18 -1 -1 32668 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63508 30 32 227 259 1 163 83 17 17 289 -1 unnamed_device 23.6 MiB 0.22 998 6383 1524 4361 498 62.0 MiB 0.07 0.00 7.15324 -144.822 -7.15324 7.15324 0.64 0.00076182 0.000706224 0.0302407 0.0279842 28 2443 17 6.55708e+06 253155 500653. 1732.36 0.97 0.117351 0.10289 21310 115450 -1 2221 21 890 2542 144249 33719 6.51204 6.51204 -140.888 -6.51204 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.03172 0.0277692 139 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 12.15 vpr 62.66 MiB 0.03 6820 -1 -1 12 0.33 -1 -1 32768 -1 -1 32 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64164 29 32 292 324 1 222 93 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1315 14583 4048 7926 2609 62.7 MiB 0.15 0.00 7.005 -132.757 -7.005 7.005 0.63 0.000962425 0.000889088 0.0733817 0.0677962 30 3666 44 6.55708e+06 385760 526063. 1820.29 8.98 0.364866 0.316603 21886 126133 -1 2881 17 1439 4398 224548 51939 6.35204 6.35204 -127.614 -6.35204 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0345851 0.0304227 208 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 4.66 vpr 63.11 MiB 0.04 6732 -1 -1 14 0.31 -1 -1 32948 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 32 32 316 348 1 253 96 17 17 289 -1 unnamed_device 24.6 MiB 0.47 1622 11046 2782 7202 1062 63.1 MiB 0.12 0.00 8.27143 -173.321 -8.27143 8.27143 0.63 0.00102748 0.00095163 0.0566707 0.0524257 30 4187 27 6.55708e+06 385760 526063. 1820.29 1.29 0.178305 0.15718 21886 126133 -1 3343 18 1685 4777 229368 53349 7.21136 7.21136 -165.703 -7.21136 0 0 666494. 2306.21 0.19 0.11 0.11 -1 -1 0.19 0.0408506 0.0359528 227 222 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 4.98 vpr 62.54 MiB 0.02 6736 -1 -1 12 0.24 -1 -1 32888 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 32 32 286 318 1 212 91 17 17 289 -1 unnamed_device 24.0 MiB 0.38 1318 5191 912 3744 535 62.5 MiB 0.06 0.00 7.44045 -154.388 -7.44045 7.44045 0.63 0.000935331 0.000863766 0.0272598 0.0252337 28 3868 27 6.55708e+06 325485 500653. 1732.36 1.84 0.153948 0.134193 21310 115450 -1 3223 18 1659 5094 315415 70126 6.55124 6.55124 -152.734 -6.55124 0 0 612192. 2118.31 0.21 0.11 0.11 -1 -1 0.21 0.0346751 0.030565 192 192 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 4.03 vpr 62.02 MiB 0.02 6580 -1 -1 12 0.13 -1 -1 32752 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63512 32 32 221 253 1 168 87 17 17 289 -1 unnamed_device 23.6 MiB 0.40 1100 6615 1512 4600 503 62.0 MiB 0.06 0.00 6.69922 -140.427 -6.69922 6.69922 0.64 0.000703776 0.000652206 0.0269216 0.0249271 30 2478 18 6.55708e+06 277265 526063. 1820.29 1.13 0.114916 0.100558 21886 126133 -1 2223 17 844 2545 122053 29057 5.85958 5.85958 -134.543 -5.85958 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0256924 0.0225684 133 127 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 5.30 vpr 62.24 MiB 0.04 6560 -1 -1 12 0.23 -1 -1 32340 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63736 31 32 261 293 1 199 88 17 17 289 -1 unnamed_device 23.6 MiB 0.32 1148 11398 2849 6739 1810 62.2 MiB 0.11 0.00 7.39043 -143.264 -7.39043 7.39043 0.63 0.000835345 0.000773965 0.0530799 0.049195 28 3477 38 6.55708e+06 301375 500653. 1732.36 2.15 0.178693 0.156617 21310 115450 -1 2746 20 1328 3866 226239 54192 6.4825 6.4825 -142.699 -6.4825 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.0349132 0.0305764 170 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 5.25 vpr 62.42 MiB 0.04 6736 -1 -1 11 0.19 -1 -1 32932 -1 -1 28 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 30 32 277 309 1 208 90 17 17 289 -1 unnamed_device 23.9 MiB 0.23 1267 6723 1289 4852 582 62.4 MiB 0.07 0.00 6.0378 -125.718 -6.0378 6.0378 0.63 0.000893289 0.00082792 0.0328412 0.0304201 28 3807 32 6.55708e+06 337540 500653. 1732.36 2.25 0.156894 0.136707 21310 115450 -1 3191 21 1678 5748 373702 80485 5.69192 5.69192 -132.007 -5.69192 0 0 612192. 2118.31 0.17 0.12 0.10 -1 -1 0.17 0.0373179 0.0325781 189 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 5.13 vpr 62.41 MiB 0.02 6792 -1 -1 11 0.23 -1 -1 32780 -1 -1 28 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 28 32 251 283 1 194 88 17 17 289 -1 unnamed_device 23.9 MiB 0.33 1153 14128 4158 7800 2170 62.4 MiB 0.13 0.00 6.59995 -118.466 -6.59995 6.59995 0.63 0.000843271 0.000781816 0.0642843 0.0595487 38 2640 22 6.55708e+06 337540 638502. 2209.35 2.04 0.228428 0.199243 23326 155178 -1 2512 16 1076 3436 166755 38643 5.62118 5.62118 -114.287 -5.62118 0 0 851065. 2944.86 0.21 0.04 0.09 -1 -1 0.21 0.0179725 0.0162048 171 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 4.19 vpr 62.08 MiB 0.04 6568 -1 -1 13 0.18 -1 -1 32644 -1 -1 25 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63572 30 32 223 255 1 182 87 17 17 289 -1 unnamed_device 23.5 MiB 0.42 1112 5463 1180 3669 614 62.1 MiB 0.06 0.00 7.87624 -151.634 -7.87624 7.87624 0.64 0.000721543 0.000667534 0.0220921 0.0203786 30 2565 19 6.55708e+06 301375 526063. 1820.29 1.13 0.105113 0.0920041 21886 126133 -1 2212 14 872 2355 114212 26889 6.8803 6.8803 -142.823 -6.8803 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0235665 0.0208631 142 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 3.94 vpr 62.60 MiB 0.24 6632 -1 -1 12 0.21 -1 -1 32500 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 32 32 269 301 1 211 91 17 17 289 -1 unnamed_device 23.9 MiB 0.30 1245 6211 1266 4515 430 62.6 MiB 0.07 0.00 7.2362 -155.292 -7.2362 7.2362 0.63 0.000867828 0.000804009 0.0304375 0.0282454 30 3044 16 6.55708e+06 325485 526063. 1820.29 0.94 0.12793 0.11183 21886 126133 -1 2579 17 1186 3221 154686 37072 6.38924 6.38924 -147.46 -6.38924 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0315858 0.0277797 180 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 4.95 vpr 62.57 MiB 0.02 6832 -1 -1 13 0.32 -1 -1 32780 -1 -1 30 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 31 32 283 315 1 212 93 17 17 289 -1 unnamed_device 24.0 MiB 0.34 1187 15843 5382 8046 2415 62.6 MiB 0.15 0.00 7.69912 -151.004 -7.69912 7.69912 0.63 0.000920329 0.00085195 0.073505 0.0679805 32 3890 40 6.55708e+06 361650 554710. 1919.41 1.66 0.21641 0.190665 22174 131602 -1 3026 22 1746 5358 342109 79126 6.9215 6.9215 -149.417 -6.9215 0 0 701300. 2426.64 0.19 0.12 0.12 -1 -1 0.19 0.0408985 0.0356324 195 192 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 4.58 vpr 62.86 MiB 0.02 6644 -1 -1 14 0.28 -1 -1 32756 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 308 340 1 227 95 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1371 16295 4299 9326 2670 62.9 MiB 0.16 0.00 7.90558 -162.398 -7.90558 7.90558 0.63 0.00100236 0.000927732 0.0798324 0.0738648 30 3631 37 6.55708e+06 373705 526063. 1820.29 1.40 0.225615 0.198937 21886 126133 -1 2871 18 1304 3991 183379 43990 6.9979 6.9979 -154.335 -6.9979 0 0 666494. 2306.21 0.20 0.09 0.12 -1 -1 0.20 0.0377738 0.033258 215 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 6.79 vpr 62.65 MiB 0.02 6696 -1 -1 14 0.26 -1 -1 32732 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 277 309 1 210 91 17 17 289 -1 unnamed_device 24.0 MiB 0.49 1364 9067 2106 6307 654 62.6 MiB 0.10 0.00 7.8859 -150.917 -7.8859 7.8859 0.63 0.000920831 0.000849217 0.0446599 0.0412789 36 3364 28 6.55708e+06 325485 612192. 2118.31 3.49 0.245341 0.213756 22750 144809 -1 3007 18 1223 4136 234389 53065 6.6399 6.6399 -143.555 -6.6399 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0344779 0.0303371 183 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 5.58 vpr 62.44 MiB 0.05 6648 -1 -1 13 0.34 -1 -1 33204 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 32 32 288 320 1 218 91 17 17 289 -1 unnamed_device 23.9 MiB 0.46 1350 6211 1219 4577 415 62.4 MiB 0.07 0.00 7.98147 -162.621 -7.98147 7.98147 0.64 0.000950398 0.00088083 0.033529 0.0310655 36 3253 20 6.55708e+06 325485 612192. 2118.31 2.23 0.215458 0.186842 22750 144809 -1 2796 16 1241 3854 246490 70969 6.8797 6.8797 -146.954 -6.8797 0 0 782063. 2706.10 0.21 0.10 0.12 -1 -1 0.21 0.0305154 0.0272715 195 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 4.15 vpr 62.05 MiB 0.02 6536 -1 -1 13 0.20 -1 -1 32772 -1 -1 24 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63540 30 32 230 262 1 183 86 17 17 289 -1 unnamed_device 23.5 MiB 0.27 1092 10670 2647 6412 1611 62.1 MiB 0.09 0.00 7.9674 -161.443 -7.9674 7.9674 0.63 0.000739961 0.000684278 0.0446374 0.0412826 32 2870 34 6.55708e+06 289320 554710. 1919.41 1.18 0.148636 0.130384 22174 131602 -1 2503 15 952 2360 174427 41477 6.98624 6.98624 -151.984 -6.98624 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0250927 0.0221699 146 142 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 5.01 vpr 62.96 MiB 0.04 6712 -1 -1 13 0.44 -1 -1 32868 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 30 32 294 326 1 230 93 17 17 289 -1 unnamed_device 24.3 MiB 0.31 1304 7653 1748 5033 872 63.0 MiB 0.09 0.00 8.34953 -161.953 -8.34953 8.34953 0.64 0.00148578 0.00136169 0.0410987 0.0380415 30 3707 24 6.55708e+06 373705 526063. 1820.29 1.64 0.163888 0.14354 21886 126133 -1 3068 19 1860 5367 251317 61007 7.0417 7.0417 -151.716 -7.0417 0 0 666494. 2306.21 0.19 0.10 0.11 -1 -1 0.19 0.0383337 0.033676 208 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 6.12 vpr 62.82 MiB 0.04 6824 -1 -1 14 0.31 -1 -1 31508 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 276 308 1 206 94 17 17 289 -1 unnamed_device 24.2 MiB 0.50 1332 7336 1480 5450 406 62.8 MiB 0.08 0.00 7.42283 -159.831 -7.42283 7.42283 0.65 0.000912859 0.000846309 0.0356172 0.0329015 28 3869 50 6.55708e+06 361650 500653. 1732.36 2.51 0.18401 0.160108 21310 115450 -1 3312 59 3355 11627 1396668 594014 7.22158 7.22158 -165.843 -7.22158 0 0 612192. 2118.31 0.17 0.43 0.08 -1 -1 0.17 0.0895655 0.0768268 184 182 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 5.26 vpr 62.84 MiB 0.02 6768 -1 -1 12 0.25 -1 -1 32924 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 31 32 293 325 1 227 95 17 17 289 -1 unnamed_device 24.2 MiB 0.26 1420 6575 1256 4964 355 62.8 MiB 0.07 0.00 8.28906 -160.635 -8.28906 8.28906 0.64 0.000954078 0.000884846 0.0323466 0.0299406 34 3727 35 6.55708e+06 385760 585099. 2024.56 2.23 0.241323 0.208752 22462 138074 -1 3257 17 1353 4070 243878 54829 7.0769 7.0769 -153.016 -7.0769 0 0 742403. 2568.87 0.20 0.09 0.12 -1 -1 0.20 0.0341754 0.0301016 203 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 4.69 vpr 62.68 MiB 0.04 6812 -1 -1 13 0.23 -1 -1 32808 -1 -1 28 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 30 32 273 305 1 212 90 17 17 289 -1 unnamed_device 23.9 MiB 0.23 1315 6522 1420 4675 427 62.7 MiB 0.07 0.00 7.42898 -137.517 -7.42898 7.42898 0.63 0.000883382 0.000818644 0.0327075 0.0302532 30 3356 18 6.55708e+06 337540 526063. 1820.29 1.69 0.137371 0.120492 21886 126133 -1 2695 17 1177 3415 163878 38950 6.63224 6.63224 -133.24 -6.63224 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0319055 0.0280749 186 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 11.44 vpr 62.93 MiB 0.03 6740 -1 -1 14 0.36 -1 -1 32908 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 310 342 1 239 96 17 17 289 -1 unnamed_device 24.2 MiB 0.49 1483 8199 1652 5918 629 62.9 MiB 0.10 0.00 8.85275 -170.114 -8.85275 8.85275 0.62 0.00101573 0.000935747 0.0435958 0.0403868 28 4521 37 6.55708e+06 385760 500653. 1732.36 8.01 0.399432 0.345288 21310 115450 -1 3801 21 1703 5128 320201 72469 7.66262 7.66262 -166.899 -7.66262 0 0 612192. 2118.31 0.17 0.12 0.10 -1 -1 0.17 0.0426671 0.0374235 220 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 5.23 vpr 62.53 MiB 0.02 6840 -1 -1 11 0.27 -1 -1 32908 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 29 32 259 291 1 190 90 17 17 289 -1 unnamed_device 24.0 MiB 0.31 1183 4512 917 3199 396 62.5 MiB 0.05 0.00 6.95549 -133.856 -6.95549 6.95549 0.67 0.000704895 0.000639451 0.0234754 0.0217469 28 3440 40 6.55708e+06 349595 500653. 1732.36 2.10 0.1519 0.131482 21310 115450 -1 2817 26 1197 3892 395829 159184 6.11164 6.11164 -132.051 -6.11164 0 0 612192. 2118.31 0.22 0.15 0.10 -1 -1 0.22 0.0383427 0.0338582 174 174 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 4.74 vpr 62.01 MiB 0.04 6512 -1 -1 13 0.15 -1 -1 32648 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63500 32 32 225 257 1 185 87 17 17 289 -1 unnamed_device 23.5 MiB 0.28 1098 6999 1531 4700 768 62.0 MiB 0.09 0.00 7.85907 -167.622 -7.85907 7.85907 0.63 0.00126489 0.00117239 0.0377926 0.034943 26 3154 29 6.55708e+06 277265 477104. 1650.88 1.85 0.137495 0.120587 21022 109990 -1 2672 19 1204 2963 191796 45593 6.5197 6.5197 -157.748 -6.5197 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.02897 0.0254386 142 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 4.94 vpr 62.51 MiB 0.02 6692 -1 -1 14 0.30 -1 -1 32772 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 32 32 273 305 1 209 91 17 17 289 -1 unnamed_device 24.0 MiB 0.23 1308 7027 1497 5027 503 62.5 MiB 0.08 0.00 8.02087 -160.438 -8.02087 8.02087 0.64 0.000895879 0.000822624 0.0354911 0.0328273 28 3737 36 6.55708e+06 325485 500653. 1732.36 1.86 0.163509 0.142313 21310 115450 -1 3207 21 1605 4752 274452 62236 7.1599 7.1599 -156.902 -7.1599 0 0 612192. 2118.31 0.25 0.12 0.12 -1 -1 0.25 0.0416046 0.0365153 183 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 5.21 vpr 62.84 MiB 0.02 6732 -1 -1 15 0.42 -1 -1 33144 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 322 354 1 251 96 17 17 289 -1 unnamed_device 24.3 MiB 0.58 1579 7323 1484 5148 691 62.8 MiB 0.09 0.00 9.31018 -193.267 -9.31018 9.31018 0.65 0.00104453 0.000967957 0.0407113 0.0376537 28 4344 42 6.55708e+06 385760 500653. 1732.36 1.66 0.198383 0.173159 21310 115450 -1 3724 18 1666 4513 251464 59186 8.13481 8.13481 -184.204 -8.13481 0 0 612192. 2118.31 0.17 0.10 0.10 -1 -1 0.17 0.0391995 0.0345258 228 228 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 4.88 vpr 62.09 MiB 0.03 6664 -1 -1 11 0.17 -1 -1 32612 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63576 32 32 218 250 1 164 86 17 17 289 -1 unnamed_device 23.6 MiB 0.59 1088 7079 1594 5001 484 62.1 MiB 0.07 0.00 6.82798 -137.917 -6.82798 6.82798 0.64 0.000704369 0.000652459 0.0288596 0.0267233 38 2286 15 6.55708e+06 265210 638502. 2209.35 1.67 0.159935 0.13858 23326 155178 -1 2053 17 798 2444 119607 27783 5.83204 5.83204 -129.113 -5.83204 0 0 851065. 2944.86 0.22 0.06 0.13 -1 -1 0.22 0.0253795 0.022281 126 124 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 10.68 vpr 62.31 MiB 0.05 6488 -1 -1 12 0.24 -1 -1 32564 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63808 31 32 244 276 1 192 89 17 17 289 -1 unnamed_device 23.7 MiB 0.36 1155 8207 1978 5141 1088 62.3 MiB 0.10 0.00 7.38032 -154.384 -7.38032 7.38032 0.63 0.000795518 0.000737807 0.0461021 0.0429769 40 2525 16 6.55708e+06 313430 666494. 2306.21 7.52 0.319559 0.276084 23614 160646 -1 2436 15 988 2915 152941 35751 6.47024 6.47024 -145.36 -6.47024 0 0 872365. 3018.56 0.22 0.07 0.14 -1 -1 0.22 0.0272887 0.024086 157 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 6.04 vpr 62.81 MiB 0.06 6656 -1 -1 12 0.32 -1 -1 32876 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 301 333 1 231 95 17 17 289 -1 unnamed_device 24.1 MiB 0.45 1424 7439 1505 5396 538 62.8 MiB 0.11 0.00 7.41461 -164.576 -7.41461 7.41461 0.73 0.000996995 0.000919504 0.051374 0.0476477 28 4519 45 6.55708e+06 373705 500653. 1732.36 2.47 0.212758 0.186348 21310 115450 -1 3481 18 1714 5153 317181 70391 6.7249 6.7249 -164.1 -6.7249 0 0 612192. 2118.31 0.17 0.11 0.10 -1 -1 0.17 0.0374782 0.0329476 209 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 4.82 vpr 62.64 MiB 0.04 6656 -1 -1 12 0.26 -1 -1 32960 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 278 310 1 215 92 17 17 289 -1 unnamed_device 23.9 MiB 0.55 1429 8579 2186 5781 612 62.6 MiB 0.09 0.00 7.42022 -157.463 -7.42022 7.42022 0.66 0.000899436 0.000833432 0.040738 0.0377066 30 3708 20 6.55708e+06 337540 526063. 1820.29 1.45 0.152667 0.134183 21886 126133 -1 3055 18 1323 4149 205466 48529 6.62964 6.62964 -153.129 -6.62964 0 0 666494. 2306.21 0.20 0.09 0.11 -1 -1 0.20 0.0353409 0.0311607 186 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 5.74 vpr 63.05 MiB 0.02 6788 -1 -1 14 0.48 -1 -1 33388 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 333 365 1 247 99 17 17 289 -1 unnamed_device 24.4 MiB 0.27 1656 14691 3485 9017 2189 63.1 MiB 0.15 0.00 8.55829 -177.042 -8.55829 8.55829 0.64 0.00113794 0.00102892 0.0742777 0.0686806 38 3905 20 6.55708e+06 421925 638502. 2209.35 2.29 0.285914 0.250365 23326 155178 -1 3322 17 1561 4973 239144 54910 7.28776 7.28776 -161.226 -7.28776 0 0 851065. 2944.86 0.22 0.10 0.13 -1 -1 0.22 0.0391986 0.0346062 241 239 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 4.87 vpr 62.30 MiB 0.02 6708 -1 -1 11 0.23 -1 -1 32444 -1 -1 27 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 30 32 261 293 1 202 89 17 17 289 -1 unnamed_device 23.9 MiB 0.57 1210 13157 4017 6643 2497 62.3 MiB 0.12 0.00 6.86503 -131.636 -6.86503 6.86503 0.68 0.000861997 0.000798509 0.0613439 0.0567996 30 3211 36 6.55708e+06 325485 526063. 1820.29 1.44 0.188284 0.165574 21886 126133 -1 2592 16 1207 3568 175162 41377 6.03524 6.03524 -127.253 -6.03524 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0302565 0.026676 176 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 4.49 vpr 61.92 MiB 0.02 6504 -1 -1 11 0.19 -1 -1 32408 -1 -1 25 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63404 27 32 217 249 1 157 84 17 17 289 -1 unnamed_device 23.4 MiB 0.29 858 9234 2019 6554 661 61.9 MiB 0.08 0.00 6.39815 -115.858 -6.39815 6.39815 0.79 0.000716243 0.000664189 0.0397719 0.0368491 28 2584 24 6.55708e+06 301375 500653. 1732.36 1.16 0.120316 0.106681 21310 115450 -1 2127 23 1370 3807 202400 48141 5.45152 5.45152 -113.59 -5.45152 0 0 612192. 2118.31 0.21 0.09 0.10 -1 -1 0.21 0.0301293 0.0266312 138 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 9.34 vpr 63.04 MiB 0.03 6980 -1 -1 13 0.54 -1 -1 32888 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 373 405 1 274 104 17 17 289 -1 unnamed_device 24.8 MiB 0.32 1915 8888 1943 6342 603 63.0 MiB 0.11 0.00 7.96961 -161.89 -7.96961 7.96961 0.65 0.00120778 0.00111628 0.0480526 0.0443725 36 5494 32 6.55708e+06 482200 612192. 2118.31 5.76 0.319339 0.277987 22750 144809 -1 4157 17 1833 6325 347640 77835 7.03004 7.03004 -153.974 -7.03004 0 0 782063. 2706.10 0.21 0.12 0.13 -1 -1 0.21 0.0434667 0.0383805 280 279 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 5.90 vpr 62.43 MiB 0.03 6836 -1 -1 14 0.31 -1 -1 33400 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63924 31 32 269 301 1 201 89 17 17 289 -1 unnamed_device 23.9 MiB 0.28 1307 6821 1398 4713 710 62.4 MiB 0.08 0.00 8.63003 -171.716 -8.63003 8.63003 0.71 0.000878922 0.00081404 0.0349227 0.0323696 28 3653 27 6.55708e+06 313430 500653. 1732.36 2.57 0.153636 0.135104 21310 115450 -1 3148 17 1242 3485 216176 48959 7.69016 7.69016 -161.531 -7.69016 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0317754 0.0279348 178 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 5.13 vpr 62.01 MiB 0.06 6484 -1 -1 12 0.20 -1 -1 32304 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63496 32 32 228 260 1 185 91 17 17 289 -1 unnamed_device 23.5 MiB 0.45 1197 8251 1803 5271 1177 62.0 MiB 0.08 0.00 7.37817 -162.484 -7.37817 7.37817 0.64 0.000746662 0.000691107 0.0335085 0.0310046 28 3416 42 6.55708e+06 325485 500653. 1732.36 1.85 0.151532 0.132604 21310 115450 -1 2803 16 1165 3279 221762 49308 6.61598 6.61598 -159.032 -6.61598 0 0 612192. 2118.31 0.25 0.08 0.11 -1 -1 0.25 0.0249639 0.0224962 144 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 9.98 vpr 62.35 MiB 0.02 6780 -1 -1 13 0.28 -1 -1 32744 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63848 32 32 265 297 1 201 89 17 17 289 -1 unnamed_device 23.9 MiB 0.40 1296 6623 1420 4442 761 62.4 MiB 0.08 0.00 7.83929 -154.667 -7.83929 7.83929 0.69 0.000971325 0.000889427 0.035415 0.0325059 30 3458 27 6.55708e+06 301375 526063. 1820.29 6.71 0.267236 0.230739 21886 126133 -1 2834 16 1230 3612 182845 42395 6.7621 6.7621 -149.574 -6.7621 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0305594 0.026957 172 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 6.21 vpr 62.98 MiB 0.02 6844 -1 -1 13 0.34 -1 -1 33368 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 325 357 1 256 98 17 17 289 -1 unnamed_device 24.4 MiB 0.39 1675 5723 977 4473 273 63.0 MiB 0.07 0.00 7.72485 -162.113 -7.72485 7.72485 0.71 0.000808246 0.000739602 0.0264645 0.0242867 30 4421 42 6.55708e+06 421925 526063. 1820.29 2.45 0.181906 0.159695 21886 126133 -1 3443 17 1712 5211 254254 59406 6.6399 6.6399 -153.637 -6.6399 0 0 666494. 2306.21 0.19 0.11 0.11 -1 -1 0.19 0.0388471 0.0343277 235 234 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 4.91 vpr 62.62 MiB 0.02 6640 -1 -1 11 0.23 -1 -1 32884 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 30 32 287 319 1 210 94 17 17 289 -1 unnamed_device 24.1 MiB 0.37 1363 8827 2077 5986 764 62.6 MiB 0.06 0.00 7.0834 -142.912 -7.0834 7.0834 0.62 0.000436483 0.000402726 0.0218388 0.0200895 30 3732 37 6.55708e+06 385760 526063. 1820.29 1.75 0.13045 0.113486 21886 126133 -1 3008 17 1260 4216 214091 48757 6.23184 6.23184 -139.409 -6.23184 0 0 666494. 2306.21 0.27 0.09 0.12 -1 -1 0.27 0.0320649 0.0288437 199 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 7.10 vpr 62.83 MiB 0.03 6740 -1 -1 15 0.32 -1 -1 32936 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 297 329 1 230 93 17 17 289 -1 unnamed_device 24.1 MiB 0.31 1473 9543 2499 5737 1307 62.8 MiB 0.10 0.00 9.02492 -182.614 -9.02492 9.02492 0.65 0.000963107 0.00088708 0.0484339 0.0447229 36 3930 43 6.55708e+06 349595 612192. 2118.31 3.84 0.278441 0.241763 22750 144809 -1 3220 17 1436 4374 250082 56644 7.80835 7.80835 -172.133 -7.80835 0 0 782063. 2706.10 0.20 0.10 0.13 -1 -1 0.20 0.0352606 0.0310257 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 5.66 vpr 62.60 MiB 0.02 6668 -1 -1 13 0.32 -1 -1 32952 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 311 343 1 238 96 17 17 289 -1 unnamed_device 24.0 MiB 0.18 1528 11922 3138 7505 1279 62.6 MiB 0.12 0.00 8.01701 -168.403 -8.01701 8.01701 0.64 0.00101178 0.000935502 0.0593763 0.0548676 34 4013 32 6.55708e+06 385760 585099. 2024.56 2.46 0.279384 0.242796 22462 138074 -1 3427 17 1435 4402 258242 57834 6.85276 6.85276 -157.073 -6.85276 0 0 742403. 2568.87 0.27 0.10 0.14 -1 -1 0.27 0.0374917 0.0330817 217 217 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 7.10 vpr 62.14 MiB 0.02 6600 -1 -1 12 0.21 -1 -1 32340 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63628 29 32 236 268 1 192 90 17 17 289 -1 unnamed_device 23.6 MiB 0.44 1144 6321 1459 4287 575 62.1 MiB 0.07 0.00 6.98904 -150.776 -6.98904 6.98904 0.64 0.000777179 0.00072137 0.0269759 0.0250142 30 2863 42 6.55708e+06 349595 526063. 1820.29 4.00 0.241644 0.209494 21886 126133 -1 2340 16 1097 2746 125880 30697 6.25938 6.25938 -142.04 -6.25938 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0264391 0.0233918 159 151 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 10.08 vpr 61.95 MiB 0.02 6680 -1 -1 11 0.18 -1 -1 32504 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63432 32 32 231 263 1 179 86 17 17 289 -1 unnamed_device 23.4 MiB 0.37 1041 8402 1813 6153 436 61.9 MiB 0.08 0.00 6.97021 -142.93 -6.97021 6.97021 0.65 0.00073734 0.000683055 0.0353529 0.0327063 30 2905 24 6.55708e+06 265210 526063. 1820.29 7.02 0.220582 0.190696 21886 126133 -1 2264 17 1036 2912 133804 32948 5.86158 5.86158 -135.772 -5.86158 0 0 666494. 2306.21 0.26 0.07 0.12 -1 -1 0.26 0.0251092 0.0221089 138 137 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 5.45 vpr 62.65 MiB 0.02 6684 -1 -1 13 0.30 -1 -1 32756 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 31 32 294 326 1 224 94 17 17 289 -1 unnamed_device 24.0 MiB 0.35 1528 7975 1701 5466 808 62.6 MiB 0.09 0.00 8.19329 -167.366 -8.19329 8.19329 0.69 0.000955143 0.000883771 0.0391456 0.0361949 28 4213 29 6.55708e+06 373705 500653. 1732.36 2.22 0.171767 0.150128 21310 115450 -1 3366 17 1498 4604 263771 59764 7.34424 7.34424 -163.794 -7.34424 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.037373 0.032921 204 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 5.58 vpr 61.96 MiB 0.02 6568 -1 -1 10 0.17 -1 -1 32764 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63444 29 32 221 253 1 166 85 17 17 289 -1 unnamed_device 23.5 MiB 0.21 1030 5107 1053 3581 473 62.0 MiB 0.05 0.00 6.08471 -123.999 -6.08471 6.08471 0.63 0.000724127 0.000671014 0.0231606 0.0214633 26 3016 46 6.55708e+06 289320 477104. 1650.88 2.79 0.140875 0.122289 21022 109990 -1 2373 19 1107 3180 197521 45332 5.45152 5.45152 -125.81 -5.45152 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0281723 0.0246893 138 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 5.59 vpr 62.17 MiB 0.02 6656 -1 -1 14 0.18 -1 -1 32692 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63664 32 32 240 272 1 178 88 17 17 289 -1 unnamed_device 23.6 MiB 0.45 1019 11203 3089 5915 2199 62.2 MiB 0.10 0.00 7.69221 -156.392 -7.69221 7.69221 0.64 0.000775238 0.000716406 0.0470527 0.0435112 28 3519 29 6.55708e+06 289320 500653. 1732.36 2.46 0.159999 0.140997 21310 115450 -1 2590 22 1381 4103 241007 57254 7.4813 7.4813 -165.085 -7.4813 0 0 612192. 2118.31 0.17 0.10 0.11 -1 -1 0.17 0.0350871 0.0307997 149 146 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 5.62 vpr 62.78 MiB 0.04 6760 -1 -1 12 0.33 -1 -1 32840 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 31 32 292 324 1 211 92 17 17 289 -1 unnamed_device 24.2 MiB 0.29 1351 11891 3061 6959 1871 62.8 MiB 0.12 0.00 7.58423 -159.03 -7.58423 7.58423 0.63 0.000961983 0.000886965 0.0588962 0.0543274 36 3367 18 6.55708e+06 349595 612192. 2118.31 2.43 0.246747 0.215187 22750 144809 -1 2996 17 1263 4054 221348 50956 6.38924 6.38924 -147.781 -6.38924 0 0 782063. 2706.10 0.21 0.09 0.12 -1 -1 0.21 0.0342994 0.0301751 201 201 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 4.50 vpr 62.11 MiB 0.02 6644 -1 -1 12 0.15 -1 -1 32392 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63600 31 32 229 261 1 182 86 17 17 289 -1 unnamed_device 23.6 MiB 0.30 1079 5567 1026 4331 210 62.1 MiB 0.06 0.00 6.95154 -149.121 -6.95154 6.95154 0.67 0.000623329 0.000568003 0.0243021 0.0225048 28 3150 46 6.55708e+06 277265 500653. 1732.36 1.60 0.142242 0.123578 21310 115450 -1 2686 18 989 2588 183878 45305 6.22018 6.22018 -144.568 -6.22018 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0272408 0.0239668 141 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 4.73 vpr 62.62 MiB 0.02 6844 -1 -1 12 0.22 -1 -1 32700 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 282 314 1 205 91 17 17 289 -1 unnamed_device 24.2 MiB 0.27 1263 7843 1830 5405 608 62.6 MiB 0.08 0.00 7.086 -151.926 -7.086 7.086 0.64 0.000898875 0.000832249 0.0383897 0.0354925 28 3643 19 6.55708e+06 325485 500653. 1732.36 1.72 0.14975 0.131128 21310 115450 -1 2975 24 1345 4339 429136 160252 6.03324 6.03324 -147.066 -6.03324 0 0 612192. 2118.31 0.17 0.16 0.10 -1 -1 0.17 0.0439523 0.0382702 188 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 10.71 vpr 62.55 MiB 0.02 6780 -1 -1 13 0.27 -1 -1 33028 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 31 32 269 301 1 216 92 17 17 289 -1 unnamed_device 23.9 MiB 0.28 1349 6509 1390 4237 882 62.6 MiB 0.07 0.00 7.60996 -160.091 -7.60996 7.60996 0.63 0.000893594 0.000827738 0.0317426 0.0293922 28 4174 46 6.55708e+06 349595 500653. 1732.36 7.51 0.352884 0.302938 21310 115450 -1 3442 36 1483 4579 649016 276569 6.5197 6.5197 -157.574 -6.5197 0 0 612192. 2118.31 0.20 0.23 0.11 -1 -1 0.20 0.058293 0.0504437 179 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 4.14 vpr 62.15 MiB 0.04 6528 -1 -1 11 0.16 -1 -1 32324 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 32 32 237 269 1 184 91 17 17 289 -1 unnamed_device 23.6 MiB 0.23 1256 8251 2031 5471 749 62.1 MiB 0.08 0.00 6.67834 -143.715 -6.67834 6.67834 0.64 0.000792608 0.000735385 0.0349008 0.0323788 28 3436 25 6.55708e+06 325485 500653. 1732.36 1.28 0.136913 0.120487 21310 115450 -1 3020 19 1259 4025 242298 55462 5.95224 5.95224 -142.267 -5.95224 0 0 612192. 2118.31 0.17 0.09 0.11 -1 -1 0.17 0.0298066 0.0261791 148 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 4.86 vpr 62.21 MiB 0.02 6492 -1 -1 13 0.20 -1 -1 32452 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63708 32 32 259 291 1 202 91 17 17 289 -1 unnamed_device 23.6 MiB 0.24 1339 8047 1963 5261 823 62.2 MiB 0.08 0.00 7.72555 -161.807 -7.72555 7.72555 0.64 0.000846725 0.000784054 0.0366124 0.0338966 28 3857 33 6.55708e+06 325485 500653. 1732.36 1.87 0.155823 0.135952 21310 115450 -1 3031 30 1465 4214 436287 168804 6.9195 6.9195 -159.011 -6.9195 0 0 612192. 2118.31 0.17 0.16 0.10 -1 -1 0.17 0.0468029 0.0405681 167 165 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 5.68 vpr 62.52 MiB 0.04 6772 -1 -1 13 0.26 -1 -1 32808 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 32 32 277 309 1 220 91 17 17 289 -1 unnamed_device 24.0 MiB 0.18 1276 15187 4382 8407 2398 62.5 MiB 0.15 0.00 7.99583 -160.474 -7.99583 7.99583 0.65 0.000907748 0.00084118 0.0713909 0.0660637 36 3413 20 6.55708e+06 325485 612192. 2118.31 2.59 0.24837 0.217297 22750 144809 -1 2918 17 1346 4006 219400 51325 7.09316 7.09316 -153.316 -7.09316 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0326906 0.0287648 184 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 4.95 vpr 62.22 MiB 0.04 6872 -1 -1 11 0.24 -1 -1 32716 -1 -1 28 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63716 29 32 245 277 1 189 89 17 17 289 -1 unnamed_device 23.6 MiB 0.32 1142 12761 3414 7382 1965 62.2 MiB 0.12 0.00 6.37111 -124.414 -6.37111 6.37111 0.64 0.000808228 0.000747209 0.0527179 0.0482621 36 2747 19 6.55708e+06 337540 612192. 2118.31 1.81 0.20936 0.181625 22750 144809 -1 2404 16 957 3014 161389 37175 5.85132 5.85132 -121.991 -5.85132 0 0 782063. 2706.10 0.20 0.07 0.13 -1 -1 0.20 0.027754 0.0243508 162 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 4.54 vpr 63.13 MiB 0.02 6760 -1 -1 14 0.35 -1 -1 33556 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 316 348 1 250 96 17 17 289 -1 unnamed_device 24.4 MiB 0.38 1569 9951 2260 6812 879 63.1 MiB 0.11 0.00 8.3634 -177.338 -8.3634 8.3634 0.63 0.0010227 0.000946832 0.0507044 0.0468561 30 4355 28 6.55708e+06 385760 526063. 1820.29 1.35 0.185312 0.162365 21886 126133 -1 3455 18 1687 4974 233475 55515 7.34382 7.34382 -169.849 -7.34382 0 0 666494. 2306.21 0.18 0.10 0.11 -1 -1 0.18 0.0381553 0.0336846 225 222 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 4.91 vpr 62.10 MiB 0.02 6564 -1 -1 12 0.19 -1 -1 32512 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63588 31 32 230 262 1 186 91 17 17 289 -1 unnamed_device 23.6 MiB 0.43 1144 6619 1429 4488 702 62.1 MiB 0.06 0.00 6.81857 -143.271 -6.81857 6.81857 0.64 0.000739445 0.00068451 0.0268686 0.02487 36 2680 25 6.55708e+06 337540 612192. 2118.31 1.78 0.176467 0.152667 22750 144809 -1 2409 14 987 2636 153022 35561 6.03324 6.03324 -139.316 -6.03324 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.0237312 0.0209983 145 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 5.43 vpr 62.62 MiB 0.02 6852 -1 -1 13 0.34 -1 -1 32880 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 282 314 1 213 91 17 17 289 -1 unnamed_device 23.9 MiB 0.39 1396 7843 1736 5120 987 62.6 MiB 0.08 0.00 7.69421 -153.973 -7.69421 7.69421 0.58 0.00103015 0.000957193 0.0386503 0.0357159 28 3900 43 6.55708e+06 325485 500653. 1732.36 2.23 0.180634 0.15731 21310 115450 -1 3286 21 1503 4699 370705 97066 6.8823 6.8823 -150.837 -6.8823 0 0 612192. 2118.31 0.17 0.12 0.10 -1 -1 0.17 0.038469 0.0336339 189 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 5.12 vpr 61.99 MiB 0.05 6544 -1 -1 13 0.22 -1 -1 32832 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63476 32 32 235 267 1 180 89 17 17 289 -1 unnamed_device 23.4 MiB 0.36 1076 10583 2933 6087 1563 62.0 MiB 0.09 0.00 7.44215 -162.135 -7.44215 7.44215 0.65 0.000747898 0.000692173 0.0431559 0.0399264 28 3369 28 6.55708e+06 301375 500653. 1732.36 1.99 0.148937 0.131212 21310 115450 -1 2712 22 1331 3578 210486 49292 6.87064 6.87064 -160.132 -6.87064 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.0331016 0.0289265 146 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 7.32 vpr 62.36 MiB 0.03 6740 -1 -1 12 0.21 -1 -1 32900 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 265 297 1 193 90 17 17 289 -1 unnamed_device 23.9 MiB 0.31 1148 5517 1034 4096 387 62.4 MiB 0.06 0.00 7.36755 -151.17 -7.36755 7.36755 0.66 0.000993175 0.000915804 0.0281481 0.0261209 30 2794 18 6.55708e+06 313430 526063. 1820.29 4.29 0.234482 0.201916 21886 126133 -1 2452 16 1021 3422 165754 38479 6.5237 6.5237 -142.626 -6.5237 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0304638 0.0267292 172 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 7.78 vpr 63.07 MiB 0.03 6896 -1 -1 15 0.49 -1 -1 32836 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 344 376 1 259 98 17 17 289 -1 unnamed_device 24.9 MiB 0.31 1759 9998 2422 6696 880 63.1 MiB 0.14 0.00 8.78932 -180.299 -8.78932 8.78932 0.64 0.00112224 0.00103771 0.0649369 0.0598937 36 4483 32 6.55708e+06 409870 612192. 2118.31 4.20 0.312555 0.272257 22750 144809 -1 3842 20 2164 7171 393829 87274 7.72935 7.72935 -170.09 -7.72935 0 0 782063. 2706.10 0.21 0.14 0.13 -1 -1 0.21 0.0473715 0.0417671 250 250 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 3.81 vpr 61.55 MiB 0.02 6444 -1 -1 10 0.09 -1 -1 31968 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63028 30 32 173 205 1 127 78 17 17 289 -1 unnamed_device 23.1 MiB 0.31 757 9042 2084 6396 562 61.6 MiB 0.07 0.00 5.22063 -120.025 -5.22063 5.22063 0.63 0.000561989 0.000522243 0.0325528 0.0301338 28 1925 17 6.55708e+06 192880 500653. 1732.36 1.05 0.0960395 0.0843475 21310 115450 -1 1696 14 643 1545 95317 22323 4.72266 4.72266 -118.396 -4.72266 0 0 612192. 2118.31 0.17 0.05 0.10 -1 -1 0.17 0.0174701 0.0153802 92 85 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 4.03 vpr 62.40 MiB 0.02 6524 -1 -1 13 0.18 -1 -1 32544 -1 -1 29 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63900 30 32 229 261 1 172 91 17 17 289 -1 unnamed_device 23.8 MiB 0.18 1069 6415 1411 4237 767 62.4 MiB 0.06 0.00 7.77311 -151.473 -7.77311 7.77311 0.63 0.000752674 0.000698341 0.0264341 0.0244626 28 2954 45 6.55708e+06 349595 500653. 1732.36 1.20 0.144514 0.125828 21310 115450 -1 2445 29 961 2684 276871 103199 6.8385 6.8385 -148.047 -6.8385 0 0 612192. 2118.31 0.18 0.12 0.10 -1 -1 0.18 0.0412877 0.0360205 150 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 4.77 vpr 62.38 MiB 0.04 6520 -1 -1 12 0.21 -1 -1 32516 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63872 32 32 261 293 1 201 87 17 17 289 -1 unnamed_device 23.7 MiB 0.28 1241 11223 2642 6703 1878 62.4 MiB 0.11 0.00 6.72746 -150.964 -6.72746 6.72746 0.63 0.000841141 0.000779116 0.0520145 0.0481425 34 3118 16 6.55708e+06 277265 585099. 2024.56 1.80 0.209822 0.182621 22462 138074 -1 2784 18 1234 3555 200327 47240 6.06278 6.06278 -146.84 -6.06278 0 0 742403. 2568.87 0.20 0.08 0.12 -1 -1 0.20 0.0312523 0.0274015 167 167 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 5.09 vpr 61.95 MiB 0.02 6552 -1 -1 9 0.13 -1 -1 32508 -1 -1 25 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63432 25 32 184 216 1 141 82 17 17 289 -1 unnamed_device 23.4 MiB 0.16 840 9694 2571 5897 1226 61.9 MiB 0.07 0.00 5.60806 -104.508 -5.60806 5.60806 0.67 0.000469714 0.000429671 0.0288376 0.0264435 26 2429 32 6.55708e+06 301375 477104. 1650.88 2.39 0.115528 0.100615 21022 109990 -1 2030 21 959 2849 201894 44162 5.05372 5.05372 -102.414 -5.05372 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0255648 0.0222381 112 111 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 7.94 vpr 62.73 MiB 0.05 6656 -1 -1 12 0.26 -1 -1 32744 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 302 334 1 239 98 17 17 289 -1 unnamed_device 24.2 MiB 0.55 1640 5273 863 4118 292 62.7 MiB 0.06 0.00 7.59969 -165.851 -7.59969 7.59969 0.64 0.000983417 0.000902618 0.0264788 0.0245066 36 4101 31 6.55708e+06 409870 612192. 2118.31 4.44 0.242036 0.209418 22750 144809 -1 3664 27 1663 4868 389419 120702 6.6811 6.6811 -162.861 -6.6811 0 0 782063. 2706.10 0.20 0.15 0.13 -1 -1 0.20 0.0493503 0.0430863 209 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 6.33 vpr 62.79 MiB 0.04 6724 -1 -1 14 0.31 -1 -1 32944 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 31 32 295 327 1 219 92 17 17 289 -1 unnamed_device 24.1 MiB 0.49 1228 13340 3394 7367 2579 62.8 MiB 0.14 0.00 8.33716 -163.889 -8.33716 8.33716 0.64 0.000984721 0.000903453 0.0664498 0.0612243 38 3334 33 6.55708e+06 349595 638502. 2209.35 2.88 0.287428 0.250907 23326 155178 -1 2567 15 1241 3638 169276 42191 7.26282 7.26282 -154.559 -7.26282 0 0 851065. 2944.86 0.21 0.08 0.11 -1 -1 0.21 0.0325453 0.0287779 204 204 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 3.78 vpr 62.83 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30832 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 438 350 1 194 100 17 17 289 -1 unnamed_device 24.4 MiB 0.12 929 17268 4565 10218 2485 62.8 MiB 0.17 0.00 4.24756 -141.398 -4.24756 4.24756 0.64 0.000827988 0.000767268 0.064469 0.0596802 32 2653 22 6.64007e+06 452088 554710. 1919.41 0.96 0.162961 0.14444 22834 132086 -1 2063 20 1737 2888 190251 43596 3.62623 3.62623 -138.638 -3.62623 0 0 701300. 2426.64 0.19 0.09 0.10 -1 -1 0.19 0.0316439 0.0275912 153 96 32 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 3.67 vpr 62.99 MiB 0.03 7244 -1 -1 1 0.03 -1 -1 30636 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 30 32 409 330 1 186 85 17 17 289 -1 unnamed_device 24.3 MiB 0.19 873 12919 4129 6395 2395 63.0 MiB 0.13 0.00 4.44716 -130.844 -4.44716 4.44716 0.64 0.000764562 0.000709835 0.0559314 0.0519323 32 2348 20 6.64007e+06 288834 554710. 1919.41 0.86 0.144281 0.127743 22834 132086 -1 1994 22 1856 3093 219120 49732 3.70343 3.70343 -133.099 -3.70343 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0324432 0.0282045 142 91 30 30 89 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 3.58 vpr 62.97 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 30500 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 387 309 1 186 99 17 17 289 -1 unnamed_device 24.4 MiB 0.12 1003 9675 2005 7104 566 63.0 MiB 0.10 0.00 3.83457 -129.818 -3.83457 3.83457 0.66 0.000742313 0.000689013 0.0347448 0.0322428 30 2305 22 6.64007e+06 439530 526063. 1820.29 0.87 0.129417 0.113479 22546 126617 -1 2037 18 1150 1877 103344 23596 3.77883 3.77883 -135.437 -3.77883 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0267707 0.0234137 142 65 54 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 3.69 vpr 62.72 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 30508 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 29 32 343 267 1 184 85 17 17 289 -1 unnamed_device 24.0 MiB 0.08 990 11245 3461 6773 1011 62.7 MiB 0.12 0.00 4.46418 -132.921 -4.46418 4.46418 0.64 0.000688526 0.000639881 0.042101 0.0390755 26 2405 19 6.64007e+06 301392 477104. 1650.88 1.03 0.127391 0.112594 21682 110474 -1 2136 21 1720 2916 197802 44415 3.71763 3.71763 -133.945 -3.71763 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0281545 0.0245736 138 34 87 29 29 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 3.62 vpr 62.80 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30368 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 376 288 1 195 86 17 17 289 -1 unnamed_device 24.2 MiB 0.11 849 15017 4515 8552 1950 62.8 MiB 0.16 0.00 4.14936 -139.21 -4.14936 4.14936 0.63 0.000698925 0.00064501 0.0620162 0.057641 32 2360 21 6.64007e+06 276276 554710. 1919.41 0.90 0.149161 0.132535 22834 132086 -1 1907 22 1808 3168 189233 46987 3.49503 3.49503 -134.831 -3.49503 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0324253 0.0284015 153 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 3.66 vpr 62.93 MiB 0.04 7016 -1 -1 1 0.04 -1 -1 30516 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 402 316 1 199 103 17 17 289 -1 unnamed_device 24.3 MiB 0.11 1024 19142 5848 10342 2952 62.9 MiB 0.18 0.00 3.5603 -122.153 -3.5603 3.5603 0.66 0.000769856 0.000712554 0.0637324 0.0590922 32 2260 24 6.64007e+06 489762 554710. 1919.41 0.86 0.157237 0.139232 22834 132086 -1 1964 21 1392 2247 141883 33754 2.95797 2.95797 -118.183 -2.95797 0 0 701300. 2426.64 0.19 0.08 0.13 -1 -1 0.19 0.0317082 0.0276797 156 64 63 32 63 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.37 vpr 62.18 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30580 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63672 27 32 269 226 1 135 79 17 17 289 -1 unnamed_device 23.6 MiB 0.10 722 12923 4015 7171 1737 62.2 MiB 0.11 0.00 3.7987 -103.375 -3.7987 3.7987 0.63 0.00056724 0.000527573 0.0454016 0.0422238 32 1657 16 6.64007e+06 251160 554710. 1919.41 0.76 0.107912 0.0956302 22834 132086 -1 1469 18 836 1477 106951 23765 2.89177 2.89177 -98.2789 -2.89177 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0209956 0.0182635 96 34 54 27 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.11 vpr 62.89 MiB 0.02 6876 -1 -1 1 0.03 -1 -1 30240 -1 -1 34 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 31 32 317 242 1 185 97 17 17 289 -1 unnamed_device 24.0 MiB 0.09 948 16081 4441 8879 2761 62.9 MiB 0.14 0.00 3.49449 -109.504 -3.49449 3.49449 0.63 0.000668355 0.00062178 0.0508719 0.0473057 28 2371 22 6.64007e+06 426972 500653. 1732.36 0.92 0.133171 0.118063 21970 115934 -1 1925 20 1174 1957 131265 29413 2.65357 2.65357 -104.231 -2.65357 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0260766 0.0227478 140 4 115 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.41 vpr 62.50 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30228 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 31 32 338 292 1 147 80 17 17 289 -1 unnamed_device 23.6 MiB 0.15 706 7820 1805 5417 598 62.5 MiB 0.08 0.00 3.31336 -101.862 -3.31336 3.31336 0.63 0.000657452 0.000610882 0.0320631 0.0298232 28 1873 21 6.64007e+06 213486 500653. 1732.36 0.74 0.108945 0.095574 21970 115934 -1 1617 19 763 1280 81950 19016 2.76197 2.76197 -100.334 -2.76197 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.0250137 0.0218173 106 85 0 0 84 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.24 vpr 62.62 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30336 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 314 256 1 162 81 17 17 289 -1 unnamed_device 24.0 MiB 0.15 890 10756 2975 5928 1853 62.6 MiB 0.10 0.00 3.5061 -124.869 -3.5061 3.5061 0.64 0.000648222 0.000603082 0.0421452 0.0392251 32 2057 20 6.64007e+06 213486 554710. 1919.41 0.83 0.117423 0.103772 22834 132086 -1 1852 18 1316 2016 140487 32575 2.99897 2.99897 -124.432 -2.99897 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0244739 0.0213861 121 34 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.37 vpr 62.62 MiB 0.03 6856 -1 -1 1 0.03 -1 -1 30176 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 30 32 325 273 1 151 80 17 17 289 -1 unnamed_device 23.9 MiB 0.14 822 14012 5060 7295 1657 62.6 MiB 0.13 0.00 3.4841 -115.834 -3.4841 3.4841 0.65 0.000642683 0.000596339 0.0547004 0.0508058 28 1767 16 6.64007e+06 226044 500653. 1732.36 0.76 0.12621 0.112089 21970 115934 -1 1573 18 969 1421 92248 21186 2.81677 2.81677 -113.582 -2.81677 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.0236129 0.0206423 110 63 30 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.42 vpr 62.62 MiB 0.03 6848 -1 -1 1 0.03 -1 -1 30528 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 23.9 MiB 0.10 840 9753 2297 6936 520 62.6 MiB 0.09 0.00 3.52209 -114.564 -3.52209 3.52209 0.67 0.00065979 0.00061293 0.0329072 0.0305616 30 1922 21 6.64007e+06 364182 526063. 1820.29 0.80 0.109337 0.095981 22546 126617 -1 1659 17 887 1552 78328 18945 2.76557 2.76557 -107.813 -2.76557 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0226312 0.0197843 114 65 25 25 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 3.76 vpr 62.99 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 30384 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 386 305 1 188 98 17 17 289 -1 unnamed_device 24.4 MiB 0.21 893 19448 6133 10048 3267 63.0 MiB 0.20 0.00 3.56129 -122.026 -3.56129 3.56129 0.55 0.000759823 0.000705655 0.0745375 0.0692153 32 2222 23 6.64007e+06 426972 554710. 1919.41 0.91 0.165859 0.147789 22834 132086 -1 2011 22 1725 2969 222324 48004 2.95177 2.95177 -118.25 -2.95177 0 0 701300. 2426.64 0.19 0.09 0.13 -1 -1 0.19 0.0317495 0.0277204 145 58 64 32 57 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.30 vpr 63.09 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30480 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 407 319 1 200 100 17 17 289 -1 unnamed_device 24.3 MiB 0.14 1031 17036 4693 9820 2523 63.1 MiB 0.16 0.00 4.31123 -147.759 -4.31123 4.31123 0.63 0.000774397 0.000719396 0.0598716 0.0555632 26 2990 23 6.64007e+06 452088 477104. 1650.88 1.57 0.155599 0.137807 21682 110474 -1 2394 21 1911 2966 220188 47262 3.77463 3.77463 -148.098 -3.77463 0 0 585099. 2024.56 0.16 0.11 0.10 -1 -1 0.16 0.0365356 0.0318073 158 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.38 vpr 62.15 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 30596 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 29 32 272 228 1 145 80 17 17 289 -1 unnamed_device 23.5 MiB 0.11 800 8852 2481 5509 862 62.1 MiB 0.08 0.00 3.4261 -103.793 -3.4261 3.4261 0.64 0.000579514 0.000539613 0.0317105 0.0295349 32 1672 20 6.64007e+06 238602 554710. 1919.41 0.78 0.0960878 0.0845963 22834 132086 -1 1514 21 1053 1801 110250 26011 2.54257 2.54257 -96.4201 -2.54257 0 0 701300. 2426.64 0.19 0.06 0.15 -1 -1 0.19 0.0241147 0.0210077 108 29 58 29 24 24 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 3.72 vpr 62.97 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30480 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 401 315 1 192 86 17 17 289 -1 unnamed_device 24.4 MiB 0.17 1068 13316 3890 7652 1774 63.0 MiB 0.14 0.00 3.5141 -124.724 -3.5141 3.5141 0.64 0.000770659 0.000715805 0.0558149 0.0517676 32 2326 21 6.64007e+06 276276 554710. 1919.41 0.88 0.146298 0.129498 22834 132086 -1 2017 21 1648 2871 181984 40905 2.89497 2.89497 -119.923 -2.89497 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0315044 0.027501 147 63 64 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.66 vpr 62.76 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30236 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 383 303 1 185 100 17 17 289 -1 unnamed_device 24.2 MiB 0.17 964 16340 5208 8057 3075 62.8 MiB 0.13 0.00 3.6263 -123.14 -3.6263 3.6263 0.63 0.000743354 0.000689953 0.0548368 0.0508881 34 2358 39 6.64007e+06 452088 585099. 2024.56 1.92 0.221119 0.192919 23122 138558 -1 1857 19 1329 2031 152578 34666 2.94817 2.94817 -116.958 -2.94817 0 0 742403. 2568.87 0.21 0.07 0.12 -1 -1 0.21 0.0282365 0.0247067 144 57 64 32 56 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.41 vpr 62.73 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30108 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 339 284 1 162 95 17 17 289 -1 unnamed_device 24.0 MiB 0.15 919 13487 3473 7992 2022 62.7 MiB 0.12 0.00 2.83964 -105.375 -2.83964 2.83964 0.64 0.000675201 0.000627262 0.0440963 0.0409032 26 2137 22 6.64007e+06 389298 477104. 1650.88 0.78 0.129117 0.114143 21682 110474 -1 1871 18 1080 1737 126057 27332 2.24871 2.24871 -99.3708 -2.24871 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0253755 0.0222945 119 65 29 29 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.25 vpr 61.81 MiB 0.04 6652 -1 -1 1 0.03 -1 -1 30140 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63296 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 23.2 MiB 0.03 670 10835 3352 6011 1472 61.8 MiB 0.08 0.00 2.72344 -89.4054 -2.72344 2.72344 0.64 0.000508569 0.000473794 0.035256 0.0328355 32 1416 19 6.64007e+06 188370 554710. 1919.41 0.76 0.0935044 0.0824858 22834 132086 -1 1287 20 611 946 71968 16043 1.88191 1.88191 -81.4038 -1.88191 0 0 701300. 2426.64 0.19 0.05 0.13 -1 -1 0.19 0.0201169 0.0174276 85 34 24 24 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.44 vpr 62.73 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30408 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 31 32 335 280 1 154 80 17 17 289 -1 unnamed_device 24.0 MiB 0.12 727 12120 4439 5930 1751 62.7 MiB 0.11 0.00 4.19115 -121.049 -4.19115 4.19115 0.63 0.000662025 0.000615316 0.048875 0.0454405 32 2029 16 6.64007e+06 213486 554710. 1919.41 0.80 0.121788 0.108011 22834 132086 -1 1646 16 773 1135 78390 18880 3.47243 3.47243 -118.543 -3.47243 0 0 701300. 2426.64 0.19 0.05 0.12 -1 -1 0.19 0.0220441 0.0193532 113 64 31 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.63 vpr 62.93 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30216 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 366 283 1 192 100 17 17 289 -1 unnamed_device 24.4 MiB 0.09 885 17732 4998 9545 3189 62.9 MiB 0.16 0.00 4.22193 -138.344 -4.22193 4.22193 0.65 0.000725514 0.000673601 0.0579985 0.0538142 32 2479 24 6.64007e+06 452088 554710. 1919.41 0.87 0.147005 0.130259 22834 132086 -1 2081 21 1750 2593 199818 46979 3.97923 3.97923 -143.012 -3.97923 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0301692 0.0263673 147 34 91 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 3.77 vpr 63.39 MiB 0.04 7132 -1 -1 1 0.04 -1 -1 30840 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64908 32 32 460 375 1 196 102 17 17 289 -1 unnamed_device 24.5 MiB 0.21 960 11288 2842 7087 1359 63.4 MiB 0.12 0.00 3.74425 -123.858 -3.74425 3.74425 0.63 0.000845384 0.000785564 0.04286 0.039765 30 2640 22 6.64007e+06 477204 526063. 1820.29 0.91 0.143047 0.125515 22546 126617 -1 2064 22 1380 2128 121033 28362 3.46343 3.46343 -126.928 -3.46343 0 0 666494. 2306.21 0.20 0.08 0.14 -1 -1 0.20 0.0354752 0.0308318 150 124 0 0 125 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.24 vpr 61.77 MiB 0.03 6820 -1 -1 1 0.03 -1 -1 30520 -1 -1 17 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63248 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 23.2 MiB 0.09 395 10503 3120 6151 1232 61.8 MiB 0.07 0.00 2.74064 -71.156 -2.74064 2.74064 0.63 0.000439838 0.000408942 0.0307856 0.0286255 28 1145 19 6.64007e+06 213486 500653. 1732.36 0.74 0.0820588 0.0724596 21970 115934 -1 967 19 642 945 56994 15211 2.12231 2.12231 -72.5879 -2.12231 0 0 612192. 2118.31 0.17 0.04 0.10 -1 -1 0.17 0.0170694 0.0149113 77 30 26 26 22 22 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.59 vpr 62.85 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30076 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 333 251 1 187 86 17 17 289 -1 unnamed_device 24.2 MiB 0.10 990 12749 4130 6257 2362 62.8 MiB 0.13 0.00 4.45633 -140.507 -4.45633 4.45633 0.67 0.000691454 0.000643358 0.0491148 0.0457345 32 2561 21 6.64007e+06 276276 554710. 1919.41 0.89 0.131861 0.116928 22834 132086 -1 2064 19 1599 2771 182290 42264 3.83383 3.83383 -140.702 -3.83383 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0267335 0.0233777 138 3 122 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.30 vpr 61.88 MiB 0.02 6636 -1 -1 1 0.03 -1 -1 30564 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63368 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 23.3 MiB 0.05 603 10672 2424 7898 350 61.9 MiB 0.08 0.00 2.3583 -83.9313 -2.3583 2.3583 0.63 0.000470605 0.000437815 0.0328069 0.0305017 28 1546 20 6.64007e+06 163254 500653. 1732.36 0.89 0.0877241 0.0775743 21970 115934 -1 1327 18 595 751 61018 14471 1.90111 1.90111 -83.0742 -1.90111 0 0 612192. 2118.31 0.17 0.04 0.10 -1 -1 0.17 0.0170371 0.014911 81 3 53 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.62 vpr 63.03 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30572 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 24.4 MiB 0.10 956 14691 4376 8904 1411 63.0 MiB 0.14 0.00 4.18856 -140.856 -4.18856 4.18856 0.65 0.000738556 0.000686526 0.0504071 0.046727 32 2560 22 6.64007e+06 439530 554710. 1919.41 0.94 0.138704 0.122631 22834 132086 -1 2110 23 1975 3163 220921 51060 3.77763 3.77763 -140.866 -3.77763 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0322818 0.028112 153 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.79 vpr 62.74 MiB 0.05 6836 -1 -1 1 0.03 -1 -1 30280 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 337 253 1 196 101 17 17 289 -1 unnamed_device 23.9 MiB 0.09 1019 8796 1857 6524 415 62.7 MiB 0.11 0.00 3.60659 -123.354 -3.60659 3.60659 0.68 0.000697109 0.00064849 0.0302687 0.0279192 26 3249 33 6.64007e+06 464646 477104. 1650.88 2.12 0.127266 0.11105 21682 110474 -1 2352 21 1646 2647 212748 50416 2.98917 2.98917 -123.331 -2.98917 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.0285418 0.0249149 152 3 124 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 3.61 vpr 63.16 MiB 0.05 7024 -1 -1 1 0.04 -1 -1 30696 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 24.5 MiB 0.10 1069 18901 5689 10576 2636 63.2 MiB 0.18 0.00 4.16036 -141.868 -4.16036 4.16036 0.65 0.000778214 0.000721261 0.065092 0.0603558 32 2736 22 6.64007e+06 464646 554710. 1919.41 0.86 0.14307 0.127528 22834 132086 -1 2230 22 1870 2980 198864 45462 3.74943 3.74943 -140.268 -3.74943 0 0 701300. 2426.64 0.19 0.09 0.08 -1 -1 0.19 0.0326697 0.028514 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.49 vpr 62.38 MiB 0.02 6860 -1 -1 1 0.03 -1 -1 30176 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63876 32 32 294 246 1 149 80 17 17 289 -1 unnamed_device 23.9 MiB 0.07 857 10572 2555 6423 1594 62.4 MiB 0.10 0.00 3.07196 -107.422 -3.07196 3.07196 0.68 0.000619284 0.000575848 0.0398414 0.0370536 32 1869 19 6.64007e+06 200928 554710. 1919.41 0.84 0.111502 0.0985515 22834 132086 -1 1748 19 1022 1690 122468 27827 2.85797 2.85797 -110.414 -2.85797 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0303854 0.0265291 107 34 54 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.50 vpr 62.38 MiB 0.04 6896 -1 -1 1 0.03 -1 -1 30188 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63876 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 23.9 MiB 0.05 824 11806 3275 6761 1770 62.4 MiB 0.11 0.00 3.4951 -114.009 -3.4951 3.4951 0.63 0.00061495 0.000572089 0.0435388 0.0405159 32 1835 21 6.64007e+06 238602 554710. 1919.41 0.88 0.124794 0.109885 22834 132086 -1 1652 22 1274 1894 134685 30348 3.05317 3.05317 -114.65 -3.05317 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0262761 0.0228717 115 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.38 vpr 62.25 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30344 -1 -1 20 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 23.6 MiB 0.09 658 7132 1686 4570 876 62.3 MiB 0.08 0.00 3.4309 -100.483 -3.4309 3.4309 0.64 0.000580304 0.000539058 0.0259747 0.0241387 32 1851 20 6.64007e+06 251160 554710. 1919.41 0.81 0.0959523 0.083993 22834 132086 -1 1598 19 1106 1844 115295 28057 2.89677 2.89677 -103.792 -2.89677 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0224452 0.0195602 107 34 56 28 28 28 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.50 vpr 62.68 MiB 0.03 6780 -1 -1 1 0.02 -1 -1 30508 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 24.0 MiB 0.07 802 15390 5648 7380 2362 62.7 MiB 0.14 0.00 3.5251 -121.985 -3.5251 3.5251 0.63 0.000611879 0.000568595 0.0550573 0.0511471 32 2003 23 6.64007e+06 226044 554710. 1919.41 0.83 0.12968 0.115178 22834 132086 -1 1819 24 1658 2643 190883 43645 3.16717 3.16717 -124.476 -3.16717 0 0 701300. 2426.64 0.24 0.08 0.13 -1 -1 0.24 0.0283485 0.0246472 125 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.40 vpr 62.66 MiB 0.03 6836 -1 -1 1 0.03 -1 -1 30260 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 23.9 MiB 0.06 772 9679 2262 6618 799 62.7 MiB 0.09 0.00 3.47387 -114.287 -3.47387 3.47387 0.64 0.000563076 0.000523775 0.0305503 0.028373 28 2025 20 6.64007e+06 389298 500653. 1732.36 0.89 0.103193 0.0906019 21970 115934 -1 1816 18 1196 2011 129020 30030 2.78577 2.78577 -113.339 -2.78577 0 0 612192. 2118.31 0.16 0.04 0.07 -1 -1 0.16 0.0127998 0.011364 119 34 61 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.38 vpr 62.62 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 30228 -1 -1 31 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 29 32 312 264 1 154 92 17 17 289 -1 unnamed_device 23.9 MiB 0.08 877 15824 4460 9332 2032 62.6 MiB 0.13 0.00 2.80466 -91.9047 -2.80466 2.80466 0.63 0.000626684 0.000581866 0.0501112 0.0464827 26 2073 22 6.64007e+06 389298 477104. 1650.88 0.82 0.123948 0.109521 21682 110474 -1 1837 21 1137 1801 136044 29396 2.24571 2.24571 -93.806 -2.24571 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0258751 0.0225273 110 61 29 29 57 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.57 vpr 63.00 MiB 0.03 7100 -1 -1 1 0.04 -1 -1 30412 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 423 310 1 229 105 17 17 289 -1 unnamed_device 24.7 MiB 0.17 1234 17889 5288 10109 2492 63.0 MiB 0.20 0.00 4.16036 -142.499 -4.16036 4.16036 0.63 0.000829408 0.000770382 0.0631875 0.0586163 28 3347 24 6.64007e+06 514878 500653. 1732.36 1.80 0.167466 0.148182 21970 115934 -1 2788 20 1833 3123 251482 51823 3.78863 3.78863 -146.904 -3.78863 0 0 612192. 2118.31 0.17 0.10 0.11 -1 -1 0.17 0.032658 0.0285599 181 29 128 32 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.39 vpr 63.21 MiB 0.03 7012 -1 -1 1 0.03 -1 -1 30396 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 403 317 1 198 101 17 17 289 -1 unnamed_device 24.5 MiB 0.15 996 11616 2636 8022 958 63.2 MiB 0.12 0.00 3.5823 -125.213 -3.5823 3.5823 0.68 0.000782207 0.000720146 0.0432372 0.0401145 30 2080 20 6.64007e+06 464646 526063. 1820.29 0.85 0.134641 0.118638 22546 126617 -1 1846 19 1498 2269 113841 26948 2.75677 2.75677 -115.324 -2.75677 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0292772 0.0256438 154 65 62 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 3.49 vpr 62.80 MiB 0.03 6992 -1 -1 1 0.03 -1 -1 30404 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 31 32 353 302 1 156 92 17 17 289 -1 unnamed_device 24.0 MiB 0.20 803 9407 2189 6388 830 62.8 MiB 0.09 0.00 3.6833 -114.43 -3.6833 3.6833 0.63 0.000688313 0.000639344 0.0332064 0.0308694 30 1852 20 6.64007e+06 364182 526063. 1820.29 0.78 0.110984 0.0971906 22546 126617 -1 1550 18 922 1504 90973 20566 2.62237 2.62237 -105.638 -2.62237 0 0 666494. 2306.21 0.18 0.06 0.10 -1 -1 0.18 0.024241 0.0211499 114 90 0 0 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 3.59 vpr 63.04 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 30404 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 31 32 391 309 1 194 87 17 17 289 -1 unnamed_device 24.4 MiB 0.16 1052 11799 3060 6831 1908 63.0 MiB 0.12 0.00 3.64847 -119.816 -3.64847 3.64847 0.65 0.000748906 0.000695833 0.0485682 0.0451458 32 2372 21 6.64007e+06 301392 554710. 1919.41 0.85 0.137505 0.121475 22834 132086 -1 2152 22 1630 2766 200395 43135 2.95497 2.95497 -115.859 -2.95497 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0318861 0.0278132 149 64 60 30 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 3.72 vpr 63.07 MiB 0.04 7136 -1 -1 1 0.03 -1 -1 30568 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 31 32 455 371 1 193 86 17 17 289 -1 unnamed_device 24.4 MiB 0.30 953 7835 1760 5704 371 63.1 MiB 0.10 0.00 5.23812 -147.937 -5.23812 5.23812 0.64 0.00083531 0.00077671 0.0375823 0.0349464 32 2549 24 6.64007e+06 288834 554710. 1919.41 0.88 0.138421 0.121042 22834 132086 -1 2131 20 1265 2184 169313 37652 3.92448 3.92448 -137.591 -3.92448 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0328164 0.0285762 150 124 0 0 124 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 3.71 vpr 63.10 MiB 0.03 7280 -1 -1 1 0.03 -1 -1 30364 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 31 32 413 333 1 188 86 17 17 289 -1 unnamed_device 24.4 MiB 0.14 955 10859 3044 7047 768 63.1 MiB 0.12 0.00 5.02279 -136.574 -5.02279 5.02279 0.60 0.000775991 0.00072066 0.0473001 0.0439536 30 2107 21 6.64007e+06 288834 526063. 1820.29 0.81 0.138565 0.122326 22546 126617 -1 1798 17 925 1478 80699 18677 3.76928 3.76928 -128.991 -3.76928 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0273593 0.0240681 144 90 31 31 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 3.62 vpr 62.91 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 30360 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 31 32 391 309 1 193 98 17 17 289 -1 unnamed_device 24.2 MiB 0.13 1046 15623 4332 9609 1682 62.9 MiB 0.15 0.00 3.5621 -120.379 -3.5621 3.5621 0.63 0.000749334 0.000695992 0.0552679 0.0511571 26 2560 22 6.64007e+06 439530 477104. 1650.88 0.87 0.144642 0.127847 21682 110474 -1 2192 17 1506 2552 161287 36406 2.88517 2.88517 -115.985 -2.88517 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0262977 0.0230402 148 64 60 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 3.63 vpr 63.08 MiB 0.04 7020 -1 -1 1 0.04 -1 -1 30920 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 407 319 1 198 101 17 17 289 -1 unnamed_device 24.5 MiB 0.11 865 10206 2264 6941 1001 63.1 MiB 0.11 0.00 4.23656 -140.329 -4.23656 4.23656 0.63 0.000765917 0.000710766 0.0367901 0.0341209 32 2829 21 6.64007e+06 464646 554710. 1919.41 0.92 0.124704 0.109783 22834 132086 -1 2047 21 1912 2990 184288 44236 3.83663 3.83663 -143.573 -3.83663 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0311987 0.0272495 156 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 3.81 vpr 63.03 MiB 0.03 7284 -1 -1 1 0.05 -1 -1 30632 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 496 380 1 232 106 17 17 289 -1 unnamed_device 24.6 MiB 0.19 1205 17356 4219 10649 2488 63.0 MiB 0.21 0.00 4.21478 -145.938 -4.21478 4.21478 0.64 0.000930411 0.000865548 0.0711812 0.0658242 32 2779 22 6.64007e+06 527436 554710. 1919.41 0.89 0.180042 0.159148 22834 132086 -1 2473 21 1994 3105 215922 46353 3.69883 3.69883 -141.768 -3.69883 0 0 701300. 2426.64 0.20 0.11 0.12 -1 -1 0.20 0.0446948 0.0392437 186 96 62 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.50 vpr 62.66 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30640 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64160 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 23.9 MiB 0.10 655 13731 5030 6417 2284 62.7 MiB 0.07 0.00 3.7665 -117.146 -3.7665 3.7665 0.69 0.000286358 0.000263769 0.0238656 0.0220173 32 1931 27 6.64007e+06 226044 554710. 1919.41 0.83 0.104369 0.090779 22834 132086 -1 1477 19 1272 1994 124192 30557 3.17137 3.17137 -113.403 -3.17137 0 0 701300. 2426.64 0.22 0.07 0.12 -1 -1 0.22 0.0253339 0.0222428 116 34 62 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 3.57 vpr 63.09 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30460 -1 -1 38 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 31 32 395 311 1 196 101 17 17 289 -1 unnamed_device 24.4 MiB 0.10 910 7386 1527 5477 382 63.1 MiB 0.09 0.00 4.20356 -136.322 -4.20356 4.20356 0.63 0.000763323 0.000708838 0.0265754 0.0246692 32 2713 25 6.64007e+06 477204 554710. 1919.41 0.94 0.120099 0.104933 22834 132086 -1 2059 21 1727 2677 163665 39572 3.75443 3.75443 -140.956 -3.75443 0 0 701300. 2426.64 0.22 0.08 0.12 -1 -1 0.22 0.0310919 0.0271511 152 64 62 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 3.52 vpr 63.15 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30580 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 397 313 1 196 98 17 17 289 -1 unnamed_device 24.3 MiB 0.13 994 14048 3500 8468 2080 63.1 MiB 0.14 0.00 3.7163 -119.726 -3.7163 3.7163 0.64 0.000755328 0.000701354 0.0499884 0.046411 32 2435 23 6.64007e+06 426972 554710. 1919.41 0.78 0.128398 0.113773 22834 132086 -1 1988 20 1561 2703 161852 38060 2.87477 2.87477 -111.216 -2.87477 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0300424 0.0262219 149 63 62 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 3.77 vpr 62.80 MiB 0.08 6964 -1 -1 1 0.03 -1 -1 30340 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 345 257 1 194 86 17 17 289 -1 unnamed_device 24.0 MiB 0.08 1080 15017 4624 8554 1839 62.8 MiB 0.15 0.00 4.14936 -144.892 -4.14936 4.14936 0.67 0.000708092 0.000658265 0.0587861 0.0546481 32 2624 22 6.64007e+06 276276 554710. 1919.41 0.91 0.144924 0.128805 22834 132086 -1 2280 22 1962 3452 237199 51269 3.51823 3.51823 -140.15 -3.51823 0 0 701300. 2426.64 0.19 0.09 0.13 -1 -1 0.19 0.0303339 0.0265041 151 3 128 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 3.71 vpr 63.12 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30404 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64636 32 32 424 343 1 190 99 17 17 289 -1 unnamed_device 24.4 MiB 0.18 1044 15603 4218 9336 2049 63.1 MiB 0.15 0.00 3.55822 -125.535 -3.55822 3.55822 0.65 0.00079638 0.00073909 0.0566774 0.0525784 32 2394 19 6.64007e+06 439530 554710. 1919.41 0.89 0.146532 0.129754 22834 132086 -1 2155 20 1417 2140 146036 32428 2.75357 2.75357 -116.259 -2.75357 0 0 701300. 2426.64 0.19 0.08 0.13 -1 -1 0.19 0.0307139 0.0267276 146 96 25 25 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.13 vpr 63.18 MiB 0.02 6944 -1 -1 1 0.04 -1 -1 30304 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 395 311 1 194 101 17 17 289 -1 unnamed_device 24.4 MiB 0.18 1017 12791 3286 8285 1220 63.2 MiB 0.13 0.00 3.47912 -120.914 -3.47912 3.47912 0.63 0.000767519 0.000713288 0.0442653 0.041 26 2568 45 6.64007e+06 464646 477104. 1650.88 1.45 0.163008 0.142866 21682 110474 -1 2041 18 1085 1861 116887 27939 3.01517 3.01517 -119.008 -3.01517 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0278299 0.0243714 148 61 64 32 60 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 3.80 vpr 63.08 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30504 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 405 318 1 200 103 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1102 19142 5372 11310 2460 63.1 MiB 0.17 0.00 3.5243 -123.608 -3.5243 3.5243 0.75 0.000597611 0.000546728 0.0584572 0.0538865 32 2414 19 6.64007e+06 489762 554710. 1919.41 0.91 0.157983 0.139518 22834 132086 -1 2030 19 1627 2567 155424 34286 2.92977 2.92977 -118.103 -2.92977 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0294464 0.025815 157 65 63 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.65 vpr 62.77 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 30716 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 376 288 1 194 101 17 17 289 -1 unnamed_device 24.3 MiB 0.08 1032 14906 4320 9186 1400 62.8 MiB 0.19 0.00 4.18856 -144.112 -4.18856 4.18856 0.65 0.000743603 0.000691214 0.0630334 0.058403 30 2290 20 6.64007e+06 464646 526063. 1820.29 0.87 0.149447 0.132686 22546 126617 -1 1955 20 1443 2280 124536 28234 3.46723 3.46723 -135.995 -3.46723 0 0 666494. 2306.21 0.18 0.07 0.12 -1 -1 0.18 0.0290211 0.025396 152 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.44 vpr 62.96 MiB 0.02 7052 -1 -1 1 0.04 -1 -1 30804 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 32 32 407 319 1 197 103 17 17 289 -1 unnamed_device 24.2 MiB 0.14 1016 12153 3010 8355 788 63.0 MiB 0.12 0.00 4.23153 -146.068 -4.23153 4.23153 0.67 0.000767544 0.00071225 0.0419196 0.0388259 26 2842 35 6.64007e+06 489762 477104. 1650.88 1.58 0.151455 0.132609 21682 110474 -1 2351 23 1965 3168 258496 55718 4.00703 4.00703 -153.109 -4.00703 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.032679 0.0284541 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.16 vpr 63.34 MiB 0.03 7272 -1 -1 1 0.03 -1 -1 30496 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 31 32 449 367 1 193 99 17 17 289 -1 unnamed_device 24.5 MiB 0.21 1141 13095 3356 8753 986 63.3 MiB 0.14 0.00 4.67535 -137.171 -4.67535 4.67535 0.65 0.000823597 0.000764662 0.0501666 0.0465596 28 3011 22 6.64007e+06 452088 500653. 1732.36 1.29 0.153533 0.135155 21970 115934 -1 2441 19 1347 2389 166478 37353 3.63142 3.63142 -132.908 -3.63142 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0306034 0.0266151 147 122 0 0 122 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 3.68 vpr 63.04 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30468 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 432 346 1 195 86 17 17 289 -1 unnamed_device 24.4 MiB 0.16 1069 15584 4992 8664 1928 63.0 MiB 0.17 0.00 4.34993 -137.194 -4.34993 4.34993 0.65 0.000808182 0.000750404 0.0722198 0.0671163 32 2657 20 6.64007e+06 276276 554710. 1919.41 0.88 0.1671 0.14872 22834 132086 -1 2343 20 1753 3189 207209 46843 3.53723 3.53723 -138.101 -3.53723 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0313887 0.0273473 151 94 32 32 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.45 vpr 62.77 MiB 0.02 6768 -1 -1 1 0.03 -1 -1 30592 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 312 255 1 166 95 17 17 289 -1 unnamed_device 24.1 MiB 0.07 928 8735 1852 5986 897 62.8 MiB 0.09 0.00 3.50687 -122.364 -3.50687 3.50687 0.65 0.000641009 0.00059443 0.0290733 0.0270114 28 2197 22 6.64007e+06 389298 500653. 1732.36 0.88 0.107981 0.0947505 21970 115934 -1 1974 21 1245 2029 149817 32809 2.81757 2.81757 -118.189 -2.81757 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.0260214 0.0226763 125 34 63 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.54 vpr 62.83 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30492 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 24.0 MiB 0.18 885 10406 2864 6861 681 62.8 MiB 0.11 0.00 3.5031 -121.505 -3.5031 3.5031 0.64 0.000713908 0.00066341 0.0442174 0.0411126 26 2358 26 6.64007e+06 226044 477104. 1650.88 0.88 0.134775 0.11876 21682 110474 -1 1927 19 1289 2091 156950 34653 2.95817 2.95817 -120.516 -2.95817 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0265461 0.0231568 121 94 0 0 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 3.98 vpr 63.09 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30728 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 469 351 1 233 106 17 17 289 -1 unnamed_device 24.7 MiB 0.12 1352 17606 4821 10688 2097 63.1 MiB 0.20 0.00 4.98622 -168.741 -4.98622 4.98622 0.66 0.00114974 0.00105947 0.0671496 0.0622668 32 3451 24 6.64007e+06 527436 554710. 1919.41 1.01 0.181008 0.159999 22834 132086 -1 2773 25 2794 4611 301436 68682 4.71148 4.71148 -173.943 -4.71148 0 0 701300. 2426.64 0.19 0.12 0.12 -1 -1 0.19 0.041696 0.0362943 189 65 96 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.62 vpr 63.14 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30472 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 368 284 1 194 97 17 17 289 -1 unnamed_device 24.5 MiB 0.15 1055 17857 5354 10411 2092 63.1 MiB 0.17 0.00 3.51607 -123.396 -3.51607 3.51607 0.67 0.000736211 0.000681833 0.0619367 0.0573078 30 2223 20 6.64007e+06 414414 526063. 1820.29 0.83 0.138497 0.1235 22546 126617 -1 1940 19 1216 1819 99288 23536 2.99317 2.99317 -121.113 -2.99317 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0278644 0.0244341 148 34 92 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.63 vpr 62.66 MiB 0.03 6776 -1 -1 1 0.05 -1 -1 30392 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 30 32 296 244 1 158 93 17 17 289 -1 unnamed_device 23.9 MiB 0.08 853 17523 5443 9889 2191 62.7 MiB 0.15 0.00 3.4529 -114.711 -3.4529 3.4529 0.67 0.000617041 0.000573917 0.0540711 0.0501917 30 1885 20 6.64007e+06 389298 526063. 1820.29 0.79 0.128338 0.11395 22546 126617 -1 1585 22 947 1394 87104 18827 2.65337 2.65337 -105.849 -2.65337 0 0 666494. 2306.21 0.18 0.06 0.12 -1 -1 0.18 0.0259534 0.0225771 116 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.02 vpr 63.23 MiB 0.05 7236 -1 -1 1 0.04 -1 -1 31060 -1 -1 45 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 531 413 1 232 109 17 17 289 -1 unnamed_device 24.8 MiB 0.30 1192 13629 3357 8864 1408 63.2 MiB 0.15 0.00 4.97469 -167.233 -4.97469 4.97469 0.64 0.000749041 0.000687645 0.0457609 0.0419029 32 2825 26 6.64007e+06 565110 554710. 1919.41 0.97 0.140448 0.123463 22834 132086 -1 2520 19 2221 3364 236931 51052 4.66249 4.66249 -167.914 -4.66249 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0430907 0.0382662 188 127 32 32 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 3.57 vpr 62.96 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30496 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 376 288 1 194 102 17 17 289 -1 unnamed_device 24.3 MiB 0.14 1027 16762 4357 10483 1922 63.0 MiB 0.15 0.00 4.27488 -146.847 -4.27488 4.27488 0.64 0.000744244 0.000691356 0.0561498 0.0520468 28 2563 23 6.64007e+06 477204 500653. 1732.36 0.88 0.145637 0.128935 21970 115934 -1 2190 18 1638 2336 148667 35003 3.78563 3.78563 -146.904 -3.78563 0 0 612192. 2118.31 0.17 0.08 0.07 -1 -1 0.17 0.0273898 0.0240398 153 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.37 vpr 62.43 MiB 0.05 6732 -1 -1 1 0.03 -1 -1 30456 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63932 32 32 283 225 1 164 96 17 17 289 -1 unnamed_device 23.9 MiB 0.08 882 11046 2802 6952 1292 62.4 MiB 0.10 0.00 3.5621 -124.172 -3.5621 3.5621 0.66 0.000622511 0.000579542 0.0328011 0.0303732 30 1857 21 6.64007e+06 401856 526063. 1820.29 0.77 0.10487 0.0921965 22546 126617 -1 1513 20 789 1327 73689 17221 2.58017 2.58017 -107.275 -2.58017 0 0 666494. 2306.21 0.21 0.03 0.12 -1 -1 0.21 0.0133288 0.0118575 124 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.10 vpr 62.99 MiB 0.07 7144 -1 -1 1 0.04 -1 -1 30820 -1 -1 43 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 438 320 1 235 107 17 17 289 -1 unnamed_device 24.6 MiB 0.13 1334 20347 5362 13158 1827 63.0 MiB 0.21 0.00 4.95502 -168.119 -4.95502 4.95502 0.65 0.000853648 0.000793136 0.0720922 0.0669924 30 3206 23 6.64007e+06 539994 526063. 1820.29 1.15 0.183167 0.162815 22546 126617 -1 2626 22 2104 3576 215848 46199 4.87169 4.87169 -172.927 -4.87169 0 0 666494. 2306.21 0.20 0.10 0.12 -1 -1 0.20 0.0369691 0.0323422 190 34 128 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.58 vpr 62.29 MiB 0.07 6792 -1 -1 1 0.03 -1 -1 30344 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63784 32 32 283 225 1 162 81 17 17 289 -1 unnamed_device 23.8 MiB 0.09 623 13731 4925 6406 2400 62.3 MiB 0.12 0.00 3.5061 -118.666 -3.5061 3.5061 0.65 0.000612175 0.000569632 0.0501907 0.0467109 32 2131 28 6.64007e+06 213486 554710. 1919.41 0.85 0.129947 0.115061 22834 132086 -1 1574 21 1421 2211 152899 38828 3.12337 3.12337 -121.185 -3.12337 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.025148 0.0219274 121 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.47 vpr 62.39 MiB 0.02 6960 -1 -1 1 0.02 -1 -1 30264 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 30 32 296 244 1 157 94 17 17 289 -1 unnamed_device 23.8 MiB 0.12 855 13939 4099 8667 1173 62.4 MiB 0.12 0.00 3.47387 -112.968 -3.47387 3.47387 0.68 0.000617153 0.000574394 0.0427663 0.0397175 28 1888 22 6.64007e+06 401856 500653. 1732.36 0.84 0.11942 0.105586 21970 115934 -1 1648 20 1061 1675 103903 23626 2.67537 2.67537 -107.352 -2.67537 0 0 612192. 2118.31 0.17 0.06 0.07 -1 -1 0.17 0.0243286 0.0211553 114 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 3.72 vpr 62.89 MiB 0.05 7284 -1 -1 1 0.03 -1 -1 30348 -1 -1 34 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 29 32 393 319 1 182 95 17 17 289 -1 unnamed_device 24.2 MiB 0.17 1003 12839 3224 8329 1286 62.9 MiB 0.13 0.00 3.6803 -109.03 -3.6803 3.6803 0.65 0.00074837 0.000695401 0.0470527 0.0436914 26 2529 22 6.64007e+06 426972 477104. 1650.88 0.86 0.124505 0.110345 21682 110474 -1 2071 20 1299 2285 152984 35357 3.26257 3.26257 -111.797 -3.26257 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.0327536 0.0285784 134 88 29 29 85 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 3.68 vpr 63.05 MiB 0.03 7124 -1 -1 1 0.03 -1 -1 30604 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 407 319 1 194 86 17 17 289 -1 unnamed_device 24.4 MiB 0.13 937 11048 2797 7564 687 63.1 MiB 0.12 0.00 4.21976 -143.232 -4.21976 4.21976 0.65 0.000770568 0.000715458 0.0477968 0.0444019 32 2378 24 6.64007e+06 276276 554710. 1919.41 0.93 0.143628 0.126722 22834 132086 -1 1913 20 1846 2737 184305 42609 3.70463 3.70463 -144.609 -3.70463 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0311277 0.0271736 152 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 3.99 vpr 62.91 MiB 0.05 6940 -1 -1 1 0.03 -1 -1 30604 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 407 319 1 195 100 17 17 289 -1 unnamed_device 24.3 MiB 0.22 1070 15876 4480 9346 2050 62.9 MiB 0.17 0.00 4.25856 -146.098 -4.25856 4.25856 0.65 0.00077803 0.000722073 0.0584984 0.054275 32 2697 38 6.64007e+06 452088 554710. 1919.41 1.02 0.169838 0.149849 22834 132086 -1 2357 23 1964 3118 203984 45384 3.74343 3.74343 -146.156 -3.74343 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0408059 0.0354159 154 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.61 vpr 62.73 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30484 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 345 287 1 161 96 17 17 289 -1 unnamed_device 24.0 MiB 0.13 863 8856 1892 6516 448 62.7 MiB 0.09 0.00 3.4749 -121.747 -3.4749 3.4749 0.73 0.000523797 0.000479742 0.0263443 0.0241591 32 2048 21 6.64007e+06 401856 554710. 1919.41 0.87 0.106752 0.0930891 22834 132086 -1 1770 21 1312 1966 141543 31639 2.81757 2.81757 -118.495 -2.81757 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.027379 0.0238337 122 65 32 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.55 vpr 62.72 MiB 0.05 6932 -1 -1 1 0.03 -1 -1 30464 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 24.0 MiB 0.18 821 8336 2395 4162 1779 62.7 MiB 0.09 0.00 3.72326 -116.749 -3.72326 3.72326 0.66 0.000676986 0.000628888 0.0351132 0.0326137 32 1980 18 6.64007e+06 213486 554710. 1919.41 0.84 0.112517 0.0988879 22834 132086 -1 1698 20 1021 1924 118875 28006 2.81257 2.81257 -111.355 -2.81257 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0267366 0.0232606 109 90 0 0 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 3.95 vpr 62.90 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30452 -1 -1 35 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 30 32 374 297 1 186 97 17 17 289 -1 unnamed_device 24.3 MiB 0.15 985 17635 4923 10695 2017 62.9 MiB 0.17 0.00 3.4529 -110.073 -3.4529 3.4529 0.63 0.000731009 0.000679685 0.0603311 0.0560557 26 2781 31 6.64007e+06 439530 477104. 1650.88 1.16 0.156345 0.138282 21682 110474 -1 2209 19 1288 2084 156039 35007 3.32077 3.32077 -114.565 -3.32077 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0272597 0.0238228 139 60 60 30 57 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.95 vpr 62.59 MiB 0.03 7104 -1 -1 1 0.03 -1 -1 30404 -1 -1 32 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64088 28 32 332 260 1 180 92 17 17 289 -1 unnamed_device 24.0 MiB 0.09 939 14996 4215 8524 2257 62.6 MiB 0.15 0.00 4.39198 -124.88 -4.39198 4.39198 0.63 0.000671121 0.000624858 0.0557517 0.0517479 26 2459 28 6.64007e+06 401856 477104. 1650.88 1.30 0.145199 0.128587 21682 110474 -1 2067 21 1446 2305 167074 36170 3.49342 3.49342 -124.283 -3.49342 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0280153 0.0244488 134 34 84 28 28 28 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 3.56 vpr 62.64 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30160 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 30 32 325 273 1 157 81 17 17 289 -1 unnamed_device 24.0 MiB 0.16 846 13731 4520 7348 1863 62.6 MiB 0.13 0.00 3.5343 -117.296 -3.5343 3.5343 0.63 0.000646424 0.000600523 0.0531668 0.0493664 32 1980 19 6.64007e+06 238602 554710. 1919.41 0.84 0.125645 0.111563 22834 132086 -1 1833 19 1281 2117 166359 34749 2.79857 2.79857 -112.22 -2.79857 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.024408 0.02127 114 63 30 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.41 vpr 62.66 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30296 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 32 32 361 308 1 158 81 17 17 289 -1 unnamed_device 24.0 MiB 0.18 892 11281 2807 6986 1488 62.7 MiB 0.09 0.00 3.6865 -117.315 -3.6865 3.6865 0.66 0.000704124 0.000654464 0.0352036 0.0326278 30 1846 19 6.64007e+06 213486 526063. 1820.29 0.78 0.115932 0.101943 22546 126617 -1 1647 19 824 1345 85019 18804 2.71557 2.71557 -109.036 -2.71557 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0259568 0.0226832 114 91 0 0 91 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 3.65 vpr 62.98 MiB 0.02 6992 -1 -1 1 0.03 -1 -1 30196 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 335 251 1 196 100 17 17 289 -1 unnamed_device 24.3 MiB 0.09 1121 19124 6194 10224 2706 63.0 MiB 0.17 0.00 4.18856 -139.706 -4.18856 4.18856 0.63 0.000692597 0.000643647 0.0598423 0.0555476 32 2557 23 6.64007e+06 464646 554710. 1919.41 0.86 0.143978 0.127856 22834 132086 -1 2240 22 1758 2905 201607 43266 3.79083 3.79083 -138.426 -3.79083 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.029593 0.0258547 152 4 124 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.05 vpr 63.17 MiB 0.02 7056 -1 -1 1 0.04 -1 -1 30756 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 407 319 1 197 100 17 17 289 -1 unnamed_device 24.3 MiB 0.17 1037 18660 5257 10625 2778 63.2 MiB 0.18 0.00 4.17032 -143.358 -4.17032 4.17032 0.68 0.000778162 0.000722385 0.0652289 0.060448 32 2589 21 6.64007e+06 452088 554710. 1919.41 0.99 0.166826 0.147689 22834 132086 -1 2194 20 1794 3027 196961 43307 3.60543 3.60543 -140.13 -3.60543 0 0 701300. 2426.64 0.19 0.09 0.15 -1 -1 0.19 0.0302731 0.0264379 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 3.63 vpr 63.15 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30368 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64668 32 32 407 319 1 194 100 17 17 289 -1 unnamed_device 24.4 MiB 0.17 1085 15876 4268 10377 1231 63.2 MiB 0.15 0.00 4.15553 -144.194 -4.15553 4.15553 0.63 0.000774015 0.000718395 0.0561187 0.0520202 32 2670 22 6.64007e+06 452088 554710. 1919.41 0.90 0.149258 0.13207 22834 132086 -1 2302 21 1837 3000 195990 44276 3.51102 3.51102 -141.251 -3.51102 0 0 701300. 2426.64 0.19 0.09 0.09 -1 -1 0.19 0.0318266 0.0277727 153 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 3.74 vpr 62.99 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30432 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 399 315 1 196 102 17 17 289 -1 unnamed_device 24.3 MiB 0.13 963 9146 1745 6045 1356 63.0 MiB 0.09 0.00 4.17056 -135.219 -4.17056 4.17056 0.64 0.000767842 0.000712195 0.0323649 0.0300307 30 3028 24 6.64007e+06 477204 526063. 1820.29 1.07 0.126742 0.111113 22546 126617 -1 2028 23 1431 2380 136097 32965 3.75963 3.75963 -135.899 -3.75963 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0333563 0.0291114 149 65 60 30 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.47 vpr 62.51 MiB 0.03 6900 -1 -1 1 0.03 -1 -1 30376 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 30 32 296 244 1 156 81 17 17 289 -1 unnamed_device 23.8 MiB 0.11 840 12856 4254 6466 2136 62.5 MiB 0.12 0.00 3.4921 -115.538 -3.4921 3.4921 0.65 0.000615101 0.000571826 0.0475663 0.0442057 32 2099 22 6.64007e+06 238602 554710. 1919.41 0.82 0.12201 0.10804 22834 132086 -1 1829 20 1172 1889 131683 29255 2.80657 2.80657 -112.754 -2.80657 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0243759 0.0212663 113 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.80 vpr 62.90 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 30412 -1 -1 24 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 30 32 383 303 1 191 86 17 17 289 -1 unnamed_device 24.1 MiB 0.15 996 13127 3599 7422 2106 62.9 MiB 0.13 0.00 4.20393 -135.69 -4.20393 4.20393 0.66 0.000742573 0.000689672 0.0539589 0.0501115 26 2579 31 6.64007e+06 301392 477104. 1650.88 1.09 0.152751 0.134862 21682 110474 -1 2334 19 1796 2622 198891 44787 3.99103 3.99103 -143.687 -3.99103 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0282203 0.0247192 146 63 60 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.65 vpr 62.90 MiB 0.05 7216 -1 -1 1 0.05 -1 -1 30892 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 469 381 1 198 105 17 17 289 -1 unnamed_device 24.4 MiB 0.23 1061 10232 2187 7405 640 62.9 MiB 0.11 0.00 4.16036 -143.59 -4.16036 4.16036 0.64 0.000853651 0.000792068 0.0386711 0.0358428 26 3037 26 6.64007e+06 514878 477104. 1650.88 1.80 0.151419 0.132609 21682 110474 -1 2509 21 1963 3341 242639 52518 3.75743 3.75743 -148.153 -3.75743 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.0340566 0.0294936 156 127 0 0 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 3.74 vpr 63.16 MiB 0.04 7164 -1 -1 1 0.03 -1 -1 30424 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 31 32 425 341 1 189 96 17 17 289 -1 unnamed_device 24.5 MiB 0.12 924 14769 3776 9247 1746 63.2 MiB 0.15 0.00 4.18868 -135.93 -4.18868 4.18868 0.63 0.000808375 0.00074977 0.056086 0.05202 32 2392 24 6.64007e+06 414414 554710. 1919.41 1.02 0.146397 0.130052 22834 132086 -1 2012 21 1598 2593 166572 39257 3.87983 3.87983 -137.068 -3.87983 0 0 701300. 2426.64 0.19 0.08 0.13 -1 -1 0.19 0.0322025 0.0281177 148 94 31 31 93 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 3.65 vpr 63.08 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30472 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 30 32 404 328 1 182 94 17 17 289 -1 unnamed_device 24.4 MiB 0.17 973 15004 4033 8498 2473 63.1 MiB 0.19 0.00 3.6693 -113.052 -3.6693 3.6693 0.66 0.000902613 0.000830107 0.066143 0.0609115 32 2183 19 6.64007e+06 401856 554710. 1919.41 0.88 0.15026 0.133376 22834 132086 -1 1932 19 1262 1989 126618 29154 2.95897 2.95897 -111.901 -2.95897 0 0 701300. 2426.64 0.19 0.07 0.08 -1 -1 0.19 0.0291805 0.025582 138 92 26 26 90 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 3.90 vpr 63.02 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 30708 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 407 319 1 198 86 17 17 289 -1 unnamed_device 24.3 MiB 0.26 1125 9725 2385 6614 726 63.0 MiB 0.12 0.00 4.21673 -144.443 -4.21673 4.21673 0.64 0.00061603 0.000562602 0.0406824 0.0376346 30 2849 27 6.64007e+06 276276 526063. 1820.29 0.96 0.141329 0.124128 22546 126617 -1 2461 21 1909 3327 189128 44079 3.51523 3.51523 -144.636 -3.51523 0 0 666494. 2306.21 0.19 0.10 0.12 -1 -1 0.19 0.035455 0.030982 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 3.80 vpr 62.78 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 30308 -1 -1 36 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 29 32 387 316 1 179 97 17 17 289 -1 unnamed_device 24.2 MiB 0.14 964 18079 5189 10710 2180 62.8 MiB 0.16 0.00 3.5353 -109.312 -3.5353 3.5353 0.64 0.000818081 0.000764168 0.0615371 0.0568908 32 2101 19 6.64007e+06 452088 554710. 1919.41 0.96 0.153241 0.135526 22834 132086 -1 1883 20 1524 2476 156946 35882 2.77777 2.77777 -104.196 -2.77777 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0252811 0.0223443 136 88 26 26 85 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.65 vpr 62.30 MiB 0.04 6792 -1 -1 1 0.35 -1 -1 30392 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 32 32 283 225 1 156 81 17 17 289 -1 unnamed_device 23.9 MiB 0.04 799 9356 2113 6168 1075 62.3 MiB 0.09 0.00 3.4921 -122.483 -3.4921 3.4921 0.63 0.000614909 0.000572495 0.0348496 0.0324662 32 1948 20 6.64007e+06 213486 554710. 1919.41 0.79 0.10577 0.0932244 22834 132086 -1 1750 19 1232 1899 126310 28603 2.77657 2.77657 -118.657 -2.77657 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0235451 0.0205916 115 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 3.96 vpr 63.06 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 30572 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 407 319 1 194 99 17 17 289 -1 unnamed_device 24.4 MiB 0.25 992 16743 5741 8435 2567 63.1 MiB 0.16 0.00 4.25856 -144.485 -4.25856 4.25856 0.64 0.000779233 0.000722929 0.0600044 0.055631 28 2813 26 6.64007e+06 439530 500653. 1732.36 1.12 0.158203 0.140112 21970 115934 -1 2251 21 1739 2732 190047 43250 3.96783 3.96783 -151.999 -3.96783 0 0 612192. 2118.31 0.17 0.09 0.08 -1 -1 0.17 0.0315336 0.0275113 152 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 3.77 vpr 63.05 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30544 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 407 319 1 201 87 17 17 289 -1 unnamed_device 24.3 MiB 0.17 1054 17367 5167 10302 1898 63.1 MiB 0.10 0.00 4.21976 -145.962 -4.21976 4.21976 0.70 0.000343248 0.00031599 0.0333551 0.0307199 32 2466 19 6.64007e+06 288834 554710. 1919.41 0.86 0.123921 0.10848 22834 132086 -1 2099 24 1954 3202 220211 52156 3.73283 3.73283 -145.571 -3.73283 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0352269 0.0306761 158 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 3.93 vpr 62.50 MiB 0.02 6796 -1 -1 1 0.03 -1 -1 30396 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 23.8 MiB 0.15 691 7975 1531 6145 299 62.5 MiB 0.08 0.00 3.6913 -111.241 -3.6913 3.6913 0.65 0.000551682 0.00050898 0.0247783 0.0228674 26 2376 30 6.64007e+06 376740 477104. 1650.88 1.43 0.107754 0.0942095 21682 110474 -1 1799 21 931 1589 135156 31641 3.04137 3.04137 -113.414 -3.04137 0 0 585099. 2024.56 0.16 0.04 0.06 -1 -1 0.16 0.0140691 0.0124427 112 55 32 32 54 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.52 vpr 62.27 MiB 0.05 6848 -1 -1 1 0.03 -1 -1 30388 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63764 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 23.9 MiB 0.08 653 13381 4684 6039 2658 62.3 MiB 0.13 0.00 3.5533 -116.629 -3.5533 3.5533 0.63 0.000612246 0.000569386 0.0501599 0.0466494 32 1990 24 6.64007e+06 226044 554710. 1919.41 0.83 0.123736 0.109539 22834 132086 -1 1552 22 1482 2306 159992 38871 3.12257 3.12257 -114.217 -3.12257 0 0 701300. 2426.64 0.21 0.08 0.12 -1 -1 0.21 0.0261753 0.0227956 118 4 93 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 3.77 vpr 62.85 MiB 0.04 7020 -1 -1 1 0.03 -1 -1 30500 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 381 303 1 188 97 17 17 289 -1 unnamed_device 24.3 MiB 0.15 927 16303 4785 8793 2725 62.8 MiB 0.16 0.00 4.16476 -135.871 -4.16476 4.16476 0.64 0.000765219 0.000710821 0.0577329 0.0535618 32 2289 21 6.64007e+06 414414 554710. 1919.41 0.84 0.144242 0.127709 22834 132086 -1 1962 21 1526 2229 163809 36851 3.63083 3.63083 -130.968 -3.63083 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0187321 0.0167692 139 59 60 32 58 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.16 vpr 63.20 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 30336 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 406 330 1 190 96 17 17 289 -1 unnamed_device 24.5 MiB 0.11 1051 17397 5163 9750 2484 63.2 MiB 0.17 0.00 4.41596 -136.112 -4.41596 4.41596 0.63 0.000874693 0.00081956 0.0653336 0.0605845 26 2942 23 6.64007e+06 401856 477104. 1650.88 1.37 0.161089 0.14288 21682 110474 -1 2421 24 1751 2823 219825 47629 4.07122 4.07122 -137.457 -4.07122 0 0 585099. 2024.56 0.20 0.10 0.11 -1 -1 0.20 0.0351537 0.0305773 136 88 28 28 88 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 3.84 vpr 62.85 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30584 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 399 285 1 228 101 17 17 289 -1 unnamed_device 24.6 MiB 0.09 1159 10441 2545 7247 649 62.8 MiB 0.12 0.00 4.95022 -163.094 -4.95022 4.95022 0.71 0.000792931 0.000736999 0.0382021 0.0354709 32 3157 23 6.64007e+06 464646 554710. 1919.41 1.04 0.136474 0.120295 22834 132086 -1 2694 22 2236 3465 258000 58733 4.57049 4.57049 -165.739 -4.57049 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0350806 0.0307806 179 3 156 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.12 vpr 62.81 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30524 -1 -1 34 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 30 32 371 295 1 184 96 17 17 289 -1 unnamed_device 24.2 MiB 0.15 813 9732 2096 6039 1597 62.8 MiB 0.08 0.00 3.7815 -111.41 -3.7815 3.7815 0.63 0.000715746 0.000664134 0.0343126 0.0318428 28 2429 27 6.64007e+06 426972 500653. 1732.36 1.48 0.130716 0.114564 21970 115934 -1 1829 16 1219 1940 129190 32839 3.22357 3.22357 -115.42 -3.22357 0 0 612192. 2118.31 0.17 0.06 0.11 -1 -1 0.17 0.0246781 0.0217498 138 59 60 30 56 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.47 vpr 62.21 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30604 -1 -1 21 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63700 27 32 269 226 1 143 80 17 17 289 -1 unnamed_device 23.6 MiB 0.08 529 12292 5081 5761 1450 62.2 MiB 0.10 0.00 3.54427 -98.353 -3.54427 3.54427 0.64 0.000439955 0.000403615 0.0404621 0.0373668 32 1668 31 6.64007e+06 263718 554710. 1919.41 0.91 0.115974 0.101693 22834 132086 -1 1283 22 1233 1718 140097 33637 3.01217 3.01217 -100.001 -3.01217 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0241623 0.0209504 107 34 54 27 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 3.99 vpr 63.32 MiB 0.03 7168 -1 -1 1 0.04 -1 -1 30712 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 493 378 1 232 106 17 17 289 -1 unnamed_device 24.8 MiB 0.16 1462 20856 5895 12562 2399 63.3 MiB 0.23 0.00 4.52196 -148.077 -4.52196 4.52196 0.64 0.000911176 0.000845836 0.0772459 0.0714878 30 3394 22 6.64007e+06 527436 526063. 1820.29 1.03 0.18576 0.164578 22546 126617 -1 2822 21 1887 3481 215119 46093 3.75843 3.75843 -145.571 -3.75843 0 0 666494. 2306.21 0.18 0.10 0.11 -1 -1 0.18 0.0366714 0.0319264 186 95 62 31 95 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 3.84 vpr 63.11 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30536 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 31 32 455 371 1 188 85 17 17 289 -1 unnamed_device 24.4 MiB 0.23 998 12919 3192 8538 1189 63.1 MiB 0.14 0.00 4.42996 -140.975 -4.42996 4.42996 0.64 0.00082973 0.00077044 0.060554 0.0562332 32 2535 22 6.64007e+06 276276 554710. 1919.41 0.91 0.157879 0.139453 22834 132086 -1 2164 23 1704 2834 207148 46985 3.90803 3.90803 -142.039 -3.90803 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.035985 0.0312398 145 124 0 0 124 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 3.59 vpr 62.72 MiB 0.04 6972 -1 -1 1 0.03 -1 -1 30380 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 355 304 1 150 80 17 17 289 -1 unnamed_device 24.1 MiB 0.22 894 11948 3681 7128 1139 62.7 MiB 0.12 0.00 3.6755 -115.703 -3.6755 3.6755 0.66 0.000696569 0.000647021 0.0501565 0.0465973 32 1930 19 6.64007e+06 200928 554710. 1919.41 0.83 0.132349 0.117476 22834 132086 -1 1766 17 866 1435 105106 23689 2.68397 2.68397 -111.92 -2.68397 0 0 701300. 2426.64 0.19 0.06 0.15 -1 -1 0.19 0.0237604 0.020748 108 89 0 0 89 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.17 vpr 62.86 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30460 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 364 282 1 196 97 17 17 289 -1 unnamed_device 24.2 MiB 0.08 1023 18745 6322 9498 2925 62.9 MiB 0.17 0.00 4.46396 -140.121 -4.46396 4.46396 0.65 0.000728743 0.000677377 0.0644208 0.0598041 28 3262 26 6.64007e+06 414414 500653. 1732.36 1.44 0.158692 0.140857 21970 115934 -1 2289 22 1533 2367 185651 40701 3.82863 3.82863 -139.017 -3.82863 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0309427 0.0269668 147 34 90 30 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 3.69 vpr 62.98 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30752 -1 -1 38 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 31 32 443 336 1 220 101 17 17 289 -1 unnamed_device 24.7 MiB 0.12 1135 20076 5790 11566 2720 63.0 MiB 0.20 0.00 4.51716 -144.659 -4.51716 4.51716 0.65 0.000987666 0.000911618 0.0748152 0.0694554 32 2682 21 6.64007e+06 477204 554710. 1919.41 0.89 0.179385 0.158802 22834 132086 -1 2345 21 1959 3025 199966 45675 3.76363 3.76363 -141.716 -3.76363 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0342205 0.0297936 173 64 87 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.21 vpr 62.93 MiB 0.04 7132 -1 -1 1 0.03 -1 -1 30400 -1 -1 34 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 30 32 373 297 1 186 96 17 17 289 -1 unnamed_device 24.3 MiB 0.07 923 11484 2608 8162 714 62.9 MiB 0.12 0.00 3.73061 -110.59 -3.73061 3.73061 0.67 0.00072196 0.000670654 0.0402824 0.0373785 26 3004 29 6.64007e+06 426972 477104. 1650.88 1.62 0.129164 0.113641 21682 110474 -1 2178 23 1626 2810 207598 58583 3.20956 3.20956 -113.499 -3.20956 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.0315296 0.0274364 135 61 58 30 58 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 3.81 vpr 62.67 MiB 0.02 7052 -1 -1 1 0.04 -1 -1 30516 -1 -1 43 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 407 319 1 201 107 17 17 289 -1 unnamed_device 24.3 MiB 0.13 1008 13516 3637 9135 744 62.7 MiB 0.14 0.00 4.19956 -142.899 -4.19956 4.19956 0.65 0.000781943 0.000725876 0.0450655 0.041736 28 2725 41 6.64007e+06 539994 500653. 1732.36 1.10 0.160164 0.140458 21970 115934 -1 2180 23 1991 3355 215719 50623 4.06023 4.06023 -151.409 -4.06023 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0340321 0.0296331 158 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.29 vpr 62.99 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30496 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 405 318 1 200 104 17 17 289 -1 unnamed_device 24.3 MiB 0.14 988 17184 5218 8807 3159 63.0 MiB 0.18 0.00 3.62559 -123.648 -3.62559 3.62559 0.69 0.000781233 0.000724812 0.0666394 0.0618203 28 2973 24 6.64007e+06 502320 500653. 1732.36 1.32 0.16354 0.144196 21970 115934 -1 2384 28 1835 3069 283651 69499 2.85477 2.85477 -118.877 -2.85477 0 0 612192. 2118.31 0.18 0.11 0.10 -1 -1 0.18 0.0385387 0.0334723 157 65 63 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.50 vpr 62.46 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30584 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63964 29 32 287 238 1 134 79 17 17 289 -1 unnamed_device 23.5 MiB 0.07 573 13430 5649 6739 1042 62.5 MiB 0.11 0.00 3.6785 -105.931 -3.6785 3.6785 0.66 0.000456864 0.00041738 0.0472114 0.0436413 28 1653 18 6.64007e+06 226044 500653. 1732.36 0.95 0.102083 0.0907808 21970 115934 -1 1340 20 951 1382 103480 24834 2.76877 2.76877 -101.536 -2.76877 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.023585 0.0204936 95 34 58 29 29 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 3.47 vpr 62.67 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30084 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 334 290 1 156 83 17 17 289 -1 unnamed_device 23.8 MiB 0.16 857 11783 4174 5528 2081 62.7 MiB 0.11 0.00 4.00656 -110.848 -4.00656 4.00656 0.63 0.000771003 0.000724295 0.0463133 0.0430175 30 1873 19 6.64007e+06 238602 526063. 1820.29 0.82 0.121351 0.107278 22546 126617 -1 1596 15 647 938 63203 14367 2.75003 2.75003 -104.258 -2.75003 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0207409 0.0182056 112 82 0 0 82 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 3.78 vpr 62.84 MiB 0.02 7016 -1 -1 1 0.05 -1 -1 30432 -1 -1 38 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 31 32 365 281 1 196 101 17 17 289 -1 unnamed_device 24.2 MiB 0.11 1100 13261 3564 8068 1629 62.8 MiB 0.12 0.00 4.80256 -145.153 -4.80256 4.80256 0.65 0.000728323 0.000676865 0.0446827 0.041501 28 2902 24 6.64007e+06 477204 500653. 1732.36 1.01 0.134972 0.119033 21970 115934 -1 2347 21 1741 2957 217722 47682 4.15823 4.15823 -146.533 -4.15823 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0298906 0.0261146 151 34 93 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 3.69 vpr 62.64 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 30372 -1 -1 31 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 23.9 MiB 0.17 620 10442 2502 7352 588 62.6 MiB 0.09 0.00 3.6803 -100.526 -3.6803 3.6803 0.65 0.000602596 0.00056042 0.0324745 0.0301407 26 1894 33 6.64007e+06 389298 477104. 1650.88 1.11 0.115906 0.101214 21682 110474 -1 1565 19 1094 1826 124281 30136 3.00217 3.00217 -104.425 -3.00217 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0225636 0.0195846 108 56 29 29 52 26 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 3.62 vpr 62.75 MiB 0.02 6772 -1 -1 1 0.05 -1 -1 30300 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 314 256 1 160 81 17 17 289 -1 unnamed_device 24.0 MiB 0.14 691 13906 4599 7385 1922 62.8 MiB 0.13 0.00 3.53127 -120.288 -3.53127 3.53127 0.66 0.000646162 0.000600867 0.0536383 0.0499105 32 2039 20 6.64007e+06 213486 554710. 1919.41 0.86 0.131636 0.116643 22834 132086 -1 1713 21 1506 2361 165680 38086 2.94997 2.94997 -120.716 -2.94997 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0264044 0.0230142 118 34 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.84 vpr 62.97 MiB 0.03 7060 -1 -1 1 0.03 -1 -1 30588 -1 -1 38 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 387 307 1 189 101 17 17 289 -1 unnamed_device 24.4 MiB 0.12 999 13261 3446 8635 1180 63.0 MiB 0.13 0.00 3.5665 -119.865 -3.5665 3.5665 0.67 0.000753069 0.000700131 0.0460652 0.0427129 30 2030 20 6.64007e+06 477204 526063. 1820.29 0.82 0.132461 0.116739 22546 126617 -1 1835 19 1382 2076 110808 25593 2.92417 2.92417 -114.742 -2.92417 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0281434 0.0246253 144 64 58 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.51 vpr 62.57 MiB 0.02 6984 -1 -1 1 0.04 -1 -1 30344 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 31 32 308 262 1 147 80 17 17 289 -1 unnamed_device 23.8 MiB 0.14 869 9368 2508 6076 784 62.6 MiB 0.09 0.00 3.34153 -105.882 -3.34153 3.34153 0.64 0.000628762 0.000585022 0.0368969 0.0343516 32 1935 19 6.64007e+06 213486 554710. 1919.41 0.81 0.111414 0.0982209 22834 132086 -1 1719 17 952 1622 113176 24724 2.74877 2.74877 -108.146 -2.74877 0 0 701300. 2426.64 0.20 0.06 0.15 -1 -1 0.20 0.0236052 0.0205975 106 55 31 31 53 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 3.95 vpr 62.85 MiB 0.03 7056 -1 -1 1 0.03 -1 -1 30544 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 383 307 1 184 97 17 17 289 -1 unnamed_device 24.0 MiB 0.14 879 9865 2512 6573 780 62.8 MiB 0.10 0.00 3.57229 -117.612 -3.57229 3.57229 0.70 0.000747709 0.000694802 0.0357745 0.0332191 28 2622 27 6.64007e+06 414414 500653. 1732.36 1.18 0.130126 0.114437 21970 115934 -1 2063 19 1195 1930 145176 33616 2.81577 2.81577 -115.32 -2.81577 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0291816 0.0255959 137 65 52 26 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 3.74 vpr 63.13 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30428 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 31 32 422 339 1 195 100 17 17 289 -1 unnamed_device 24.5 MiB 0.25 875 10540 2287 7686 567 63.1 MiB 0.11 0.00 3.79366 -119.555 -3.79366 3.79366 0.64 0.000791213 0.000734819 0.0389231 0.0361057 30 2033 25 6.64007e+06 464646 526063. 1820.29 0.89 0.137661 0.120894 22546 126617 -1 1725 19 1462 2161 120605 28594 2.98817 2.98817 -114.832 -2.98817 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0298256 0.0260566 149 93 31 31 92 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 3.57 vpr 62.71 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30448 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 24.0 MiB 0.15 816 8626 2345 5890 391 62.7 MiB 0.09 0.00 3.06096 -106.925 -3.06096 3.06096 0.64 0.000663626 0.000616966 0.0346069 0.0321608 32 2043 18 6.64007e+06 226044 554710. 1919.41 0.87 0.115809 0.101231 22834 132086 -1 1845 21 1249 2000 141324 31653 2.66557 2.66557 -108.527 -2.66557 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0291058 0.0254055 115 61 32 32 60 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 3.62 vpr 62.65 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30188 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 23.9 MiB 0.17 920 11296 3024 7326 946 62.7 MiB 0.11 0.00 3.5031 -121.121 -3.5031 3.5031 0.66 0.000672425 0.000624742 0.045022 0.0418272 30 2197 20 6.64007e+06 226044 526063. 1820.29 0.82 0.124642 0.110364 22546 126617 -1 1909 21 1232 2089 133938 29942 2.96097 2.96097 -117.747 -2.96097 0 0 666494. 2306.21 0.19 0.07 0.12 -1 -1 0.19 0.0273739 0.0238382 121 63 32 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 3.50 vpr 62.93 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30768 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 407 319 1 198 102 17 17 289 -1 unnamed_device 24.2 MiB 0.15 1027 12240 2965 8371 904 62.9 MiB 0.12 0.00 4.25676 -144.495 -4.25676 4.25676 0.63 0.000773013 0.000717401 0.0422635 0.0391933 32 2501 30 6.64007e+06 477204 554710. 1919.41 0.76 0.108207 0.0959152 22834 132086 -1 2171 23 1912 2837 202861 47065 3.85083 3.85083 -143.515 -3.85083 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0333425 0.0290399 156 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 3.66 vpr 63.04 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 30516 -1 -1 34 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 29 32 367 293 1 183 95 17 17 289 -1 unnamed_device 24.3 MiB 0.13 1021 16079 4076 10280 1723 63.0 MiB 0.18 0.00 3.7925 -111.563 -3.7925 3.7925 0.64 0.000732658 0.000681636 0.063549 0.0589393 32 2199 23 6.64007e+06 426972 554710. 1919.41 0.83 0.1556 0.137191 22834 132086 -1 1981 19 1093 1758 104957 25144 2.95816 2.95816 -108.852 -2.95816 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0286238 0.0250386 135 62 56 29 58 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 3.85 vpr 62.89 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 30600 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64396 32 32 469 381 1 200 103 17 17 289 -1 unnamed_device 24.4 MiB 0.24 937 9020 1835 6701 484 62.9 MiB 0.10 0.00 4.29776 -145.038 -4.29776 4.29776 0.67 0.000852686 0.000790953 0.0352488 0.0327114 32 2670 31 6.64007e+06 489762 554710. 1919.41 0.95 0.148463 0.129517 22834 132086 -1 2193 22 1887 2961 206683 48439 3.78263 3.78263 -144.873 -3.78263 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0353782 0.0306721 158 127 0 0 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.37 vpr 62.15 MiB 0.05 6740 -1 -1 1 0.03 -1 -1 30504 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 31 32 259 212 1 146 80 17 17 289 -1 unnamed_device 23.6 MiB 0.08 804 11948 3966 6404 1578 62.1 MiB 0.10 0.00 3.08296 -103.61 -3.08296 3.08296 0.65 0.000573544 0.000534111 0.0418632 0.0389878 32 1812 20 6.64007e+06 213486 554710. 1919.41 0.77 0.108873 0.0963511 22834 132086 -1 1658 21 936 1522 120337 26812 2.64977 2.64977 -103.007 -2.64977 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0236629 0.0205892 106 4 85 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 3.84 vpr 62.84 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30548 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 418 338 1 190 99 17 17 289 -1 unnamed_device 24.2 MiB 0.13 998 18111 4956 10747 2408 62.8 MiB 0.17 0.00 4.26296 -139.632 -4.26296 4.26296 0.65 0.000775327 0.000719281 0.0645162 0.059778 26 2698 30 6.64007e+06 439530 477104. 1650.88 1.22 0.16459 0.145722 21682 110474 -1 2193 22 1711 2442 188382 41624 3.86503 3.86503 -141.25 -3.86503 0 0 585099. 2024.56 0.16 0.05 0.06 -1 -1 0.16 0.0179052 0.0158423 144 92 28 28 92 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 3.66 vpr 63.04 MiB 0.04 6944 -1 -1 1 0.04 -1 -1 30116 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 24.3 MiB 0.29 734 13381 4309 7077 1995 63.0 MiB 0.13 0.00 3.54047 -121.881 -3.54047 3.54047 0.64 0.000715267 0.000663699 0.0573444 0.0532458 28 2004 19 6.64007e+06 213486 500653. 1732.36 0.82 0.143448 0.127503 21970 115934 -1 1702 21 1319 1931 136314 31674 2.93317 2.93317 -118.594 -2.93317 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0294383 0.02566 114 96 0 0 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 3.63 vpr 62.95 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30316 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 401 316 1 196 101 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1102 9501 2041 6911 549 63.0 MiB 0.11 0.00 3.5841 -124.322 -3.5841 3.5841 0.65 0.000770066 0.000715436 0.0340486 0.0316187 30 2381 21 6.64007e+06 464646 526063. 1820.29 0.86 0.134402 0.117752 22546 126617 -1 2111 18 1317 1899 118195 27484 2.83157 2.83157 -119.372 -2.83157 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0283215 0.024894 151 65 61 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.13 vpr 63.33 MiB 0.03 7156 -1 -1 1 0.04 -1 -1 30936 -1 -1 45 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 500 382 1 232 109 17 17 289 -1 unnamed_device 24.9 MiB 0.22 1244 16489 4012 10933 1544 63.3 MiB 0.19 0.00 4.96651 -168.366 -4.96651 4.96651 0.67 0.00092804 0.000862132 0.0701169 0.065029 26 3486 28 6.64007e+06 565110 477104. 1650.88 2.17 0.188052 0.165947 21682 110474 -1 2801 20 2309 3669 268544 57523 4.93289 4.93289 -177.122 -4.93289 0 0 585099. 2024.56 0.18 0.11 0.08 -1 -1 0.18 0.0361165 0.031558 188 96 64 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.31 vpr 62.08 MiB 0.03 6784 -1 -1 1 0.03 -1 -1 30148 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63568 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 23.4 MiB 0.08 483 10509 2545 7262 702 62.1 MiB 0.08 0.00 2.73878 -81.5531 -2.73878 2.73878 0.65 0.00052924 0.000492155 0.0358284 0.0333551 28 1397 23 6.64007e+06 188370 500653. 1732.36 0.77 0.10014 0.0880357 21970 115934 -1 1101 21 700 949 70065 18239 2.15451 2.15451 -81.4168 -2.15451 0 0 612192. 2118.31 0.17 0.05 0.11 -1 -1 0.17 0.0216446 0.0187493 83 56 0 0 53 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.41 vpr 62.17 MiB 0.03 6956 -1 -1 1 0.03 -1 -1 30372 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63660 30 32 296 244 1 137 79 17 17 289 -1 unnamed_device 23.5 MiB 0.08 793 10388 3558 5136 1694 62.2 MiB 0.07 0.00 3.6815 -114.291 -3.6815 3.6815 0.73 0.000616805 0.000573515 0.0283126 0.0262449 32 1615 19 6.64007e+06 213486 554710. 1919.41 0.78 0.100509 0.0881538 22834 132086 -1 1552 20 976 1458 122741 26899 2.79377 2.79377 -111.518 -2.79377 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0245803 0.0214329 97 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.66 vpr 62.61 MiB 0.04 6800 -1 -1 1 0.03 -1 -1 30044 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 23.9 MiB 0.11 798 13966 5020 6560 2386 62.6 MiB 0.13 0.00 3.4859 -119.604 -3.4859 3.4859 0.64 0.000646211 0.000600452 0.0530012 0.0492348 32 2382 23 6.64007e+06 226044 554710. 1919.41 0.93 0.131792 0.116789 22834 132086 -1 2012 22 1558 2776 205096 46469 3.13717 3.13717 -121.476 -3.13717 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0274288 0.0238717 126 34 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.42 vpr 62.14 MiB 0.03 6916 -1 -1 1 0.03 -1 -1 30436 -1 -1 34 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63632 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 23.5 MiB 0.05 678 12127 3168 7672 1287 62.1 MiB 0.10 0.00 3.4089 -91.215 -3.4089 3.4089 0.63 0.000762538 0.000708997 0.0339782 0.0316566 26 1687 20 6.64007e+06 426972 477104. 1650.88 0.94 0.0971062 0.0853718 21682 110474 -1 1503 22 1109 1705 121476 27048 2.84297 2.84297 -92.6359 -2.84297 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0233551 0.0201962 103 34 50 25 25 25 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 3.77 vpr 62.98 MiB 0.05 7008 -1 -1 1 0.04 -1 -1 30548 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 432 346 1 193 86 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1064 14828 5337 7470 2021 63.0 MiB 0.16 0.00 4.34676 -140.278 -4.34676 4.34676 0.64 0.000802022 0.000744616 0.0656436 0.0609464 32 2475 24 6.64007e+06 276276 554710. 1919.41 0.90 0.163639 0.14489 22834 132086 -1 2138 21 1584 2860 180041 40448 3.64943 3.64943 -135.607 -3.64943 0 0 701300. 2426.64 0.27 0.07 0.12 -1 -1 0.27 0.0268572 0.023701 149 94 32 32 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.45 vpr 63.04 MiB 0.03 7176 -1 -1 1 0.03 -1 -1 30364 -1 -1 39 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 31 32 421 339 1 193 102 17 17 289 -1 unnamed_device 24.4 MiB 0.17 786 10336 2273 7345 718 63.0 MiB 0.11 0.00 3.53327 -114.261 -3.53327 3.53327 0.64 0.00101929 0.000933286 0.0378106 0.0349707 28 2510 49 6.64007e+06 489762 500653. 1732.36 1.71 0.165672 0.144622 21970 115934 -1 2001 20 1659 2542 175227 43871 3.38857 3.38857 -131.818 -3.38857 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0304777 0.0266013 148 94 29 29 93 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 3.78 vpr 62.67 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30620 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 32 32 438 350 1 194 98 17 17 289 -1 unnamed_device 24.5 MiB 0.21 984 7523 1506 5708 309 62.7 MiB 0.09 0.00 3.92206 -133.487 -3.92206 3.92206 0.64 0.000809792 0.000752004 0.0300029 0.02782 32 3159 26 6.65987e+06 431052 554710. 1919.41 1.08 0.132418 0.11575 22834 132086 -1 2393 24 2181 3497 314439 71144 3.62831 3.62831 -137.513 -3.62831 0 0 701300. 2426.64 0.18 0.09 0.08 -1 -1 0.18 0.0304517 0.0265385 151 96 32 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 3.70 vpr 62.96 MiB 0.05 7108 -1 -1 1 0.04 -1 -1 30572 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 30 32 409 330 1 186 83 17 17 289 -1 unnamed_device 24.2 MiB 0.31 986 12323 4513 6271 1539 63.0 MiB 0.08 0.00 4.33507 -129.747 -4.33507 4.33507 0.65 0.000344815 0.000317708 0.0257176 0.0237632 32 2540 23 6.65987e+06 266238 554710. 1919.41 0.82 0.117595 0.102598 22834 132086 -1 2229 21 1810 2983 230738 52421 3.74791 3.74791 -132.865 -3.74791 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0312099 0.027203 140 91 30 30 89 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 3.73 vpr 62.88 MiB 0.03 7096 -1 -1 1 0.03 -1 -1 30404 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 387 309 1 186 98 17 17 289 -1 unnamed_device 24.2 MiB 0.10 1040 16523 4439 10256 1828 62.9 MiB 0.15 0.00 3.41879 -119.689 -3.41879 3.41879 0.63 0.000743191 0.000689694 0.0571518 0.0530765 28 2534 22 6.65987e+06 431052 500653. 1732.36 1.05 0.145688 0.129103 21970 115934 -1 2229 23 1555 2594 226838 48017 3.07945 3.07945 -122.96 -3.07945 0 0 612192. 2118.31 0.19 0.09 0.11 -1 -1 0.19 0.0324746 0.0282694 141 65 54 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.40 vpr 62.63 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30444 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 29 32 343 267 1 184 83 17 17 289 -1 unnamed_device 24.1 MiB 0.11 793 11603 2857 6819 1927 62.6 MiB 0.07 0.00 4.2977 -123.649 -4.2977 4.2977 0.71 0.000696309 0.000647326 0.0241568 0.022322 34 2278 23 6.65987e+06 278916 585099. 2024.56 1.67 0.154266 0.133557 23122 138558 -1 1874 23 1766 3075 212229 53283 3.76071 3.76071 -127.817 -3.76071 0 0 742403. 2568.87 0.20 0.09 0.13 -1 -1 0.20 0.0328465 0.0287523 138 34 87 29 29 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.02 vpr 62.72 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 30492 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 32 32 376 288 1 195 84 17 17 289 -1 unnamed_device 24.1 MiB 0.19 1026 15456 4961 8586 1909 62.7 MiB 0.16 0.00 4.14936 -143.085 -4.14936 4.14936 0.64 0.000738993 0.000686648 0.0653041 0.060671 32 2926 21 6.65987e+06 253560 554710. 1919.41 0.92 0.15429 0.137314 22834 132086 -1 2415 23 2233 4058 303013 70469 3.94283 3.94283 -149.271 -3.94283 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0341645 0.0298938 151 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 3.79 vpr 62.69 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30396 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 402 316 1 199 101 17 17 289 -1 unnamed_device 24.3 MiB 0.20 1029 9501 1978 7135 388 62.7 MiB 0.10 0.00 3.43623 -117.882 -3.43623 3.43623 0.65 0.000769948 0.000712758 0.0338278 0.0313746 32 2567 26 6.65987e+06 469086 554710. 1919.41 0.86 0.12975 0.113679 22834 132086 -1 2120 21 1394 2236 167076 38664 2.81951 2.81951 -117.088 -2.81951 0 0 701300. 2426.64 0.22 0.08 0.13 -1 -1 0.22 0.0318188 0.0278025 154 64 63 32 63 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.60 vpr 61.91 MiB 0.04 6892 -1 -1 1 0.03 -1 -1 30808 -1 -1 19 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63392 27 32 269 226 1 135 78 17 17 289 -1 unnamed_device 23.3 MiB 0.18 580 13026 4344 6329 2353 61.9 MiB 0.12 0.00 3.7565 -98.351 -3.7565 3.7565 0.75 0.000567201 0.000527919 0.0509653 0.047448 30 1363 17 6.65987e+06 240882 526063. 1820.29 0.78 0.115784 0.102776 22546 126617 -1 1141 17 746 1262 72003 17310 2.66236 2.66236 -90.1914 -2.66236 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0205585 0.0180041 96 34 54 27 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 3.62 vpr 62.64 MiB 0.03 6976 -1 -1 1 0.03 -1 -1 30228 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 31 32 317 242 1 185 96 17 17 289 -1 unnamed_device 24.1 MiB 0.14 1006 10170 2426 6636 1108 62.6 MiB 0.10 0.00 3.27903 -106.33 -3.27903 3.27903 0.65 0.000676177 0.000628649 0.0347205 0.032285 28 2449 18 6.65987e+06 418374 500653. 1732.36 0.90 0.111753 0.0985446 21970 115934 -1 2162 20 1186 2060 136992 31700 2.86711 2.86711 -105.656 -2.86711 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.0263728 0.0230883 139 4 115 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.66 vpr 62.41 MiB 0.03 6972 -1 -1 1 0.03 -1 -1 30120 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 31 32 338 292 1 148 79 17 17 289 -1 unnamed_device 23.7 MiB 0.27 870 11571 3268 6617 1686 62.4 MiB 0.11 0.00 3.07084 -101.313 -3.07084 3.07084 0.67 0.000664646 0.000617713 0.04847 0.0450797 32 1812 21 6.65987e+06 202848 554710. 1919.41 0.78 0.126011 0.111481 22834 132086 -1 1693 20 859 1399 94469 22459 2.57725 2.57725 -100.922 -2.57725 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0262122 0.0228715 105 85 0 0 84 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 5.16 vpr 62.44 MiB 0.06 6820 -1 -1 1 0.03 -1 -1 30464 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 314 256 1 162 80 17 17 289 -1 unnamed_device 23.7 MiB 0.28 642 11432 4032 4649 2751 62.4 MiB 0.10 0.00 3.56921 -118.924 -3.56921 3.56921 0.63 0.000655871 0.000609079 0.0453333 0.0421093 36 2032 39 6.65987e+06 202848 612192. 2118.31 2.24 0.191647 0.166991 23410 145293 -1 1496 21 1311 2124 144443 38300 2.94877 2.94877 -111.707 -2.94877 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0275798 0.0241721 121 34 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.88 vpr 62.64 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30184 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 30 32 325 273 1 151 79 17 17 289 -1 unnamed_device 23.9 MiB 0.26 784 11571 3060 7609 902 62.6 MiB 0.11 0.00 3.4841 -113.76 -3.4841 3.4841 0.64 0.00065046 0.000604685 0.0468917 0.0436505 32 1689 20 6.65987e+06 215526 554710. 1919.41 0.87 0.130299 0.115416 22834 132086 -1 1543 23 1224 1807 117625 27755 2.81677 2.81677 -109.376 -2.81677 0 0 701300. 2426.64 0.23 0.07 0.12 -1 -1 0.23 0.0293567 0.0254978 110 63 30 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.70 vpr 62.42 MiB 0.02 6852 -1 -1 1 0.03 -1 -1 30484 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 23.7 MiB 0.25 841 11223 2602 8034 587 62.4 MiB 0.11 0.00 3.27957 -108.894 -3.27957 3.27957 0.65 0.000659311 0.000611112 0.0378672 0.0351403 30 1969 21 6.65987e+06 367662 526063. 1820.29 0.87 0.118192 0.104153 22546 126617 -1 1680 19 1010 1712 102223 24005 2.40285 2.40285 -103.451 -2.40285 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0249791 0.0218061 114 65 25 25 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 3.99 vpr 62.78 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 30320 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 386 305 1 188 96 17 17 289 -1 unnamed_device 24.0 MiB 0.36 1002 18711 5900 10256 2555 62.8 MiB 0.18 0.00 3.50686 -122.446 -3.50686 3.50686 0.65 0.000750831 0.000696554 0.0677127 0.0627021 32 2409 24 6.65987e+06 405696 554710. 1919.41 0.93 0.158304 0.140707 22834 132086 -1 2111 23 1820 3075 229039 52037 2.99617 2.99617 -117.527 -2.99617 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0317277 0.0276627 143 58 64 32 57 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.43 vpr 62.46 MiB 0.02 6996 -1 -1 1 0.04 -1 -1 30576 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 32 32 407 319 1 200 98 17 17 289 -1 unnamed_device 24.0 MiB 0.29 942 7973 1567 6126 280 62.5 MiB 0.09 0.00 4.02327 -135.611 -4.02327 4.02327 0.87 0.000618028 0.000567462 0.0256015 0.0235677 32 2790 25 6.65987e+06 431052 554710. 1919.41 1.04 0.119624 0.104685 22834 132086 -1 2276 23 2165 3419 261059 61100 3.55651 3.55651 -137.405 -3.55651 0 0 701300. 2426.64 0.21 0.10 0.13 -1 -1 0.21 0.0344855 0.0301231 156 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.60 vpr 62.16 MiB 0.02 6876 -1 -1 1 0.03 -1 -1 30632 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 29 32 272 228 1 145 79 17 17 289 -1 unnamed_device 23.8 MiB 0.17 686 7177 1709 4538 930 62.2 MiB 0.07 0.00 3.15358 -93.6229 -3.15358 3.15358 0.65 0.000583404 0.000543612 0.0265262 0.0247235 28 1802 20 6.65987e+06 228204 500653. 1732.36 0.79 0.0947739 0.083094 21970 115934 -1 1532 22 1092 1831 123922 29554 2.64859 2.64859 -92.89 -2.64859 0 0 612192. 2118.31 0.24 0.08 0.12 -1 -1 0.24 0.0356502 0.0314816 107 29 58 29 24 24 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.50 vpr 62.88 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30404 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 401 315 1 192 84 17 17 289 -1 unnamed_device 24.2 MiB 0.30 1074 13992 4161 7846 1985 62.9 MiB 0.14 0.00 3.5141 -125.301 -3.5141 3.5141 0.88 0.000597023 0.00054735 0.0487722 0.044764 32 2631 22 6.65987e+06 253560 554710. 1919.41 1.03 0.125802 0.111277 22834 132086 -1 2365 20 1746 3076 245530 55788 3.19431 3.19431 -129.28 -3.19431 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0319986 0.02813 146 63 64 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.46 vpr 62.90 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30296 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 383 303 1 185 98 17 17 289 -1 unnamed_device 24.3 MiB 0.34 934 18323 6450 8556 3317 62.9 MiB 0.15 0.00 3.6343 -123.732 -3.6343 3.6343 0.64 0.000727331 0.000672626 0.0640976 0.0595207 30 2475 27 6.65987e+06 431052 526063. 1820.29 1.49 0.164195 0.146008 22546 126617 -1 1892 18 1292 1951 127583 30325 2.86377 2.86377 -118.76 -2.86377 0 0 666494. 2306.21 0.18 0.07 0.09 -1 -1 0.18 0.027872 0.0245105 142 57 64 32 56 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.53 vpr 62.79 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30056 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 339 284 1 162 94 17 17 289 -1 unnamed_device 23.9 MiB 0.19 832 15430 4777 8349 2304 62.8 MiB 0.14 0.00 2.83964 -101.748 -2.83964 2.83964 0.63 0.000679661 0.000630926 0.0514787 0.0477813 30 1919 16 6.65987e+06 380340 526063. 1820.29 0.77 0.125249 0.111012 22546 126617 -1 1612 17 885 1259 74659 17349 2.03391 2.03391 -95.1109 -2.03391 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0235774 0.0206696 118 65 29 29 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.45 vpr 61.64 MiB 0.02 6648 -1 -1 1 0.03 -1 -1 30288 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63120 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 23.2 MiB 0.12 661 10835 3152 6204 1479 61.6 MiB 0.08 0.00 2.60038 -85.2282 -2.60038 2.60038 0.66 0.000601778 0.00055492 0.0354827 0.0330116 28 1412 25 6.65987e+06 190170 500653. 1732.36 0.75 0.0987736 0.0869962 21970 115934 -1 1317 18 590 894 65454 14803 1.64045 1.64045 -76.6109 -1.64045 0 0 612192. 2118.31 0.18 0.05 0.11 -1 -1 0.18 0.018376 0.0159886 85 34 24 24 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.65 vpr 62.57 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30424 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 31 32 335 280 1 154 79 17 17 289 -1 unnamed_device 23.9 MiB 0.20 855 13768 4604 7573 1591 62.6 MiB 0.13 0.00 3.94338 -122.155 -3.94338 3.94338 0.64 0.000659835 0.000613017 0.0578196 0.0537615 32 1948 20 6.65987e+06 202848 554710. 1919.41 0.81 0.137082 0.121579 22834 132086 -1 1755 18 938 1411 113590 25356 2.87625 2.87625 -113.945 -2.87625 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0238189 0.0208769 113 64 31 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.59 vpr 62.84 MiB 0.02 6928 -1 -1 1 0.04 -1 -1 30340 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 366 283 1 192 98 17 17 289 -1 unnamed_device 24.2 MiB 0.06 1021 12248 3399 7922 927 62.8 MiB 0.12 0.00 3.9823 -134.861 -3.9823 3.9823 0.65 0.000718081 0.000664225 0.0428026 0.0397435 26 2573 27 6.65987e+06 431052 477104. 1650.88 0.98 0.136722 0.120444 21682 110474 -1 2275 22 1713 2482 195861 44433 3.85911 3.85911 -139.785 -3.85911 0 0 585099. 2024.56 0.20 0.09 0.11 -1 -1 0.20 0.0320781 0.0280901 145 34 91 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 3.94 vpr 62.72 MiB 0.03 7264 -1 -1 1 0.04 -1 -1 30572 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 32 32 460 375 1 196 100 17 17 289 -1 unnamed_device 24.5 MiB 0.30 1084 15644 4587 8678 2379 62.7 MiB 0.15 0.00 3.46744 -121.209 -3.46744 3.46744 0.67 0.000843363 0.000783129 0.0608548 0.0565342 32 2893 24 6.65987e+06 456408 554710. 1919.41 0.94 0.166898 0.147133 22834 132086 -1 2304 23 1666 2527 192489 43026 3.41005 3.41005 -122.544 -3.41005 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0377261 0.0328294 149 124 0 0 125 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.28 vpr 61.62 MiB 0.02 6724 -1 -1 1 0.03 -1 -1 30552 -1 -1 17 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63096 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 23.0 MiB 0.15 410 10345 3142 6004 1199 61.6 MiB 0.07 0.00 2.61938 -68.655 -2.61938 2.61938 0.63 0.000440883 0.00040938 0.0303597 0.0282489 30 1108 22 6.65987e+06 215526 526063. 1820.29 0.71 0.0830307 0.0732116 22546 126617 -1 888 17 469 716 38565 9930 1.69465 1.69465 -62.5815 -1.69465 0 0 666494. 2306.21 0.18 0.04 0.14 -1 -1 0.18 0.0157633 0.0137968 77 30 26 26 22 22 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.52 vpr 62.74 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30128 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 333 251 1 187 84 17 17 289 -1 unnamed_device 23.9 MiB 0.13 1123 11064 3077 6737 1250 62.7 MiB 0.12 0.00 4.10424 -135.549 -4.10424 4.10424 0.60 0.000690645 0.000642303 0.0442303 0.0411699 32 2636 25 6.65987e+06 253560 554710. 1919.41 0.89 0.1307 0.115484 22834 132086 -1 2340 20 1634 2768 224801 50413 3.87397 3.87397 -136.212 -3.87397 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0290035 0.0255074 137 3 122 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.40 vpr 61.63 MiB 0.02 6712 -1 -1 1 0.03 -1 -1 30376 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63108 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 23.0 MiB 0.04 594 8553 1943 6358 252 61.6 MiB 0.07 0.00 2.22607 -81.0919 -2.22607 2.22607 0.69 0.000467776 0.000435397 0.0271284 0.0252266 28 1546 23 6.65987e+06 164814 500653. 1732.36 0.90 0.092641 0.081581 21970 115934 -1 1328 13 597 780 61409 14459 1.92605 1.92605 -82.4093 -1.92605 0 0 612192. 2118.31 0.17 0.04 0.11 -1 -1 0.17 0.0141677 0.0125464 81 3 53 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.71 vpr 62.89 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 30508 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 376 288 1 194 97 17 17 289 -1 unnamed_device 24.2 MiB 0.07 1112 19189 6002 11213 1974 62.9 MiB 0.18 0.00 4.06247 -140.472 -4.06247 4.06247 0.64 0.000735489 0.000682684 0.0695124 0.0644878 32 2640 23 6.65987e+06 418374 554710. 1919.41 0.92 0.158962 0.141374 22834 132086 -1 2332 22 1852 2869 241884 52982 3.64237 3.64237 -140.833 -3.64237 0 0 701300. 2426.64 0.21 0.10 0.12 -1 -1 0.21 0.0342125 0.0300857 151 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 3.72 vpr 62.70 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 30112 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 337 253 1 196 99 17 17 289 -1 unnamed_device 24.1 MiB 0.15 1134 16059 4004 10217 1838 62.7 MiB 0.15 0.00 3.38184 -119.391 -3.38184 3.38184 0.66 0.000545831 0.000501028 0.050128 0.0465176 30 2437 23 6.65987e+06 443730 526063. 1820.29 0.88 0.135047 0.119558 22546 126617 -1 2179 21 1463 2318 163790 35189 2.72851 2.72851 -114.216 -2.72851 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0291351 0.0254669 150 3 124 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.37 vpr 62.63 MiB 0.02 6936 -1 -1 1 0.04 -1 -1 30464 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 407 319 1 197 99 17 17 289 -1 unnamed_device 24.2 MiB 0.15 1120 14463 4038 8924 1501 62.6 MiB 0.16 0.00 3.91784 -136.256 -3.91784 3.91784 0.64 0.000938635 0.000872578 0.0545017 0.0506019 28 2877 24 6.65987e+06 443730 500653. 1732.36 1.29 0.153439 0.13593 21970 115934 -1 2382 24 1982 3438 253080 56365 3.39471 3.39471 -133.611 -3.39471 0 0 612192. 2118.31 0.20 0.11 0.13 -1 -1 0.20 0.0380745 0.0332444 153 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.52 vpr 62.19 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 30164 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63680 32 32 294 246 1 149 79 17 17 289 -1 unnamed_device 23.7 MiB 0.06 736 8191 2107 5347 737 62.2 MiB 0.08 0.00 2.8895 -100.047 -2.8895 2.8895 0.66 0.000616876 0.00057359 0.0325978 0.0303512 28 1959 23 6.65987e+06 190170 500653. 1732.36 0.81 0.107934 0.0949648 21970 115934 -1 1794 18 1044 1689 131849 30152 2.80591 2.80591 -104.879 -2.80591 0 0 612192. 2118.31 0.24 0.06 0.10 -1 -1 0.24 0.0230211 0.0201368 106 34 54 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.74 vpr 62.43 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 30240 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63928 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 23.7 MiB 0.12 832 12156 3666 7026 1464 62.4 MiB 0.11 0.00 3.4951 -115.55 -3.4951 3.4951 0.66 0.000613693 0.000570723 0.045411 0.0422522 32 1928 21 6.65987e+06 240882 554710. 1919.41 0.82 0.119352 0.105675 22834 132086 -1 1714 20 1246 1787 142322 32113 3.15837 3.15837 -116.08 -3.15837 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0245931 0.021542 115 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.72 vpr 62.18 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30468 -1 -1 20 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63672 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 23.7 MiB 0.12 590 7820 1903 5456 461 62.2 MiB 0.08 0.00 3.4309 -99.7277 -3.4309 3.4309 0.66 0.000586781 0.000546298 0.0287992 0.0267962 32 1923 46 6.65987e+06 253560 554710. 1919.41 1.05 0.115158 0.100443 22834 132086 -1 1563 21 1210 2013 140180 35724 3.03717 3.03717 -103.663 -3.03717 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0243158 0.0211755 107 34 56 28 28 28 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.61 vpr 62.44 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 30512 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 23.7 MiB 0.12 686 12008 2561 8162 1285 62.4 MiB 0.10 0.00 3.4859 -118.026 -3.4859 3.4859 0.65 0.000614104 0.000571435 0.0433436 0.0403278 32 2225 24 6.65987e+06 228204 554710. 1919.41 0.94 0.12409 0.109888 22834 132086 -1 1782 23 1492 2350 178530 44000 2.96911 2.96911 -119.443 -2.96911 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0261458 0.0229299 125 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.40 vpr 62.27 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30328 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63760 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 23.7 MiB 0.08 778 11809 2809 7761 1239 62.3 MiB 0.11 0.00 3.29178 -109.233 -3.29178 3.29178 0.76 0.000632262 0.000587894 0.0367419 0.0341078 26 2453 37 6.65987e+06 393018 477104. 1650.88 1.46 0.127783 0.111946 21682 110474 -1 2003 21 1417 2331 202054 46827 2.68725 2.68725 -109.634 -2.68725 0 0 585099. 2024.56 0.16 0.08 0.06 -1 -1 0.16 0.0256641 0.0223509 119 34 61 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.55 vpr 62.50 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 30236 -1 -1 30 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 29 32 312 264 1 154 91 17 17 289 -1 unnamed_device 23.7 MiB 0.19 717 8047 1725 5786 536 62.5 MiB 0.08 0.00 2.76744 -86.2128 -2.76744 2.76744 0.64 0.000486762 0.000446094 0.0271978 0.0251921 32 1839 18 6.65987e+06 380340 554710. 1919.41 0.82 0.0964644 0.0844708 22834 132086 -1 1669 19 980 1637 120360 28146 2.35685 2.35685 -88.7849 -2.35685 0 0 701300. 2426.64 0.21 0.07 0.13 -1 -1 0.21 0.0254877 0.0223402 109 61 29 29 57 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 6.24 vpr 62.72 MiB 0.05 7180 -1 -1 1 0.05 -1 -1 30560 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 423 310 1 229 103 17 17 289 -1 unnamed_device 24.4 MiB 0.28 1246 13117 3185 8526 1406 62.7 MiB 0.15 0.00 4.16036 -141.523 -4.16036 4.16036 0.65 0.000837396 0.000779058 0.0485236 0.0451188 26 4082 47 6.65987e+06 494442 477104. 1650.88 3.31 0.187362 0.164646 21682 110474 -1 3177 19 1946 3416 372770 77973 4.23023 4.23023 -159.822 -4.23023 0 0 585099. 2024.56 0.17 0.12 0.10 -1 -1 0.17 0.0327446 0.0288259 179 29 128 32 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 3.68 vpr 62.93 MiB 0.02 7052 -1 -1 1 0.04 -1 -1 30540 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 403 317 1 198 99 17 17 289 -1 unnamed_device 24.5 MiB 0.22 1041 9447 2232 6542 673 62.9 MiB 0.11 0.00 3.5061 -122.514 -3.5061 3.5061 0.67 0.000775963 0.00071838 0.03559 0.0329359 32 2399 23 6.65987e+06 443730 554710. 1919.41 0.88 0.127609 0.111981 22834 132086 -1 2100 19 1680 2488 167224 38451 2.91297 2.91297 -119.551 -2.91297 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0296716 0.0260214 152 65 62 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.42 vpr 62.61 MiB 0.05 6992 -1 -1 1 0.04 -1 -1 30508 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 31 32 353 302 1 156 91 17 17 289 -1 unnamed_device 23.8 MiB 0.32 709 5599 957 4403 239 62.6 MiB 0.07 0.00 3.18838 -103.883 -3.18838 3.18838 0.68 0.000684041 0.000636138 0.0218387 0.0202942 26 2166 21 6.65987e+06 354984 477104. 1650.88 1.52 0.107343 0.0935397 21682 110474 -1 1792 22 1145 1768 127720 30506 2.62025 2.62025 -105.449 -2.62025 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0287437 0.0249188 113 90 0 0 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 3.80 vpr 62.71 MiB 0.04 7100 -1 -1 1 0.03 -1 -1 30528 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 31 32 391 309 1 194 84 17 17 289 -1 unnamed_device 24.1 MiB 0.23 1062 14541 4862 7202 2477 62.7 MiB 0.15 0.00 3.4921 -118.867 -3.4921 3.4921 0.66 0.00069921 0.000645777 0.0620453 0.0576392 32 2506 18 6.65987e+06 266238 554710. 1919.41 0.84 0.147518 0.131138 22834 132086 -1 2153 22 1746 2876 203886 45580 2.77657 2.77657 -113.826 -2.77657 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0325776 0.0285071 148 64 60 30 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 3.82 vpr 63.00 MiB 0.03 7296 -1 -1 1 0.03 -1 -1 30504 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 31 32 455 371 1 193 84 17 17 289 -1 unnamed_device 24.2 MiB 0.31 1075 7953 1851 5455 647 63.0 MiB 0.10 0.00 4.84238 -140.996 -4.84238 4.84238 0.64 0.000833417 0.000774336 0.0388296 0.0360857 30 2507 19 6.65987e+06 266238 526063. 1820.29 0.89 0.129577 0.11403 22546 126617 -1 1992 18 982 1671 90240 21461 3.71791 3.71791 -132.867 -3.71791 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0303767 0.0266649 149 124 0 0 124 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 3.76 vpr 62.91 MiB 0.03 7192 -1 -1 1 0.05 -1 -1 30392 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 31 32 413 333 1 188 84 17 17 289 -1 unnamed_device 24.2 MiB 0.38 977 8868 2457 6032 379 62.9 MiB 0.10 0.00 4.78027 -132.334 -4.78027 4.78027 0.64 0.000772969 0.00071824 0.0399795 0.0371651 30 2304 21 6.65987e+06 266238 526063. 1820.29 0.83 0.131159 0.115448 22546 126617 -1 1949 16 902 1473 81509 19863 3.58697 3.58697 -123.296 -3.58697 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0262971 0.0231833 143 90 31 31 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.26 vpr 62.64 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30412 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 31 32 391 309 1 193 96 17 17 289 -1 unnamed_device 24.2 MiB 0.26 1043 11922 3052 7896 974 62.6 MiB 0.15 0.00 3.40784 -114.93 -3.40784 3.40784 0.67 0.000764538 0.000709662 0.0495888 0.0458193 26 2879 21 6.65987e+06 418374 477104. 1650.88 1.27 0.138671 0.122224 21682 110474 -1 2395 22 1670 2857 240790 52788 3.04605 3.04605 -117.63 -3.04605 0 0 585099. 2024.56 0.18 0.11 0.10 -1 -1 0.18 0.0374524 0.0326004 146 64 60 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 3.65 vpr 62.65 MiB 0.03 7040 -1 -1 1 0.03 -1 -1 30844 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 32 32 407 319 1 198 99 17 17 289 -1 unnamed_device 24.3 MiB 0.12 1091 9903 2241 6952 710 62.7 MiB 0.11 0.00 3.91784 -134.792 -3.91784 3.91784 0.64 0.000769042 0.000714512 0.036182 0.0336156 30 2568 27 6.65987e+06 443730 526063. 1820.29 0.92 0.134481 0.118161 22546 126617 -1 2243 22 1656 2468 150693 34059 3.11831 3.11831 -129.225 -3.11831 0 0 666494. 2306.21 0.20 0.08 0.13 -1 -1 0.20 0.0330949 0.0289531 154 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.09 vpr 63.06 MiB 0.04 7268 -1 -1 1 0.04 -1 -1 30632 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 496 380 1 232 104 17 17 289 -1 unnamed_device 24.8 MiB 0.30 1177 18648 4595 11838 2215 63.1 MiB 0.21 0.00 4.0593 -137.323 -4.0593 4.0593 0.64 0.000907617 0.000842397 0.0730646 0.0677843 30 2881 22 6.65987e+06 507120 526063. 1820.29 1.04 0.18259 0.161712 22546 126617 -1 2419 22 1764 2828 183437 40794 3.55237 3.55237 -137.679 -3.55237 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.039302 0.034334 184 96 62 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.42 vpr 62.54 MiB 0.03 6832 -1 -1 1 0.02 -1 -1 30660 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 23.8 MiB 0.12 685 11806 2914 7153 1739 62.5 MiB 0.11 0.00 3.55518 -111.493 -3.55518 3.55518 0.60 0.000627651 0.000583741 0.0454916 0.0423698 32 2030 23 6.65987e+06 228204 554710. 1919.41 0.85 0.122125 0.108067 22834 132086 -1 1720 20 1444 2314 171957 40640 2.89571 2.89571 -110.456 -2.89571 0 0 701300. 2426.64 0.19 0.07 0.10 -1 -1 0.19 0.0250079 0.0218439 116 34 62 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.16 vpr 62.51 MiB 0.03 7176 -1 -1 1 0.03 -1 -1 30452 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 31 32 395 311 1 196 99 17 17 289 -1 unnamed_device 24.1 MiB 0.27 976 9675 2155 7053 467 62.5 MiB 0.11 0.00 4.0281 -131.561 -4.0281 4.0281 0.68 0.000757609 0.000704246 0.0349931 0.0325048 28 2661 22 6.65987e+06 456408 500653. 1732.36 1.30 0.128477 0.112874 21970 115934 -1 2381 22 1770 2817 206479 46730 3.78351 3.78351 -140.301 -3.78351 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0323436 0.0282261 150 64 62 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 3.72 vpr 62.96 MiB 0.05 6932 -1 -1 1 0.03 -1 -1 30564 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 397 313 1 196 97 17 17 289 -1 unnamed_device 24.1 MiB 0.12 1040 11641 3109 7665 867 63.0 MiB 0.13 0.00 3.62624 -117.445 -3.62624 3.62624 0.66 0.000763023 0.000708828 0.0428777 0.0397849 28 2759 23 6.65987e+06 418374 500653. 1732.36 1.05 0.140709 0.123982 21970 115934 -1 2418 19 1528 2752 203891 46139 3.01511 3.01511 -114.853 -3.01511 0 0 612192. 2118.31 0.17 0.09 0.08 -1 -1 0.17 0.0292194 0.0256143 148 63 62 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.03 vpr 62.44 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30560 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 345 257 1 194 84 17 17 289 -1 unnamed_device 24.0 MiB 0.14 853 8685 1897 5601 1187 62.4 MiB 0.09 0.00 4.14936 -138.467 -4.14936 4.14936 0.66 0.000714112 0.00066334 0.0356344 0.0330795 32 3554 31 6.65987e+06 253560 554710. 1919.41 1.21 0.119221 0.104964 22834 132086 -1 2386 25 2378 4190 332456 84115 4.09903 4.09903 -156.436 -4.09903 0 0 701300. 2426.64 0.19 0.12 0.12 -1 -1 0.19 0.0341263 0.0300601 150 3 128 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 3.90 vpr 62.91 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30408 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 424 343 1 190 98 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1097 11798 3144 7589 1065 62.9 MiB 0.13 0.00 3.29555 -116.715 -3.29555 3.29555 0.64 0.000789388 0.000732844 0.0449829 0.0416769 32 2610 28 6.65987e+06 431052 554710. 1919.41 0.95 0.143859 0.126648 22834 132086 -1 2261 27 1678 2335 173585 40549 2.96105 2.96105 -114.853 -2.96105 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0423671 0.036921 145 96 25 25 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 3.83 vpr 62.57 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30476 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 32 32 395 311 1 194 99 17 17 289 -1 unnamed_device 24.1 MiB 0.29 1042 7623 1446 5778 399 62.6 MiB 0.09 0.00 3.5841 -121.365 -3.5841 3.5841 0.64 0.000765022 0.000709614 0.0282191 0.0262215 32 2739 23 6.65987e+06 443730 554710. 1919.41 0.90 0.121539 0.106139 22834 132086 -1 2392 19 1560 2652 190760 44720 2.90297 2.90297 -122.101 -2.90297 0 0 701300. 2426.64 0.19 0.09 0.14 -1 -1 0.19 0.0298541 0.0262543 146 61 64 32 60 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 3.73 vpr 62.61 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30424 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 405 318 1 200 101 17 17 289 -1 unnamed_device 24.2 MiB 0.20 1118 19136 5296 11671 2169 62.6 MiB 0.19 0.00 3.42984 -118.83 -3.42984 3.42984 0.59 0.000775195 0.000719231 0.0661715 0.0612942 32 2579 24 6.65987e+06 469086 554710. 1919.41 0.89 0.169748 0.150184 22834 132086 -1 2255 22 1703 2645 189718 44615 2.89571 2.89571 -116.083 -2.89571 0 0 701300. 2426.64 0.22 0.09 0.12 -1 -1 0.22 0.034144 0.029891 155 65 63 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.57 vpr 62.43 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30464 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63924 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 24.1 MiB 0.07 1049 17883 5721 9099 3063 62.4 MiB 0.17 0.00 4.02327 -139.097 -4.02327 4.02327 0.60 0.00074002 0.000684777 0.0617647 0.0573754 32 2663 21 6.65987e+06 443730 554710. 1919.41 0.91 0.150493 0.133842 22834 132086 -1 2226 24 2120 3395 255918 56744 3.76057 3.76057 -141.06 -3.76057 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0356784 0.0310904 150 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 3.93 vpr 62.58 MiB 0.03 7124 -1 -1 1 0.03 -1 -1 30716 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 24.2 MiB 0.16 1032 17491 4961 10150 2380 62.6 MiB 0.16 0.00 3.95704 -138.916 -3.95704 3.95704 0.65 0.000781284 0.000725712 0.060515 0.0561538 32 2565 23 6.65987e+06 469086 554710. 1919.41 0.91 0.156774 0.1388 22834 132086 -1 2227 23 1969 2975 232242 51504 3.47391 3.47391 -136.763 -3.47391 0 0 701300. 2426.64 0.28 0.09 0.12 -1 -1 0.28 0.0299453 0.0264942 153 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 3.89 vpr 62.74 MiB 0.03 7272 -1 -1 1 0.03 -1 -1 30476 -1 -1 34 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 31 32 449 367 1 193 97 17 17 289 -1 unnamed_device 24.5 MiB 0.38 1081 15859 4297 9232 2330 62.7 MiB 0.16 0.00 4.24338 -127.817 -4.24338 4.24338 0.66 0.000818516 0.000758987 0.0615839 0.0570575 28 2788 21 6.65987e+06 431052 500653. 1732.36 0.91 0.159928 0.141205 21970 115934 -1 2458 19 1249 2286 169784 37981 3.26585 3.26585 -124.218 -3.26585 0 0 612192. 2118.31 0.20 0.08 0.11 -1 -1 0.20 0.0313545 0.0273084 145 122 0 0 122 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 3.84 vpr 62.99 MiB 0.04 7116 -1 -1 1 0.03 -1 -1 30492 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 432 346 1 195 84 17 17 289 -1 unnamed_device 24.2 MiB 0.24 1088 15822 4733 9518 1571 63.0 MiB 0.17 0.00 4.01118 -127.976 -4.01118 4.01118 0.63 0.000816562 0.000758681 0.073541 0.0683868 32 2771 23 6.65987e+06 253560 554710. 1919.41 0.91 0.173218 0.153771 22834 132086 -1 2366 23 1879 3439 266431 58862 3.31985 3.31985 -126.958 -3.31985 0 0 701300. 2426.64 0.19 0.10 0.14 -1 -1 0.19 0.0375222 0.0328049 149 94 32 32 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 4.34 vpr 62.48 MiB 0.04 6828 -1 -1 1 0.03 -1 -1 30608 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63980 32 32 312 255 1 166 94 17 17 289 -1 unnamed_device 23.7 MiB 0.07 798 8401 2034 5819 548 62.5 MiB 0.09 0.00 3.27158 -111.236 -3.27158 3.27158 0.63 0.000654809 0.000602127 0.0276186 0.0256554 30 1935 19 6.65987e+06 380340 526063. 1820.29 0.83 0.102596 0.0900605 22546 126617 -1 1703 21 1108 1802 99797 24547 2.48705 2.48705 -106.7 -2.48705 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0261568 0.0228501 124 34 63 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.74 vpr 62.69 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30348 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 23.9 MiB 0.26 912 11830 3154 7792 884 62.7 MiB 0.13 0.00 3.41618 -118.934 -3.41618 3.41618 0.65 0.000701766 0.000650887 0.0499572 0.0463826 32 2244 21 6.65987e+06 228204 554710. 1919.41 0.85 0.134778 0.119009 22834 132086 -1 1981 21 1461 2255 169368 38765 2.90671 2.90671 -119.433 -2.90671 0 0 701300. 2426.64 0.21 0.08 0.12 -1 -1 0.21 0.029552 0.0257673 121 94 0 0 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 3.89 vpr 63.05 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30780 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 469 351 1 233 104 17 17 289 -1 unnamed_device 24.9 MiB 0.15 1362 14988 3862 9734 1392 63.1 MiB 0.14 0.00 4.6627 -159.741 -4.6627 4.6627 0.67 0.000735348 0.000674342 0.0409575 0.0376465 32 3224 27 6.65987e+06 507120 554710. 1919.41 1.03 0.153144 0.133909 22834 132086 -1 2751 22 2503 4010 283300 66669 4.33277 4.33277 -161.853 -4.33277 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0379304 0.0330853 187 65 96 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.72 vpr 62.70 MiB 0.03 6972 -1 -1 1 0.03 -1 -1 30320 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 368 284 1 194 95 17 17 289 -1 unnamed_device 24.1 MiB 0.22 954 14567 4735 7432 2400 62.7 MiB 0.14 0.00 3.51422 -121.562 -3.51422 3.51422 0.64 0.000733427 0.000681526 0.0519425 0.0482695 32 2533 23 6.65987e+06 393018 554710. 1919.41 0.94 0.140451 0.124348 22834 132086 -1 2059 21 1528 2303 169248 38838 3.12437 3.12437 -119.393 -3.12437 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0306468 0.0268595 146 34 92 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.43 vpr 62.32 MiB 0.06 6772 -1 -1 1 0.03 -1 -1 30300 -1 -1 30 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 30 32 296 244 1 158 92 17 17 289 -1 unnamed_device 23.7 MiB 0.08 839 17066 5534 9253 2279 62.3 MiB 0.14 0.00 3.49012 -114.14 -3.49012 3.49012 0.63 0.000624954 0.000582346 0.053231 0.0494946 32 1859 23 6.65987e+06 380340 554710. 1919.41 0.80 0.126959 0.112552 22834 132086 -1 1702 23 1302 1955 146836 32807 2.86197 2.86197 -108.341 -2.86197 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0272575 0.0236996 115 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.28 vpr 63.07 MiB 0.03 7440 -1 -1 1 0.04 -1 -1 30928 -1 -1 43 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 531 413 1 232 107 17 17 289 -1 unnamed_device 24.9 MiB 0.53 1333 18829 5161 11634 2034 63.1 MiB 0.21 0.00 4.64147 -157.361 -4.64147 4.64147 0.63 0.000952758 0.000882584 0.0748397 0.0693026 30 2806 24 6.65987e+06 545154 526063. 1820.29 1.03 0.190972 0.169073 22546 126617 -1 2369 21 1942 2888 139173 34569 4.05017 4.05017 -152.332 -4.05017 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0389888 0.0340168 186 127 32 32 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 3.71 vpr 62.50 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30516 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 32 32 376 288 1 194 100 17 17 289 -1 unnamed_device 24.1 MiB 0.25 1044 16340 4500 10034 1806 62.5 MiB 0.15 0.00 4.15932 -143.209 -4.15932 4.15932 0.64 0.000742717 0.000689388 0.0550826 0.0511361 28 2433 22 6.65987e+06 456408 500653. 1732.36 0.87 0.145136 0.128588 21970 115934 -1 2180 17 1424 2121 146529 32775 3.65243 3.65243 -141.715 -3.65243 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0264479 0.0232405 151 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.58 vpr 62.54 MiB 0.04 6736 -1 -1 1 0.03 -1 -1 30308 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 283 225 1 164 95 17 17 289 -1 unnamed_device 23.7 MiB 0.08 722 13703 3609 8489 1605 62.5 MiB 0.12 0.00 3.4859 -117.474 -3.4859 3.4859 0.64 0.000509563 0.000466631 0.0413225 0.0383061 28 2223 23 6.65987e+06 393018 500653. 1732.36 0.98 0.116584 0.102947 21970 115934 -1 1831 21 1390 2227 153616 36621 2.84077 2.84077 -115.671 -2.84077 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0259409 0.0226801 123 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 3.74 vpr 62.88 MiB 0.03 7060 -1 -1 1 0.04 -1 -1 30776 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 438 320 1 235 105 17 17 289 -1 unnamed_device 24.7 MiB 0.14 1337 12702 3419 8223 1060 62.9 MiB 0.14 0.00 4.90437 -166.477 -4.90437 4.90437 0.65 0.000858617 0.000798689 0.0470784 0.0437851 30 3011 23 6.65987e+06 519798 526063. 1820.29 0.93 0.14967 0.131835 22546 126617 -1 2460 21 1844 3246 197750 44383 4.43083 4.43083 -163.127 -4.43083 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0354023 0.0309891 188 34 128 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.65 vpr 62.32 MiB 0.04 6776 -1 -1 1 0.03 -1 -1 30304 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 32 32 283 225 1 162 80 17 17 289 -1 unnamed_device 23.8 MiB 0.15 852 11260 3935 5447 1878 62.3 MiB 0.10 0.00 3.4749 -119.679 -3.4749 3.4749 0.64 0.00063525 0.000582271 0.0426567 0.0396897 32 2124 48 6.65987e+06 202848 554710. 1919.41 0.96 0.140232 0.12312 22834 132086 -1 1841 20 1442 2283 176605 41279 2.97497 2.97497 -120.041 -2.97497 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0246848 0.0215664 121 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.62 vpr 62.19 MiB 0.05 6880 -1 -1 1 0.03 -1 -1 30380 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63684 30 32 296 244 1 157 93 17 17 289 -1 unnamed_device 23.6 MiB 0.18 707 8073 1842 5622 609 62.2 MiB 0.09 0.00 3.47387 -110.471 -3.47387 3.47387 0.66 0.000624242 0.000581123 0.0244039 0.0225586 28 1935 20 6.65987e+06 393018 500653. 1732.36 0.81 0.0966993 0.0845194 21970 115934 -1 1767 22 1242 2031 144987 33596 3.08337 3.08337 -113.04 -3.08337 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.0267687 0.0233655 113 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.58 vpr 62.66 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 30360 -1 -1 33 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 29 32 393 319 1 182 94 17 17 289 -1 unnamed_device 24.0 MiB 0.27 964 15856 4550 8712 2594 62.7 MiB 0.15 0.00 3.50895 -109.722 -3.50895 3.50895 0.63 0.000751214 0.000698151 0.0576721 0.0535069 30 2020 23 6.65987e+06 418374 526063. 1820.29 0.84 0.159025 0.140483 22546 126617 -1 1687 19 1058 1807 92981 22149 2.43937 2.43937 -98.0163 -2.43937 0 0 666494. 2306.21 0.22 0.06 0.12 -1 -1 0.22 0.0282237 0.0247772 133 88 29 29 85 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 3.65 vpr 62.90 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30704 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 407 319 1 194 84 17 17 289 -1 unnamed_device 24.2 MiB 0.12 1002 7770 1874 5369 527 62.9 MiB 0.10 0.00 4.0593 -140.547 -4.0593 4.0593 0.64 0.000766236 0.000710834 0.0351693 0.032663 32 2537 20 6.65987e+06 253560 554710. 1919.41 0.90 0.125729 0.110466 22834 132086 -1 2176 22 2024 3071 255718 55324 3.65137 3.65137 -141.337 -3.65137 0 0 701300. 2426.64 0.19 0.10 0.14 -1 -1 0.19 0.0330931 0.0289263 151 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.06 vpr 62.55 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30652 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 407 319 1 195 98 17 17 289 -1 unnamed_device 24.2 MiB 0.38 1039 19223 6359 10018 2846 62.6 MiB 0.18 0.00 4.06007 -140.169 -4.06007 4.06007 0.64 0.000769709 0.00071392 0.0689799 0.0639557 28 2638 22 6.65987e+06 431052 500653. 1732.36 1.04 0.16362 0.14536 21970 115934 -1 2257 21 1827 3045 224896 49721 3.64537 3.64537 -141.068 -3.64537 0 0 612192. 2118.31 0.17 0.09 0.07 -1 -1 0.17 0.0326348 0.0286053 152 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.71 vpr 62.58 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30604 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64084 32 32 345 287 1 161 94 17 17 289 -1 unnamed_device 23.7 MiB 0.21 697 8614 1900 5780 934 62.6 MiB 0.09 0.00 3.41884 -113.998 -3.41884 3.41884 0.64 0.000678438 0.00062919 0.0298938 0.0277444 32 1903 25 6.65987e+06 380340 554710. 1919.41 0.91 0.119155 0.104234 22834 132086 -1 1650 21 1314 2100 163030 37783 2.73351 2.73351 -110.442 -2.73351 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0280949 0.0245343 120 65 32 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.77 vpr 62.59 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 30440 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 23.9 MiB 0.30 800 12464 4465 5577 2422 62.6 MiB 0.14 0.00 3.46898 -107.312 -3.46898 3.46898 0.77 0.000677636 0.000629193 0.0620627 0.0576711 32 1982 23 6.65987e+06 215526 554710. 1919.41 0.83 0.143619 0.12746 22834 132086 -1 1706 23 1257 2236 164644 38181 2.72145 2.72145 -105.174 -2.72145 0 0 701300. 2426.64 0.19 0.08 0.08 -1 -1 0.19 0.0297124 0.0258183 109 90 0 0 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.22 vpr 62.69 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30420 -1 -1 33 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 30 32 374 297 1 186 95 17 17 289 -1 unnamed_device 24.0 MiB 0.20 996 12623 3384 8308 931 62.7 MiB 0.13 0.00 3.33164 -109.888 -3.33164 3.33164 0.64 0.000725495 0.000673787 0.0466242 0.0432373 26 2507 31 6.65987e+06 418374 477104. 1650.88 1.42 0.14643 0.128923 21682 110474 -1 2108 20 1410 2286 169057 38285 2.93891 2.93891 -110.732 -2.93891 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0301378 0.0264004 137 60 60 30 57 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.56 vpr 62.57 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 30324 -1 -1 31 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 28 32 332 260 1 180 91 17 17 289 -1 unnamed_device 23.9 MiB 0.10 995 16207 5283 8775 2149 62.6 MiB 0.15 0.00 4.24344 -123.397 -4.24344 4.24344 0.64 0.000665842 0.000619186 0.0554609 0.0515575 28 2478 21 6.65987e+06 393018 500653. 1732.36 0.88 0.132921 0.118081 21970 115934 -1 2142 21 1586 2579 196030 44322 3.61951 3.61951 -125.511 -3.61951 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0286154 0.0250244 133 34 84 28 28 28 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 3.84 vpr 62.43 MiB 0.04 6852 -1 -1 1 0.03 -1 -1 30264 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63928 30 32 325 273 1 157 80 17 17 289 -1 unnamed_device 23.7 MiB 0.36 727 13152 3808 7208 2136 62.4 MiB 0.12 0.00 3.5343 -112.204 -3.5343 3.5343 0.65 0.000544335 0.000489546 0.047606 0.043977 30 1865 21 6.65987e+06 228204 526063. 1820.29 0.83 0.124699 0.110026 22546 126617 -1 1629 18 1028 1738 95398 22780 2.94697 2.94697 -110.978 -2.94697 0 0 666494. 2306.21 0.21 0.05 0.12 -1 -1 0.21 0.0230428 0.0202149 114 63 30 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.80 vpr 62.54 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30392 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 361 308 1 158 80 17 17 289 -1 unnamed_device 23.8 MiB 0.30 910 8164 2057 5403 704 62.5 MiB 0.08 0.00 3.44398 -109.924 -3.44398 3.44398 0.79 0.000553097 0.000506008 0.0290293 0.0266783 30 1920 20 6.65987e+06 202848 526063. 1820.29 0.83 0.110159 0.0962057 22546 126617 -1 1664 19 890 1490 87526 20113 2.46025 2.46025 -100.155 -2.46025 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0276936 0.0242626 113 91 0 0 91 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.08 vpr 62.70 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30204 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 31 32 335 251 1 196 98 17 17 289 -1 unnamed_device 24.1 MiB 0.11 1101 12023 3143 7728 1152 62.7 MiB 0.12 0.00 4.17558 -139.576 -4.17558 4.17558 0.70 0.000693696 0.000644473 0.0410847 0.0381683 28 3033 20 6.65987e+06 443730 500653. 1732.36 1.24 0.1286 0.113996 21970 115934 -1 2518 20 1591 2583 178706 40894 3.86583 3.86583 -142.772 -3.86583 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0260032 0.023028 150 4 124 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 3.95 vpr 62.57 MiB 0.02 7000 -1 -1 1 0.04 -1 -1 30568 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 407 319 1 197 98 17 17 289 -1 unnamed_device 24.1 MiB 0.23 1037 13598 4125 8601 872 62.6 MiB 0.15 0.00 4.1263 -141.609 -4.1263 4.1263 0.65 0.000780035 0.000723919 0.0522642 0.0485146 28 2566 22 6.65987e+06 431052 500653. 1732.36 1.18 0.142535 0.12639 21970 115934 -1 2237 22 1900 3264 213746 49904 3.83557 3.83557 -144.415 -3.83557 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0335775 0.0294161 153 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.37 vpr 62.46 MiB 0.04 7000 -1 -1 1 0.04 -1 -1 30540 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 32 32 407 319 1 194 98 17 17 289 -1 unnamed_device 24.0 MiB 0.28 1033 10448 2380 7653 415 62.5 MiB 0.12 0.00 4.16458 -142.258 -4.16458 4.16458 0.65 0.000781082 0.000725478 0.0399336 0.0369548 28 3079 34 6.65987e+06 431052 500653. 1732.36 1.49 0.149414 0.130886 21970 115934 -1 2507 19 1655 2786 262515 56729 3.74643 3.74643 -145.697 -3.74643 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.03088 0.0270837 151 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 3.77 vpr 62.55 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30452 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 399 315 1 196 101 17 17 289 -1 unnamed_device 24.2 MiB 0.25 982 9031 1878 6401 752 62.6 MiB 0.10 0.00 3.86706 -126.941 -3.86706 3.86706 0.66 0.000771741 0.000716852 0.0320121 0.0296859 30 2443 22 6.65987e+06 469086 526063. 1820.29 0.90 0.127245 0.111684 22546 126617 -1 2075 23 1349 2400 127757 30638 3.22071 3.22071 -120.966 -3.22071 0 0 666494. 2306.21 0.20 0.08 0.11 -1 -1 0.20 0.0358447 0.0315433 148 65 60 30 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.98 vpr 62.46 MiB 0.02 6892 -1 -1 1 0.03 -1 -1 30368 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63956 30 32 296 244 1 156 80 17 17 289 -1 unnamed_device 23.6 MiB 0.21 656 10400 2388 7389 623 62.5 MiB 0.10 0.00 3.50927 -110.79 -3.50927 3.50927 0.69 0.000616738 0.000573255 0.0391656 0.0364384 28 2173 45 6.65987e+06 228204 500653. 1732.36 1.09 0.136403 0.119444 21970 115934 -1 1733 19 1122 1722 145710 34964 2.94117 2.94117 -111.592 -2.94117 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0257346 0.0226014 112 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.96 vpr 62.67 MiB 0.03 7100 -1 -1 1 0.04 -1 -1 30340 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 30 32 383 303 1 191 84 17 17 289 -1 unnamed_device 24.0 MiB 0.24 986 11613 3437 7269 907 62.7 MiB 0.12 0.00 4.19776 -134.76 -4.19776 4.19776 0.80 0.000568302 0.000521081 0.0391176 0.0359418 32 2227 20 6.65987e+06 278916 554710. 1919.41 0.90 0.126895 0.111177 22834 132086 -1 1981 21 1830 2779 183909 44052 3.48043 3.48043 -130.387 -3.48043 0 0 701300. 2426.64 0.26 0.08 0.13 -1 -1 0.26 0.0274918 0.0239688 145 63 60 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.07 vpr 62.79 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30864 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 469 381 1 198 103 17 17 289 -1 unnamed_device 24.5 MiB 0.29 1052 13117 2855 8842 1420 62.8 MiB 0.13 0.00 3.91498 -132.986 -3.91498 3.91498 0.77 0.000866717 0.000806091 0.0500562 0.0465014 32 2892 25 6.65987e+06 494442 554710. 1919.41 0.93 0.156748 0.137793 22834 132086 -1 2368 26 2349 3841 315590 72302 3.48885 3.48885 -136.913 -3.48885 0 0 701300. 2426.64 0.18 0.07 0.08 -1 -1 0.18 0.0219432 0.0192119 154 127 0 0 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 3.94 vpr 62.67 MiB 0.06 7112 -1 -1 1 0.03 -1 -1 30652 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 31 32 425 341 1 189 94 17 17 289 -1 unnamed_device 24.3 MiB 0.19 1048 9679 2436 6757 486 62.7 MiB 0.11 0.00 3.91106 -131.073 -3.91106 3.91106 0.66 0.00079337 0.000736257 0.0368721 0.034059 28 2624 22 6.65987e+06 393018 500653. 1732.36 1.11 0.132776 0.116623 21970 115934 -1 2246 21 1597 2678 187978 43614 3.63731 3.63731 -136.375 -3.63731 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0327955 0.0286431 146 94 31 31 93 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 3.85 vpr 62.86 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30524 -1 -1 30 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 30 32 404 328 1 182 92 17 17 289 -1 unnamed_device 24.2 MiB 0.30 967 14375 3613 8859 1903 62.9 MiB 0.14 0.00 3.7785 -114.4 -3.7785 3.7785 0.68 0.000584347 0.000535331 0.0433938 0.0398308 30 2034 21 6.65987e+06 380340 526063. 1820.29 0.98 0.135747 0.119321 22546 126617 -1 1744 18 955 1595 85112 20222 2.81476 2.81476 -105.804 -2.81476 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0291872 0.0256149 136 92 26 26 90 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 3.93 vpr 62.59 MiB 0.02 7036 -1 -1 1 0.04 -1 -1 30604 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64088 32 32 407 319 1 198 85 17 17 289 -1 unnamed_device 24.2 MiB 0.20 1103 13477 4009 7448 2020 62.6 MiB 0.15 0.00 4.11944 -143.283 -4.11944 4.11944 0.67 0.000777769 0.000721767 0.0599668 0.0556484 32 2896 23 6.65987e+06 266238 554710. 1919.41 0.99 0.154185 0.136688 22834 132086 -1 2579 21 2140 3741 291243 66104 3.63437 3.63437 -143.781 -3.63437 0 0 701300. 2426.64 0.28 0.10 0.13 -1 -1 0.28 0.0300984 0.0268261 154 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 3.67 vpr 62.71 MiB 0.03 7176 -1 -1 1 0.03 -1 -1 30308 -1 -1 34 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 29 32 387 316 1 179 95 17 17 289 -1 unnamed_device 24.1 MiB 0.18 870 10463 2796 6767 900 62.7 MiB 0.11 0.00 3.39684 -102.663 -3.39684 3.39684 0.64 0.000732665 0.000680718 0.0378185 0.0350861 32 2139 21 6.65987e+06 431052 554710. 1919.41 0.92 0.127319 0.11168 22834 132086 -1 1844 20 1455 2365 152099 36368 2.78971 2.78971 -101.199 -2.78971 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0288492 0.0251964 134 88 26 26 85 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.52 vpr 62.36 MiB 0.04 6668 -1 -1 1 0.03 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 32 32 283 225 1 157 80 17 17 289 -1 unnamed_device 23.6 MiB 0.07 838 13496 3888 8529 1079 62.4 MiB 0.14 0.00 3.5031 -123.339 -3.5031 3.5031 0.63 0.000632506 0.000588509 0.0582954 0.0541751 32 2175 23 6.65987e+06 202848 554710. 1919.41 0.90 0.138823 0.123251 22834 132086 -1 1922 21 1409 2175 179699 42101 3.03597 3.03597 -124.718 -3.03597 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0259233 0.0226952 116 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 3.91 vpr 62.55 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30352 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 407 319 1 194 97 17 17 289 -1 unnamed_device 24.2 MiB 0.33 1015 16525 5345 8784 2396 62.6 MiB 0.16 0.00 4.18856 -142.192 -4.18856 4.18856 0.64 0.00077494 0.000719046 0.0607549 0.0563711 32 2598 23 6.65987e+06 418374 554710. 1919.41 0.91 0.154999 0.137458 22834 132086 -1 2227 23 1905 2820 231870 51574 3.71343 3.71343 -140.761 -3.71343 0 0 701300. 2426.64 0.19 0.10 0.13 -1 -1 0.19 0.0358873 0.031491 150 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 3.70 vpr 62.58 MiB 0.02 7044 -1 -1 1 0.04 -1 -1 30568 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 407 319 1 201 85 17 17 289 -1 unnamed_device 24.2 MiB 0.25 1026 16081 4881 8736 2464 62.6 MiB 0.17 0.00 4.23393 -146.239 -4.23393 4.23393 0.66 0.000785494 0.000730031 0.0706725 0.0656835 32 2633 23 6.65987e+06 266238 554710. 1919.41 0.91 0.165428 0.147229 22834 132086 -1 2317 22 2154 3204 249005 56890 3.78577 3.78577 -146.946 -3.78577 0 0 701300. 2426.64 0.18 0.06 0.08 -1 -1 0.18 0.0186745 0.0166259 157 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.25 vpr 62.53 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 30396 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 315 267 1 158 93 17 17 289 -1 unnamed_device 24.0 MiB 0.23 688 16683 5557 7719 3407 62.5 MiB 0.13 0.00 3.44878 -105.048 -3.44878 3.44878 0.63 0.000640246 0.000594417 0.0531823 0.0493856 30 2275 33 6.65987e+06 367662 526063. 1820.29 1.44 0.141197 0.124598 22546 126617 -1 1601 22 1023 1528 115231 32870 2.62325 2.62325 -101.627 -2.62325 0 0 666494. 2306.21 0.27 0.06 0.12 -1 -1 0.27 0.0236755 0.02091 111 55 32 32 54 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.42 vpr 62.25 MiB 0.02 6800 -1 -1 1 0.03 -1 -1 30452 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 23.8 MiB 0.11 746 13556 4162 7429 1965 62.2 MiB 0.12 0.00 3.4529 -114.38 -3.4529 3.4529 0.63 0.000598508 0.000556982 0.0487316 0.0453454 30 2037 22 6.65987e+06 228204 526063. 1820.29 0.82 0.12063 0.106926 22546 126617 -1 1714 18 1182 1890 112505 26536 3.06217 3.06217 -115.024 -3.06217 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0224695 0.0197176 118 4 93 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 3.87 vpr 62.75 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30340 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 381 303 1 188 96 17 17 289 -1 unnamed_device 24.1 MiB 0.29 900 5133 854 4121 158 62.7 MiB 0.07 0.00 4.0123 -128.007 -4.0123 4.0123 0.70 0.00074276 0.000690529 0.0198711 0.0184988 32 2321 22 6.65987e+06 405696 554710. 1919.41 0.90 0.109385 0.0954485 22834 132086 -1 2047 20 1627 2428 176062 41067 3.44137 3.44137 -129.288 -3.44137 0 0 701300. 2426.64 0.23 0.08 0.12 -1 -1 0.23 0.0292306 0.0255387 138 59 60 32 58 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.91 vpr 62.55 MiB 0.03 7112 -1 -1 1 0.03 -1 -1 30348 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 406 330 1 190 94 17 17 289 -1 unnamed_device 24.2 MiB 0.31 879 9892 2434 7009 449 62.6 MiB 0.11 0.00 4.11224 -123.302 -4.11224 4.11224 0.71 0.000760257 0.00070598 0.0385376 0.0357803 28 2733 50 6.65987e+06 380340 500653. 1732.36 1.85 0.163268 0.142533 21970 115934 -1 2243 22 1484 2459 195085 46378 3.73551 3.73551 -129.827 -3.73551 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0328959 0.0286655 134 88 28 28 88 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.60 vpr 62.65 MiB 0.03 7076 -1 -1 1 0.03 -1 -1 30420 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 399 285 1 228 99 17 17 289 -1 unnamed_device 24.4 MiB 0.07 1224 16515 4921 9863 1731 62.6 MiB 0.18 0.00 4.82096 -159.28 -4.82096 4.82096 0.86 0.000789401 0.000733334 0.0620433 0.0577253 34 3026 21 6.65987e+06 443730 585099. 2024.56 1.54 0.2139 0.188256 23122 138558 -1 2568 21 1918 3176 250539 52985 4.19882 4.19882 -151.411 -4.19882 0 0 742403. 2568.87 0.20 0.10 0.12 -1 -1 0.20 0.0335672 0.0295164 177 3 156 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.08 vpr 62.96 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 30604 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 30 32 371 295 1 184 94 17 17 289 -1 unnamed_device 24.3 MiB 0.30 1012 13726 3606 8436 1684 63.0 MiB 0.14 0.00 3.638 -113.448 -3.638 3.638 0.72 0.000717173 0.00066628 0.0500269 0.0464165 32 2171 21 6.65987e+06 405696 554710. 1919.41 0.83 0.13402 0.118516 22834 132086 -1 1915 20 1631 2551 180244 41966 2.84971 2.84971 -109.081 -2.84971 0 0 701300. 2426.64 0.20 0.08 0.14 -1 -1 0.20 0.0305698 0.0267863 136 59 60 30 56 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.68 vpr 62.10 MiB 0.13 6940 -1 -1 1 0.03 -1 -1 30616 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63592 27 32 269 226 1 143 79 17 17 289 -1 unnamed_device 23.7 MiB 0.12 768 12754 4322 6521 1911 62.1 MiB 0.11 0.00 3.3979 -99.6122 -3.3979 3.3979 0.71 0.000570125 0.000530457 0.0463313 0.0431254 32 1581 21 6.65987e+06 253560 554710. 1919.41 0.82 0.115739 0.10254 22834 132086 -1 1433 23 1214 1756 132146 29899 2.73377 2.73377 -94.2996 -2.73377 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0257384 0.0223532 107 34 54 27 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 3.99 vpr 63.14 MiB 0.03 7208 -1 -1 1 0.03 -1 -1 30596 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 493 378 1 232 104 17 17 289 -1 unnamed_device 25.0 MiB 0.20 1366 15232 4128 9656 1448 63.1 MiB 0.17 0.00 4.15924 -136.806 -4.15924 4.15924 0.65 0.000911491 0.000845869 0.0601603 0.0557784 32 3584 25 6.65987e+06 507120 554710. 1919.41 0.99 0.174145 0.153625 22834 132086 -1 3035 24 2566 4598 357869 79783 3.55211 3.55211 -136.902 -3.55211 0 0 701300. 2426.64 0.19 0.13 0.12 -1 -1 0.19 0.0419947 0.0365706 184 95 62 31 95 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 3.94 vpr 62.96 MiB 0.03 7208 -1 -1 1 0.04 -1 -1 30508 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 31 32 455 371 1 189 84 17 17 289 -1 unnamed_device 24.1 MiB 0.33 999 12894 3350 8149 1395 63.0 MiB 0.14 0.00 4.3007 -134.868 -4.3007 4.3007 0.66 0.000827225 0.000768524 0.061338 0.0569738 32 2741 23 6.65987e+06 266238 554710. 1919.41 0.93 0.165957 0.146737 22834 132086 -1 2317 24 1711 2732 234323 52414 3.53211 3.53211 -138.535 -3.53211 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0378688 0.0329122 144 124 0 0 124 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 3.63 vpr 62.44 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30408 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 355 304 1 151 80 17 17 289 -1 unnamed_device 23.7 MiB 0.28 739 9540 2469 6056 1015 62.4 MiB 0.10 0.00 3.43298 -108.977 -3.43298 3.43298 0.65 0.000687752 0.00063842 0.0408523 0.0379745 28 1956 23 6.65987e+06 202848 500653. 1732.36 0.82 0.124396 0.10963 21970 115934 -1 1674 23 1158 1842 135729 31491 2.79871 2.79871 -108.503 -2.79871 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0303661 0.0264474 109 89 0 0 89 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 3.71 vpr 62.81 MiB 0.04 6984 -1 -1 1 0.03 -1 -1 30356 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 364 282 1 196 96 17 17 289 -1 unnamed_device 24.2 MiB 0.10 1126 15645 4217 9584 1844 62.8 MiB 0.15 0.00 4.2677 -137.429 -4.2677 4.2677 0.66 0.000735788 0.000675958 0.0553791 0.0513525 28 2607 21 6.65987e+06 405696 500653. 1732.36 0.89 0.135215 0.120206 21970 115934 -1 2268 18 1229 1834 137234 31081 3.73357 3.73357 -136.434 -3.73357 0 0 612192. 2118.31 0.22 0.07 0.12 -1 -1 0.22 0.0274774 0.0241803 146 34 90 30 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 3.83 vpr 62.79 MiB 0.05 7264 -1 -1 1 0.04 -1 -1 30696 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 31 32 443 336 1 220 99 17 17 289 -1 unnamed_device 24.5 MiB 0.19 1167 13551 3218 9177 1156 62.8 MiB 0.15 0.00 4.22766 -133.836 -4.22766 4.22766 0.64 0.000848186 0.000789199 0.0549963 0.0511091 32 2713 24 6.65987e+06 456408 554710. 1919.41 0.93 0.163067 0.143863 22834 132086 -1 2354 20 1809 2707 183152 42780 3.47391 3.47391 -134.888 -3.47391 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0347798 0.0304362 171 64 87 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.25 vpr 62.77 MiB 0.04 7100 -1 -1 1 0.03 -1 -1 30352 -1 -1 33 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 30 32 373 297 1 186 95 17 17 289 -1 unnamed_device 24.1 MiB 0.13 1070 11111 2802 7426 883 62.8 MiB 0.12 0.00 3.62941 -110.797 -3.62941 3.62941 0.65 0.000857112 0.000795438 0.0424953 0.039394 26 2917 46 6.65987e+06 418374 477104. 1650.88 1.51 0.155949 0.137077 21682 110474 -1 2268 20 1350 2350 175706 39238 3.03591 3.03591 -113.061 -3.03591 0 0 585099. 2024.56 0.19 0.08 0.12 -1 -1 0.19 0.030515 0.0266624 134 61 58 30 58 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 3.88 vpr 62.75 MiB 0.03 7060 -1 -1 1 0.03 -1 -1 30548 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 407 319 1 201 106 17 17 289 -1 unnamed_device 24.5 MiB 0.24 1074 12606 3053 8336 1217 62.8 MiB 0.13 0.00 4.0783 -140.694 -4.0783 4.0783 0.64 0.000614404 0.000562704 0.0362254 0.0332797 30 2464 23 6.65987e+06 532476 526063. 1820.29 0.95 0.127185 0.111662 22546 126617 -1 2068 23 1438 2304 127961 30130 3.57037 3.57037 -135.677 -3.57037 0 0 666494. 2306.21 0.26 0.07 0.12 -1 -1 0.26 0.03022 0.0266813 157 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 3.69 vpr 62.73 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30588 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 405 318 1 200 102 17 17 289 -1 unnamed_device 24.3 MiB 0.23 985 6766 1235 5165 366 62.7 MiB 0.08 0.00 3.41884 -116.445 -3.41884 3.41884 0.63 0.000773145 0.000717771 0.0250353 0.0232608 28 2716 20 6.65987e+06 481764 500653. 1732.36 0.92 0.114102 0.0998578 21970 115934 -1 2273 25 1643 2601 201975 45674 3.03105 3.03105 -121.513 -3.03105 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0363592 0.0316636 155 65 63 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.48 vpr 62.05 MiB 0.05 6828 -1 -1 1 0.03 -1 -1 30396 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63544 29 32 287 238 1 134 77 17 17 289 -1 unnamed_device 23.6 MiB 0.12 502 12791 3342 7797 1652 62.1 MiB 0.10 0.00 3.7595 -104.343 -3.7595 3.7595 0.63 0.000604967 0.000562887 0.0491863 0.0457977 32 1548 18 6.65987e+06 202848 554710. 1919.41 0.81 0.119128 0.105751 22834 132086 -1 1380 20 1033 1432 118502 30030 2.93997 2.93997 -103.913 -2.93997 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0249219 0.0217023 93 34 58 29 29 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 3.66 vpr 62.62 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30104 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 334 290 1 154 81 17 17 289 -1 unnamed_device 23.9 MiB 0.29 872 14431 4553 8297 1581 62.6 MiB 0.13 0.00 3.69338 -109.525 -3.69338 3.69338 0.63 0.000660775 0.000613853 0.0563316 0.0523415 32 1973 19 6.65987e+06 215526 554710. 1919.41 0.83 0.13128 0.116497 22834 132086 -1 1854 20 1065 1531 133239 29874 2.84891 2.84891 -108.08 -2.84891 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0264976 0.0231307 111 82 0 0 82 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 3.76 vpr 62.64 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30516 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 31 32 365 281 1 196 100 17 17 289 -1 unnamed_device 23.9 MiB 0.14 973 15876 4279 9893 1704 62.6 MiB 0.16 0.00 4.55701 -136.44 -4.55701 4.55701 0.63 0.000728302 0.000676688 0.0525022 0.0488075 32 2717 32 6.65987e+06 469086 554710. 1919.41 1.00 0.151572 0.133861 22834 132086 -1 2119 22 1651 2817 240632 52983 4.03591 4.03591 -134.706 -4.03591 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0350059 0.0306611 150 34 93 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 3.91 vpr 62.12 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 30404 -1 -1 31 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63612 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 23.6 MiB 0.23 621 11063 2736 7707 620 62.1 MiB 0.10 0.00 3.58224 -95.8028 -3.58224 3.58224 0.63 0.000605527 0.000562235 0.0346882 0.0321968 26 2024 33 6.65987e+06 393018 477104. 1650.88 1.27 0.118873 0.104088 21682 110474 -1 1674 18 1026 1648 126714 31105 2.84965 2.84965 -102.399 -2.84965 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0219865 0.0191452 108 56 29 29 52 26 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.13 vpr 62.52 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 30304 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 32 32 314 256 1 160 80 17 17 289 -1 unnamed_device 23.8 MiB 0.21 823 7992 1920 5681 391 62.5 MiB 0.09 0.00 3.5141 -118.56 -3.5141 3.5141 0.63 0.000610626 0.000564725 0.0323803 0.0301423 34 2038 19 6.65987e+06 202848 585099. 2024.56 1.39 0.157163 0.13684 23122 138558 -1 1693 20 1188 1991 143700 33185 2.69057 2.69057 -114.046 -2.69057 0 0 742403. 2568.87 0.22 0.07 0.13 -1 -1 0.22 0.0258694 0.0225794 119 34 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 3.68 vpr 62.90 MiB 0.04 7128 -1 -1 1 0.03 -1 -1 30392 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 31 32 387 307 1 189 99 17 17 289 -1 unnamed_device 24.1 MiB 0.23 1001 11955 3102 7859 994 62.9 MiB 0.12 0.00 3.4951 -117.77 -3.4951 3.4951 0.64 0.000752967 0.000699691 0.0418998 0.0388398 26 2363 24 6.65987e+06 456408 477104. 1650.88 0.89 0.133025 0.117097 21682 110474 -1 1972 20 1501 2192 155454 35024 2.96717 2.96717 -116.356 -2.96717 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0296007 0.0258956 142 64 58 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.57 vpr 62.34 MiB 0.04 6960 -1 -1 1 0.03 -1 -1 30416 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 31 32 308 262 1 148 79 17 17 289 -1 unnamed_device 23.6 MiB 0.29 876 12923 4161 7145 1617 62.3 MiB 0.11 0.00 3.11304 -101.32 -3.11304 3.11304 0.63 0.00062587 0.000581747 0.0500737 0.0465781 32 1966 17 6.65987e+06 202848 554710. 1919.41 0.78 0.118923 0.105555 22834 132086 -1 1763 18 947 1577 128871 29335 2.82865 2.82865 -105.492 -2.82865 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0237348 0.0208426 105 55 31 31 53 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 5.06 vpr 62.87 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30468 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 383 307 1 184 96 17 17 289 -1 unnamed_device 24.3 MiB 0.22 929 17616 5738 7949 3929 62.9 MiB 0.14 0.00 3.3979 -111.1 -3.3979 3.3979 0.64 0.00072904 0.000675678 0.0616225 0.0571556 34 2394 47 6.65987e+06 405696 585099. 2024.56 2.15 0.235012 0.205197 23122 138558 -1 1902 21 1261 2178 173221 40874 2.77097 2.77097 -108.435 -2.77097 0 0 742403. 2568.87 0.20 0.08 0.08 -1 -1 0.20 0.0303433 0.0265266 136 65 52 26 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.05 vpr 62.86 MiB 0.05 7196 -1 -1 1 0.04 -1 -1 30264 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 31 32 422 339 1 195 99 17 17 289 -1 unnamed_device 24.4 MiB 0.59 965 17427 4981 9867 2579 62.9 MiB 0.16 0.00 3.7445 -120.758 -3.7445 3.7445 0.63 0.00079254 0.00073174 0.0634381 0.0587876 28 2286 21 6.65987e+06 456408 500653. 1732.36 0.85 0.155751 0.138019 21970 115934 -1 2030 20 1604 2453 162483 37951 2.86597 2.86597 -114.396 -2.86597 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0314744 0.0275111 148 93 31 31 92 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 3.52 vpr 62.54 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30532 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 23.7 MiB 0.16 861 11652 3522 6006 2124 62.5 MiB 0.11 0.00 2.81844 -100.349 -2.81844 2.81844 0.63 0.000660513 0.000613665 0.0456212 0.042431 32 2079 23 6.65987e+06 228204 554710. 1919.41 0.84 0.126086 0.111347 22834 132086 -1 1682 21 1281 2024 144082 32797 2.54625 2.54625 -101.627 -2.54625 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0271744 0.0236712 115 61 32 32 60 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 3.83 vpr 62.71 MiB 0.04 6944 -1 -1 1 0.02 -1 -1 30124 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 23.9 MiB 0.26 667 7380 1595 4913 872 62.7 MiB 0.04 0.00 3.38184 -112.707 -3.38184 3.38184 0.65 0.000301478 0.000276528 0.0141537 0.0130409 32 2345 42 6.65987e+06 228204 554710. 1919.41 1.10 0.114005 0.0983365 22834 132086 -1 1734 21 1338 2119 160376 40566 3.13031 3.13031 -121.901 -3.13031 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0274993 0.0239719 121 63 32 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 3.86 vpr 62.61 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30700 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 407 319 1 198 100 17 17 289 -1 unnamed_device 24.2 MiB 0.19 1042 12164 2979 8000 1185 62.6 MiB 0.12 0.00 4.02524 -139.262 -4.02524 4.02524 0.71 0.000776565 0.000721736 0.0437191 0.0405644 28 2653 23 6.65987e+06 456408 500653. 1732.36 0.97 0.138141 0.121793 21970 115934 -1 2326 19 1747 2644 196290 44306 3.79251 3.79251 -139.52 -3.79251 0 0 612192. 2118.31 0.17 0.10 0.12 -1 -1 0.17 0.0363539 0.0317408 154 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 3.82 vpr 62.65 MiB 0.03 7104 -1 -1 1 0.03 -1 -1 30500 -1 -1 32 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 29 32 367 293 1 183 93 17 17 289 -1 unnamed_device 24.2 MiB 0.22 968 17313 5602 9212 2499 62.6 MiB 0.16 0.00 3.57304 -105.57 -3.57304 3.57304 0.64 0.00071024 0.00065969 0.0651758 0.0605399 32 2179 18 6.65987e+06 405696 554710. 1919.41 0.83 0.148835 0.132522 22834 132086 -1 1914 22 1155 1764 120739 28797 2.81671 2.81671 -102.996 -2.81671 0 0 701300. 2426.64 0.23 0.07 0.08 -1 -1 0.23 0.0307303 0.0268374 133 62 56 29 58 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 3.89 vpr 62.77 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 30656 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 469 381 1 200 101 17 17 289 -1 unnamed_device 24.4 MiB 0.33 1004 11616 2968 7911 737 62.8 MiB 0.13 0.00 3.97241 -135.454 -3.97241 3.97241 0.64 0.000862851 0.00080114 0.0467395 0.0432985 32 2756 22 6.65987e+06 469086 554710. 1919.41 0.87 0.148171 0.12994 22834 132086 -1 2253 23 2018 3108 233635 55239 3.53331 3.53331 -136.937 -3.53331 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0377371 0.0328529 156 127 0 0 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.35 vpr 62.12 MiB 0.02 6728 -1 -1 1 0.03 -1 -1 30284 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63612 31 32 259 212 1 146 79 17 17 289 -1 unnamed_device 23.7 MiB 0.10 715 5825 1215 4401 209 62.1 MiB 0.07 0.00 2.9397 -97.4988 -2.9397 2.9397 0.65 0.000696113 0.000640247 0.0224785 0.0209462 30 1705 18 6.65987e+06 202848 526063. 1820.29 0.78 0.0883915 0.0772869 22546 126617 -1 1464 20 790 1241 73899 17697 2.67551 2.67551 -102.459 -2.67551 0 0 666494. 2306.21 0.19 0.05 0.13 -1 -1 0.19 0.0230888 0.0201077 105 4 85 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 3.78 vpr 62.89 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 30380 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 32 32 418 338 1 190 97 17 17 289 -1 unnamed_device 24.1 MiB 0.18 948 20077 6167 11074 2836 62.9 MiB 0.19 0.00 4.10497 -133.778 -4.10497 4.10497 0.66 0.00077987 0.000723377 0.0754877 0.0700117 32 2340 22 6.65987e+06 418374 554710. 1919.41 0.87 0.181481 0.161103 22834 132086 -1 2046 19 1554 2231 168485 38319 3.46417 3.46417 -126.787 -3.46417 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0301345 0.0264543 142 92 28 28 92 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 3.98 vpr 62.72 MiB 0.03 6964 -1 -1 1 0.03 -1 -1 30196 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 24.0 MiB 0.22 805 9196 3450 4876 870 62.7 MiB 0.10 0.00 3.54047 -120.422 -3.54047 3.54047 0.63 0.000719555 0.000666722 0.0421606 0.0391707 30 2070 21 6.65987e+06 202848 526063. 1820.29 1.15 0.133195 0.117825 22546 126617 -1 1714 18 1177 1730 137693 31307 2.74077 2.74077 -114.698 -2.74077 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0262375 0.0230395 115 96 0 0 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 3.83 vpr 62.61 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30428 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 401 316 1 196 99 17 17 289 -1 unnamed_device 24.2 MiB 0.23 1002 18111 5520 9663 2928 62.6 MiB 0.17 0.00 3.45184 -118.995 -3.45184 3.45184 0.63 0.000771318 0.000714881 0.063436 0.0588405 32 2572 22 6.65987e+06 443730 554710. 1919.41 0.86 0.149075 0.132635 22834 132086 -1 2094 23 1557 2215 177177 40693 2.81651 2.81651 -115.248 -2.81651 0 0 701300. 2426.64 0.19 0.09 0.14 -1 -1 0.19 0.0348295 0.0305177 149 65 61 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.70 vpr 62.95 MiB 0.03 7284 -1 -1 1 0.04 -1 -1 30784 -1 -1 43 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 500 382 1 232 107 17 17 289 -1 unnamed_device 24.7 MiB 0.32 1201 15034 3694 9653 1687 63.0 MiB 0.16 0.00 4.6905 -158.567 -4.6905 4.6905 0.63 0.000917083 0.000850746 0.058484 0.0543283 26 3501 45 6.65987e+06 545154 477104. 1650.88 2.73 0.206556 0.181139 21682 110474 -1 2898 27 2771 4256 347098 74743 4.67831 4.67831 -171.071 -4.67831 0 0 585099. 2024.56 0.16 0.13 0.10 -1 -1 0.16 0.0455005 0.0394765 186 96 64 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.61 vpr 61.98 MiB 0.04 6768 -1 -1 1 0.03 -1 -1 30168 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63468 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 23.5 MiB 0.21 532 10509 2640 7460 409 62.0 MiB 0.08 0.00 2.61752 -80.0454 -2.61752 2.61752 0.63 0.00052958 0.000493126 0.0358871 0.0334003 26 1551 21 6.65987e+06 190170 477104. 1650.88 1.00 0.100383 0.0883961 21682 110474 -1 1190 20 763 1050 82475 20160 1.84185 1.84185 -76.8325 -1.84185 0 0 585099. 2024.56 0.17 0.05 0.10 -1 -1 0.17 0.0222499 0.0193469 83 56 0 0 53 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.41 vpr 62.14 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63632 30 32 296 244 1 137 78 17 17 289 -1 unnamed_device 23.7 MiB 0.09 758 10536 3415 5493 1628 62.1 MiB 0.10 0.00 3.52904 -110.224 -3.52904 3.52904 0.63 0.000615174 0.000572003 0.0412953 0.0384438 32 1744 20 6.65987e+06 202848 554710. 1919.41 0.80 0.114729 0.101274 22834 132086 -1 1542 19 962 1393 111108 25419 2.75277 2.75277 -105.134 -2.75277 0 0 701300. 2426.64 0.19 0.08 0.08 -1 -1 0.19 0.0312569 0.0274112 96 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.56 vpr 62.54 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30096 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 23.7 MiB 0.10 856 9872 2316 7018 538 62.5 MiB 0.10 0.00 3.4859 -122.574 -3.4859 3.4859 0.64 0.000646025 0.000600739 0.0380562 0.0354195 32 2373 21 6.65987e+06 228204 554710. 1919.41 0.86 0.114652 0.101149 22834 132086 -1 2064 21 1593 2821 225167 51580 2.94077 2.94077 -120.048 -2.94077 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0268309 0.0234654 126 34 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.22 vpr 62.23 MiB 0.02 6788 -1 -1 1 0.03 -1 -1 30428 -1 -1 34 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63724 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 23.6 MiB 0.08 696 13351 3608 8032 1711 62.2 MiB 0.11 0.00 3.32684 -88.9535 -3.32684 3.32684 0.64 0.000533747 0.000496456 0.038792 0.0360852 26 1641 17 6.65987e+06 431052 477104. 1650.88 0.73 0.0992142 0.0876063 21682 110474 -1 1556 20 1028 1580 111486 25927 2.73151 2.73151 -90.8715 -2.73151 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0214542 0.0186141 103 34 50 25 25 25 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 3.72 vpr 63.24 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 30512 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 432 346 1 193 84 17 17 289 -1 unnamed_device 24.4 MiB 0.22 877 14541 4608 7775 2158 63.2 MiB 0.18 0.00 4.02035 -125.217 -4.02035 4.02035 0.63 0.000806725 0.000749157 0.0773694 0.0718484 32 2783 25 6.65987e+06 253560 554710. 1919.41 0.95 0.176376 0.156834 22834 132086 -1 2179 22 1803 3238 235220 56628 3.66425 3.66425 -124.906 -3.66425 0 0 701300. 2426.64 0.19 0.05 0.13 -1 -1 0.19 0.0189049 0.0167551 147 94 32 32 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 3.68 vpr 62.57 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30288 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 31 32 421 339 1 193 100 17 17 289 -1 unnamed_device 24.2 MiB 0.16 938 18660 5414 10450 2796 62.6 MiB 0.17 0.00 3.4903 -116.326 -3.4903 3.4903 0.63 0.000778371 0.000721938 0.0656141 0.0607971 32 2461 21 6.65987e+06 469086 554710. 1919.41 0.87 0.158441 0.140268 22834 132086 -1 2049 22 1978 3083 228662 51829 2.90817 2.90817 -112.877 -2.90817 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0333193 0.0290693 146 94 29 29 93 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 6.14 vpr 63.51 MiB 0.02 7240 -1 -1 1 0.03 -1 -1 30664 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 438 350 1 187 89 17 17 289 -1 unnamed_device 24.9 MiB 0.91 758 13949 4789 6835 2325 63.5 MiB 0.12 0.00 3.74419 -135.496 -3.74419 3.74419 0.66 0.000805874 0.00074779 0.0601069 0.0557882 58 1960 26 6.95648e+06 361892 997811. 3452.63 2.30 0.229723 0.200369 30370 251734 -1 1690 21 1723 2709 199283 47430 4.12556 4.12556 -141.742 -4.12556 0 0 1.25153e+06 4330.55 0.30 0.09 0.21 -1 -1 0.30 0.0340263 0.0297076 84 96 32 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 8.39 vpr 63.55 MiB 0.03 7292 -1 -1 1 0.04 -1 -1 30672 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 30 32 409 330 1 179 76 17 17 289 -1 unnamed_device 24.6 MiB 1.97 807 12716 4975 6082 1659 63.5 MiB 0.12 0.00 3.9478 -130.518 -3.9478 3.9478 0.65 0.000757224 0.00070248 0.0629915 0.058513 48 2407 29 6.95648e+06 202660 865456. 2994.66 3.58 0.225398 0.197257 28354 207349 -1 1927 25 1932 2902 324926 79990 3.92522 3.92522 -137.188 -3.92522 0 0 1.05005e+06 3633.38 0.26 0.17 0.17 -1 -1 0.26 0.0506675 0.0438814 76 91 30 30 89 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 16.23 vpr 63.44 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 30352 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 387 309 1 179 83 17 17 289 -1 unnamed_device 24.6 MiB 0.72 1022 7103 1835 4569 699 63.4 MiB 0.07 0.00 3.60914 -132.635 -3.60914 3.60914 0.66 0.000740139 0.00068768 0.0322411 0.0299829 40 2728 21 6.95648e+06 275038 706193. 2443.58 12.69 0.331362 0.285048 26914 176310 -1 2485 24 1665 2605 297469 57129 3.85496 3.85496 -146.999 -3.85496 0 0 926341. 3205.33 0.24 0.12 0.16 -1 -1 0.24 0.0388303 0.0338927 77 65 54 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 5.12 vpr 63.36 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30496 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 29 32 343 267 1 176 77 17 17 289 -1 unnamed_device 24.6 MiB 0.37 752 10672 3799 5216 1657 63.4 MiB 0.10 0.00 4.001 -128.21 -4.001 4.001 0.65 0.00068378 0.000635503 0.0472427 0.043968 44 2696 27 6.95648e+06 231611 787024. 2723.27 2.01 0.186442 0.162797 27778 195446 -1 1855 24 1855 2771 237865 52045 3.87386 3.87386 -139.274 -3.87386 0 0 997811. 3452.63 0.25 0.10 0.16 -1 -1 0.25 0.0322562 0.0281657 75 34 87 29 29 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 6.62 vpr 63.43 MiB 0.06 6972 -1 -1 1 0.03 -1 -1 30316 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 376 288 1 187 77 17 17 289 -1 unnamed_device 24.8 MiB 0.65 716 9857 3295 4764 1798 63.4 MiB 0.10 0.00 3.66789 -133.791 -3.66789 3.66789 0.65 0.000746485 0.000693313 0.0481862 0.0448464 56 2163 40 6.95648e+06 188184 973134. 3367.25 3.10 0.229883 0.200875 29794 239141 -1 1657 23 2013 3439 281000 66532 3.88776 3.88776 -137.518 -3.88776 0 0 1.19926e+06 4149.71 0.29 0.10 0.20 -1 -1 0.29 0.0331287 0.0289903 78 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 14.94 vpr 63.73 MiB 0.03 7168 -1 -1 1 0.03 -1 -1 30428 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 402 316 1 191 93 17 17 289 -1 unnamed_device 24.8 MiB 0.39 727 15003 5272 7155 2576 63.7 MiB 0.12 0.00 3.0985 -114.166 -3.0985 3.0985 0.66 0.000774594 0.000718145 0.0578677 0.0536952 46 2435 46 6.95648e+06 419795 828058. 2865.25 11.80 0.38416 0.332084 28066 200906 -1 1746 20 1574 2179 209536 59676 3.22017 3.22017 -121.541 -3.22017 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0302881 0.0264798 89 64 63 32 63 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 8.41 vpr 62.94 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30604 -1 -1 14 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 27 32 269 226 1 129 73 17 17 289 -1 unnamed_device 24.4 MiB 3.54 451 8433 2993 4087 1353 62.9 MiB 0.07 0.00 3.26916 -93.4177 -3.26916 3.26916 0.66 0.000575449 0.000535949 0.0335818 0.0312904 40 1397 46 6.95648e+06 202660 706193. 2443.58 2.25 0.167617 0.145119 26914 176310 -1 1023 20 874 1371 101922 24751 2.85837 2.85837 -94.676 -2.85837 0 0 926341. 3205.33 0.23 0.06 0.15 -1 -1 0.23 0.0228175 0.0198745 54 34 54 27 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 5.77 vpr 63.07 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30244 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 24.6 MiB 0.48 722 11088 4563 6076 449 63.1 MiB 0.11 0.00 3.0394 -105.493 -3.0394 3.0394 0.65 0.0008327 0.000776 0.0504746 0.0469401 46 2382 26 6.95648e+06 246087 828058. 2865.25 2.56 0.188363 0.164698 28066 200906 -1 1894 23 1388 1873 161200 37361 2.94563 2.94563 -111.672 -2.94563 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0297735 0.0260166 77 4 115 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 11.46 vpr 62.98 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30232 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 338 292 1 143 74 17 17 289 -1 unnamed_device 24.3 MiB 1.54 523 9994 2759 5612 1623 63.0 MiB 0.09 0.00 3.10275 -98.727 -3.10275 3.10275 0.65 0.000653658 0.000606421 0.0444859 0.041304 40 1829 42 6.95648e+06 159232 706193. 2443.58 7.27 0.33491 0.287725 26914 176310 -1 1508 28 1092 1638 211555 63072 3.68972 3.68972 -118.397 -3.68972 0 0 926341. 3205.33 0.23 0.11 0.12 -1 -1 0.23 0.0420189 0.0363805 57 85 0 0 84 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 6.09 vpr 62.93 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 30356 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 314 256 1 156 74 17 17 289 -1 unnamed_device 24.3 MiB 0.91 638 10614 4216 4843 1555 62.9 MiB 0.10 0.00 2.95005 -114.898 -2.95005 2.95005 0.65 0.000650113 0.000603717 0.0478757 0.0445693 38 2080 35 6.95648e+06 144757 678818. 2348.85 2.52 0.189557 0.165527 26626 170182 -1 1750 21 1506 2168 226359 47888 3.52702 3.52702 -124.658 -3.52702 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0273877 0.0239382 62 34 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 6.11 vpr 63.25 MiB 0.02 6916 -1 -1 1 0.05 -1 -1 30132 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 30 32 325 273 1 148 74 17 17 289 -1 unnamed_device 24.4 MiB 1.59 651 11079 4648 6085 346 63.3 MiB 0.10 0.00 3.1095 -111.937 -3.1095 3.1095 0.72 0.000647361 0.000601785 0.050373 0.0469555 38 1744 25 6.95648e+06 173708 678818. 2348.85 1.77 0.173707 0.151984 26626 170182 -1 1430 20 1303 1735 125454 27661 2.98057 2.98057 -114.755 -2.98057 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0259027 0.022618 60 63 30 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 5.32 vpr 63.51 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30448 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 331 280 1 150 76 17 17 289 -1 unnamed_device 24.6 MiB 0.81 540 10476 4331 5741 404 63.5 MiB 0.09 0.00 2.9793 -106.716 -2.9793 2.9793 0.65 0.00065639 0.0006096 0.045402 0.0422115 50 1707 47 6.95648e+06 173708 902133. 3121.57 1.77 0.176299 0.153697 28642 213929 -1 1579 19 1147 1619 156011 39166 2.88957 2.88957 -115.614 -2.88957 0 0 1.08113e+06 3740.92 0.26 0.07 0.18 -1 -1 0.26 0.0253947 0.0221734 60 65 25 25 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 7.13 vpr 63.41 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30256 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 32 32 386 305 1 180 85 17 17 289 -1 unnamed_device 24.5 MiB 1.27 751 11803 3277 6504 2022 63.4 MiB 0.11 0.00 3.1024 -116.565 -3.1024 3.1024 0.67 0.00075595 0.000702005 0.0501366 0.0466012 44 2514 37 6.95648e+06 303989 787024. 2723.27 3.03 0.216096 0.188407 27778 195446 -1 1869 20 1592 2389 201553 44970 3.67437 3.67437 -133.251 -3.67437 0 0 997811. 3452.63 0.26 0.08 0.16 -1 -1 0.26 0.0303115 0.0265731 79 58 64 32 57 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 7.54 vpr 63.62 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 30564 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65144 32 32 407 319 1 192 90 17 17 289 -1 unnamed_device 24.7 MiB 0.99 832 16371 6652 7990 1729 63.6 MiB 0.14 0.00 3.72719 -138.885 -3.72719 3.72719 0.65 0.000777053 0.00072101 0.0662595 0.0614675 40 2769 48 6.95648e+06 376368 706193. 2443.58 3.75 0.252121 0.220571 26914 176310 -1 2281 20 2007 2799 309109 71324 4.39516 4.39516 -161.353 -4.39516 0 0 926341. 3205.33 0.23 0.10 0.16 -1 -1 0.23 0.0312666 0.0273574 87 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 5.55 vpr 62.80 MiB 0.05 6920 -1 -1 1 0.03 -1 -1 30684 -1 -1 13 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 29 32 272 228 1 141 74 17 17 289 -1 unnamed_device 24.2 MiB 1.05 465 11234 4544 5569 1121 62.8 MiB 0.10 0.00 3.14676 -95.8879 -3.14676 3.14676 0.67 0.000686511 0.000638323 0.048916 0.0455068 46 1613 28 6.95648e+06 188184 828058. 2865.25 1.83 0.168088 0.14664 28066 200906 -1 1222 27 1160 1713 134878 32035 3.03062 3.03062 -101.451 -3.03062 0 0 1.01997e+06 3529.29 0.25 0.07 0.14 -1 -1 0.25 0.0290433 0.0251649 58 29 58 29 24 24 +fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 6.52 vpr 63.73 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 30480 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 401 315 1 185 77 17 17 289 -1 unnamed_device 24.9 MiB 1.63 807 11813 5009 6533 271 63.7 MiB 0.13 0.00 3.1505 -120.688 -3.1505 3.1505 0.65 0.00141771 0.00131534 0.0670848 0.0623275 46 2437 23 6.95648e+06 188184 828058. 2865.25 2.02 0.219232 0.192434 28066 200906 -1 1906 25 2005 3150 253327 54546 3.15412 3.15412 -125.802 -3.15412 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0364726 0.0317591 77 63 64 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 6.81 vpr 63.80 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 30244 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65328 32 32 383 303 1 179 84 17 17 289 -1 unnamed_device 24.9 MiB 1.39 707 11064 3419 5711 1934 63.8 MiB 0.11 0.00 3.0804 -113.837 -3.0804 3.0804 0.67 0.000744491 0.000689519 0.0507175 0.0470672 46 2393 47 6.95648e+06 289514 828058. 2865.25 2.76 0.226558 0.197194 28066 200906 -1 1693 20 1401 1858 160432 36645 3.58837 3.58837 -131.08 -3.58837 0 0 1.01997e+06 3529.29 0.24 0.07 0.11 -1 -1 0.24 0.029687 0.025994 78 57 64 32 56 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 5.34 vpr 63.28 MiB 0.05 6852 -1 -1 1 0.03 -1 -1 30204 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 339 284 1 156 84 17 17 289 -1 unnamed_device 24.4 MiB 0.80 574 10698 2981 5511 2206 63.3 MiB 0.09 0.00 2.43656 -93.1005 -2.43656 2.43656 0.66 0.000667806 0.000619429 0.0414783 0.0385373 48 1509 24 6.95648e+06 289514 865456. 2994.66 1.82 0.174657 0.151996 28354 207349 -1 1322 21 1199 1662 152817 37624 2.58543 2.58543 -100.095 -2.58543 0 0 1.05005e+06 3633.38 0.26 0.07 0.17 -1 -1 0.26 0.0275562 0.0239977 67 65 29 29 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 4.50 vpr 62.52 MiB 0.02 6892 -1 -1 1 0.03 -1 -1 30208 -1 -1 10 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64024 30 32 226 208 1 118 72 17 17 289 -1 unnamed_device 24.0 MiB 0.36 450 11098 4789 5936 373 62.5 MiB 0.08 0.00 2.21746 -80.6728 -2.21746 2.21746 0.65 0.00050213 0.000467251 0.0394933 0.0367878 36 1377 32 6.95648e+06 144757 648988. 2245.63 1.61 0.146611 0.12761 26050 158493 -1 1138 20 738 953 94219 20604 2.10138 2.10138 -84.8654 -2.10138 0 0 828058. 2865.25 0.21 0.05 0.14 -1 -1 0.21 0.0205962 0.0179419 45 34 24 24 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 7.08 vpr 63.29 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30412 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64804 31 32 335 280 1 152 74 17 17 289 -1 unnamed_device 24.4 MiB 1.09 525 9374 3845 5090 439 63.3 MiB 0.10 0.00 3.8254 -127.041 -3.8254 3.8254 0.71 0.000807564 0.000751147 0.0493322 0.0459326 46 1860 48 6.95648e+06 159232 828058. 2865.25 3.12 0.217029 0.189114 28066 200906 -1 1286 26 1109 1501 112673 28049 3.60442 3.60442 -125.134 -3.60442 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.032612 0.0283618 61 64 31 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 6.34 vpr 63.50 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30236 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65028 32 32 366 283 1 184 85 17 17 289 -1 unnamed_device 24.7 MiB 0.40 664 13663 4054 7770 1839 63.5 MiB 0.14 0.00 3.70954 -128.174 -3.70954 3.70954 0.65 0.000729895 0.000678103 0.0673952 0.0626513 46 2326 31 6.95648e+06 303989 828058. 2865.25 3.14 0.224234 0.196772 28066 200906 -1 1499 21 1684 2238 155834 36240 4.00842 4.00842 -137.451 -4.00842 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0307136 0.026939 81 34 91 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 6.54 vpr 63.84 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30612 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65376 32 32 460 375 1 188 91 17 17 289 -1 unnamed_device 25.1 MiB 1.10 791 14779 5223 7361 2195 63.8 MiB 0.13 0.00 3.66119 -126.81 -3.66119 3.66119 0.65 0.000845583 0.000784988 0.0639627 0.0593862 48 2442 23 6.95648e+06 390843 865456. 2994.66 2.57 0.233281 0.203625 28354 207349 -1 1936 24 1566 2374 223232 50475 4.21506 4.21506 -137.225 -4.21506 0 0 1.05005e+06 3633.38 0.26 0.10 0.17 -1 -1 0.26 0.0382407 0.0332439 85 124 0 0 125 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 5.22 vpr 62.28 MiB 0.04 6764 -1 -1 1 0.03 -1 -1 30720 -1 -1 13 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63776 26 32 198 186 1 108 71 17 17 289 -1 unnamed_device 23.8 MiB 0.87 348 7809 2770 3912 1127 62.3 MiB 0.06 0.00 2.19726 -66.8557 -2.19726 2.19726 0.65 0.000520141 0.00048389 0.0290685 0.0270564 46 937 48 6.95648e+06 188184 828058. 2865.25 1.73 0.133386 0.115596 28066 200906 -1 700 16 585 711 35618 10755 2.09953 2.09953 -64.2894 -2.09953 0 0 1.01997e+06 3529.29 0.25 0.04 0.18 -1 -1 0.25 0.0167711 0.014753 44 30 26 26 22 22 +fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 7.00 vpr 63.44 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 30144 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 333 251 1 180 76 17 17 289 -1 unnamed_device 24.7 MiB 0.80 737 10316 4241 5568 507 63.4 MiB 0.10 0.00 4.02534 -135.509 -4.02534 4.02534 0.66 0.000691905 0.000643038 0.0481539 0.0448461 48 2419 30 6.95648e+06 173708 865456. 2994.66 3.10 0.195138 0.170797 28354 207349 -1 1970 49 3641 5913 1247564 597467 4.02741 4.02741 -146.507 -4.02741 0 0 1.05005e+06 3633.38 0.26 0.36 0.17 -1 -1 0.26 0.0574908 0.0496754 74 3 122 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 4.47 vpr 62.67 MiB 0.04 6676 -1 -1 1 0.03 -1 -1 30352 -1 -1 8 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 24.2 MiB 0.29 731 9906 3689 5081 1136 62.7 MiB 0.07 0.00 2.15326 -87.6492 -2.15326 2.15326 0.67 0.000466282 0.000432898 0.032831 0.0305024 34 1791 46 6.95648e+06 115805 618332. 2139.56 1.60 0.145898 0.126962 25762 151098 -1 1578 15 672 845 101336 20530 2.29898 2.29898 -94.9582 -2.29898 0 0 787024. 2723.27 0.20 0.05 0.14 -1 -1 0.20 0.0155766 0.0137291 44 3 53 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 6.42 vpr 63.35 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 30624 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 376 288 1 186 90 17 17 289 -1 unnamed_device 24.7 MiB 0.50 827 16371 5667 8716 1988 63.4 MiB 0.15 0.00 3.67409 -135.23 -3.67409 3.67409 0.68 0.000751139 0.000696051 0.0639691 0.0592373 40 2687 28 6.95648e+06 376368 706193. 2443.58 3.07 0.219677 0.192122 26914 176310 -1 2306 28 2333 3677 611276 186684 4.54726 4.54726 -161.071 -4.54726 0 0 926341. 3205.33 0.23 0.17 0.15 -1 -1 0.23 0.0385571 0.0335002 85 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 7.64 vpr 63.39 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30172 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 24.6 MiB 0.33 985 13754 4254 7657 1843 63.4 MiB 0.12 0.00 3.0955 -119.852 -3.0955 3.0955 0.65 0.000701636 0.000651792 0.0488406 0.0453699 36 2880 44 6.95648e+06 405319 648988. 2245.63 4.57 0.209521 0.182849 26050 158493 -1 2276 19 1555 2177 205823 40914 3.09187 3.09187 -128.104 -3.09187 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0270326 0.0237357 87 3 124 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 5.96 vpr 63.64 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30584 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 32 32 407 319 1 189 92 17 17 289 -1 unnamed_device 24.7 MiB 0.33 789 18308 6099 10070 2139 63.6 MiB 0.16 0.00 3.69663 -134.61 -3.69663 3.69663 0.67 0.000771296 0.000714486 0.0732736 0.067875 46 2780 28 6.95648e+06 405319 828058. 2865.25 2.84 0.238946 0.209821 28066 200906 -1 2019 22 1957 3119 228267 50402 4.02846 4.02846 -146.936 -4.02846 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0338506 0.0295608 87 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 6.42 vpr 63.00 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 30128 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 294 246 1 145 74 17 17 289 -1 unnamed_device 24.3 MiB 0.72 541 9374 3087 4731 1556 63.0 MiB 0.10 0.00 2.8982 -102.358 -2.8982 2.8982 0.67 0.000735864 0.000691673 0.0512937 0.0477817 38 2009 38 6.95648e+06 144757 678818. 2348.85 3.03 0.1926 0.168113 26626 170182 -1 1506 23 1166 1770 157111 34888 3.38472 3.38472 -117.477 -3.38472 0 0 902133. 3121.57 0.23 0.07 0.16 -1 -1 0.23 0.0276089 0.0240681 57 34 54 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 5.14 vpr 62.84 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30152 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 30 32 296 244 1 148 74 17 17 289 -1 unnamed_device 24.2 MiB 0.55 571 8444 3466 4635 343 62.8 MiB 0.08 0.00 3.1175 -112.058 -3.1175 3.1175 0.67 0.000615567 0.00057243 0.0357287 0.033258 40 1947 30 6.95648e+06 173708 706193. 2443.58 1.94 0.169244 0.146684 26914 176310 -1 1462 22 1368 1858 147173 34387 3.36447 3.36447 -118.852 -3.36447 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.026427 0.0230086 60 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 5.35 vpr 62.91 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 30368 -1 -1 13 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 28 32 278 232 1 144 73 17 17 289 -1 unnamed_device 24.3 MiB 0.55 505 10257 3681 4972 1604 62.9 MiB 0.09 0.00 3.0435 -97.9378 -3.0435 3.0435 0.66 0.000581545 0.000540482 0.0414812 0.0386228 44 1727 27 6.95648e+06 188184 787024. 2723.27 2.12 0.163838 0.142439 27778 195446 -1 1150 19 1026 1535 102002 25239 3.07097 3.07097 -99.8006 -3.07097 0 0 997811. 3452.63 0.26 0.06 0.17 -1 -1 0.26 0.0226589 0.0197483 61 34 56 28 28 28 +fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 5.17 vpr 63.01 MiB 0.02 6748 -1 -1 1 0.03 -1 -1 30308 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 24.3 MiB 0.23 703 9374 3895 5319 160 63.0 MiB 0.09 0.00 2.93285 -116.414 -2.93285 2.93285 0.66 0.000612187 0.000569167 0.0392736 0.0365728 44 2101 25 6.95648e+06 144757 787024. 2723.27 2.18 0.163883 0.142867 27778 195446 -1 1725 23 1661 2370 207803 42982 3.06662 3.06662 -125.546 -3.06662 0 0 997811. 3452.63 0.26 0.09 0.18 -1 -1 0.26 0.029518 0.025764 64 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 5.13 vpr 63.23 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30264 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 31 32 303 249 1 156 84 17 17 289 -1 unnamed_device 24.5 MiB 0.16 623 13443 5605 7395 443 63.2 MiB 0.11 0.00 3.0955 -111.973 -3.0955 3.0955 0.66 0.000629843 0.000585072 0.0486487 0.0452508 44 2077 38 6.95648e+06 303989 787024. 2723.27 2.24 0.186596 0.162701 27778 195446 -1 1485 21 1308 2020 167131 38664 3.03252 3.03252 -115.524 -3.03252 0 0 997811. 3452.63 0.26 0.08 0.19 -1 -1 0.26 0.0275901 0.0240641 68 34 61 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 5.44 vpr 63.10 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30220 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 29 32 312 264 1 148 79 17 17 289 -1 unnamed_device 24.6 MiB 0.73 508 10219 3550 4648 2021 63.1 MiB 0.08 0.00 2.43392 -85.0275 -2.43392 2.43392 0.66 0.000624575 0.000580017 0.0399226 0.0371231 46 1411 35 6.95648e+06 260562 828058. 2865.25 2.05 0.176321 0.153225 28066 200906 -1 1185 22 1238 1734 129751 34007 2.31283 2.31283 -88.1752 -2.31283 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0268241 0.0233241 64 61 29 29 57 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 17.92 vpr 63.83 MiB 0.03 7080 -1 -1 1 0.04 -1 -1 30568 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 423 310 1 219 92 17 17 289 -1 unnamed_device 25.1 MiB 0.74 944 14375 4687 7097 2591 63.8 MiB 0.13 0.00 3.95585 -140.771 -3.95585 3.95585 0.66 0.000827677 0.000767647 0.0605035 0.0562107 50 2802 35 6.95648e+06 405319 902133. 3121.57 14.31 0.416063 0.360027 28642 213929 -1 2332 25 2175 3439 375097 108678 4.03032 4.03032 -146.333 -4.03032 0 0 1.08113e+06 3740.92 0.27 0.13 0.18 -1 -1 0.27 0.0393316 0.0343178 100 29 128 32 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 6.45 vpr 63.75 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30400 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65276 32 32 403 317 1 190 91 17 17 289 -1 unnamed_device 24.9 MiB 0.93 786 12739 3070 7853 1816 63.7 MiB 0.12 0.00 3.0804 -115.407 -3.0804 3.0804 0.65 0.000781296 0.000723929 0.051149 0.0475119 40 2423 28 6.95648e+06 390843 706193. 2443.58 2.70 0.212018 0.185059 26914 176310 -1 2064 29 2165 3168 424279 118679 3.42677 3.42677 -132.58 -3.42677 0 0 926341. 3205.33 0.23 0.14 0.15 -1 -1 0.23 0.0410768 0.0356608 87 65 62 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 5.70 vpr 63.34 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30660 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 31 32 353 302 1 150 78 17 17 289 -1 unnamed_device 24.4 MiB 1.06 525 12362 5188 6715 459 63.3 MiB 0.10 0.00 3.26916 -109.722 -3.26916 3.26916 0.65 0.000675989 0.000627411 0.0529355 0.0492012 50 1653 27 6.95648e+06 217135 902133. 3121.57 1.90 0.18966 0.165633 28642 213929 -1 1365 15 974 1392 100457 25026 3.30467 3.30467 -110.851 -3.30467 0 0 1.08113e+06 3740.92 0.26 0.05 0.18 -1 -1 0.26 0.0216951 0.0190699 62 90 0 0 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 5.50 vpr 63.64 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 30480 -1 -1 14 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65168 31 32 391 309 1 186 77 17 17 289 -1 unnamed_device 24.8 MiB 0.53 965 12791 5492 6957 342 63.6 MiB 0.12 0.00 3.0625 -116.847 -3.0625 3.0625 0.65 0.000746072 0.000692342 0.0614204 0.0570389 38 2599 23 6.95648e+06 202660 678818. 2348.85 2.34 0.211149 0.185007 26626 170182 -1 2274 19 1642 2425 231061 46047 3.19222 3.19222 -127.52 -3.19222 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0288782 0.0253066 79 64 60 30 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 7.87 vpr 63.90 MiB 0.03 7236 -1 -1 1 0.03 -1 -1 30476 -1 -1 14 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65432 31 32 455 371 1 185 77 17 17 289 -1 unnamed_device 25.2 MiB 2.12 778 10998 4559 6059 380 63.9 MiB 0.11 0.00 4.63397 -149.774 -4.63397 4.63397 0.65 0.00084012 0.000780514 0.0592324 0.0550615 44 2926 36 6.95648e+06 202660 787024. 2723.27 2.96 0.23878 0.207589 27778 195446 -1 2025 23 1537 2329 224354 48388 4.76041 4.76041 -155.232 -4.76041 0 0 997811. 3452.63 0.25 0.10 0.17 -1 -1 0.25 0.0371166 0.0322964 78 124 0 0 124 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 6.36 vpr 63.68 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 30460 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65212 31 32 413 333 1 182 76 17 17 289 -1 unnamed_device 24.8 MiB 1.42 775 10476 3672 5136 1668 63.7 MiB 0.11 0.00 4.49354 -135.009 -4.49354 4.49354 0.65 0.000768648 0.000713199 0.053456 0.0496077 44 2669 43 6.95648e+06 188184 787024. 2723.27 2.17 0.22894 0.199259 27778 195446 -1 1914 26 1364 2112 181850 37955 4.40171 4.40171 -141.943 -4.40171 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0378706 0.0329743 76 90 31 31 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 6.66 vpr 63.59 MiB 0.02 7124 -1 -1 1 0.04 -1 -1 30500 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65112 31 32 391 309 1 185 88 17 17 289 -1 unnamed_device 24.7 MiB 0.84 864 15493 5631 7761 2101 63.6 MiB 0.14 0.00 3.1285 -114.829 -3.1285 3.1285 0.67 0.000780585 0.000723274 0.0646432 0.0600666 38 2848 26 6.95648e+06 361892 678818. 2348.85 3.13 0.221189 0.193855 26626 170182 -1 2191 21 1803 2729 221783 46022 3.43477 3.43477 -128.897 -3.43477 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0313667 0.0274556 85 64 60 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 5.53 vpr 63.87 MiB 0.02 7060 -1 -1 1 0.04 -1 -1 30680 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65400 32 32 407 319 1 190 90 17 17 289 -1 unnamed_device 25.0 MiB 0.49 956 10743 3793 5013 1937 63.9 MiB 0.10 0.00 3.77119 -139.239 -3.77119 3.77119 0.65 0.000772885 0.000717777 0.0440934 0.0409993 44 2711 27 6.95648e+06 376368 787024. 2723.27 2.40 0.198967 0.173398 27778 195446 -1 2109 24 2195 3331 275496 54878 4.09626 4.09626 -152.561 -4.09626 0 0 997811. 3452.63 0.25 0.11 0.11 -1 -1 0.25 0.0349637 0.0305893 86 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 17.93 vpr 64.00 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30648 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65536 32 32 496 380 1 222 95 17 17 289 -1 unnamed_device 25.7 MiB 0.88 1078 14999 4071 8495 2433 64.0 MiB 0.14 0.00 3.84845 -142.865 -3.84845 3.84845 0.66 0.000914787 0.000848334 0.0669773 0.0621348 40 2955 26 6.95648e+06 448746 706193. 2443.58 14.28 0.43074 0.37192 26914 176310 -1 2667 20 2127 3183 309846 62326 4.36702 4.36702 -161.254 -4.36702 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.036351 0.0318076 104 96 62 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 6.37 vpr 63.49 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30540 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 31 32 305 250 1 152 74 17 17 289 -1 unnamed_device 24.6 MiB 0.60 721 10304 4339 5695 270 63.5 MiB 0.09 0.00 3.34916 -121.065 -3.34916 3.34916 0.67 0.000626714 0.000582494 0.0440208 0.0409723 36 2215 27 6.95648e+06 159232 648988. 2245.63 3.11 0.172259 0.150164 26050 158493 -1 1732 21 1370 1948 180008 36653 3.49897 3.49897 -130.737 -3.49897 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0260322 0.022742 62 34 62 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 5.11 vpr 63.53 MiB 0.03 7092 -1 -1 1 0.03 -1 -1 30396 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65052 31 32 395 311 1 188 90 17 17 289 -1 unnamed_device 24.7 MiB 0.41 784 13959 3819 8017 2123 63.5 MiB 0.13 0.00 4.0519 -136.516 -4.0519 4.0519 0.55 0.000768293 0.000713404 0.0566325 0.0526458 48 2294 26 6.95648e+06 390843 865456. 2994.66 2.11 0.21044 0.184029 28354 207349 -1 1943 20 1718 2664 236707 49909 4.16366 4.16366 -148.517 -4.16366 0 0 1.05005e+06 3633.38 0.26 0.09 0.17 -1 -1 0.26 0.0300851 0.0263255 86 64 62 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 6.28 vpr 63.80 MiB 0.04 7084 -1 -1 1 0.03 -1 -1 30564 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65336 32 32 397 313 1 188 90 17 17 289 -1 unnamed_device 24.9 MiB 0.75 863 13557 4887 6407 2263 63.8 MiB 0.11 0.00 3.29596 -116.543 -3.29596 3.29596 0.65 0.000760321 0.000705017 0.0545203 0.0506466 50 2481 26 6.95648e+06 376368 902133. 3121.57 2.60 0.204345 0.178602 28642 213929 -1 1941 42 2097 3578 542152 243437 3.19817 3.19817 -117.898 -3.19817 0 0 1.08113e+06 3740.92 0.26 0.20 0.18 -1 -1 0.26 0.0547317 0.047295 85 63 62 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 8.29 vpr 63.30 MiB 0.10 7000 -1 -1 1 0.03 -1 -1 30524 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 345 257 1 187 77 17 17 289 -1 unnamed_device 24.6 MiB 0.83 760 7738 3134 4374 230 63.3 MiB 0.08 0.00 3.65689 -135.736 -3.65689 3.65689 0.65 0.00070816 0.000657961 0.0361191 0.0336373 44 3266 47 6.95648e+06 188184 787024. 2723.27 4.63 0.195374 0.169851 27778 195446 -1 2257 23 1979 3279 378806 78188 4.10246 4.10246 -155.26 -4.10246 0 0 997811. 3452.63 0.25 0.12 0.17 -1 -1 0.25 0.031844 0.0278397 78 3 128 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 6.55 vpr 63.81 MiB 0.03 7036 -1 -1 1 0.04 -1 -1 30408 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65344 32 32 424 343 1 182 87 17 17 289 -1 unnamed_device 24.9 MiB 1.55 808 11991 3810 6067 2114 63.8 MiB 0.11 0.00 3.1768 -117.392 -3.1768 3.1768 0.65 0.000786115 0.000729626 0.052251 0.0485884 46 2159 29 6.95648e+06 332941 828058. 2865.25 2.30 0.214274 0.186971 28066 200906 -1 1563 20 1446 2243 121831 31958 3.32357 3.32357 -121.589 -3.32357 0 0 1.01997e+06 3529.29 0.25 0.07 0.11 -1 -1 0.25 0.0308622 0.0270065 81 96 25 25 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 5.45 vpr 63.84 MiB 0.03 7000 -1 -1 1 0.03 -1 -1 30304 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65376 32 32 395 311 1 186 92 17 17 289 -1 unnamed_device 24.9 MiB 0.79 845 12926 3665 7173 2088 63.8 MiB 0.11 0.00 3.1214 -116.244 -3.1214 3.1214 0.65 0.00076373 0.000709159 0.0501642 0.0466061 46 2291 24 6.95648e+06 405319 828058. 2865.25 1.94 0.200017 0.174548 28066 200906 -1 1858 23 1545 2365 175180 37261 3.21717 3.21717 -118.528 -3.21717 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0348641 0.030425 85 61 64 32 60 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 5.68 vpr 63.94 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 30432 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65476 32 32 405 318 1 192 92 17 17 289 -1 unnamed_device 25.3 MiB 0.56 803 14996 4547 7782 2667 63.9 MiB 0.13 0.00 3.09676 -115.471 -3.09676 3.09676 0.65 0.000777787 0.000720411 0.0587256 0.054432 46 2386 25 6.95648e+06 405319 828058. 2865.25 2.38 0.213129 0.186329 28066 200906 -1 1704 20 1776 2669 180886 40942 3.11497 3.11497 -117.791 -3.11497 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0309563 0.0271394 88 65 63 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 6.17 vpr 63.85 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 30532 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65380 32 32 376 288 1 186 92 17 17 289 -1 unnamed_device 25.0 MiB 0.52 938 15617 5888 7604 2125 63.8 MiB 0.14 0.00 3.66789 -137.042 -3.66789 3.66789 0.65 0.000739817 0.00068669 0.0584745 0.0542802 44 2729 48 6.95648e+06 405319 787024. 2723.27 2.87 0.231972 0.20268 27778 195446 -1 2182 23 2013 3135 263852 51871 4.07726 4.07726 -148.498 -4.07726 0 0 997811. 3452.63 0.25 0.10 0.16 -1 -1 0.25 0.0326036 0.0284901 85 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 6.21 vpr 63.57 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30696 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65096 32 32 407 319 1 189 94 17 17 289 -1 unnamed_device 25.1 MiB 0.97 799 12448 3955 5788 2705 63.6 MiB 0.12 0.00 3.78219 -138.337 -3.78219 3.78219 0.71 0.000884798 0.000812115 0.0542225 0.0502694 44 2633 42 6.95648e+06 434271 787024. 2723.27 2.39 0.227336 0.198178 27778 195446 -1 1886 22 1913 2793 210024 51776 4.23256 4.23256 -151.401 -4.23256 0 0 997811. 3452.63 0.26 0.10 0.17 -1 -1 0.26 0.0335008 0.029245 88 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 21.91 vpr 63.88 MiB 0.05 7160 -1 -1 1 0.03 -1 -1 30480 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65408 31 32 449 367 1 185 88 17 17 289 -1 unnamed_device 25.2 MiB 1.24 822 11983 4768 6508 707 63.9 MiB 0.11 0.00 4.19045 -134.89 -4.19045 4.19045 0.65 0.000827936 0.000769042 0.0538013 0.0499986 44 3007 44 6.95648e+06 361892 787024. 2723.27 17.93 0.413065 0.355678 27778 195446 -1 2186 29 1784 2766 272117 64702 3.83002 3.83002 -138.199 -3.83002 0 0 997811. 3452.63 0.24 0.07 0.11 -1 -1 0.24 0.0230894 0.0202217 84 122 0 0 122 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 6.34 vpr 63.76 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30444 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65292 32 32 432 346 1 187 77 17 17 289 -1 unnamed_device 25.0 MiB 1.11 840 10346 3694 5398 1254 63.8 MiB 0.11 0.00 3.7688 -130.649 -3.7688 3.7688 0.68 0.000808834 0.000751515 0.054335 0.0505417 40 2535 24 6.95648e+06 188184 706193. 2443.58 2.65 0.216316 0.188985 26914 176310 -1 2242 23 1895 3260 303296 62171 4.06146 4.06146 -147.534 -4.06146 0 0 926341. 3205.33 0.22 0.06 0.10 -1 -1 0.22 0.0193723 0.0171277 78 94 32 32 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 5.29 vpr 63.16 MiB 0.04 6744 -1 -1 1 0.03 -1 -1 30564 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 312 255 1 160 87 17 17 289 -1 unnamed_device 24.5 MiB 0.17 594 10647 4341 5910 396 63.2 MiB 0.09 0.00 3.12656 -113.614 -3.12656 3.12656 0.70 0.000645758 0.000600202 0.0381608 0.0354233 56 1741 22 6.95648e+06 332941 973134. 3367.25 2.27 0.165474 0.1442 29794 239141 -1 1341 20 1293 2020 155711 36747 3.07612 3.07612 -112.307 -3.07612 0 0 1.19926e+06 4149.71 0.29 0.07 0.20 -1 -1 0.29 0.0254144 0.0222203 71 34 63 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 16.41 vpr 63.45 MiB 0.04 6932 -1 -1 1 0.03 -1 -1 30328 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 370 314 1 158 74 17 17 289 -1 unnamed_device 24.8 MiB 1.03 610 8444 3495 4676 273 63.4 MiB 0.09 0.00 3.0405 -112.422 -3.0405 3.0405 0.65 0.000893196 0.00082361 0.0429175 0.0398144 48 1986 36 6.95648e+06 144757 865456. 2994.66 12.64 0.336895 0.289861 28354 207349 -1 1587 21 1492 2244 248234 67713 3.07482 3.07482 -121.215 -3.07482 0 0 1.05005e+06 3633.38 0.26 0.09 0.17 -1 -1 0.26 0.0292001 0.0254931 63 94 0 0 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 22.83 vpr 63.60 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30772 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65124 32 32 469 351 1 223 94 17 17 289 -1 unnamed_device 25.3 MiB 0.59 1000 14152 3772 8188 2192 63.6 MiB 0.14 0.00 4.46224 -157.711 -4.46224 4.46224 0.65 0.000883339 0.000820977 0.0617213 0.0573182 48 3589 41 6.95648e+06 434271 865456. 2994.66 19.31 0.486896 0.419306 28354 207349 -1 2647 39 3273 5242 691557 203542 5.05191 5.05191 -180.38 -5.05191 0 0 1.05005e+06 3633.38 0.27 0.23 0.18 -1 -1 0.27 0.0632437 0.0548627 103 65 96 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 5.48 vpr 63.57 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30528 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65096 32 32 368 284 1 186 88 17 17 289 -1 unnamed_device 24.7 MiB 0.60 717 11983 4638 6220 1125 63.6 MiB 0.10 0.00 3.1457 -117.079 -3.1457 3.1457 0.65 0.000732211 0.000679808 0.0482652 0.0445208 46 2078 38 6.95648e+06 347416 828058. 2865.25 2.33 0.207495 0.180477 28066 200906 -1 1635 20 1426 1856 150168 34567 3.22337 3.22337 -123.095 -3.22337 0 0 1.01997e+06 3529.29 0.25 0.07 0.18 -1 -1 0.25 0.0296739 0.0260194 83 34 92 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 5.99 vpr 62.87 MiB 0.02 6788 -1 -1 1 0.03 -1 -1 30388 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 30 32 296 244 1 152 81 17 17 289 -1 unnamed_device 24.5 MiB 0.28 571 10581 4367 5776 438 62.9 MiB 0.10 0.00 3.0735 -108.432 -3.0735 3.0735 0.69 0.000624132 0.000580397 0.0436408 0.0406775 38 2214 32 6.95648e+06 275038 678818. 2348.85 3.16 0.176367 0.153403 26626 170182 -1 1647 20 1291 1857 165363 36508 3.22627 3.22627 -117.748 -3.22627 0 0 902133. 3121.57 0.25 0.04 0.14 -1 -1 0.25 0.0137549 0.0122137 65 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 7.62 vpr 63.81 MiB 0.03 7328 -1 -1 1 0.04 -1 -1 30856 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65340 32 32 531 413 1 225 95 17 17 289 -1 unnamed_device 25.5 MiB 1.87 1126 15215 3732 10105 1378 63.8 MiB 0.15 0.00 4.49524 -160.999 -4.49524 4.49524 0.64 0.000947963 0.000880294 0.0702237 0.0651985 64 2603 22 6.95648e+06 448746 1.08113e+06 3740.92 2.66 0.256214 0.224081 31522 276338 -1 2323 24 2383 3561 336579 68033 4.75731 4.75731 -169.715 -4.75731 0 0 1.36325e+06 4717.13 0.33 0.13 0.26 -1 -1 0.33 0.0431568 0.0377567 103 127 32 32 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 6.06 vpr 63.57 MiB 0.02 6944 -1 -1 1 0.03 -1 -1 30616 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 32 32 376 288 1 187 92 17 17 289 -1 unnamed_device 24.6 MiB 1.06 804 14375 4842 7223 2310 63.6 MiB 0.12 0.00 3.73321 -136.441 -3.73321 3.73321 0.65 0.000754408 0.000699746 0.0550887 0.0510594 40 2325 28 6.95648e+06 405319 706193. 2443.58 2.36 0.19909 0.174424 26914 176310 -1 2058 22 2085 2911 261368 53902 3.81376 3.81376 -147.514 -3.81376 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.0323659 0.0283721 86 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 5.13 vpr 63.11 MiB 0.04 6756 -1 -1 1 0.03 -1 -1 30304 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 24.6 MiB 0.31 740 12763 4452 6451 1860 63.1 MiB 0.10 0.00 3.05815 -117.559 -3.05815 3.05815 0.66 0.000613264 0.000569724 0.0422527 0.0393145 44 2104 25 6.95648e+06 347416 787024. 2723.27 2.16 0.164787 0.14378 27778 195446 -1 1671 21 1472 2267 168285 34875 2.92922 2.92922 -117.305 -2.92922 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.0252353 0.0220465 70 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 7.32 vpr 63.49 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30888 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 438 320 1 225 95 17 17 289 -1 unnamed_device 25.0 MiB 0.50 924 14567 5045 6877 2645 63.5 MiB 0.13 0.00 4.52824 -159.979 -4.52824 4.52824 0.65 0.000860252 0.000799772 0.061709 0.057364 54 3003 36 6.95648e+06 448746 949917. 3286.91 3.96 0.252431 0.220257 29506 232905 -1 2208 23 2579 4355 378821 79749 5.04871 5.04871 -171.079 -5.04871 0 0 1.17392e+06 4061.99 0.28 0.12 0.19 -1 -1 0.28 0.0377166 0.032947 105 34 128 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 4.90 vpr 62.86 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 30224 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 24.2 MiB 0.34 618 10614 4475 5915 224 62.9 MiB 0.09 0.00 2.92185 -113.699 -2.92185 2.92185 0.66 0.00061319 0.000570121 0.0442681 0.0412025 46 1828 25 6.95648e+06 144757 828058. 2865.25 1.92 0.168334 0.14725 28066 200906 -1 1458 24 1480 2065 162501 35824 3.30322 3.30322 -119.042 -3.30322 0 0 1.01997e+06 3529.29 0.25 0.08 0.18 -1 -1 0.25 0.0283245 0.0246925 62 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 13.28 vpr 62.95 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30428 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 30 32 296 244 1 151 83 17 17 289 -1 unnamed_device 24.5 MiB 0.80 601 10163 2708 5873 1582 62.9 MiB 0.08 0.00 3.10776 -107.419 -3.10776 3.10776 0.68 0.000618254 0.000574921 0.0370486 0.0344865 46 1545 25 6.95648e+06 303989 828058. 2865.25 9.72 0.321302 0.275939 28066 200906 -1 1217 20 1164 1727 130235 38121 3.03987 3.03987 -109.31 -3.03987 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0247784 0.0216718 65 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 7.35 vpr 63.43 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30404 -1 -1 20 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 29 32 393 319 1 174 81 17 17 289 -1 unnamed_device 24.8 MiB 1.24 705 12856 4698 6070 2088 63.4 MiB 0.12 0.00 3.39446 -107.671 -3.39446 3.39446 0.68 0.000744683 0.000690741 0.0581135 0.0539501 48 2602 41 6.95648e+06 289514 865456. 2994.66 3.12 0.22579 0.196935 28354 207349 -1 1999 20 1647 2572 248506 54385 3.33447 3.33447 -120.651 -3.33447 0 0 1.05005e+06 3633.38 0.26 0.09 0.22 -1 -1 0.26 0.0293305 0.0256081 77 88 29 29 85 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 13.12 vpr 63.77 MiB 0.03 7004 -1 -1 1 0.03 -1 -1 30660 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65304 32 32 407 319 1 186 77 17 17 289 -1 unnamed_device 24.9 MiB 0.84 807 13117 5264 6347 1506 63.8 MiB 0.13 0.00 3.65689 -136.729 -3.65689 3.65689 0.65 0.000777952 0.000722481 0.0653681 0.0607189 40 2249 23 6.95648e+06 188184 706193. 2443.58 9.50 0.343898 0.298658 26914 176310 -1 1948 24 2181 2903 293446 60806 4.18386 4.18386 -152.298 -4.18386 0 0 926341. 3205.33 0.23 0.12 0.15 -1 -1 0.23 0.0375576 0.0328295 78 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 6.77 vpr 63.73 MiB 0.05 7120 -1 -1 1 0.05 -1 -1 30600 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65264 32 32 407 319 1 190 89 17 17 289 -1 unnamed_device 24.8 MiB 1.50 890 14345 5510 6931 1904 63.7 MiB 0.13 0.00 3.74419 -138.408 -3.74419 3.74419 0.66 0.000778559 0.000723486 0.0602509 0.0559962 48 2618 24 6.95648e+06 361892 865456. 2994.66 2.38 0.21599 0.189423 28354 207349 -1 2269 24 2131 3426 411588 77965 4.22156 4.22156 -150.364 -4.22156 0 0 1.05005e+06 3633.38 0.26 0.13 0.17 -1 -1 0.26 0.0354481 0.0308888 85 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 5.97 vpr 63.36 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30664 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 345 287 1 155 88 17 17 289 -1 unnamed_device 24.6 MiB 0.97 685 10813 4185 5763 865 63.4 MiB 0.10 0.00 3.05815 -117.015 -3.05815 3.05815 0.67 0.000718417 0.000659877 0.0415913 0.0386653 44 2023 47 6.95648e+06 347416 787024. 2723.27 2.26 0.201209 0.174623 27778 195446 -1 1664 21 1425 2142 188885 39124 3.17182 3.17182 -124.314 -3.17182 0 0 997811. 3452.63 0.25 0.08 0.19 -1 -1 0.25 0.0277721 0.0242484 69 65 32 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 7.12 vpr 63.51 MiB 0.02 7036 -1 -1 1 0.03 -1 -1 30600 -1 -1 10 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 31 32 353 302 1 147 73 17 17 289 -1 unnamed_device 24.6 MiB 1.38 684 10105 3894 4557 1654 63.5 MiB 0.09 0.00 3.30215 -110.841 -3.30215 3.30215 0.66 0.000677441 0.000628577 0.0473566 0.0439737 36 2232 46 6.95648e+06 144757 648988. 2245.63 3.15 0.20973 0.1824 26050 158493 -1 1847 21 1111 1754 173271 36291 3.39567 3.39567 -126.435 -3.39567 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0276674 0.0240916 59 90 0 0 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 14.27 vpr 63.47 MiB 0.04 7056 -1 -1 1 0.05 -1 -1 30384 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64992 30 32 374 297 1 178 84 17 17 289 -1 unnamed_device 24.6 MiB 0.69 949 12711 4087 6844 1780 63.5 MiB 0.12 0.00 3.1285 -115.995 -3.1285 3.1285 0.66 0.00072159 0.000669844 0.0527315 0.0489987 40 2353 22 6.95648e+06 318465 706193. 2443.58 10.83 0.343695 0.29713 26914 176310 -1 2192 23 1591 2349 228866 46264 3.38347 3.38347 -130.956 -3.38347 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0320439 0.027924 79 60 60 30 57 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 8.48 vpr 63.39 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64908 28 32 332 260 1 172 76 17 17 289 -1 unnamed_device 24.6 MiB 0.69 684 10156 4202 5354 600 63.4 MiB 0.09 0.00 4.24545 -126.653 -4.24545 4.24545 0.73 0.000662507 0.000615554 0.0445966 0.04149 38 2620 28 6.95648e+06 231611 678818. 2348.85 5.05 0.200077 0.174752 26626 170182 -1 1982 23 1760 2516 214792 46129 4.19156 4.19156 -140.406 -4.19156 0 0 902133. 3121.57 0.22 0.08 0.15 -1 -1 0.22 0.0295948 0.02581 74 34 84 28 28 28 +fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 6.40 vpr 63.30 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 30152 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 30 32 325 273 1 151 74 17 17 289 -1 unnamed_device 24.4 MiB 0.77 607 9374 3879 5147 348 63.3 MiB 0.08 0.00 3.0545 -108.859 -3.0545 3.0545 0.72 0.000646488 0.000600087 0.0415839 0.0386656 38 1982 33 6.95648e+06 173708 678818. 2348.85 2.94 0.182672 0.158582 26626 170182 -1 1483 23 1345 1781 161503 35879 3.07917 3.07917 -115.28 -3.07917 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0291518 0.0253729 61 63 30 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 6.99 vpr 63.47 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30452 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64992 32 32 361 308 1 152 74 17 17 289 -1 unnamed_device 24.6 MiB 1.22 777 7669 3175 4304 190 63.5 MiB 0.08 0.00 3.0765 -113.072 -3.0765 3.0765 0.66 0.000692012 0.000642604 0.037267 0.0346309 36 2390 29 6.95648e+06 144757 648988. 2245.63 3.16 0.186965 0.162546 26050 158493 -1 2034 23 1367 2186 205265 40568 3.08082 3.08082 -125.097 -3.08082 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0310339 0.0270316 60 91 0 0 91 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 16.97 vpr 63.10 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30496 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 24.5 MiB 0.19 795 9448 3333 4743 1372 63.1 MiB 0.09 0.00 3.89245 -136.332 -3.89245 3.89245 0.66 0.000691261 0.000642715 0.0365182 0.0339892 50 2553 48 6.95648e+06 361892 902133. 3121.57 14.06 0.333722 0.287327 28642 213929 -1 2114 23 1902 2897 353929 87715 4.19162 4.19162 -148.003 -4.19162 0 0 1.08113e+06 3740.92 0.26 0.11 0.17 -1 -1 0.26 0.0308642 0.0269922 86 4 124 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 21.30 vpr 63.50 MiB 0.02 7076 -1 -1 1 0.04 -1 -1 30580 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 407 319 1 189 91 17 17 289 -1 unnamed_device 24.6 MiB 1.27 926 10495 2590 6894 1011 63.5 MiB 0.11 0.00 3.78219 -140.482 -3.78219 3.78219 0.69 0.000773045 0.000717616 0.042985 0.0399217 40 2962 40 6.95648e+06 390843 706193. 2443.58 17.24 0.388125 0.334748 26914 176310 -1 2636 23 2167 3633 463776 91732 4.56126 4.56126 -163.581 -4.56126 0 0 926341. 3205.33 0.23 0.13 0.15 -1 -1 0.23 0.0339955 0.029662 86 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 8.12 vpr 63.72 MiB 0.02 7172 -1 -1 1 0.04 -1 -1 30368 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65252 32 32 407 319 1 187 90 17 17 289 -1 unnamed_device 24.8 MiB 1.53 831 9336 3198 4890 1248 63.7 MiB 0.09 0.00 3.70819 -135.715 -3.70819 3.70819 0.66 0.000777656 0.000721072 0.0389944 0.0361987 46 2950 33 6.95648e+06 376368 828058. 2865.25 3.85 0.206838 0.17993 28066 200906 -1 2143 23 1884 2994 286770 60092 4.20256 4.20256 -153.868 -4.20256 0 0 1.01997e+06 3529.29 0.25 0.11 0.17 -1 -1 0.25 0.0347155 0.0303553 85 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 7.67 vpr 63.58 MiB 0.05 7088 -1 -1 1 0.04 -1 -1 30500 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65108 32 32 399 315 1 188 91 17 17 289 -1 unnamed_device 24.7 MiB 1.02 822 13351 4683 6743 1925 63.6 MiB 0.13 0.00 3.75544 -130.593 -3.75544 3.75544 0.66 0.000772927 0.000714858 0.0540502 0.0502175 48 3144 32 6.95648e+06 390843 865456. 2994.66 3.72 0.219065 0.191265 28354 207349 -1 2216 23 1706 2809 331362 74094 4.23512 4.23512 -146.218 -4.23512 0 0 1.05005e+06 3633.38 0.28 0.12 0.19 -1 -1 0.28 0.0346366 0.0302909 86 65 60 30 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 5.41 vpr 62.98 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 30344 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 30 32 296 244 1 150 74 17 17 289 -1 unnamed_device 24.3 MiB 0.65 551 9064 3696 4990 378 63.0 MiB 0.08 0.00 3.29416 -111.889 -3.29416 3.29416 0.68 0.000622206 0.000578436 0.0385868 0.0359164 40 2106 28 6.95648e+06 173708 706193. 2443.58 2.03 0.166571 0.144956 26914 176310 -1 1742 21 1390 2079 215336 49601 3.29672 3.29672 -117.862 -3.29672 0 0 926341. 3205.33 0.23 0.08 0.16 -1 -1 0.23 0.0261525 0.0227576 62 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 6.81 vpr 63.54 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 30476 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65064 30 32 383 303 1 183 77 17 17 289 -1 unnamed_device 24.7 MiB 0.72 751 12465 5336 6622 507 63.5 MiB 0.12 0.00 4.015 -133.992 -4.015 4.015 0.66 0.000755864 0.000680262 0.0619023 0.0574829 40 2442 42 6.95648e+06 217135 706193. 2443.58 3.31 0.237494 0.207101 26914 176310 -1 2067 34 2814 3819 356731 77169 4.26826 4.26826 -149.469 -4.26826 0 0 926341. 3205.33 0.23 0.13 0.16 -1 -1 0.23 0.0448345 0.0388219 78 63 60 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 8.08 vpr 63.91 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 30832 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65444 32 32 469 381 1 190 95 17 17 289 -1 unnamed_device 25.1 MiB 1.43 807 14351 4061 7900 2390 63.9 MiB 0.13 0.00 3.71619 -135.355 -3.71619 3.71619 0.69 0.000858692 0.000797229 0.0605001 0.0561588 46 2908 40 6.95648e+06 448746 828058. 2865.25 3.78 0.249161 0.217249 28066 200906 -1 1939 23 2014 3030 235895 51059 3.82846 3.82846 -142.937 -3.82846 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0372937 0.032416 88 127 0 0 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 7.65 vpr 63.70 MiB 0.07 7192 -1 -1 1 0.03 -1 -1 30584 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65228 31 32 425 341 1 182 85 17 17 289 -1 unnamed_device 24.8 MiB 0.92 718 14035 5965 7479 591 63.7 MiB 0.13 0.00 3.9948 -135.983 -3.9948 3.9948 0.67 0.000773686 0.00071551 0.0638168 0.0592364 46 2454 32 6.95648e+06 318465 828058. 2865.25 3.83 0.235805 0.206275 28066 200906 -1 1765 20 1690 2511 178398 41934 3.85666 3.85666 -139.6 -3.85666 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0303671 0.0265644 81 94 31 31 93 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 7.06 vpr 63.68 MiB 0.04 7244 -1 -1 1 0.04 -1 -1 30556 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65212 30 32 404 328 1 173 80 17 17 289 -1 unnamed_device 24.8 MiB 1.42 700 13668 5834 7221 613 63.7 MiB 0.15 0.00 3.27591 -109.838 -3.27591 3.27591 0.66 0.000755956 0.00070101 0.0751212 0.0697989 46 2600 45 6.95648e+06 260562 828058. 2865.25 2.85 0.25841 0.226917 28066 200906 -1 1867 24 1570 2331 203675 46058 3.61317 3.61317 -127.439 -3.61317 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.034217 0.0297953 75 92 26 26 90 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 7.63 vpr 63.47 MiB 0.02 7056 -1 -1 1 0.04 -1 -1 30544 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64992 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 24.6 MiB 1.49 782 12628 3922 6830 1876 63.5 MiB 0.13 0.00 3.65989 -133.508 -3.65989 3.65989 0.57 0.000922507 0.000856314 0.0649009 0.0603194 48 2610 29 6.95648e+06 188184 865456. 2994.66 3.43 0.22429 0.197631 28354 207349 -1 2209 29 2479 4113 509037 117147 4.20256 4.20256 -156.074 -4.20256 0 0 1.05005e+06 3633.38 0.26 0.15 0.12 -1 -1 0.26 0.0412986 0.0359143 81 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 6.30 vpr 63.49 MiB 0.03 7136 -1 -1 1 0.03 -1 -1 30312 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 29 32 387 316 1 171 83 17 17 289 -1 unnamed_device 24.7 MiB 1.07 662 10163 3749 4795 1619 63.5 MiB 0.09 0.00 3.14182 -102.393 -3.14182 3.14182 0.65 0.000730764 0.000678505 0.0448402 0.0416658 48 1906 29 6.95648e+06 318465 865456. 2994.66 2.59 0.198782 0.173061 28354 207349 -1 1764 22 1731 2542 284729 82234 3.37557 3.37557 -115.85 -3.37557 0 0 1.05005e+06 3633.38 0.26 0.10 0.18 -1 -1 0.26 0.0310619 0.0270888 77 88 26 26 85 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 12.34 vpr 62.85 MiB 0.04 6776 -1 -1 1 0.03 -1 -1 30408 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64360 32 32 283 225 1 154 74 17 17 289 -1 unnamed_device 24.2 MiB 0.83 574 9219 3815 5040 364 62.9 MiB 0.08 0.00 2.94595 -112.182 -2.94595 2.94595 0.66 0.000622819 0.00057993 0.0393723 0.0367023 54 1709 44 6.95648e+06 144757 949917. 3286.91 8.76 0.340884 0.293818 29506 232905 -1 1314 20 1289 2001 164628 39075 3.22812 3.22812 -119.217 -3.22812 0 0 1.17392e+06 4061.99 0.28 0.08 0.20 -1 -1 0.28 0.0314778 0.0281022 61 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 8.99 vpr 63.57 MiB 0.04 7044 -1 -1 1 0.05 -1 -1 30528 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65100 32 32 407 319 1 187 88 17 17 289 -1 unnamed_device 24.7 MiB 3.20 749 15688 6578 8529 581 63.6 MiB 0.14 0.00 3.77419 -136.605 -3.77419 3.77419 0.66 0.00077828 0.000721461 0.0689048 0.0639232 54 2315 29 6.95648e+06 347416 949917. 3286.91 2.84 0.232743 0.204299 29506 232905 -1 1721 23 1883 2835 238613 53119 3.94276 3.94276 -141.903 -3.94276 0 0 1.17392e+06 4061.99 0.32 0.10 0.20 -1 -1 0.32 0.0345556 0.0302283 84 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 5.19 vpr 63.67 MiB 0.03 7068 -1 -1 1 0.03 -1 -1 30608 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65196 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 24.9 MiB 0.37 800 13117 5732 6986 399 63.7 MiB 0.13 0.00 3.79019 -142.199 -3.79019 3.79019 0.65 0.000776593 0.000720287 0.0635771 0.0588791 44 2724 46 6.95648e+06 188184 787024. 2723.27 2.11 0.246084 0.214538 27778 195446 -1 1926 21 2028 2743 207858 46404 4.38426 4.38426 -156.616 -4.38426 0 0 997811. 3452.63 0.29 0.09 0.16 -1 -1 0.29 0.0321258 0.0286356 81 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 5.91 vpr 63.16 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30576 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 315 267 1 152 75 17 17 289 -1 unnamed_device 24.3 MiB 1.03 575 11609 4562 5941 1106 63.2 MiB 0.10 0.00 3.25495 -109.238 -3.25495 3.25495 0.65 0.000636295 0.000591527 0.0498343 0.0463619 40 2213 38 6.95648e+06 159232 706193. 2443.58 2.16 0.190372 0.166014 26914 176310 -1 1731 21 1165 1685 157614 37483 3.97002 3.97002 -127.815 -3.97002 0 0 926341. 3205.33 0.23 0.07 0.18 -1 -1 0.23 0.027248 0.0238209 60 55 32 32 54 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 4.89 vpr 62.87 MiB 0.02 6860 -1 -1 1 0.03 -1 -1 30416 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 24.2 MiB 0.27 835 9529 3959 5371 199 62.9 MiB 0.08 0.00 3.0815 -119.168 -3.0815 3.0815 0.62 0.000600068 0.000558461 0.0391596 0.0364964 38 2078 34 6.95648e+06 159232 678818. 2348.85 2.05 0.172971 0.150865 26626 170182 -1 1828 19 1450 2046 180124 35435 3.13397 3.13397 -127.567 -3.13397 0 0 902133. 3121.57 0.25 0.09 0.14 -1 -1 0.25 0.0287636 0.025417 63 4 93 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 7.05 vpr 63.63 MiB 0.03 7080 -1 -1 1 0.04 -1 -1 30228 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65156 32 32 381 303 1 180 83 17 17 289 -1 unnamed_device 24.7 MiB 1.08 782 14483 5692 6794 1997 63.6 MiB 0.13 0.00 3.70334 -129.205 -3.70334 3.70334 0.68 0.000745533 0.000691208 0.0628421 0.0583984 38 2558 24 6.95648e+06 275038 678818. 2348.85 3.29 0.218849 0.191941 26626 170182 -1 2023 18 1506 2027 168922 35022 4.02841 4.02841 -142.044 -4.02841 0 0 902133. 3121.57 0.22 0.07 0.12 -1 -1 0.22 0.0276631 0.0243146 78 59 60 32 58 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 9.20 vpr 63.71 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 30324 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65240 32 32 406 330 1 182 82 17 17 289 -1 unnamed_device 24.9 MiB 0.73 793 11474 4768 6294 412 63.7 MiB 0.11 0.00 3.90986 -132.869 -3.90986 3.90986 0.66 0.000782064 0.000721097 0.0529644 0.0492692 40 2890 43 6.95648e+06 260562 706193. 2443.58 5.53 0.231613 0.202155 26914 176310 -1 2378 22 1806 2631 297663 70739 4.77112 4.77112 -159.623 -4.77112 0 0 926341. 3205.33 0.34 0.10 0.17 -1 -1 0.34 0.0290692 0.0257096 78 88 28 28 88 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 7.96 vpr 63.70 MiB 0.07 7084 -1 -1 1 0.04 -1 -1 30440 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65224 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 25.0 MiB 0.40 1152 4375 861 3334 180 63.7 MiB 0.06 0.00 4.48239 -161.071 -4.48239 4.48239 0.72 0.000791395 0.000734941 0.0199656 0.0186126 46 3119 32 6.95648e+06 390843 828058. 2865.25 4.65 0.199845 0.173553 28066 200906 -1 2686 20 2302 3571 331681 63786 5.04706 5.04706 -177.777 -5.04706 0 0 1.01997e+06 3529.29 0.26 0.11 0.18 -1 -1 0.26 0.0326318 0.028675 100 3 156 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 5.81 vpr 63.54 MiB 0.04 7072 -1 -1 1 0.04 -1 -1 30476 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65068 30 32 371 295 1 176 80 17 17 289 -1 unnamed_device 24.8 MiB 0.97 698 14528 6104 7488 936 63.5 MiB 0.13 0.00 3.34296 -113.702 -3.34296 3.34296 0.66 0.000717091 0.000666075 0.063989 0.0594953 44 2314 27 6.95648e+06 260562 787024. 2723.27 2.08 0.21557 0.188858 27778 195446 -1 1739 25 1741 2574 232387 49017 3.47552 3.47552 -123.196 -3.47552 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0338229 0.0294278 77 59 60 30 56 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 4.86 vpr 62.87 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30604 -1 -1 15 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 27 32 269 226 1 137 74 17 17 289 -1 unnamed_device 24.3 MiB 0.69 465 10459 4157 5359 943 62.9 MiB 0.08 0.00 3.15776 -95.8334 -3.15776 3.15776 0.67 0.000444349 0.00040769 0.0367995 0.0340578 38 1652 25 6.95648e+06 217135 678818. 2348.85 1.59 0.135008 0.117575 26626 170182 -1 1118 18 929 1153 85956 20126 2.85657 2.85657 -100.943 -2.85657 0 0 902133. 3121.57 0.23 0.05 0.13 -1 -1 0.23 0.0210303 0.0183744 57 34 54 27 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 7.12 vpr 63.88 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 30628 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65408 32 32 493 378 1 222 94 17 17 289 -1 unnamed_device 25.6 MiB 0.72 956 13513 4288 6425 2800 63.9 MiB 0.15 0.00 4.037 -139.704 -4.037 4.037 0.74 0.000960914 0.000882125 0.074344 0.0690592 54 3228 47 6.95648e+06 434271 949917. 3286.91 3.45 0.288561 0.251752 29506 232905 -1 2253 23 2386 4147 337264 71088 4.03337 4.03337 -146.914 -4.03337 0 0 1.17392e+06 4061.99 0.28 0.12 0.15 -1 -1 0.28 0.0407435 0.0354206 103 95 62 31 95 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 8.85 vpr 63.85 MiB 0.04 7160 -1 -1 1 0.03 -1 -1 30616 -1 -1 14 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65380 31 32 455 371 1 187 77 17 17 289 -1 unnamed_device 25.1 MiB 3.45 899 8716 2535 4990 1191 63.8 MiB 0.10 0.00 4.57784 -152.287 -4.57784 4.57784 0.66 0.00083435 0.000775614 0.048477 0.0451101 40 2620 26 6.95648e+06 202660 706193. 2443.58 2.54 0.215211 0.18713 26914 176310 -1 2414 20 1639 2476 265073 53355 5.06741 5.06741 -166.299 -5.06741 0 0 926341. 3205.33 0.33 0.09 0.18 -1 -1 0.33 0.0293448 0.0259072 79 124 0 0 124 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 7.98 vpr 63.32 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 30388 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 355 304 1 147 74 17 17 289 -1 unnamed_device 24.4 MiB 2.74 500 11389 4353 5738 1298 63.3 MiB 0.10 0.00 3.0346 -106.135 -3.0346 3.0346 0.67 0.000685998 0.000637011 0.0531175 0.0493546 42 2142 50 6.95648e+06 144757 744469. 2576.02 2.59 0.221529 0.192768 27202 183097 -1 1444 22 1244 1875 149405 38732 3.73087 3.73087 -121.3 -3.73087 0 0 949917. 3286.91 0.23 0.07 0.15 -1 -1 0.23 0.029 0.0252441 58 89 0 0 89 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 5.54 vpr 63.71 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30348 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65236 32 32 364 282 1 188 86 17 17 289 -1 unnamed_device 24.8 MiB 0.33 819 12938 5293 7361 284 63.7 MiB 0.12 0.00 4.12326 -140.658 -4.12326 4.12326 0.66 0.000824745 0.000755572 0.0479804 0.044275 46 2429 24 6.95648e+06 318465 828058. 2865.25 2.40 0.162775 0.142561 28066 200906 -1 1982 22 1868 2829 225669 47368 4.34512 4.34512 -150.237 -4.34512 0 0 1.01997e+06 3529.29 0.25 0.09 0.18 -1 -1 0.25 0.0312379 0.027321 83 34 90 30 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 6.24 vpr 63.81 MiB 0.05 7280 -1 -1 1 0.03 -1 -1 30708 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65340 31 32 443 336 1 210 86 17 17 289 -1 unnamed_device 25.0 MiB 0.83 852 12560 4728 5964 1868 63.8 MiB 0.12 0.00 4.1192 -140.393 -4.1192 4.1192 0.68 0.000851021 0.000790612 0.059641 0.0554474 44 3193 49 6.95648e+06 332941 787024. 2723.27 2.44 0.270564 0.23535 27778 195446 -1 2288 22 2028 2862 231745 48719 4.08962 4.08962 -146.319 -4.08962 0 0 997811. 3452.63 0.27 0.10 0.17 -1 -1 0.27 0.0361565 0.0314477 95 64 87 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 5.97 vpr 63.57 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30408 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 30 32 373 297 1 178 82 17 17 289 -1 unnamed_device 24.7 MiB 0.90 739 10762 4429 5782 551 63.6 MiB 0.10 0.00 3.27396 -108.751 -3.27396 3.27396 0.65 0.000727706 0.000676204 0.0461019 0.0428211 50 2308 30 6.95648e+06 289514 902133. 3121.57 2.33 0.195197 0.170237 28642 213929 -1 1813 22 1510 2423 194027 43283 3.23877 3.23877 -111.591 -3.23877 0 0 1.08113e+06 3740.92 0.27 0.09 0.15 -1 -1 0.27 0.0316708 0.0276653 78 61 58 30 58 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 6.40 vpr 63.73 MiB 0.03 7072 -1 -1 1 0.03 -1 -1 30444 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 407 319 1 193 98 17 17 289 -1 unnamed_device 25.0 MiB 0.50 907 15848 6161 8045 1642 63.7 MiB 0.13 0.00 3.79319 -139.401 -3.79319 3.79319 0.66 0.000779286 0.000722778 0.0579356 0.0537598 48 2368 36 6.95648e+06 492173 865456. 2994.66 3.06 0.232932 0.203765 28354 207349 -1 2088 22 2029 2932 368389 96046 4.20576 4.20576 -151.328 -4.20576 0 0 1.05005e+06 3633.38 0.35 0.08 0.18 -1 -1 0.35 0.0182665 0.0162122 91 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 6.83 vpr 63.52 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30608 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 405 318 1 192 95 17 17 289 -1 unnamed_device 24.9 MiB 0.51 794 15215 5485 7366 2364 63.5 MiB 0.13 0.00 3.05335 -116.88 -3.05335 3.05335 0.66 0.00077615 0.00071411 0.0572911 0.0529955 38 2664 32 6.95648e+06 448746 678818. 2348.85 3.61 0.220214 0.191983 26626 170182 -1 1981 23 1769 2415 213988 44975 3.15122 3.15122 -123.437 -3.15122 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0339131 0.0295389 90 65 63 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 7.41 vpr 62.78 MiB 0.04 6788 -1 -1 1 0.04 -1 -1 30432 -1 -1 13 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 29 32 287 238 1 136 74 17 17 289 -1 unnamed_device 24.2 MiB 3.31 577 8599 3570 4706 323 62.8 MiB 0.05 0.00 3.17976 -103.796 -3.17976 3.17976 0.69 0.000600538 0.000558018 0.0212484 0.0196412 34 1710 33 6.95648e+06 188184 618332. 2139.56 1.47 0.155108 0.133252 25762 151098 -1 1350 20 1094 1347 115459 25488 2.99907 2.99907 -111.333 -2.99907 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0226184 0.019919 56 34 58 29 29 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 5.42 vpr 63.32 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 30132 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 334 290 1 148 74 17 17 289 -1 unnamed_device 24.5 MiB 0.78 584 9839 4132 5456 251 63.3 MiB 0.09 0.00 2.9814 -102.92 -2.9814 2.9814 0.65 0.000657456 0.000610701 0.0446546 0.041499 42 1955 38 6.95648e+06 144757 744469. 2576.02 1.97 0.188135 0.163742 27202 183097 -1 1355 18 1059 1346 125015 28716 3.09482 3.09482 -106.044 -3.09482 0 0 949917. 3286.91 0.24 0.07 0.18 -1 -1 0.24 0.0251662 0.0220192 58 82 0 0 82 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 5.80 vpr 63.56 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30360 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 31 32 365 281 1 188 91 17 17 289 -1 unnamed_device 24.7 MiB 0.35 743 12331 4128 5906 2297 63.6 MiB 0.10 0.00 4.24545 -140.476 -4.24545 4.24545 0.65 0.000723478 0.000671986 0.0463322 0.0430797 52 2318 48 6.95648e+06 405319 926341. 3205.33 2.66 0.215962 0.187934 29218 227130 -1 1690 21 1722 2427 228255 49513 3.93522 3.93522 -142.121 -3.93522 0 0 1.14541e+06 3963.36 0.29 0.09 0.13 -1 -1 0.29 0.0305602 0.02668 86 34 93 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 6.33 vpr 62.86 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 30480 -1 -1 14 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 29 32 297 254 1 144 75 17 17 289 -1 unnamed_device 24.3 MiB 1.09 494 12399 5297 6440 662 62.9 MiB 0.12 0.00 3.26295 -100.502 -3.26295 3.26295 0.65 0.00061651 0.000573571 0.0618932 0.0575124 40 2019 35 6.95648e+06 202660 706193. 2443.58 2.49 0.196932 0.17265 26914 176310 -1 1572 22 1181 1659 161114 40293 3.72753 3.72753 -115.928 -3.72753 0 0 926341. 3205.33 0.25 0.08 0.15 -1 -1 0.25 0.0266303 0.0231931 59 56 29 29 52 26 +fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 6.65 vpr 62.88 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 30280 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 314 256 1 154 74 17 17 289 -1 unnamed_device 24.3 MiB 1.00 698 10149 3910 5225 1014 62.9 MiB 0.09 0.00 3.05815 -118.306 -3.05815 3.05815 0.66 0.000658698 0.000612929 0.044926 0.0417695 38 2191 39 6.95648e+06 144757 678818. 2348.85 2.99 0.179291 0.156211 26626 170182 -1 1683 21 1507 2099 216763 42531 3.06992 3.06992 -126.76 -3.06992 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0269985 0.0235395 61 34 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 10.42 vpr 63.61 MiB 0.05 7100 -1 -1 1 0.04 -1 -1 30392 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65136 31 32 387 307 1 181 87 17 17 289 -1 unnamed_device 25.0 MiB 0.95 717 11607 3761 5813 2033 63.6 MiB 0.11 0.00 3.1175 -113.433 -3.1175 3.1175 0.66 0.000749416 0.000695965 0.0489661 0.0454743 40 2046 32 6.95648e+06 347416 706193. 2443.58 6.64 0.355485 0.306873 26914 176310 -1 1703 21 1731 2236 195586 47682 3.41277 3.41277 -124.646 -3.41277 0 0 926341. 3205.33 0.25 0.09 0.17 -1 -1 0.25 0.0312178 0.0273329 82 64 58 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 7.48 vpr 63.02 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30352 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64536 31 32 308 262 1 143 74 17 17 289 -1 unnamed_device 24.3 MiB 2.06 682 10459 3058 6921 480 63.0 MiB 0.10 0.00 3.13575 -104.344 -3.13575 3.13575 0.66 0.000659561 0.000614985 0.04815 0.0448486 36 1970 40 6.95648e+06 159232 648988. 2245.63 2.69 0.188081 0.163936 26050 158493 -1 1710 23 1139 1687 158222 32786 3.00882 3.00882 -113.396 -3.00882 0 0 828058. 2865.25 0.27 0.07 0.14 -1 -1 0.27 0.0277792 0.0241797 57 55 31 31 53 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 6.54 vpr 63.54 MiB 0.03 7040 -1 -1 1 0.03 -1 -1 30412 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 383 307 1 176 83 17 17 289 -1 unnamed_device 24.7 MiB 1.41 710 12323 5117 6727 479 63.5 MiB 0.11 0.00 3.0155 -107.222 -3.0155 3.0155 0.71 0.000739018 0.000686485 0.053241 0.0494478 48 2125 29 6.95648e+06 275038 865456. 2994.66 2.29 0.206655 0.18079 28354 207349 -1 1740 21 1379 2041 173501 38582 3.37187 3.37187 -116.913 -3.37187 0 0 1.05005e+06 3633.38 0.26 0.08 0.17 -1 -1 0.26 0.0306844 0.0268187 76 65 52 26 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 6.57 vpr 63.74 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30416 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65272 31 32 422 339 1 187 88 17 17 289 -1 unnamed_device 25.1 MiB 1.36 717 15298 5325 7460 2513 63.7 MiB 0.14 0.00 3.41641 -118.296 -3.41641 3.41641 0.65 0.00115133 0.0010924 0.0650913 0.0604416 44 2443 41 6.95648e+06 361892 787024. 2723.27 2.29 0.242246 0.211684 27778 195446 -1 1785 21 1733 2379 191405 42172 3.26427 3.26427 -126.623 -3.26427 0 0 997811. 3452.63 0.26 0.09 0.18 -1 -1 0.26 0.0328698 0.0285708 85 93 31 31 92 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 5.29 vpr 63.25 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30348 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 333 279 1 154 74 17 17 289 -1 unnamed_device 24.3 MiB 0.78 564 10149 3066 5426 1657 63.3 MiB 0.10 0.00 2.9023 -103.177 -2.9023 2.9023 0.65 0.000664899 0.000617401 0.0489119 0.0455236 44 2002 28 6.95648e+06 144757 787024. 2723.27 1.82 0.182272 0.159285 27778 195446 -1 1411 23 1300 1937 149740 33462 3.22642 3.22642 -111.618 -3.22642 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0308609 0.0268999 61 61 32 32 60 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 5.89 vpr 63.18 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 30060 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 32 32 339 283 1 158 74 17 17 289 -1 unnamed_device 24.3 MiB 1.01 611 8289 3413 4626 250 63.2 MiB 0.08 0.00 3.0515 -113.367 -3.0515 3.0515 0.66 0.000686792 0.000638598 0.0395605 0.0368441 52 1978 31 6.95648e+06 144757 926341. 3205.33 2.11 0.185806 0.161943 29218 227130 -1 1356 21 1396 2136 148834 36358 2.87537 2.87537 -112.033 -2.87537 0 0 1.14541e+06 3963.36 0.29 0.08 0.19 -1 -1 0.29 0.0298204 0.0262716 63 63 32 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 7.00 vpr 63.62 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30668 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65144 32 32 407 319 1 190 93 17 17 289 -1 unnamed_device 24.7 MiB 0.86 951 8283 1857 5834 592 63.6 MiB 0.09 0.00 3.78219 -143.123 -3.78219 3.78219 0.66 0.000785399 0.000729796 0.0333155 0.0309581 40 2477 25 6.95648e+06 419795 706193. 2443.58 3.39 0.199641 0.173447 26914 176310 -1 2302 28 2524 3706 414716 99584 4.11646 4.11646 -160.983 -4.11646 0 0 926341. 3205.33 0.23 0.14 0.16 -1 -1 0.23 0.039667 0.0345172 88 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 7.61 vpr 63.36 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30520 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 29 32 367 293 1 175 80 17 17 289 -1 unnamed_device 24.8 MiB 0.90 739 8336 2662 4258 1416 63.4 MiB 0.08 0.00 3.1065 -104.923 -3.1065 3.1065 0.66 0.000708359 0.000658345 0.0369582 0.0343852 38 2387 48 6.95648e+06 275038 678818. 2348.85 4.03 0.209509 0.181675 26626 170182 -1 1562 20 1492 2155 111110 30563 3.16697 3.16697 -113.104 -3.16697 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0294082 0.0257591 77 62 56 29 58 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 9.46 vpr 63.88 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 30796 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65412 32 32 469 381 1 192 93 17 17 289 -1 unnamed_device 25.1 MiB 1.52 819 16473 6066 7302 3105 63.9 MiB 0.14 0.00 3.81039 -138.347 -3.81039 3.81039 0.69 0.000867384 0.000804792 0.0716372 0.0664977 48 2605 47 6.95648e+06 419795 865456. 2994.66 4.95 0.284041 0.248003 28354 207349 -1 2211 29 2363 3592 414996 105744 4.94336 4.94336 -163.958 -4.94336 0 0 1.05005e+06 3633.38 0.27 0.15 0.19 -1 -1 0.27 0.0461677 0.0397452 89 127 0 0 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 6.15 vpr 62.79 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30360 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 31 32 259 212 1 144 74 17 17 289 -1 unnamed_device 24.2 MiB 1.27 588 9529 3953 5280 296 62.8 MiB 0.08 0.00 3.02776 -101.68 -3.02776 3.02776 0.69 0.00057124 0.000540393 0.03761 0.0350133 38 2072 26 6.95648e+06 159232 678818. 2348.85 2.21 0.153644 0.133896 26626 170182 -1 1448 23 1135 1733 146308 32974 3.17932 3.17932 -111.193 -3.17932 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0330821 0.0288432 58 4 85 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 6.77 vpr 63.91 MiB 0.06 7036 -1 -1 1 0.04 -1 -1 30380 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65444 32 32 418 338 1 182 87 17 17 289 -1 unnamed_device 25.0 MiB 0.90 751 13335 4844 6817 1674 63.9 MiB 0.12 0.00 3.74945 -128.098 -3.74945 3.74945 0.66 0.000788405 0.000730991 0.0567411 0.0524797 50 2285 32 6.95648e+06 332941 902133. 3121.57 3.04 0.222384 0.194103 28642 213929 -1 1644 22 1608 2085 170164 38147 3.77646 3.77646 -133.884 -3.77646 0 0 1.08113e+06 3740.92 0.26 0.08 0.18 -1 -1 0.26 0.0332403 0.0290069 81 92 28 28 92 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 8.28 vpr 63.29 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30172 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 24.6 MiB 2.75 613 11854 5235 6332 287 63.3 MiB 0.10 0.00 2.96105 -113.67 -2.96105 2.96105 0.66 0.000546313 0.000499437 0.056373 0.0522847 40 2066 46 6.95648e+06 144757 706193. 2443.58 2.80 0.225997 0.196887 26914 176310 -1 1732 25 1774 2512 267918 59105 3.24392 3.24392 -134.119 -3.24392 0 0 926341. 3205.33 0.23 0.10 0.18 -1 -1 0.23 0.0318516 0.0277945 61 96 0 0 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 5.86 vpr 63.64 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30340 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 32 32 401 316 1 188 88 17 17 289 -1 unnamed_device 24.7 MiB 1.03 784 11983 4223 5778 1982 63.6 MiB 0.11 0.00 3.13882 -116.487 -3.13882 3.13882 0.66 0.000772501 0.000716438 0.050022 0.0464075 48 2212 28 6.95648e+06 347416 865456. 2994.66 1.98 0.21085 0.183953 28354 207349 -1 1847 22 1492 2187 198389 43553 3.51907 3.51907 -127.302 -3.51907 0 0 1.05005e+06 3633.38 0.26 0.09 0.19 -1 -1 0.26 0.0337236 0.0294333 84 65 61 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 8.98 vpr 63.69 MiB 0.03 7352 -1 -1 1 0.04 -1 -1 30952 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65220 32 32 500 382 1 222 97 17 17 289 -1 unnamed_device 25.3 MiB 1.29 961 18301 6218 9454 2629 63.7 MiB 0.17 0.00 4.52824 -160.34 -4.52824 4.52824 0.67 0.000919043 0.000852124 0.0791877 0.0735032 46 3150 41 6.95648e+06 477698 828058. 2865.25 4.69 0.292937 0.256451 28066 200906 -1 2357 21 2592 3973 314953 65840 5.13481 5.13481 -176.525 -5.13481 0 0 1.01997e+06 3529.29 0.26 0.13 0.17 -1 -1 0.26 0.0390305 0.0337889 104 96 64 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 5.01 vpr 62.56 MiB 0.02 6772 -1 -1 1 0.02 -1 -1 30304 -1 -1 10 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 30 32 246 229 1 117 72 17 17 289 -1 unnamed_device 24.0 MiB 0.43 395 8267 2975 4043 1249 62.6 MiB 0.07 0.00 2.20646 -76.6701 -2.20646 2.20646 0.67 0.000636996 0.000592323 0.0362019 0.0336536 38 1289 46 6.95648e+06 144757 678818. 2348.85 2.06 0.159408 0.137956 26626 170182 -1 760 22 604 724 45863 12408 2.06653 2.06653 -75.5464 -2.06653 0 0 902133. 3121.57 0.22 0.05 0.15 -1 -1 0.22 0.0224677 0.0194797 45 56 0 0 53 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 5.87 vpr 62.81 MiB 0.02 6864 -1 -1 1 0.03 -1 -1 30436 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 30 32 296 244 1 141 74 17 17 289 -1 unnamed_device 24.2 MiB 1.61 505 9994 3801 4923 1270 62.8 MiB 0.08 0.00 3.20866 -106.336 -3.20866 3.20866 0.66 0.000616985 0.000574089 0.0419172 0.0390189 40 1597 24 6.95648e+06 173708 706193. 2443.58 1.65 0.166391 0.144988 26914 176310 -1 1482 24 1267 1801 177650 41470 3.16992 3.16992 -117.471 -3.16992 0 0 926341. 3205.33 0.23 0.05 0.15 -1 -1 0.23 0.0156791 0.013824 58 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 5.06 vpr 63.39 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 30100 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 32 32 314 256 1 161 74 17 17 289 -1 unnamed_device 24.5 MiB 0.23 594 9219 3126 4706 1387 63.4 MiB 0.09 0.00 2.93285 -111.664 -2.93285 2.93285 0.68 0.000648819 0.000602602 0.0442474 0.0411938 52 1888 25 6.95648e+06 144757 926341. 3205.33 2.02 0.176272 0.154075 29218 227130 -1 1386 24 1519 2482 184245 42369 2.98192 2.98192 -110.606 -2.98192 0 0 1.14541e+06 3963.36 0.28 0.09 0.20 -1 -1 0.28 0.0302459 0.0263813 65 34 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 10.04 vpr 62.70 MiB 0.07 6976 -1 -1 1 0.03 -1 -1 30472 -1 -1 15 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 25 32 251 214 1 132 72 17 17 289 -1 unnamed_device 24.2 MiB 0.49 415 9310 3976 4598 736 62.7 MiB 0.08 0.00 3.24096 -89.6096 -3.24096 3.24096 0.68 0.000630908 0.000587555 0.0406688 0.0378903 40 1641 47 6.95648e+06 217135 706193. 2443.58 6.79 0.290968 0.249137 26914 176310 -1 1286 21 1168 1563 123902 30269 3.09002 3.09002 -98.7354 -3.09002 0 0 926341. 3205.33 0.24 0.06 0.16 -1 -1 0.24 0.0227539 0.0198202 56 34 50 25 25 25 +fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 7.74 vpr 63.91 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30660 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65440 32 32 432 346 1 185 77 17 17 289 -1 unnamed_device 25.2 MiB 1.05 849 10835 4559 6029 247 63.9 MiB 0.11 0.00 3.79924 -134.385 -3.79924 3.79924 0.57 0.00080774 0.000748651 0.0564517 0.0523913 44 3443 36 6.95648e+06 188184 787024. 2723.27 3.99 0.232864 0.202839 27778 195446 -1 2587 23 2101 3728 353454 70858 4.30096 4.30096 -155.876 -4.30096 0 0 997811. 3452.63 0.25 0.12 0.17 -1 -1 0.25 0.0356805 0.0310493 77 94 32 32 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 6.30 vpr 63.66 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30336 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65184 31 32 421 339 1 185 92 17 17 289 -1 unnamed_device 25.0 MiB 0.87 742 12512 4241 5927 2344 63.7 MiB 0.13 0.00 3.1116 -112.527 -3.1116 3.1116 0.74 0.000781147 0.000724011 0.0582048 0.0539414 40 2297 45 6.95648e+06 419795 706193. 2443.58 2.57 0.243824 0.212495 26914 176310 -1 1941 28 2068 2793 280657 72615 3.75867 3.75867 -130.319 -3.75867 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0402471 0.0349383 87 94 29 29 93 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 5.80 vpr 63.40 MiB 0.02 7136 -1 -1 1 0.04 -1 -1 30600 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 438 350 1 287 86 17 17 289 -1 unnamed_device 24.8 MiB 0.57 1062 15584 5717 7278 2589 63.4 MiB 0.15 0.00 4.46104 -158.567 -4.46104 4.46104 0.66 0.00081645 0.000758503 0.0707713 0.0656883 50 2979 31 6.99608e+06 323745 902133. 3121.57 2.38 0.242973 0.212833 28642 213929 -1 2414 20 2288 2663 207633 47342 4.73741 4.73741 -164.061 -4.73741 0 0 1.08113e+06 3740.92 0.30 0.09 0.22 -1 -1 0.30 0.0331302 0.0291028 130 96 32 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 6.69 vpr 63.59 MiB 0.03 7080 -1 -1 1 0.03 -1 -1 30652 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65120 30 32 409 330 1 259 82 17 17 289 -1 unnamed_device 24.9 MiB 1.29 1018 13610 5732 7207 671 63.6 MiB 0.13 0.00 4.50158 -148.332 -4.50158 4.50158 0.65 0.000761825 0.000706997 0.0612353 0.0568528 54 3118 36 6.99608e+06 294314 949917. 3286.91 2.47 0.228463 0.199738 29506 232905 -1 2490 20 2237 3073 302816 64698 4.48179 4.48179 -155.541 -4.48179 0 0 1.17392e+06 4061.99 0.29 0.10 0.21 -1 -1 0.29 0.0313994 0.0275342 117 91 30 30 89 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 17.49 vpr 63.60 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30448 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 387 309 1 241 82 17 17 289 -1 unnamed_device 24.8 MiB 0.88 1040 13610 5701 7488 421 63.6 MiB 0.13 0.00 3.59279 -128.627 -3.59279 3.59279 0.65 0.000760172 0.000707191 0.060149 0.055907 40 3318 43 6.99608e+06 264882 706193. 2443.58 13.89 0.370632 0.320814 26914 176310 -1 2702 23 2033 2424 265080 55517 4.25296 4.25296 -147.611 -4.25296 0 0 926341. 3205.33 0.23 0.10 0.16 -1 -1 0.23 0.0329514 0.028739 106 65 54 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 6.35 vpr 63.05 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30496 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 29 32 343 267 1 201 79 17 17 289 -1 unnamed_device 24.5 MiB 0.66 806 14444 6101 7602 741 63.0 MiB 0.13 0.00 3.79615 -125.537 -3.79615 3.79615 0.68 0.000686037 0.00063742 0.0615305 0.0572096 40 2767 26 6.99608e+06 264882 706193. 2443.58 2.89 0.201639 0.176899 26914 176310 -1 2235 22 1992 2849 249231 55744 4.15242 4.15242 -143.1 -4.15242 0 0 926341. 3205.33 0.23 0.09 0.16 -1 -1 0.23 0.0296071 0.0258638 89 34 87 29 29 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 6.26 vpr 63.38 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 30464 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 376 288 1 218 79 17 17 289 -1 unnamed_device 24.5 MiB 0.52 871 12416 4669 6393 1354 63.4 MiB 0.13 0.00 4.27644 -154.345 -4.27644 4.27644 0.67 0.000744166 0.000691222 0.0594412 0.0552183 56 2565 50 6.99608e+06 220735 973134. 3367.25 2.76 0.245215 0.214568 29794 239141 -1 2053 25 2260 3506 286872 67371 4.38345 4.38345 -157.873 -4.38345 0 0 1.19926e+06 4149.71 0.30 0.12 0.20 -1 -1 0.30 0.0366584 0.0321185 93 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 5.97 vpr 63.56 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30404 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65084 32 32 402 316 1 251 94 17 17 289 -1 unnamed_device 24.9 MiB 0.52 1298 16069 5589 8587 1893 63.6 MiB 0.16 0.00 3.60699 -134.626 -3.60699 3.60699 0.68 0.0007667 0.000711394 0.0640642 0.0594511 48 3162 26 6.99608e+06 441471 865456. 2994.66 2.49 0.218217 0.191072 28354 207349 -1 2763 22 2298 3403 319916 62256 3.60331 3.60331 -146.09 -3.60331 0 0 1.05005e+06 3633.38 0.27 0.11 0.19 -1 -1 0.27 0.0342925 0.0299545 117 64 63 32 63 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 5.79 vpr 62.67 MiB 0.03 6904 -1 -1 1 0.03 -1 -1 30592 -1 -1 15 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 27 32 269 226 1 158 74 17 17 289 -1 unnamed_device 24.0 MiB 1.22 620 8289 3348 4414 527 62.7 MiB 0.08 0.00 3.30124 -103.988 -3.30124 3.30124 0.65 0.000677317 0.00063024 0.0365495 0.034047 44 2016 40 6.99608e+06 220735 787024. 2723.27 1.94 0.166544 0.144341 27778 195446 -1 1528 22 1341 2008 175259 38522 3.21151 3.21151 -108.573 -3.21151 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.0248881 0.0216495 68 34 54 27 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 7.52 vpr 63.15 MiB 0.04 7028 -1 -1 1 0.03 -1 -1 30188 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 24.5 MiB 0.45 708 9368 3795 5080 493 63.1 MiB 0.08 0.00 2.88485 -101.173 -2.88485 2.88485 0.66 0.00066735 0.000620804 0.0392732 0.0365734 46 2433 35 6.99608e+06 250167 828058. 2865.25 4.21 0.190732 0.166437 28066 200906 -1 1798 28 1488 2245 321562 127971 3.33652 3.33652 -116.083 -3.33652 0 0 1.01997e+06 3529.29 0.26 0.12 0.18 -1 -1 0.26 0.0350692 0.0304863 77 4 115 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 8.00 vpr 63.18 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30192 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 31 32 338 292 1 222 78 17 17 289 -1 unnamed_device 24.5 MiB 2.66 865 11366 4429 5807 1130 63.2 MiB 0.11 0.00 3.3156 -116.953 -3.3156 3.3156 0.66 0.000665616 0.000618279 0.0496394 0.046157 44 2856 40 6.99608e+06 220735 787024. 2723.27 2.60 0.201046 0.175342 27778 195446 -1 1899 23 1691 2097 177067 40063 3.36181 3.36181 -123.617 -3.36181 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0311239 0.0271082 96 85 0 0 84 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 5.58 vpr 63.11 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30352 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64624 32 32 314 256 1 187 77 17 17 289 -1 unnamed_device 24.1 MiB 0.67 668 10346 4043 5155 1148 63.1 MiB 0.10 0.00 3.58059 -133.895 -3.58059 3.58059 0.66 0.000646155 0.000601029 0.0437576 0.0407396 46 2113 26 6.99608e+06 191304 828058. 2865.25 2.01 0.167608 0.14679 28066 200906 -1 1655 23 1613 2045 146762 33269 3.34956 3.34956 -132.574 -3.34956 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0295843 0.0259148 79 34 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 8.42 vpr 63.14 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 30216 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 30 32 325 273 1 199 77 17 17 289 -1 unnamed_device 24.4 MiB 2.22 858 10835 4264 5113 1458 63.1 MiB 0.10 0.00 3.85932 -133.017 -3.85932 3.85932 0.65 0.000649061 0.000603224 0.0466001 0.0433166 38 2753 35 6.99608e+06 220735 678818. 2348.85 3.54 0.193055 0.168216 26626 170182 -1 2153 22 1904 2554 252247 54303 3.751 3.751 -138.14 -3.751 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0284136 0.0247374 88 63 30 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 7.00 vpr 63.24 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30476 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 331 280 1 210 78 17 17 289 -1 unnamed_device 24.5 MiB 0.72 1078 12030 4277 6214 1539 63.2 MiB 0.11 0.00 3.0712 -121.401 -3.0712 3.0712 0.61 0.000658693 0.00061202 0.0505284 0.0469848 38 2768 42 6.99608e+06 206020 678818. 2348.85 3.64 0.20739 0.181113 26626 170182 -1 2283 24 1587 1715 164574 32948 3.19827 3.19827 -125.574 -3.19827 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0303149 0.0263846 91 65 25 25 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 6.15 vpr 63.55 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 386 305 1 231 80 17 17 289 -1 unnamed_device 24.8 MiB 0.84 883 7132 1837 4428 867 63.5 MiB 0.08 0.00 3.50359 -126.552 -3.50359 3.50359 0.66 0.00074917 0.000695745 0.0341931 0.0318067 50 2388 31 6.99608e+06 235451 902133. 3121.57 2.57 0.196004 0.170519 28642 213929 -1 1746 24 1959 2630 200378 46686 3.64846 3.64846 -125.255 -3.64846 0 0 1.08113e+06 3740.92 0.27 0.09 0.15 -1 -1 0.27 0.0345373 0.0301544 101 58 64 32 57 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 7.04 vpr 63.77 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30552 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65300 32 32 407 319 1 254 83 17 17 289 -1 unnamed_device 25.1 MiB 0.80 1134 14123 4441 7724 1958 63.8 MiB 0.13 0.00 4.28564 -153.93 -4.28564 4.28564 0.66 0.000783937 0.000728008 0.0644521 0.0598661 48 3127 38 6.99608e+06 279598 865456. 2994.66 3.31 0.241495 0.211441 28354 207349 -1 2345 25 2734 3553 297546 70688 4.56491 4.56491 -166.853 -4.56491 0 0 1.05005e+06 3633.38 0.26 0.12 0.18 -1 -1 0.26 0.0386137 0.0337423 112 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 7.88 vpr 62.78 MiB 0.05 6804 -1 -1 1 0.03 -1 -1 30648 -1 -1 14 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 29 32 272 228 1 161 75 17 17 289 -1 unnamed_device 24.2 MiB 2.12 572 11293 4723 5996 574 62.8 MiB 0.09 0.00 2.92195 -96.6009 -2.92195 2.92195 0.66 0.000575224 0.000534833 0.0429313 0.0399596 40 1775 30 6.99608e+06 206020 706193. 2443.58 3.20 0.170613 0.14835 26914 176310 -1 1445 21 1232 1686 125058 31534 2.95752 2.95752 -107.998 -2.95752 0 0 926341. 3205.33 0.23 0.07 0.10 -1 -1 0.23 0.0248046 0.0216046 67 29 58 29 24 24 +fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 6.62 vpr 63.60 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30584 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65124 32 32 401 315 1 243 80 17 17 289 -1 unnamed_device 24.8 MiB 1.83 1040 13324 4763 6768 1793 63.6 MiB 0.08 0.00 3.68279 -132.173 -3.68279 3.68279 0.67 0.000406344 0.000373317 0.0316411 0.0291207 50 2876 28 6.99608e+06 235451 902133. 3121.57 2.02 0.180162 0.156062 28642 213929 -1 2434 24 2647 3804 328738 70961 3.83971 3.83971 -145.654 -3.83971 0 0 1.08113e+06 3740.92 0.27 0.14 0.18 -1 -1 0.27 0.0478658 0.0426089 106 63 64 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 7.37 vpr 63.41 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30464 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 383 303 1 230 81 17 17 289 -1 unnamed_device 24.9 MiB 1.15 1122 6731 1649 4394 688 63.4 MiB 0.08 0.00 3.32994 -131.897 -3.32994 3.32994 0.66 0.00073941 0.000686582 0.0317383 0.029521 38 3062 22 6.99608e+06 250167 678818. 2348.85 3.39 0.182341 0.158497 26626 170182 -1 2557 20 2046 2556 210300 43417 3.27522 3.27522 -135.878 -3.27522 0 0 902133. 3121.57 0.23 0.09 0.16 -1 -1 0.23 0.0297174 0.0259998 99 57 64 32 56 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 5.46 vpr 63.30 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30088 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 339 284 1 218 78 17 17 289 -1 unnamed_device 24.4 MiB 0.70 871 13856 5887 7726 243 63.3 MiB 0.13 0.00 3.39034 -128.572 -3.39034 3.39034 0.65 0.000680821 0.000632571 0.0593126 0.0551658 44 3195 31 6.99608e+06 206020 787024. 2723.27 2.01 0.203122 0.177999 27778 195446 -1 2091 20 1669 2002 170304 37140 3.36881 3.36881 -131.01 -3.36881 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0278798 0.0244046 91 65 29 29 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 6.38 vpr 62.42 MiB 0.04 6740 -1 -1 1 0.03 -1 -1 30132 -1 -1 11 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63920 30 32 226 208 1 139 73 17 17 289 -1 unnamed_device 23.8 MiB 2.09 536 9041 3932 4796 313 62.4 MiB 0.04 0.00 2.34646 -88.6787 -2.34646 2.34646 0.63 0.000224508 0.000206402 0.0147198 0.0135595 36 1652 38 6.99608e+06 161872 648988. 2245.63 1.79 0.127571 0.109242 26050 158493 -1 1211 20 836 912 81742 18817 2.22853 2.22853 -89.8483 -2.22853 0 0 828058. 2865.25 0.21 0.05 0.17 -1 -1 0.21 0.0202662 0.017624 56 34 24 24 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 6.87 vpr 63.20 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30556 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 31 32 335 280 1 209 78 17 17 289 -1 unnamed_device 24.4 MiB 2.08 1018 11532 3380 6660 1492 63.2 MiB 0.10 0.00 3.58639 -133.629 -3.58639 3.58639 0.66 0.000666235 0.00061958 0.0482517 0.044876 40 2527 22 6.99608e+06 220735 706193. 2443.58 2.08 0.178475 0.156058 26914 176310 -1 2356 21 1788 2150 225320 45019 3.81471 3.81471 -150.75 -3.81471 0 0 926341. 3205.33 0.23 0.09 0.16 -1 -1 0.23 0.0276308 0.0241249 91 64 31 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 5.32 vpr 63.42 MiB 0.02 7044 -1 -1 1 0.05 -1 -1 30348 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64944 32 32 366 283 1 215 87 17 17 289 -1 unnamed_device 24.6 MiB 0.43 1089 12759 4547 6573 1639 63.4 MiB 0.11 0.00 4.04748 -146.851 -4.04748 4.04748 0.68 0.000724068 0.000672777 0.0513131 0.0476978 46 2738 33 6.99608e+06 338461 828058. 2865.25 2.10 0.204908 0.179098 28066 200906 -1 2256 22 2098 2885 238097 47894 4.0266 4.0266 -153.918 -4.0266 0 0 1.01997e+06 3529.29 0.26 0.10 0.18 -1 -1 0.26 0.0334569 0.0293014 97 34 91 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 6.41 vpr 63.62 MiB 0.04 7216 -1 -1 1 0.03 -1 -1 31008 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65148 32 32 460 375 1 303 86 17 17 289 -1 unnamed_device 25.3 MiB 1.15 1280 15206 4884 7262 3060 63.6 MiB 0.15 0.00 4.01908 -141.768 -4.01908 4.01908 0.65 0.000842705 0.000783788 0.0713301 0.0663243 46 3184 26 6.99608e+06 323745 828058. 2865.25 2.41 0.242815 0.212535 28066 200906 -1 2526 22 2398 2713 201663 43588 3.94241 3.94241 -141.818 -3.94241 0 0 1.01997e+06 3529.29 0.25 0.11 0.17 -1 -1 0.25 0.0417096 0.0362386 138 124 0 0 125 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 5.74 vpr 62.41 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30628 -1 -1 15 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 26 32 198 186 1 125 73 17 17 289 -1 unnamed_device 23.9 MiB 0.70 401 7217 2934 3827 456 62.4 MiB 0.05 0.00 2.7074 -79.2163 -2.7074 2.7074 0.69 0.000441244 0.000410075 0.0224926 0.0209252 36 1603 35 6.99608e+06 220735 648988. 2245.63 2.45 0.119014 0.102823 26050 158493 -1 1013 16 689 801 67846 17332 2.54267 2.54267 -85.1036 -2.54267 0 0 828058. 2865.25 0.21 0.04 0.14 -1 -1 0.21 0.0154127 0.0135239 52 30 26 26 22 22 +fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 5.69 vpr 63.12 MiB 0.05 6852 -1 -1 1 0.03 -1 -1 30208 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 333 251 1 181 76 17 17 289 -1 unnamed_device 24.5 MiB 0.77 698 9036 3669 4978 389 63.1 MiB 0.12 0.00 3.97238 -133.231 -3.97238 3.97238 0.68 0.000688351 0.000639785 0.0634912 0.0591259 62 1908 21 6.99608e+06 176588 1.05005e+06 3633.38 1.96 0.198255 0.174522 30946 263737 -1 1546 22 1313 2069 150685 35340 3.89902 3.89902 -133.735 -3.89902 0 0 1.30136e+06 4502.97 0.31 0.08 0.23 -1 -1 0.31 0.0360682 0.0319935 75 3 122 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 4.11 vpr 62.21 MiB 0.02 6652 -1 -1 1 0.04 -1 -1 30352 -1 -1 8 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63700 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 23.7 MiB 0.23 736 9906 3603 5031 1272 62.2 MiB 0.07 0.00 2.06111 -84.6894 -2.06111 2.06111 0.67 0.000475922 0.00044278 0.0327309 0.0304482 34 1682 40 6.99608e+06 117725 618332. 2139.56 1.39 0.119201 0.104252 25762 151098 -1 1493 23 837 1076 106858 21102 1.81982 1.81982 -87.513 -1.81982 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0209472 0.0183284 44 3 53 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 6.48 vpr 63.72 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 30536 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65252 32 32 376 288 1 218 81 17 17 289 -1 unnamed_device 24.9 MiB 1.13 836 12681 5269 6945 467 63.7 MiB 0.12 0.00 3.87925 -141.78 -3.87925 3.87925 0.66 0.000739996 0.000687363 0.0563669 0.0524048 44 3391 42 6.99608e+06 250167 787024. 2723.27 2.46 0.230536 0.202045 27778 195446 -1 2342 23 2151 3014 258962 56183 4.31072 4.31072 -159.795 -4.31072 0 0 997811. 3452.63 0.25 0.10 0.17 -1 -1 0.25 0.0329114 0.0287859 95 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 4.88 vpr 63.33 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30152 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 24.5 MiB 0.26 1064 14375 4737 7721 1917 63.3 MiB 0.11 0.00 2.93295 -116.62 -2.93295 2.93295 0.65 0.00069251 0.000642787 0.0506511 0.0470429 40 2476 21 6.99608e+06 412039 706193. 2443.58 1.91 0.186871 0.163521 26914 176310 -1 2274 21 1622 2331 218896 43165 2.83522 2.83522 -121.086 -2.83522 0 0 926341. 3205.33 0.24 0.09 0.16 -1 -1 0.24 0.0285983 0.0250648 87 3 124 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 6.57 vpr 63.59 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 30620 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65120 32 32 407 319 1 256 85 17 17 289 -1 unnamed_device 24.9 MiB 0.71 1077 13105 3562 8179 1364 63.6 MiB 0.15 0.00 3.82425 -139.818 -3.82425 3.82425 0.65 0.000890744 0.000834222 0.0660261 0.0613206 46 3235 48 6.99608e+06 309029 828058. 2865.25 2.99 0.252722 0.221135 28066 200906 -1 2640 21 2279 3175 255918 52323 4.10242 4.10242 -152.703 -4.10242 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0338563 0.0298086 115 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 6.25 vpr 62.84 MiB 0.04 6728 -1 -1 1 0.03 -1 -1 30064 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 294 246 1 175 75 17 17 289 -1 unnamed_device 24.2 MiB 1.10 701 9397 3869 5271 257 62.8 MiB 0.08 0.00 2.9841 -107.493 -2.9841 2.9841 0.65 0.000615013 0.000571898 0.0388789 0.0361651 40 2056 26 6.99608e+06 161872 706193. 2443.58 2.50 0.16791 0.146054 26914 176310 -1 1749 21 1469 1977 175866 41844 3.11492 3.11492 -123.828 -3.11492 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0260136 0.0227245 72 34 54 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 13.32 vpr 62.76 MiB 0.02 6792 -1 -1 1 0.03 -1 -1 30116 -1 -1 13 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 30 32 296 244 1 173 75 17 17 289 -1 unnamed_device 24.1 MiB 7.15 650 7975 2399 4401 1175 62.8 MiB 0.04 0.00 3.55679 -118.022 -3.55679 3.55679 0.65 0.000276819 0.000254598 0.0155191 0.0143283 46 2056 46 6.99608e+06 191304 828058. 2865.25 3.36 0.167484 0.143808 28066 200906 -1 1471 22 1442 2084 152387 36886 3.57811 3.57811 -127.288 -3.57811 0 0 1.01997e+06 3529.29 0.26 0.08 0.18 -1 -1 0.26 0.0321291 0.0283024 73 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 6.19 vpr 62.77 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 30292 -1 -1 15 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 28 32 278 232 1 163 75 17 17 289 -1 unnamed_device 24.1 MiB 1.13 739 7975 3247 4371 357 62.8 MiB 0.09 0.00 3.69125 -116.127 -3.69125 3.69125 0.65 0.000585019 0.000544306 0.0406481 0.0377877 38 2264 33 6.99608e+06 220735 678818. 2348.85 2.40 0.173212 0.150756 26626 170182 -1 1826 20 1320 1981 167709 35234 3.55311 3.55311 -124.889 -3.55311 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0235827 0.020533 72 34 56 28 28 28 +fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 4.97 vpr 62.75 MiB 0.05 6780 -1 -1 1 0.03 -1 -1 30392 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 24.2 MiB 0.21 696 7204 2957 4121 126 62.8 MiB 0.07 0.00 2.86245 -113.51 -2.86245 2.86245 0.70 0.000613359 0.000570273 0.0306445 0.0285266 42 2358 35 6.99608e+06 147157 744469. 2576.02 1.98 0.16356 0.141901 27202 183097 -1 1696 19 1440 2212 187054 39459 3.23592 3.23592 -125.782 -3.23592 0 0 949917. 3286.91 0.24 0.08 0.16 -1 -1 0.24 0.023784 0.0208085 64 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 6.00 vpr 62.73 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 30288 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 31 32 303 249 1 185 78 17 17 289 -1 unnamed_device 24.3 MiB 0.66 709 9540 3934 5278 328 62.7 MiB 0.08 0.00 2.94395 -107.519 -2.94395 2.94395 0.70 0.000627913 0.000583827 0.0386868 0.0359895 46 2091 24 6.99608e+06 220735 828058. 2865.25 2.58 0.170633 0.148816 28066 200906 -1 1618 20 1349 1775 124475 28347 3.01682 3.01682 -108.821 -3.01682 0 0 1.01997e+06 3529.29 0.26 0.07 0.18 -1 -1 0.26 0.0272535 0.0238171 77 34 61 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 8.93 vpr 63.19 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30128 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 29 32 312 264 1 197 77 17 17 289 -1 unnamed_device 24.6 MiB 2.69 930 10835 4554 5858 423 63.2 MiB 0.10 0.00 2.88685 -103.645 -2.88685 2.88685 0.70 0.000631484 0.000587347 0.0441776 0.0410564 36 2556 47 6.99608e+06 235451 648988. 2245.63 3.55 0.193263 0.168078 26050 158493 -1 2150 20 1510 1870 165109 34200 2.77122 2.77122 -108.858 -2.77122 0 0 828058. 2865.25 0.21 0.07 0.19 -1 -1 0.21 0.0253984 0.0221193 86 61 29 29 57 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 8.43 vpr 63.90 MiB 0.05 7040 -1 -1 1 0.04 -1 -1 30564 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65432 32 32 423 310 1 243 84 17 17 289 -1 unnamed_device 25.2 MiB 0.94 1138 15273 6065 7495 1713 63.9 MiB 0.16 0.00 3.90815 -143.373 -3.90815 3.90815 0.65 0.000830365 0.000771992 0.0730857 0.0679415 46 3798 44 6.99608e+06 294314 828058. 2865.25 4.56 0.265474 0.23183 28066 200906 -1 2784 22 2316 3568 283139 59648 4.03512 4.03512 -155.915 -4.03512 0 0 1.01997e+06 3529.29 0.25 0.11 0.18 -1 -1 0.25 0.0365603 0.0319042 106 29 128 32 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 6.21 vpr 63.58 MiB 0.04 7088 -1 -1 1 0.03 -1 -1 30608 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65104 32 32 403 317 1 252 82 17 17 289 -1 unnamed_device 24.9 MiB 0.98 999 10762 3395 5388 1979 63.6 MiB 0.11 0.00 4.20458 -152.083 -4.20458 4.20458 0.66 0.000771363 0.000716365 0.0496059 0.0461193 64 2302 23 6.99608e+06 264882 1.08113e+06 3740.92 2.30 0.202718 0.17718 31522 276338 -1 1920 22 1973 2633 212687 48768 3.98155 3.98155 -144.262 -3.98155 0 0 1.36325e+06 4717.13 0.33 0.10 0.22 -1 -1 0.33 0.0338944 0.0296167 110 65 62 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 5.88 vpr 63.35 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 30448 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 31 32 353 302 1 224 79 17 17 289 -1 unnamed_device 24.5 MiB 0.80 1070 8867 2185 5933 749 63.4 MiB 0.08 0.00 3.49385 -125.494 -3.49385 3.49385 0.66 0.000681264 0.000633276 0.0391236 0.0364011 38 2592 37 6.99608e+06 235451 678818. 2348.85 2.50 0.189359 0.164516 26626 170182 -1 2126 22 1375 1414 133529 27348 3.46516 3.46516 -130.977 -3.46516 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0288946 0.0251809 99 90 0 0 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 5.66 vpr 63.54 MiB 0.08 7188 -1 -1 1 0.05 -1 -1 30552 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65060 31 32 391 309 1 242 81 17 17 289 -1 unnamed_device 24.9 MiB 0.79 1182 9006 2249 6265 492 63.5 MiB 0.10 0.00 3.66135 -134.693 -3.66135 3.66135 0.65 0.000756388 0.00070284 0.0426239 0.0396379 40 2955 30 6.99608e+06 264882 706193. 2443.58 2.09 0.201157 0.175041 26914 176310 -1 2782 20 1994 2664 266844 53667 3.86496 3.86496 -149.222 -3.86496 0 0 926341. 3205.33 0.23 0.10 0.17 -1 -1 0.23 0.0301862 0.0265043 105 64 60 30 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 6.05 vpr 63.59 MiB 0.03 7212 -1 -1 1 0.04 -1 -1 30508 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65112 31 32 455 371 1 302 86 17 17 289 -1 unnamed_device 25.2 MiB 0.92 1281 17663 7641 9474 548 63.6 MiB 0.17 0.00 4.62587 -160.146 -4.62587 4.62587 0.65 0.000843255 0.000783379 0.0827718 0.0768699 48 3305 25 6.99608e+06 338461 865456. 2994.66 2.23 0.248954 0.218231 28354 207349 -1 2581 24 2799 3207 368244 103570 4.68164 4.68164 -161.842 -4.68164 0 0 1.05005e+06 3633.38 0.31 0.13 0.19 -1 -1 0.31 0.038675 0.0336927 138 124 0 0 124 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 8.05 vpr 63.66 MiB 0.03 7188 -1 -1 1 0.04 -1 -1 30476 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 31 32 413 333 1 258 82 17 17 289 -1 unnamed_device 24.9 MiB 2.88 1159 10762 4075 5172 1515 63.7 MiB 0.11 0.00 4.92973 -159.817 -4.92973 4.92973 0.65 0.000780689 0.000724845 0.0497533 0.0462082 44 3431 27 6.99608e+06 279598 787024. 2723.27 2.36 0.210763 0.184035 27778 195446 -1 2515 23 2346 3054 248487 52646 4.65544 4.65544 -159.86 -4.65544 0 0 997811. 3452.63 0.25 0.13 0.17 -1 -1 0.25 0.0450943 0.039127 117 90 31 31 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 7.84 vpr 63.75 MiB 0.03 7128 -1 -1 1 0.04 -1 -1 30332 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65284 31 32 391 309 1 241 83 17 17 289 -1 unnamed_device 25.0 MiB 2.22 1059 13763 5785 7510 468 63.8 MiB 0.13 0.00 3.58185 -130.714 -3.58185 3.58185 0.66 0.000750495 0.000696652 0.0610427 0.0566747 46 2920 39 6.99608e+06 294314 828058. 2865.25 2.84 0.23169 0.202647 28066 200906 -1 2328 22 2129 2826 210068 45712 3.67846 3.67846 -140.694 -3.67846 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0325575 0.0284389 107 64 60 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 7.55 vpr 63.83 MiB 0.05 7068 -1 -1 1 0.04 -1 -1 30744 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 25.1 MiB 0.84 1271 6556 1686 3783 1087 63.8 MiB 0.07 0.00 3.81927 -146.587 -3.81927 3.81927 0.70 0.000767266 0.000712809 0.0317367 0.0295351 40 3290 49 6.99608e+06 250167 706193. 2443.58 3.99 0.215272 0.186404 26914 176310 -1 2828 27 2684 3588 464933 126170 4.37501 4.37501 -168.095 -4.37501 0 0 926341. 3205.33 0.23 0.15 0.10 -1 -1 0.23 0.0391876 0.0341166 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 8.70 vpr 63.61 MiB 0.06 7276 -1 -1 1 0.04 -1 -1 30624 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65136 32 32 496 380 1 313 86 17 17 289 -1 unnamed_device 25.1 MiB 2.13 1530 16529 5778 8459 2292 63.6 MiB 0.18 0.00 4.81093 -174.639 -4.81093 4.81093 0.67 0.000927381 0.000861553 0.0849029 0.0789041 46 4411 29 6.99608e+06 323745 828058. 2865.25 3.52 0.267808 0.235147 28066 200906 -1 3403 25 3482 4762 408062 99975 5.8912 5.8912 -203.084 -5.8912 0 0 1.01997e+06 3529.29 0.31 0.15 0.17 -1 -1 0.31 0.0436924 0.0380498 139 96 62 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 10.32 vpr 63.10 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30572 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 31 32 305 250 1 181 76 17 17 289 -1 unnamed_device 24.4 MiB 0.81 802 9996 3771 4383 1842 63.1 MiB 0.10 0.00 3.1395 -118.304 -3.1395 3.1395 0.68 0.000629305 0.000585174 0.0453582 0.0422303 40 1998 21 6.99608e+06 191304 706193. 2443.58 6.82 0.293299 0.252879 26914 176310 -1 1846 22 1556 1917 164650 33970 3.16707 3.16707 -125.758 -3.16707 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0273871 0.0239132 75 34 62 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 6.97 vpr 63.53 MiB 0.03 7132 -1 -1 1 0.03 -1 -1 30324 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65052 31 32 395 311 1 243 81 17 17 289 -1 unnamed_device 24.8 MiB 0.65 1237 14606 4845 8003 1758 63.5 MiB 0.14 0.00 4.54014 -162.571 -4.54014 4.54014 0.66 0.000768294 0.000713832 0.0670838 0.062325 44 3549 35 6.99608e+06 264882 787024. 2723.27 3.59 0.238086 0.208857 27778 195446 -1 2767 23 1986 2440 235828 47757 4.54181 4.54181 -170.353 -4.54181 0 0 997811. 3452.63 0.25 0.10 0.16 -1 -1 0.25 0.0333396 0.029088 106 64 62 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 5.99 vpr 63.62 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30660 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65148 32 32 397 313 1 246 84 17 17 289 -1 unnamed_device 24.9 MiB 1.05 1279 13077 3808 7089 2180 63.6 MiB 0.13 0.00 3.54953 -133.609 -3.54953 3.54953 0.65 0.000763955 0.000709996 0.0576479 0.0536177 46 3226 21 6.99608e+06 294314 828058. 2865.25 2.19 0.207743 0.182355 28066 200906 -1 2638 20 1817 2644 199508 41576 3.47616 3.47616 -136.254 -3.47616 0 0 1.01997e+06 3529.29 0.25 0.08 0.16 -1 -1 0.25 0.0302954 0.0265118 108 63 62 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 6.58 vpr 62.97 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30536 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 345 257 1 186 77 17 17 289 -1 unnamed_device 24.5 MiB 0.74 797 9368 3826 5299 243 63.0 MiB 0.10 0.00 3.54729 -133.832 -3.54729 3.54729 0.66 0.000734371 0.000675093 0.0437773 0.0407151 46 2734 24 6.99608e+06 191304 828058. 2865.25 3.14 0.190573 0.166758 28066 200906 -1 2153 21 1916 3244 243952 51001 3.82546 3.82546 -152.197 -3.82546 0 0 1.01997e+06 3529.29 0.25 0.09 0.18 -1 -1 0.25 0.0292219 0.0255247 77 3 128 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 6.64 vpr 63.71 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 30356 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65236 32 32 424 343 1 266 83 17 17 289 -1 unnamed_device 24.9 MiB 1.25 1139 10883 2905 7208 770 63.7 MiB 0.11 0.00 3.32994 -127.882 -3.32994 3.32994 0.65 0.000786047 0.000729561 0.0505816 0.0469466 46 3143 36 6.99608e+06 279598 828058. 2865.25 2.54 0.232581 0.202769 28066 200906 -1 2442 22 2033 2403 188795 41973 3.67371 3.67371 -136.663 -3.67371 0 0 1.01997e+06 3529.29 0.28 0.09 0.20 -1 -1 0.28 0.033205 0.0290585 120 96 25 25 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 7.92 vpr 63.49 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30332 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 395 311 1 242 84 17 17 289 -1 unnamed_device 24.8 MiB 0.97 1139 12528 3436 7246 1846 63.5 MiB 0.12 0.00 3.59669 -136.453 -3.59669 3.59669 0.70 0.000772392 0.000716305 0.0554568 0.0515376 40 3651 35 6.99608e+06 294314 706193. 2443.58 4.23 0.229341 0.20103 26914 176310 -1 3030 22 2291 3231 375229 75054 4.27196 4.27196 -159.382 -4.27196 0 0 926341. 3205.33 0.23 0.12 0.16 -1 -1 0.23 0.03313 0.0289493 106 61 64 32 60 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 6.53 vpr 63.57 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30420 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 32 32 405 318 1 253 81 17 17 289 -1 unnamed_device 24.9 MiB 0.70 1314 14431 4781 7561 2089 63.6 MiB 0.16 0.00 3.61639 -141.899 -3.61639 3.61639 0.69 0.000799338 0.000742896 0.0736985 0.0682933 40 3393 43 6.99608e+06 250167 706193. 2443.58 2.82 0.250698 0.219817 26914 176310 -1 2962 23 2149 2670 288082 56945 3.85076 3.85076 -154.092 -3.85076 0 0 926341. 3205.33 0.33 0.11 0.17 -1 -1 0.33 0.0353718 0.0309905 108 65 63 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 7.19 vpr 63.42 MiB 0.03 6892 -1 -1 1 0.03 -1 -1 30460 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64944 32 32 376 288 1 218 80 17 17 289 -1 unnamed_device 24.6 MiB 0.84 813 11432 3614 6147 1671 63.4 MiB 0.11 0.00 3.93015 -141.517 -3.93015 3.93015 0.67 0.000738821 0.000683383 0.0518395 0.0481751 48 3063 38 6.99608e+06 235451 865456. 2994.66 3.56 0.220954 0.193598 28354 207349 -1 2465 24 2080 2947 347930 83987 4.29972 4.29972 -162.913 -4.29972 0 0 1.05005e+06 3633.38 0.26 0.12 0.14 -1 -1 0.26 0.0331824 0.0290848 94 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 16.68 vpr 63.61 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30836 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65140 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 25.0 MiB 0.81 930 14500 5516 6956 2028 63.6 MiB 0.14 0.00 3.81585 -138.808 -3.81585 3.81585 0.69 0.00076894 0.000713957 0.0659461 0.0612289 44 3517 47 6.99608e+06 264882 787024. 2723.27 13.05 0.408475 0.354148 27778 195446 -1 2394 22 2308 2743 215267 47366 4.31072 4.31072 -159.984 -4.31072 0 0 997811. 3452.63 0.27 0.11 0.16 -1 -1 0.27 0.0396963 0.0345748 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 6.86 vpr 63.58 MiB 0.05 7268 -1 -1 1 0.04 -1 -1 30660 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65108 31 32 449 367 1 290 85 17 17 289 -1 unnamed_device 25.3 MiB 1.43 1399 14035 5589 6713 1733 63.6 MiB 0.14 0.00 3.97768 -141.845 -3.97768 3.97768 0.65 0.000831533 0.000772396 0.065657 0.0608105 44 3778 32 6.99608e+06 323745 787024. 2723.27 2.57 0.240097 0.209158 27778 195446 -1 2996 20 2203 2589 221872 46101 3.89955 3.89955 -144.61 -3.89955 0 0 997811. 3452.63 0.27 0.09 0.18 -1 -1 0.27 0.0329575 0.0287279 132 122 0 0 122 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 8.17 vpr 63.52 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30584 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 24.9 MiB 0.98 1318 15273 5215 8174 1884 63.5 MiB 0.15 0.00 3.73195 -141.182 -3.73195 3.73195 0.67 0.000809554 0.000751409 0.0700525 0.0650309 40 3892 28 6.99608e+06 294314 706193. 2443.58 4.20 0.242775 0.21262 26914 176310 -1 3411 31 3192 4502 585199 158538 4.31702 4.31702 -164.025 -4.31702 0 0 926341. 3205.33 0.33 0.17 0.17 -1 -1 0.33 0.0416189 0.0364636 126 94 32 32 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 5.89 vpr 63.27 MiB 0.02 6784 -1 -1 1 0.03 -1 -1 30548 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 312 255 1 191 78 17 17 289 -1 unnamed_device 24.3 MiB 0.49 921 12528 4814 6023 1691 63.3 MiB 0.11 0.00 2.98795 -120.412 -2.98795 2.98795 0.65 0.000642292 0.000597314 0.0508079 0.047296 46 2359 25 6.99608e+06 206020 828058. 2865.25 2.60 0.179009 0.156723 28066 200906 -1 1976 22 1407 1907 172172 34025 3.51482 3.51482 -128.349 -3.51482 0 0 1.01997e+06 3529.29 0.28 0.08 0.17 -1 -1 0.28 0.0271664 0.0237019 80 34 63 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 6.46 vpr 63.38 MiB 0.01 6992 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 370 314 1 244 80 17 17 289 -1 unnamed_device 24.7 MiB 0.74 1095 11776 4100 5415 2261 63.4 MiB 0.11 0.00 3.80663 -140.003 -3.80663 3.80663 0.66 0.00070677 0.00065603 0.0512866 0.0476907 46 2887 24 6.99608e+06 235451 828058. 2865.25 2.88 0.199073 0.173913 28066 200906 -1 2394 21 2119 2496 245665 47412 3.60045 3.60045 -141.406 -3.60045 0 0 1.01997e+06 3529.29 0.33 0.09 0.18 -1 -1 0.33 0.0268674 0.023867 108 94 0 0 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 6.59 vpr 63.56 MiB 0.03 7100 -1 -1 1 0.03 -1 -1 30812 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 469 351 1 285 84 17 17 289 -1 unnamed_device 25.1 MiB 0.85 1231 15273 6501 8321 451 63.6 MiB 0.16 0.00 4.57343 -162.846 -4.57343 4.57343 0.67 0.000884155 0.000821369 0.0787555 0.073228 54 3744 47 6.99608e+06 294314 949917. 3286.91 2.66 0.299433 0.262793 29506 232905 -1 2801 26 3096 4191 425911 86394 5.01456 5.01456 -180.697 -5.01456 0 0 1.17392e+06 4061.99 0.28 0.14 0.23 -1 -1 0.28 0.0435504 0.0379064 126 65 96 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 5.82 vpr 63.39 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30376 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 32 32 368 284 1 217 80 17 17 289 -1 unnamed_device 24.6 MiB 0.58 1100 10916 2969 6188 1759 63.4 MiB 0.11 0.00 3.58059 -138.842 -3.58059 3.58059 0.65 0.000728979 0.000676939 0.0501428 0.0466303 40 2715 36 6.99608e+06 235451 706193. 2443.58 2.52 0.216485 0.189154 26914 176310 -1 2378 23 1873 2403 221246 44404 3.72546 3.72546 -144.213 -3.72546 0 0 926341. 3205.33 0.23 0.09 0.12 -1 -1 0.23 0.0324451 0.0283235 93 34 92 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 5.62 vpr 62.90 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30444 -1 -1 24 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 30 32 296 244 1 177 86 17 17 289 -1 unnamed_device 24.4 MiB 0.64 716 11804 3687 5992 2125 62.9 MiB 0.10 0.00 3.75245 -123.293 -3.75245 3.75245 0.65 0.000615556 0.000572246 0.0405868 0.0377396 40 2192 44 6.99608e+06 353176 706193. 2443.58 2.30 0.183389 0.159204 26914 176310 -1 1852 25 1742 2609 294037 64139 3.89906 3.89906 -135.525 -3.89906 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.0295224 0.0256409 80 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 6.10 vpr 63.88 MiB 0.05 7424 -1 -1 1 0.04 -1 -1 30976 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65412 32 32 531 413 1 346 88 17 17 289 -1 unnamed_device 25.6 MiB 0.83 1504 15883 5797 7858 2228 63.9 MiB 0.17 0.00 5.34997 -188.353 -5.34997 5.34997 0.65 0.000951193 0.000883193 0.0812633 0.0754952 56 3670 24 6.99608e+06 353176 973134. 3367.25 2.25 0.279855 0.24514 29794 239141 -1 3017 22 3279 4088 391656 83242 5.57659 5.57659 -197.891 -5.57659 0 0 1.19926e+06 4149.71 0.29 0.13 0.23 -1 -1 0.29 0.0411109 0.0359127 159 127 32 32 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 5.85 vpr 63.41 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30460 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 376 288 1 217 80 17 17 289 -1 unnamed_device 24.5 MiB 0.73 938 15044 6550 8115 379 63.4 MiB 0.14 0.00 4.27644 -157.663 -4.27644 4.27644 0.65 0.000742206 0.000689236 0.0680038 0.0632156 48 2674 27 6.99608e+06 235451 865456. 2994.66 2.28 0.223265 0.196109 28354 207349 -1 2171 22 2271 2964 225442 48699 4.28801 4.28801 -162.253 -4.28801 0 0 1.05005e+06 3633.38 0.27 0.09 0.18 -1 -1 0.27 0.0318091 0.0278564 92 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 5.42 vpr 62.76 MiB 0.06 6820 -1 -1 1 0.03 -1 -1 30312 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 24.1 MiB 0.28 660 12763 5275 7138 350 62.8 MiB 0.10 0.00 2.98775 -114.509 -2.98775 2.98775 0.65 0.000617122 0.000573409 0.0425442 0.0395559 46 2129 35 6.99608e+06 353176 828058. 2865.25 2.43 0.175354 0.152889 28066 200906 -1 1606 24 1694 2600 190598 40646 3.14062 3.14062 -123.028 -3.14062 0 0 1.01997e+06 3529.29 0.26 0.08 0.18 -1 -1 0.26 0.0277707 0.0241535 70 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 8.92 vpr 63.90 MiB 0.03 7160 -1 -1 1 0.04 -1 -1 30796 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65436 32 32 438 320 1 256 82 17 17 289 -1 unnamed_device 25.1 MiB 0.68 1143 13432 5563 7207 662 63.9 MiB 0.14 0.00 4.46895 -161.038 -4.46895 4.46895 0.68 0.000854627 0.00079476 0.0680384 0.0632746 46 4011 41 6.99608e+06 264882 828058. 2865.25 5.32 0.266644 0.233091 28066 200906 -1 2823 22 2647 3941 340653 73060 4.92841 4.92841 -176.957 -4.92841 0 0 1.01997e+06 3529.29 0.26 0.12 0.14 -1 -1 0.26 0.0370189 0.032616 112 34 128 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 5.44 vpr 62.75 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30396 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 24.2 MiB 0.30 625 10614 4416 5947 251 62.8 MiB 0.09 0.00 2.85145 -111.794 -2.85145 2.85145 0.66 0.000607625 0.000564445 0.0440693 0.0409427 40 2195 42 6.99608e+06 147157 706193. 2443.58 2.49 0.183854 0.160152 26914 176310 -1 1718 23 1561 2367 231224 49124 3.36122 3.36122 -130.641 -3.36122 0 0 926341. 3205.33 0.23 0.09 0.12 -1 -1 0.23 0.0275761 0.0240165 62 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 5.19 vpr 62.65 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30200 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 30 32 296 244 1 179 77 17 17 289 -1 unnamed_device 24.2 MiB 0.65 755 9857 4076 5498 283 62.7 MiB 0.09 0.00 3.30794 -118.735 -3.30794 3.30794 0.65 0.000616739 0.000573488 0.0401466 0.0373486 44 2377 21 6.99608e+06 220735 787024. 2723.27 1.93 0.160575 0.139984 27778 195446 -1 1777 22 1643 2158 180560 38370 3.32751 3.32751 -123.166 -3.32751 0 0 997811. 3452.63 0.25 0.08 0.16 -1 -1 0.25 0.0264088 0.023037 74 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 7.69 vpr 63.43 MiB 0.03 7196 -1 -1 1 0.03 -1 -1 30396 -1 -1 20 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 29 32 393 319 1 245 81 17 17 289 -1 unnamed_device 24.8 MiB 1.62 1003 15481 6003 6865 2613 63.4 MiB 0.14 0.00 3.85703 -126.704 -3.85703 3.85703 0.66 0.00074583 0.00069244 0.0703618 0.0653279 46 3294 37 6.99608e+06 294314 828058. 2865.25 3.24 0.234888 0.20583 28066 200906 -1 2268 24 1976 2711 215953 47780 3.784 3.784 -131.247 -3.784 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0342207 0.0298524 113 88 29 29 85 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 6.34 vpr 63.61 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30744 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65132 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 24.9 MiB 0.96 1068 14144 5407 6800 1937 63.6 MiB 0.13 0.00 4.29664 -157.784 -4.29664 4.29664 0.68 0.000769772 0.000714192 0.0640171 0.0594557 44 3303 30 6.99608e+06 264882 787024. 2723.27 2.50 0.226928 0.199222 27778 195446 -1 2309 23 2566 3447 284686 60687 4.63711 4.63711 -168.166 -4.63711 0 0 997811. 3452.63 0.25 0.10 0.18 -1 -1 0.25 0.0346218 0.0302876 109 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 6.23 vpr 63.69 MiB 0.05 7040 -1 -1 1 0.04 -1 -1 30612 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65220 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 25.0 MiB 1.00 1151 6846 1472 4993 381 63.7 MiB 0.08 0.00 4.30354 -157.84 -4.30354 4.30354 0.66 0.000772844 0.000717753 0.0326154 0.0303242 44 3666 26 6.99608e+06 264882 787024. 2723.27 2.40 0.193254 0.168014 27778 195446 -1 2775 22 2651 3650 339920 68477 4.66885 4.66885 -176.579 -4.66885 0 0 997811. 3452.63 0.25 0.11 0.16 -1 -1 0.25 0.0331066 0.0289454 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 6.60 vpr 63.33 MiB 0.03 6948 -1 -1 1 0.03 -1 -1 30472 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 345 287 1 212 79 17 17 289 -1 unnamed_device 24.8 MiB 0.64 792 12585 5306 6906 373 63.3 MiB 0.11 0.00 3.44424 -128.433 -3.44424 3.44424 0.71 0.000685268 0.000636397 0.0535938 0.0498004 46 2594 31 6.99608e+06 220735 828058. 2865.25 3.18 0.197676 0.172267 28066 200906 -1 1950 23 1717 1907 209701 57729 3.50111 3.50111 -133.7 -3.50111 0 0 1.01997e+06 3529.29 0.25 0.09 0.12 -1 -1 0.25 0.0307413 0.0268935 92 65 32 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 7.40 vpr 63.16 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30468 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 31 32 353 302 1 230 80 17 17 289 -1 unnamed_device 24.5 MiB 2.28 885 11260 4668 6241 351 63.2 MiB 0.09 0.00 3.46644 -123.995 -3.46644 3.46644 0.67 0.000531088 0.000487088 0.0385122 0.0353721 44 3163 36 6.99608e+06 250167 787024. 2723.27 2.49 0.187786 0.162467 27778 195446 -1 2130 20 1974 2424 214175 46439 3.36172 3.36172 -122.743 -3.36172 0 0 997811. 3452.63 0.24 0.06 0.11 -1 -1 0.24 0.0210685 0.0185169 102 90 0 0 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 6.98 vpr 63.55 MiB 0.05 7072 -1 -1 1 0.04 -1 -1 30568 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65076 30 32 374 297 1 226 81 17 17 289 -1 unnamed_device 24.7 MiB 1.13 904 12506 5230 6653 623 63.6 MiB 0.13 0.00 3.42074 -117.96 -3.42074 3.42074 0.66 0.000732263 0.000679824 0.059686 0.0554151 44 3198 37 6.99608e+06 279598 787024. 2723.27 2.97 0.220827 0.193044 27778 195446 -1 2204 22 1934 2742 228445 49561 3.44877 3.44877 -123.813 -3.44877 0 0 997811. 3452.63 0.30 0.09 0.18 -1 -1 0.30 0.0314174 0.0274196 101 60 60 30 57 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 5.37 vpr 63.33 MiB 0.02 6992 -1 -1 1 0.02 -1 -1 30572 -1 -1 18 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 28 32 332 260 1 197 78 17 17 289 -1 unnamed_device 24.5 MiB 0.64 824 9872 4064 5274 534 63.3 MiB 0.09 0.00 3.73195 -121.956 -3.73195 3.73195 0.65 0.000666267 0.000619411 0.0420186 0.0391114 44 2539 27 6.99608e+06 264882 787024. 2723.27 2.00 0.185433 0.161918 27778 195446 -1 1813 24 1880 2757 196479 43096 3.89076 3.89076 -131.029 -3.89076 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.031359 0.0273607 87 34 84 28 28 28 +fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 7.31 vpr 63.27 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 30100 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64788 30 32 325 273 1 204 77 17 17 289 -1 unnamed_device 24.5 MiB 1.74 814 10672 3702 5165 1805 63.3 MiB 0.10 0.00 4.51934 -148.35 -4.51934 4.51934 0.66 0.000652314 0.000606298 0.0448768 0.041732 44 2874 44 6.99608e+06 220735 787024. 2723.27 2.75 0.197218 0.171306 27778 195446 -1 1781 21 1603 2154 172251 38340 3.92035 3.92035 -139.153 -3.92035 0 0 997811. 3452.63 0.25 0.08 0.18 -1 -1 0.25 0.0308294 0.0271557 88 63 30 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 8.30 vpr 63.67 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30392 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65200 32 32 361 308 1 241 79 17 17 289 -1 unnamed_device 24.8 MiB 2.63 1000 12585 4720 5647 2218 63.7 MiB 0.12 0.00 3.77345 -134.122 -3.77345 3.77345 0.65 0.000695151 0.000645565 0.054539 0.0506452 46 3110 45 6.99608e+06 220735 828058. 2865.25 2.90 0.202049 0.176759 28066 200906 -1 2315 22 1840 2270 204664 42541 3.86506 3.86506 -142.099 -3.86506 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0298784 0.0260276 104 91 0 0 91 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 6.92 vpr 62.97 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30188 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 24.5 MiB 0.14 808 15688 5217 8110 2361 63.0 MiB 0.14 0.00 3.76925 -134.079 -3.76925 3.76925 0.66 0.000695669 0.000646679 0.059035 0.0548849 46 3039 46 6.99608e+06 367892 828058. 2865.25 3.95 0.228217 0.199962 28066 200906 -1 2083 22 1974 3110 278347 59487 3.95812 3.95812 -147.376 -3.95812 0 0 1.01997e+06 3529.29 0.25 0.10 0.18 -1 -1 0.25 0.0298464 0.0260472 86 4 124 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 24.27 vpr 63.50 MiB 0.05 7092 -1 -1 1 0.04 -1 -1 30528 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 407 319 1 249 81 17 17 289 -1 unnamed_device 24.8 MiB 0.68 1209 11281 3120 7720 441 63.5 MiB 0.12 0.00 4.19534 -154.628 -4.19534 4.19534 0.67 0.000782407 0.00072692 0.052718 0.0489263 40 3750 26 6.99608e+06 250167 706193. 2443.58 20.65 0.377919 0.327226 26914 176310 -1 3109 32 2987 3961 695507 232571 4.80515 4.80515 -184.309 -4.80515 0 0 926341. 3205.33 0.23 0.21 0.15 -1 -1 0.23 0.0452283 0.0392673 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 6.46 vpr 63.55 MiB 0.02 6968 -1 -1 1 0.04 -1 -1 30320 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 407 319 1 248 82 17 17 289 -1 unnamed_device 24.8 MiB 0.59 1142 12364 5175 6807 382 63.5 MiB 0.12 0.00 5.12678 -171.348 -5.12678 5.12678 0.67 0.000780871 0.000725092 0.0576382 0.0535415 54 3283 29 6.99608e+06 264882 949917. 3286.91 2.94 0.221072 0.19353 29506 232905 -1 2541 20 2138 2971 308261 63089 4.7525 4.7525 -174.578 -4.7525 0 0 1.17392e+06 4061.99 0.31 0.11 0.19 -1 -1 0.31 0.0317002 0.0278034 108 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 8.05 vpr 63.58 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30496 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65104 32 32 399 315 1 250 82 17 17 289 -1 unnamed_device 24.8 MiB 0.63 1089 13788 4649 7550 1589 63.6 MiB 0.14 0.00 4.15408 -148.064 -4.15408 4.15408 0.67 0.000786922 0.0007304 0.0624545 0.0580102 44 3953 47 6.99608e+06 264882 787024. 2723.27 4.55 0.248508 0.217291 27778 195446 -1 2830 21 2212 3137 303084 61955 4.23195 4.23195 -157.936 -4.23195 0 0 997811. 3452.63 0.25 0.10 0.20 -1 -1 0.25 0.0320005 0.0279905 107 65 60 30 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 5.83 vpr 62.93 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30480 -1 -1 13 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 30 32 296 244 1 179 75 17 17 289 -1 unnamed_device 24.5 MiB 0.71 692 12241 5462 6300 479 62.9 MiB 0.10 0.00 3.58339 -124.571 -3.58339 3.58339 0.66 0.000618908 0.000575343 0.0500648 0.0465097 48 2391 37 6.99608e+06 191304 865456. 2994.66 2.35 0.188266 0.164147 28354 207349 -1 1950 20 1503 2055 207950 47946 3.95106 3.95106 -135.959 -3.95106 0 0 1.05005e+06 3633.38 0.26 0.08 0.18 -1 -1 0.26 0.0251551 0.0219356 76 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 8.24 vpr 63.64 MiB 0.04 7124 -1 -1 1 0.03 -1 -1 30388 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 30 32 383 303 1 237 80 17 17 289 -1 unnamed_device 24.9 MiB 2.19 1070 13152 5486 7187 479 63.6 MiB 0.13 0.00 4.68713 -157.481 -4.68713 4.68713 0.69 0.000737267 0.000684368 0.0598965 0.0556801 46 3476 35 6.99608e+06 264882 828058. 2865.25 3.21 0.222052 0.194536 28066 200906 -1 2689 20 2330 3345 315282 68139 4.86645 4.86645 -173.897 -4.86645 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0293912 0.0257568 105 63 60 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 6.54 vpr 63.71 MiB 0.03 7092 -1 -1 1 0.03 -1 -1 30812 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65236 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 25.3 MiB 0.72 1372 11615 4190 5568 1857 63.7 MiB 0.12 0.00 4.17744 -155.5 -4.17744 4.17744 0.67 0.000847355 0.000786429 0.0548038 0.0508955 46 3391 25 6.99608e+06 323745 828058. 2865.25 2.93 0.230589 0.201174 28066 200906 -1 2703 24 2614 2688 212817 43588 4.30395 4.30395 -165.025 -4.30395 0 0 1.01997e+06 3529.29 0.25 0.10 0.18 -1 -1 0.25 0.0388414 0.0337902 139 127 0 0 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 18.04 vpr 63.26 MiB 0.04 7196 -1 -1 1 0.04 -1 -1 30360 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 31 32 425 341 1 275 85 17 17 289 -1 unnamed_device 24.8 MiB 1.37 1101 12733 5285 6817 631 63.3 MiB 0.12 0.00 4.35899 -150.667 -4.35899 4.35899 0.65 0.000792562 0.00072893 0.0570857 0.0529784 50 3217 36 6.99608e+06 323745 902133. 3121.57 13.87 0.401511 0.346642 28642 213929 -1 2323 21 2201 2619 211762 52502 4.6934 4.6934 -161.769 -4.6934 0 0 1.08113e+06 3740.92 0.27 0.09 0.19 -1 -1 0.27 0.0326983 0.0286511 125 94 31 31 93 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 10.35 vpr 63.45 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30436 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 30 32 404 328 1 249 84 17 17 289 -1 unnamed_device 24.8 MiB 2.61 1072 15456 6595 7994 867 63.4 MiB 0.15 0.00 4.1343 -135.415 -4.1343 4.1343 0.67 0.000907806 0.000843234 0.0698627 0.0648584 48 3698 50 6.99608e+06 323745 865456. 2994.66 4.79 0.260726 0.228234 28354 207349 -1 2712 22 2618 3714 404282 93680 4.495 4.495 -155.983 -4.495 0 0 1.05005e+06 3633.38 0.27 0.16 0.17 -1 -1 0.27 0.0377766 0.0330643 114 92 26 26 90 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 22.45 vpr 63.52 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 30584 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65044 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 24.9 MiB 0.91 1174 14500 5592 7226 1682 63.5 MiB 0.14 0.00 4.33244 -160.384 -4.33244 4.33244 0.66 0.000773243 0.000717902 0.0684075 0.0635078 46 3851 34 6.99608e+06 264882 828058. 2865.25 18.70 0.426163 0.369221 28066 200906 -1 2925 22 2753 3801 392357 76843 5.15411 5.15411 -178.744 -5.15411 0 0 1.01997e+06 3529.29 0.25 0.12 0.17 -1 -1 0.25 0.0339885 0.0298259 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 10.04 vpr 63.57 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30340 -1 -1 20 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 29 32 387 316 1 240 81 17 17 289 -1 unnamed_device 24.8 MiB 1.64 1070 11106 4662 5983 461 63.6 MiB 0.11 0.00 3.53179 -119.754 -3.53179 3.53179 0.67 0.000734998 0.000682413 0.0490137 0.0455089 38 3405 45 6.99608e+06 294314 678818. 2348.85 5.55 0.227155 0.197628 26626 170182 -1 2623 23 2263 2942 297644 62451 3.80071 3.80071 -137.44 -3.80071 0 0 902133. 3121.57 0.29 0.11 0.15 -1 -1 0.29 0.0336259 0.0293662 112 88 26 26 85 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 5.68 vpr 62.60 MiB 0.04 6836 -1 -1 1 0.03 -1 -1 30468 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 283 225 1 155 74 17 17 289 -1 unnamed_device 24.0 MiB 0.65 592 9684 3186 4658 1840 62.6 MiB 0.09 0.00 2.86245 -110.719 -2.86245 2.86245 0.67 0.000619203 0.000575776 0.0404677 0.0376744 42 2359 50 6.99608e+06 147157 744469. 2576.02 2.29 0.187687 0.163319 27202 183097 -1 1634 23 1545 2424 209766 47495 2.99762 2.99762 -119.713 -2.99762 0 0 949917. 3286.91 0.26 0.09 0.12 -1 -1 0.26 0.0270365 0.0235439 62 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 5.77 vpr 63.55 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 30588 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65080 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 24.9 MiB 0.63 999 9872 3990 5501 381 63.6 MiB 0.10 0.00 4.9054 -173.166 -4.9054 4.9054 0.66 0.000778994 0.000723104 0.0466319 0.0433036 62 2768 25 6.99608e+06 264882 1.05005e+06 3633.38 2.32 0.204461 0.178094 30946 263737 -1 2108 24 2322 3244 247292 54294 4.7445 4.7445 -170.964 -4.7445 0 0 1.30136e+06 4502.97 0.31 0.10 0.22 -1 -1 0.31 0.035841 0.0313029 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 6.15 vpr 63.54 MiB 0.04 7076 -1 -1 1 0.03 -1 -1 30468 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 407 319 1 255 81 17 17 289 -1 unnamed_device 24.9 MiB 0.72 1203 7431 1958 4126 1347 63.5 MiB 0.08 0.00 4.63877 -167.295 -4.63877 4.63877 0.66 0.000780204 0.000724023 0.0358477 0.0333449 44 3706 30 6.99608e+06 250167 787024. 2723.27 2.61 0.198382 0.172263 27778 195446 -1 2821 23 2937 3999 344173 71664 4.54104 4.54104 -171.037 -4.54104 0 0 997811. 3452.63 0.25 0.12 0.16 -1 -1 0.25 0.0349107 0.0304374 111 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 16.99 vpr 63.00 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30424 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 315 267 1 202 77 17 17 289 -1 unnamed_device 24.6 MiB 1.89 766 11324 4293 5664 1367 63.0 MiB 0.05 0.00 3.24452 -112.954 -3.24452 3.24452 0.67 0.000285627 0.000262496 0.0219418 0.0202074 48 2295 39 6.99608e+06 191304 865456. 2994.66 12.32 0.311851 0.26676 28354 207349 -1 1784 21 1600 1887 197435 47668 3.48726 3.48726 -120.115 -3.48726 0 0 1.05005e+06 3633.38 0.27 0.08 0.19 -1 -1 0.27 0.0275347 0.024109 85 55 32 32 54 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 5.12 vpr 62.65 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30392 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 24.1 MiB 0.45 592 7514 3020 4270 224 62.6 MiB 0.07 0.00 3.0031 -111.146 -3.0031 3.0031 0.69 0.0005977 0.000555618 0.0319781 0.0297328 44 2109 28 6.99608e+06 161872 787024. 2723.27 1.94 0.165995 0.144131 27778 195446 -1 1545 23 1522 2264 188568 39872 3.00867 3.00867 -118.918 -3.00867 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0265781 0.0231406 63 4 93 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 6.44 vpr 63.56 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30408 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 381 303 1 235 81 17 17 289 -1 unnamed_device 24.8 MiB 0.84 1014 12331 5131 6918 282 63.6 MiB 0.11 0.00 4.03648 -138.539 -4.03648 4.03648 0.65 0.000740415 0.000687504 0.0548958 0.0510204 40 2840 45 6.99608e+06 250167 706193. 2443.58 2.80 0.22817 0.199309 26914 176310 -1 2519 31 2701 3185 464315 133414 4.10195 4.10195 -149.535 -4.10195 0 0 926341. 3205.33 0.23 0.16 0.16 -1 -1 0.23 0.0420894 0.0365071 102 59 60 32 58 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 6.84 vpr 63.56 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30352 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 406 330 1 255 83 17 17 289 -1 unnamed_device 24.8 MiB 1.31 1077 13043 5447 7262 334 63.6 MiB 0.13 0.00 4.38874 -150.527 -4.38874 4.38874 0.65 0.000762646 0.000707661 0.0585376 0.0543542 48 2878 41 6.99608e+06 279598 865456. 2994.66 2.55 0.231405 0.201982 28354 207349 -1 2423 30 2362 2895 394206 145895 4.25521 4.25521 -153.753 -4.25521 0 0 1.05005e+06 3633.38 0.26 0.15 0.17 -1 -1 0.26 0.0420053 0.0365089 115 88 28 28 88 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 5.78 vpr 63.60 MiB 0.03 7072 -1 -1 1 0.03 -1 -1 30500 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 24.8 MiB 0.29 981 8047 1739 5489 819 63.6 MiB 0.08 0.00 4.28063 -149.977 -4.28063 4.28063 0.65 0.000937722 0.000870978 0.0347532 0.0323064 48 3128 28 6.99608e+06 397324 865456. 2994.66 2.79 0.201501 0.175275 28354 207349 -1 2519 23 2406 3761 313415 73098 4.58255 4.58255 -170.105 -4.58255 0 0 1.05005e+06 3633.38 0.26 0.13 0.14 -1 -1 0.26 0.0415076 0.0363231 100 3 156 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 7.43 vpr 63.39 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30464 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 30 32 371 295 1 227 81 17 17 289 -1 unnamed_device 24.6 MiB 0.90 884 14431 6074 7798 559 63.4 MiB 0.13 0.00 3.66815 -119.86 -3.66815 3.66815 0.66 0.000717058 0.000665876 0.0634399 0.0589523 40 3422 29 6.99608e+06 279598 706193. 2443.58 3.79 0.221143 0.194174 26914 176310 -1 2507 22 2086 2957 290244 65678 3.62741 3.62741 -134.801 -3.62741 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.0307884 0.0268797 101 59 60 30 56 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 5.70 vpr 62.72 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 30788 -1 -1 16 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 27 32 269 226 1 152 75 17 17 289 -1 unnamed_device 24.2 MiB 1.20 589 11925 5033 6263 629 62.7 MiB 0.09 0.00 3.68305 -110.555 -3.68305 3.68305 0.65 0.000573815 0.00053397 0.0452249 0.0420847 40 1692 28 6.99608e+06 235451 706193. 2443.58 1.90 0.16348 0.142469 26914 176310 -1 1433 19 1151 1593 139670 30760 3.87401 3.87401 -124.064 -3.87401 0 0 926341. 3205.33 0.23 0.06 0.15 -1 -1 0.23 0.0220367 0.0191993 67 34 54 27 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 21.38 vpr 63.75 MiB 0.05 7224 -1 -1 1 0.03 -1 -1 30620 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65284 32 32 493 378 1 313 85 17 17 289 -1 unnamed_device 25.3 MiB 0.79 1512 15151 5383 7381 2387 63.8 MiB 0.17 0.00 4.46404 -157.207 -4.46404 4.46404 0.68 0.000857296 0.000791129 0.0773741 0.0718183 50 4170 39 6.99608e+06 309029 902133. 3121.57 17.53 0.468734 0.405171 28642 213929 -1 3441 24 2733 3835 527406 117145 4.67941 4.67941 -171.114 -4.67941 0 0 1.08113e+06 3740.92 0.27 0.16 0.19 -1 -1 0.27 0.0429848 0.0374962 141 95 62 31 95 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 7.29 vpr 63.64 MiB 0.05 7268 -1 -1 1 0.03 -1 -1 30584 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65164 31 32 455 371 1 302 85 17 17 289 -1 unnamed_device 25.3 MiB 2.42 1389 9013 2681 4820 1512 63.6 MiB 0.10 0.00 4.97674 -167.764 -4.97674 4.97674 0.65 0.00084351 0.000783783 0.0438202 0.0407674 42 3808 25 6.99608e+06 323745 744469. 2576.02 2.07 0.211137 0.183442 27202 183097 -1 2980 22 2696 3055 322151 63359 4.52204 4.52204 -166.56 -4.52204 0 0 949917. 3286.91 0.24 0.11 0.15 -1 -1 0.24 0.0356478 0.0310588 138 124 0 0 124 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 7.95 vpr 63.40 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30380 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 355 304 1 233 79 17 17 289 -1 unnamed_device 24.5 MiB 2.73 1031 11233 4729 6294 210 63.4 MiB 0.10 0.00 3.87693 -140.03 -3.87693 3.87693 0.66 0.00068574 0.000636339 0.0478245 0.0443742 46 3029 25 6.99608e+06 220735 828058. 2865.25 2.51 0.189226 0.164956 28066 200906 -1 2233 21 1682 2023 212330 43607 3.8735 3.8735 -140.554 -3.8735 0 0 1.01997e+06 3529.29 0.25 0.08 0.11 -1 -1 0.25 0.0285745 0.0249765 102 89 0 0 89 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 5.98 vpr 63.40 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 30552 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 364 282 1 217 80 17 17 289 -1 unnamed_device 24.6 MiB 0.90 1034 14184 5996 7912 276 63.4 MiB 0.13 0.00 3.78975 -136.67 -3.78975 3.78975 0.66 0.000725795 0.000674673 0.0625258 0.0581264 46 3037 39 6.99608e+06 235451 828058. 2865.25 2.31 0.224124 0.196323 28066 200906 -1 2411 23 2014 2763 226465 47089 4.14942 4.14942 -146.662 -4.14942 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0321731 0.0280828 92 34 90 30 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 8.12 vpr 63.77 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30764 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65296 31 32 443 336 1 261 83 17 17 289 -1 unnamed_device 24.9 MiB 1.49 1068 13943 4857 7191 1895 63.8 MiB 0.14 0.00 3.9689 -135.877 -3.9689 3.9689 0.67 0.000860533 0.000800824 0.069505 0.0646898 38 3765 35 6.99608e+06 294314 678818. 2348.85 3.87 0.258977 0.226655 26626 170182 -1 2652 19 2280 3067 243980 51586 4.53931 4.53931 -159.576 -4.53931 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0322494 0.0282265 117 64 87 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 10.72 vpr 63.44 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30392 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 30 32 373 297 1 228 82 17 17 289 -1 unnamed_device 24.5 MiB 1.01 1088 13788 5313 5928 2547 63.4 MiB 0.13 0.00 3.56069 -123.887 -3.56069 3.56069 0.65 0.000717011 0.000665902 0.0583453 0.0542059 36 3765 43 6.99608e+06 294314 648988. 2245.63 7.02 0.230394 0.201432 26050 158493 -1 2745 24 2121 3006 327402 82327 3.86606 3.86606 -143.244 -3.86606 0 0 828058. 2865.25 0.21 0.11 0.14 -1 -1 0.21 0.033625 0.0293349 101 61 58 30 58 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 7.50 vpr 63.42 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30480 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 24.8 MiB 0.63 1034 13906 5203 6656 2047 63.4 MiB 0.14 0.00 4.17744 -150.809 -4.17744 4.17744 0.66 0.000786314 0.0007256 0.0648143 0.0602028 46 3490 34 6.99608e+06 250167 828058. 2865.25 4.21 0.234526 0.205601 28066 200906 -1 2372 20 2365 2885 199600 43888 4.29595 4.29595 -158.61 -4.29595 0 0 1.01997e+06 3529.29 0.24 0.05 0.12 -1 -1 0.24 0.0181963 0.0162639 107 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 6.01 vpr 63.53 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30476 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65056 32 32 405 318 1 253 82 17 17 289 -1 unnamed_device 24.9 MiB 0.71 1295 11830 3708 6867 1255 63.5 MiB 0.12 0.00 3.61179 -138.351 -3.61179 3.61179 0.65 0.000769653 0.000714443 0.0543596 0.0505316 44 3300 26 6.99608e+06 264882 787024. 2723.27 2.53 0.213095 0.186394 27778 195446 -1 2703 20 2135 2793 251311 48954 3.60016 3.60016 -142.717 -3.60016 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0309392 0.0271109 108 65 63 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 5.81 vpr 62.73 MiB 0.02 6848 -1 -1 1 0.04 -1 -1 30420 -1 -1 14 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 29 32 287 238 1 172 75 17 17 289 -1 unnamed_device 24.0 MiB 1.15 714 7817 3113 4376 328 62.7 MiB 0.07 0.00 3.29694 -113.946 -3.29694 3.29694 0.66 0.000598654 0.000556858 0.0319076 0.0297032 36 2003 34 6.99608e+06 206020 648988. 2245.63 2.04 0.161036 0.139612 26050 158493 -1 1694 21 1692 2179 190249 39843 3.33251 3.33251 -123.942 -3.33251 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.0250098 0.0217002 73 34 58 29 29 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 7.56 vpr 63.43 MiB 0.03 6872 -1 -1 1 0.03 -1 -1 30276 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 334 290 1 207 78 17 17 289 -1 unnamed_device 24.6 MiB 2.31 796 13192 4518 6301 2373 63.4 MiB 0.11 0.00 3.75163 -124.237 -3.75163 3.75163 0.65 0.000666075 0.000619021 0.0554427 0.0514582 48 2528 41 6.99608e+06 206020 865456. 2994.66 2.59 0.203166 0.177259 28354 207349 -1 1828 24 1787 2127 220585 54742 3.81306 3.81306 -131.476 -3.81306 0 0 1.05005e+06 3633.38 0.30 0.08 0.18 -1 -1 0.30 0.0281309 0.0246089 91 82 0 0 82 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 7.17 vpr 63.34 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 30364 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 31 32 365 281 1 217 80 17 17 289 -1 unnamed_device 24.5 MiB 0.62 1104 8164 1792 5984 388 63.3 MiB 0.08 0.00 3.79614 -138.31 -3.79614 3.79614 0.65 0.000725755 0.000674776 0.0370122 0.034463 38 3147 50 6.99608e+06 250167 678818. 2348.85 3.80 0.21437 0.186139 26626 170182 -1 2366 24 2350 3073 243957 50555 4.16842 4.16842 -156.14 -4.16842 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0335204 0.0292714 92 34 93 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 6.65 vpr 62.91 MiB 0.02 6872 -1 -1 1 0.04 -1 -1 30492 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 29 32 297 254 1 191 77 17 17 289 -1 unnamed_device 24.4 MiB 1.50 924 11813 4851 6237 725 62.9 MiB 0.10 0.00 3.23604 -112.025 -3.23604 3.23604 0.66 0.000600794 0.000558074 0.0462667 0.0429945 38 2436 26 6.99608e+06 235451 678818. 2348.85 2.51 0.164964 0.143726 26626 170182 -1 2073 24 1525 1707 165264 33337 3.16816 3.16816 -115.879 -3.16816 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0277275 0.0240538 81 56 29 29 52 26 +fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 5.70 vpr 62.94 MiB 0.02 6860 -1 -1 1 0.03 -1 -1 30304 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 314 256 1 188 77 17 17 289 -1 unnamed_device 24.3 MiB 0.67 800 12628 5339 6973 316 62.9 MiB 0.11 0.00 3.56959 -131.903 -3.56959 3.56959 0.65 0.000654004 0.000600732 0.0533295 0.0496083 44 2487 30 6.99608e+06 191304 787024. 2723.27 2.31 0.188722 0.165108 27778 195446 -1 1705 17 1533 1922 131004 29711 3.46386 3.46386 -135.208 -3.46386 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.0231807 0.0203723 79 34 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 7.11 vpr 63.52 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30544 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 31 32 387 307 1 239 82 17 17 289 -1 unnamed_device 24.6 MiB 1.09 964 11296 3574 5293 2429 63.5 MiB 0.11 0.00 4.06828 -143.162 -4.06828 4.06828 0.66 0.000746844 0.000693295 0.0502357 0.0466926 40 3214 32 6.99608e+06 279598 706193. 2443.58 3.31 0.210033 0.183403 26914 176310 -1 2600 22 2312 3132 302196 67204 4.44055 4.44055 -164.36 -4.44055 0 0 926341. 3205.33 0.28 0.11 0.13 -1 -1 0.28 0.0328082 0.0285998 105 64 58 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 7.68 vpr 63.12 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30324 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 31 32 308 262 1 192 76 17 17 289 -1 unnamed_device 24.6 MiB 2.18 694 11756 4613 5996 1147 63.1 MiB 0.10 0.00 3.23724 -109.795 -3.23724 3.23724 0.66 0.000634383 0.00058962 0.048792 0.0453597 48 2270 42 6.99608e+06 191304 865456. 2994.66 2.73 0.19567 0.170575 28354 207349 -1 1708 21 1433 1798 169413 41404 3.02657 3.02657 -117.748 -3.02657 0 0 1.05005e+06 3633.38 0.26 0.08 0.17 -1 -1 0.26 0.0260284 0.0226637 81 55 31 31 53 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 6.84 vpr 63.39 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30504 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 32 32 383 307 1 232 82 17 17 289 -1 unnamed_device 24.5 MiB 1.41 911 15034 6476 7971 587 63.4 MiB 0.13 0.00 3.61105 -126.923 -3.61105 3.61105 0.65 0.000752094 0.000699111 0.0661581 0.061449 52 2649 36 6.99608e+06 264882 926341. 3205.33 2.60 0.231913 0.203414 29218 227130 -1 1955 21 1562 2310 216108 47411 3.58131 3.58131 -132.928 -3.58131 0 0 1.14541e+06 3963.36 0.29 0.09 0.21 -1 -1 0.29 0.0311707 0.0272094 103 65 52 26 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 6.79 vpr 63.65 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30308 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65176 31 32 422 339 1 272 85 17 17 289 -1 unnamed_device 25.2 MiB 0.79 1135 16081 6006 7648 2427 63.6 MiB 0.17 0.00 4.67827 -157.924 -4.67827 4.67827 0.68 0.000792008 0.000734923 0.0802752 0.0747246 44 3513 45 6.99608e+06 323745 787024. 2723.27 3.07 0.263699 0.23117 27778 195446 -1 2487 19 2432 3368 259814 58474 4.16544 4.16544 -153.653 -4.16544 0 0 997811. 3452.63 0.25 0.09 0.17 -1 -1 0.25 0.0302425 0.0265272 123 93 31 31 92 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 8.21 vpr 63.42 MiB 0.03 6964 -1 -1 1 0.03 -1 -1 30500 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 333 279 1 208 79 17 17 289 -1 unnamed_device 24.7 MiB 2.40 1185 10050 2506 6241 1303 63.4 MiB 0.09 0.00 3.59004 -135.268 -3.59004 3.59004 0.65 0.000665784 0.000618822 0.0419072 0.0389879 38 3007 50 6.99608e+06 220735 678818. 2348.85 3.16 0.201173 0.174813 26626 170182 -1 2497 20 1576 2252 189478 38614 3.61641 3.61641 -137.232 -3.61641 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0279954 0.0244827 88 61 32 32 60 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 6.34 vpr 63.01 MiB 0.02 6796 -1 -1 1 0.03 -1 -1 30156 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 339 283 1 212 78 17 17 289 -1 unnamed_device 24.5 MiB 0.68 844 13856 5698 7170 988 63.0 MiB 0.15 0.00 3.30794 -123.058 -3.30794 3.30794 0.66 0.000673523 0.000625469 0.0698808 0.0647266 46 2571 29 6.99608e+06 206020 828058. 2865.25 2.87 0.215414 0.189179 28066 200906 -1 1932 23 1732 2132 182492 39438 3.46881 3.46881 -137.482 -3.46881 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0297454 0.025875 91 63 32 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 5.65 vpr 63.45 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30668 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 24.9 MiB 0.84 1239 11118 3579 5407 2132 63.4 MiB 0.11 0.00 3.81515 -143.501 -3.81515 3.81515 0.65 0.000811389 0.000755376 0.0518509 0.0482252 46 2851 29 6.99608e+06 264882 828058. 2865.25 2.08 0.210074 0.183342 28066 200906 -1 2313 22 2167 2631 155247 34639 4.06012 4.06012 -156.461 -4.06012 0 0 1.01997e+06 3529.29 0.25 0.08 0.16 -1 -1 0.25 0.0341321 0.0297773 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 9.01 vpr 63.43 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30500 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64948 29 32 367 293 1 222 82 17 17 289 -1 unnamed_device 24.5 MiB 1.96 913 9160 3758 4976 426 63.4 MiB 0.09 0.00 3.41124 -117.262 -3.41124 3.41124 0.66 0.000713425 0.000661972 0.039312 0.0365267 38 3163 50 6.99608e+06 309029 678818. 2348.85 4.57 0.213015 0.184621 26626 170182 -1 2366 22 2021 2666 214143 45591 3.45781 3.45781 -128.418 -3.45781 0 0 902133. 3121.57 0.21 0.05 0.10 -1 -1 0.21 0.0172219 0.0153018 101 62 56 29 58 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 16.91 vpr 63.69 MiB 0.04 7212 -1 -1 1 0.04 -1 -1 30628 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65216 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 25.3 MiB 0.71 1399 13316 4006 7788 1522 63.7 MiB 0.14 0.00 4.54237 -164.626 -4.54237 4.54237 0.65 0.000861596 0.000800968 0.0638529 0.0593525 38 4423 46 6.99608e+06 323745 678818. 2348.85 13.46 0.409142 0.352873 26626 170182 -1 3297 22 3218 3824 326274 67307 5.28064 5.28064 -197.745 -5.28064 0 0 902133. 3121.57 0.22 0.12 0.14 -1 -1 0.22 0.0391886 0.0340593 140 127 0 0 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 5.89 vpr 62.53 MiB 0.02 6760 -1 -1 1 0.03 -1 -1 30396 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 31 32 259 212 1 143 74 17 17 289 -1 unnamed_device 24.0 MiB 1.13 486 10149 3821 5138 1190 62.5 MiB 0.08 0.00 2.81885 -95.7056 -2.81885 2.81885 0.66 0.000579251 0.000538879 0.0396532 0.0368955 44 2052 46 6.99608e+06 161872 787024. 2723.27 2.23 0.174783 0.151736 27778 195446 -1 1238 21 1095 1683 125081 30710 2.96677 2.96677 -105.273 -2.96677 0 0 997811. 3452.63 0.25 0.06 0.17 -1 -1 0.25 0.02386 0.0207883 57 4 85 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 7.95 vpr 63.66 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30452 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 32 32 418 338 1 263 83 17 17 289 -1 unnamed_device 24.9 MiB 2.60 1299 14303 5218 6688 2397 63.7 MiB 0.14 0.00 4.76923 -166.635 -4.76923 4.76923 0.66 0.000780947 0.000724329 0.0661607 0.0614374 46 3535 24 6.99608e+06 279598 828058. 2865.25 2.54 0.222862 0.195402 28066 200906 -1 2677 20 2133 2707 206557 44781 4.9183 4.9183 -179.353 -4.9183 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0316096 0.0277342 118 92 28 28 92 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 6.17 vpr 63.38 MiB 0.04 6888 -1 -1 1 0.03 -1 -1 30120 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 24.8 MiB 0.84 1244 15216 5143 8703 1370 63.4 MiB 0.14 0.00 4.66407 -173.875 -4.66407 4.66407 0.65 0.00072261 0.000671356 0.0669381 0.0622027 44 3377 41 6.99608e+06 235451 787024. 2723.27 2.60 0.229549 0.201262 27778 195446 -1 2710 23 2830 3577 334042 64971 4.41784 4.41784 -170.681 -4.41784 0 0 997811. 3452.63 0.25 0.11 0.14 -1 -1 0.25 0.0321864 0.0280765 110 96 0 0 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 9.19 vpr 63.62 MiB 0.04 7096 -1 -1 1 0.03 -1 -1 30416 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65152 32 32 401 316 1 247 83 17 17 289 -1 unnamed_device 24.9 MiB 0.83 1129 13403 5326 6238 1839 63.6 MiB 0.12 0.00 3.33684 -128.417 -3.33684 3.33684 0.89 0.000594434 0.000544882 0.047438 0.0435706 38 3758 46 6.99608e+06 279598 678818. 2348.85 5.29 0.223512 0.194629 26626 170182 -1 2630 34 2888 3886 472852 174027 3.46381 3.46381 -137.765 -3.46381 0 0 902133. 3121.57 0.22 0.19 0.11 -1 -1 0.22 0.051104 0.0443431 106 65 61 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 6.70 vpr 63.66 MiB 0.03 7224 -1 -1 1 0.04 -1 -1 30760 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 32 32 500 382 1 312 86 17 17 289 -1 unnamed_device 25.4 MiB 0.73 1500 14261 4373 7976 1912 63.7 MiB 0.15 0.00 4.89654 -177.942 -4.89654 4.89654 0.66 0.000916428 0.000851489 0.0727778 0.0675792 40 4008 30 6.99608e+06 323745 706193. 2443.58 3.08 0.264564 0.231667 26914 176310 -1 3530 20 2959 3413 351818 70177 5.7166 5.7166 -206.283 -5.7166 0 0 926341. 3205.33 0.23 0.12 0.15 -1 -1 0.23 0.0367643 0.0321517 140 96 64 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 7.02 vpr 62.66 MiB 0.02 6832 -1 -1 1 0.04 -1 -1 30324 -1 -1 13 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64160 30 32 246 229 1 154 75 17 17 289 -1 unnamed_device 24.1 MiB 1.99 577 8449 3482 4728 239 62.7 MiB 0.07 0.00 2.75275 -95.2487 -2.75275 2.75275 0.65 0.000622691 0.000578741 0.0303429 0.0281888 36 2266 49 6.99608e+06 191304 648988. 2245.63 2.52 0.156173 0.134535 26050 158493 -1 1499 21 1050 1078 106570 24258 2.50972 2.50972 -92.34 -2.50972 0 0 828058. 2865.25 0.21 0.06 0.14 -1 -1 0.21 0.0219706 0.0190439 65 56 0 0 53 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 7.51 vpr 62.91 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30320 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 30 32 296 244 1 167 76 17 17 289 -1 unnamed_device 24.1 MiB 2.96 870 9516 3877 5353 286 62.9 MiB 0.08 0.00 3.41559 -121.499 -3.41559 3.41559 0.70 0.000621678 0.000577698 0.0394262 0.0367199 34 2262 25 6.99608e+06 206020 618332. 2139.56 1.93 0.155262 0.135243 25762 151098 -1 2017 17 1345 1924 207544 41045 3.77871 3.77871 -138.876 -3.77871 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0219026 0.0191797 72 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 6.28 vpr 62.87 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30104 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 314 256 1 192 76 17 17 289 -1 unnamed_device 24.2 MiB 0.23 764 10316 3722 4683 1911 62.9 MiB 0.10 0.00 3.37904 -128.379 -3.37904 3.37904 0.66 0.000656069 0.000609362 0.0452644 0.0420766 44 3301 35 6.99608e+06 176588 787024. 2723.27 3.28 0.189806 0.165692 27778 195446 -1 2175 23 1997 3097 279579 59041 4.02761 4.02761 -148.877 -4.02761 0 0 997811. 3452.63 0.25 0.10 0.21 -1 -1 0.25 0.029171 0.0254909 80 34 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 5.04 vpr 62.72 MiB 0.02 6792 -1 -1 1 0.03 -1 -1 30584 -1 -1 18 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 25 32 251 214 1 151 75 17 17 289 -1 unnamed_device 24.2 MiB 0.68 497 10819 4307 4933 1579 62.7 MiB 0.09 0.00 3.31386 -89.9377 -3.31386 3.31386 0.66 0.000647088 0.000603037 0.0407049 0.0379379 38 1712 31 6.99608e+06 264882 678818. 2348.85 1.86 0.154522 0.134353 26626 170182 -1 1320 22 963 1230 96690 22063 3.39857 3.39857 -101.795 -3.39857 0 0 902133. 3121.57 0.22 0.06 0.15 -1 -1 0.22 0.0239852 0.0208942 68 34 50 25 25 25 +fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 7.03 vpr 63.52 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 30540 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 25.0 MiB 0.87 1423 14358 4574 7658 2126 63.5 MiB 0.14 0.00 3.77875 -143.667 -3.77875 3.77875 0.66 0.000812114 0.000754269 0.0663138 0.0615622 46 3969 25 6.99608e+06 294314 828058. 2865.25 3.26 0.23514 0.205869 28066 200906 -1 3185 20 2725 3857 351467 66878 4.26372 4.26372 -163.922 -4.26372 0 0 1.01997e+06 3529.29 0.35 0.11 0.20 -1 -1 0.35 0.0291451 0.0258444 125 94 32 32 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 5.82 vpr 63.66 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 30448 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 31 32 421 339 1 270 85 17 17 289 -1 unnamed_device 24.9 MiB 0.83 1182 13663 4698 6384 2581 63.7 MiB 0.14 0.00 4.16978 -143.827 -4.16978 4.16978 0.66 0.000782365 0.000726129 0.0639972 0.0594537 46 3209 24 6.99608e+06 323745 828058. 2865.25 2.13 0.221252 0.193906 28066 200906 -1 2521 22 2567 3385 263451 56153 4.22545 4.22545 -148.772 -4.22545 0 0 1.01997e+06 3529.29 0.28 0.10 0.17 -1 -1 0.28 0.0337162 0.029429 121 94 29 29 93 31 +fixed_k6_frac_N8_22nm.xml mult_001.v common 7.82 vpr 62.77 MiB 0.05 6892 -1 -1 14 0.26 -1 -1 32872 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 280 312 1 207 83 17 17 289 -1 unnamed_device 24.2 MiB 1.92 1265 9263 2276 5364 1623 62.8 MiB 0.10 0.00 8.4853 -170.751 -8.4853 8.4853 0.65 0.000918685 0.000842563 0.0518695 0.047945 44 3187 47 6.79088e+06 255968 787024. 2723.27 2.81 0.27075 0.235219 27118 194962 -1 2631 28 1281 3462 414391 183728 7.3431 7.3431 -158.204 -7.3431 0 0 997811. 3452.63 0.25 0.16 0.16 -1 -1 0.25 0.0486984 0.0424814 134 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_002.v common 7.72 vpr 62.73 MiB 0.05 6788 -1 -1 14 0.28 -1 -1 32844 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 30 32 277 309 1 214 82 17 17 289 -1 unnamed_device 24.1 MiB 1.54 1228 8270 2008 5297 965 62.7 MiB 0.09 0.00 7.98833 -161.421 -7.98833 7.98833 0.65 0.000900735 0.000835664 0.0455987 0.0423016 38 3303 16 6.79088e+06 269440 678818. 2348.85 3.25 0.221943 0.193173 25966 169698 -1 2639 16 1263 3342 171552 38680 6.92108 6.92108 -150.777 -6.92108 0 0 902133. 3121.57 0.22 0.08 0.15 -1 -1 0.22 0.0323699 0.0285516 132 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_003.v common 9.54 vpr 62.64 MiB 0.05 6868 -1 -1 11 0.22 -1 -1 32724 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 274 306 1 200 84 17 17 289 -1 unnamed_device 24.1 MiB 1.62 1125 11613 3520 5862 2231 62.6 MiB 0.12 0.00 7.03202 -141.666 -7.03202 7.03202 0.66 0.00088626 0.000820018 0.060814 0.0562856 38 3591 44 6.79088e+06 269440 678818. 2348.85 4.94 0.275465 0.239832 25966 169698 -1 2625 14 1280 3774 213979 47553 6.12643 6.12643 -134.975 -6.12643 0 0 902133. 3121.57 0.28 0.08 0.14 -1 -1 0.28 0.0269666 0.0243256 138 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_004.v common 12.22 vpr 62.88 MiB 0.05 6816 -1 -1 12 0.33 -1 -1 32728 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 29 32 269 301 1 191 83 17 17 289 -1 unnamed_device 24.2 MiB 1.34 1021 7643 1879 4700 1064 62.9 MiB 0.08 0.00 7.24011 -138.658 -7.24011 7.24011 0.65 0.000902471 0.00083621 0.0419129 0.038825 38 2805 20 6.79088e+06 296384 678818. 2348.85 7.90 0.347136 0.299365 25966 169698 -1 2367 17 1240 3768 185598 43157 6.41977 6.41977 -135.412 -6.41977 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0334068 0.0294597 136 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_005.v common 26.54 vpr 63.18 MiB 0.02 6796 -1 -1 13 0.31 -1 -1 32900 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 317 349 1 251 88 17 17 289 -1 unnamed_device 24.6 MiB 2.01 1463 12568 3276 7023 2269 63.2 MiB 0.14 0.00 8.02445 -169.708 -8.02445 8.02445 0.65 0.00103692 0.000960661 0.0710613 0.0657986 40 3628 20 6.79088e+06 323328 706193. 2443.58 21.50 0.459173 0.397886 26254 175826 -1 3546 18 1747 4686 306027 66756 7.21431 7.21431 -166.609 -7.21431 0 0 926341. 3205.33 0.23 0.11 0.11 -1 -1 0.23 0.0397939 0.0351206 160 223 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_006.v common 21.92 vpr 63.14 MiB 0.03 6672 -1 -1 12 0.30 -1 -1 32760 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 299 331 1 221 88 17 17 289 -1 unnamed_device 24.7 MiB 2.18 1344 4768 918 3685 165 63.1 MiB 0.06 0.00 7.61832 -163.245 -7.61832 7.61832 0.66 0.000956906 0.000885912 0.0273586 0.0254022 40 3616 33 6.79088e+06 323328 706193. 2443.58 16.69 0.435675 0.374235 26254 175826 -1 3273 18 1457 4340 288576 61849 6.72076 6.72076 -158.409 -6.72076 0 0 926341. 3205.33 0.26 0.10 0.15 -1 -1 0.26 0.036881 0.0324977 150 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_007.v common 8.28 vpr 62.25 MiB 0.04 6524 -1 -1 12 0.17 -1 -1 32312 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63740 27 32 210 242 1 166 79 17 17 289 -1 unnamed_device 23.6 MiB 1.46 1000 7177 1656 4753 768 62.2 MiB 0.08 0.00 7.28149 -137.47 -7.28149 7.28149 0.70 0.000785571 0.000725222 0.0379845 0.0353239 36 2895 37 6.79088e+06 269440 648988. 2245.63 4.03 0.19796 0.172069 25390 158009 -1 2329 17 1036 2684 168880 36813 6.33023 6.33023 -130.669 -6.33023 0 0 828058. 2865.25 0.21 0.07 0.13 -1 -1 0.21 0.0258128 0.0227753 101 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_008.v common 7.06 vpr 62.97 MiB 0.03 6736 -1 -1 11 0.21 -1 -1 32708 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 31 32 264 296 1 191 81 17 17 289 -1 unnamed_device 24.2 MiB 1.22 1129 9531 2421 6090 1020 63.0 MiB 0.10 0.00 6.82017 -140.384 -6.82017 6.82017 0.65 0.00085361 0.000782909 0.0498167 0.0459766 38 3033 23 6.79088e+06 242496 678818. 2348.85 3.11 0.22151 0.192635 25966 169698 -1 2485 16 1084 3157 175367 37866 5.90727 5.90727 -134.309 -5.90727 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0299203 0.0264289 118 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_009.v common 8.58 vpr 62.41 MiB 0.02 6596 -1 -1 12 0.17 -1 -1 32432 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 31 32 234 266 1 191 81 17 17 289 -1 unnamed_device 24.0 MiB 2.35 1115 11631 3187 7135 1309 62.4 MiB 0.11 0.00 6.73244 -139.285 -6.73244 6.73244 0.66 0.000750036 0.000694909 0.0537423 0.0497747 36 2986 40 6.79088e+06 242496 648988. 2245.63 3.60 0.228049 0.198627 25390 158009 -1 2466 16 1109 2457 151344 34475 5.61753 5.61753 -130.399 -5.61753 0 0 828058. 2865.25 0.21 0.07 0.09 -1 -1 0.21 0.0240555 0.0215892 111 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_010.v common 13.93 vpr 62.48 MiB 0.04 6492 -1 -1 13 0.19 -1 -1 32756 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 253 285 1 183 80 17 17 289 -1 unnamed_device 24.0 MiB 1.39 1011 5412 1090 4064 258 62.5 MiB 0.06 0.00 7.30367 -163.797 -7.30367 7.30367 0.68 0.000818333 0.000758248 0.0291177 0.0270238 34 3575 46 6.79088e+06 215552 618332. 2139.56 9.66 0.326418 0.280578 25102 150614 -1 2661 17 1187 2840 180392 41089 6.24757 6.24757 -161.543 -6.24757 0 0 787024. 2723.27 0.29 0.08 0.16 -1 -1 0.29 0.0283984 0.0255369 107 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_011.v common 5.79 vpr 62.36 MiB 0.04 6696 -1 -1 12 0.20 -1 -1 32580 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 30 32 217 249 1 159 78 17 17 289 -1 unnamed_device 23.7 MiB 1.28 838 6386 1352 4871 163 62.4 MiB 0.06 0.00 7.31171 -145.298 -7.31171 7.31171 0.65 0.000704057 0.000652366 0.0298531 0.027698 38 2306 22 6.79088e+06 215552 678818. 2348.85 1.81 0.167761 0.145296 25966 169698 -1 1871 14 880 2296 117186 27589 5.99697 5.99697 -134.057 -5.99697 0 0 902133. 3121.57 0.22 0.06 0.14 -1 -1 0.22 0.0228644 0.02028 93 129 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_012.v common 14.78 vpr 62.56 MiB 0.04 6576 -1 -1 12 0.13 -1 -1 32640 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 227 259 1 170 78 17 17 289 -1 unnamed_device 24.0 MiB 1.79 1055 4560 1014 3240 306 62.6 MiB 0.05 0.00 6.46989 -155.558 -6.46989 6.46989 0.65 0.000711279 0.000658672 0.0224351 0.0207874 40 2500 20 6.79088e+06 188608 706193. 2443.58 10.22 0.304683 0.261469 26254 175826 -1 2439 18 1033 2706 185859 39937 5.76047 5.76047 -146.93 -5.76047 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0273718 0.0240864 94 133 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_013.v common 10.79 vpr 63.09 MiB 0.05 6788 -1 -1 13 0.26 -1 -1 32844 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 306 338 1 226 85 17 17 289 -1 unnamed_device 24.4 MiB 1.35 1239 11431 3102 6258 2071 63.1 MiB 0.12 0.00 7.91359 -165.523 -7.91359 7.91359 0.65 0.000982646 0.000909573 0.0643446 0.0595706 36 3864 39 6.79088e+06 282912 648988. 2245.63 6.50 0.292082 0.254274 25390 158009 -1 2940 20 1414 4034 257854 56811 6.96366 6.96366 -158.79 -6.96366 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0406202 0.0356797 148 212 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_014.v common 7.19 vpr 63.16 MiB 0.02 6712 -1 -1 14 0.32 -1 -1 33096 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 302 334 1 227 85 17 17 289 -1 unnamed_device 24.4 MiB 1.61 1366 11245 3016 6173 2056 63.2 MiB 0.12 0.00 9.12295 -182.881 -9.12295 9.12295 0.66 0.000987436 0.000913718 0.0634744 0.0587717 40 3379 26 6.79088e+06 282912 706193. 2443.58 2.41 0.264704 0.230631 26254 175826 -1 3220 26 1846 5278 524665 186744 7.97735 7.97735 -176.98 -7.97735 0 0 926341. 3205.33 0.23 0.18 0.15 -1 -1 0.23 0.0503228 0.0439428 149 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_015.v common 12.93 vpr 62.42 MiB 0.05 6592 -1 -1 11 0.18 -1 -1 32400 -1 -1 20 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 29 32 238 270 1 181 81 17 17 289 -1 unnamed_device 24.0 MiB 1.36 857 12681 3929 6469 2283 62.4 MiB 0.11 0.00 6.92892 -133.02 -6.92892 6.92892 0.65 0.000754333 0.000698506 0.0580178 0.0537936 40 2281 19 6.79088e+06 269440 706193. 2443.58 8.81 0.35973 0.31113 26254 175826 -1 2219 18 1178 2818 179355 42380 6.07609 6.07609 -130.204 -6.07609 0 0 926341. 3205.33 0.22 0.06 0.10 -1 -1 0.22 0.0265573 0.0234187 111 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_016.v common 9.35 vpr 63.44 MiB 0.04 6792 -1 -1 12 0.27 -1 -1 32872 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 306 338 1 232 84 17 17 289 -1 unnamed_device 24.7 MiB 2.32 1420 13992 4103 7703 2186 63.4 MiB 0.16 0.00 7.6046 -160.271 -7.6046 7.6046 0.68 0.000996273 0.000922694 0.0805561 0.0744952 46 4023 39 6.79088e+06 269440 828058. 2865.25 3.87 0.306314 0.267628 27406 200422 -1 3200 19 1574 4974 254840 56326 6.46241 6.46241 -152.411 -6.46241 0 0 1.01997e+06 3529.29 0.26 0.10 0.18 -1 -1 0.26 0.0400629 0.0352882 146 212 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_017.v common 8.49 vpr 63.16 MiB 0.02 6812 -1 -1 13 0.27 -1 -1 32760 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 311 343 1 226 85 17 17 289 -1 unnamed_device 24.4 MiB 1.47 1236 10687 3174 5565 1948 63.2 MiB 0.12 0.00 8.28661 -168.45 -8.28661 8.28661 0.65 0.000994362 0.000915789 0.0612016 0.0566778 38 3417 39 6.79088e+06 282912 678818. 2348.85 4.07 0.294005 0.255666 25966 169698 -1 2856 18 1463 4224 225289 50661 7.25695 7.25695 -164.08 -7.25695 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0386639 0.0340435 144 217 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_018.v common 6.71 vpr 62.29 MiB 0.02 6568 -1 -1 12 0.17 -1 -1 32444 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 32 32 230 262 1 172 80 17 17 289 -1 unnamed_device 23.6 MiB 1.87 945 7992 1779 4650 1563 62.3 MiB 0.08 0.00 6.70943 -154.61 -6.70943 6.70943 0.67 0.000749537 0.000691153 0.0379579 0.0351627 36 2644 29 6.79088e+06 215552 648988. 2245.63 2.06 0.196131 0.170264 25390 158009 -1 2265 14 924 2438 141434 32012 6.24403 6.24403 -153.622 -6.24403 0 0 828058. 2865.25 0.21 0.06 0.15 -1 -1 0.21 0.0246236 0.0218536 104 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_019.v common 6.98 vpr 61.93 MiB 0.02 6508 -1 -1 10 0.12 -1 -1 32304 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63416 30 32 176 208 1 138 74 17 17 289 -1 unnamed_device 23.3 MiB 2.40 878 7049 1926 4350 773 61.9 MiB 0.06 0.00 5.18321 -124.627 -5.18321 5.18321 0.66 0.000572093 0.000531662 0.0294834 0.0273781 38 2075 46 6.79088e+06 161664 678818. 2348.85 2.03 0.162851 0.140726 25966 169698 -1 1842 15 742 1729 104172 22975 4.71101 4.71101 -125.986 -4.71101 0 0 902133. 3121.57 0.22 0.05 0.14 -1 -1 0.22 0.0190775 0.0167779 67 88 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_020.v common 6.75 vpr 62.41 MiB 0.04 6632 -1 -1 13 0.21 -1 -1 32700 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 31 32 226 258 1 173 79 17 17 289 -1 unnamed_device 23.8 MiB 1.81 974 6332 1469 4570 293 62.4 MiB 0.07 0.00 7.59608 -163.359 -7.59608 7.59608 0.67 0.000746479 0.000692004 0.0314776 0.0291664 38 2544 18 6.79088e+06 215552 678818. 2348.85 2.04 0.180037 0.156505 25966 169698 -1 2069 15 925 2237 117468 27019 6.53742 6.53742 -150.943 -6.53742 0 0 902133. 3121.57 0.22 0.06 0.14 -1 -1 0.22 0.0249529 0.0220905 99 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_021.v common 7.45 vpr 62.77 MiB 0.02 6672 -1 -1 13 0.28 -1 -1 32912 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 302 334 1 222 86 17 17 289 -1 unnamed_device 24.3 MiB 1.20 1254 12371 3408 7445 1518 62.8 MiB 0.15 0.00 7.46133 -157.73 -7.46133 7.46133 0.72 0.000960148 0.000888014 0.076876 0.0710101 38 3224 45 6.79088e+06 296384 678818. 2348.85 3.12 0.306199 0.267499 25966 169698 -1 2788 18 1503 4101 216942 48982 6.74533 6.74533 -153.39 -6.74533 0 0 902133. 3121.57 0.22 0.10 0.16 -1 -1 0.22 0.0388915 0.0342658 143 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_022.v common 7.67 vpr 63.13 MiB 0.02 6792 -1 -1 13 0.30 -1 -1 33132 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 299 331 1 221 83 17 17 289 -1 unnamed_device 24.7 MiB 1.84 1425 10883 2960 6054 1869 63.1 MiB 0.12 0.00 8.13867 -171.504 -8.13867 8.13867 0.65 0.000956134 0.000885132 0.0618236 0.0572714 40 3438 18 6.79088e+06 255968 706193. 2443.58 2.77 0.261008 0.227515 26254 175826 -1 3243 28 1533 4313 517934 211444 7.06211 7.06211 -164.608 -7.06211 0 0 926341. 3205.33 0.23 0.18 0.15 -1 -1 0.23 0.0510905 0.0445997 141 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_023.v common 4.94 vpr 61.77 MiB 0.03 6404 -1 -1 9 0.10 -1 -1 32124 -1 -1 16 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63256 26 32 149 181 1 119 74 17 17 289 -1 unnamed_device 23.2 MiB 1.54 588 10149 2859 5591 1699 61.8 MiB 0.07 0.00 4.97273 -93.6629 -4.97273 4.97273 0.66 0.000499776 0.000464726 0.034537 0.0321232 30 1736 26 6.79088e+06 215552 556674. 1926.21 0.85 0.0980044 0.0860494 24526 138013 -1 1364 16 573 1321 72341 16600 4.27123 4.27123 -90.7925 -4.27123 0 0 706193. 2443.58 0.18 0.04 0.12 -1 -1 0.18 0.0176496 0.0154682 64 73 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_024.v common 8.64 vpr 63.10 MiB 0.02 6696 -1 -1 13 0.34 -1 -1 32848 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 304 336 1 222 86 17 17 289 -1 unnamed_device 24.4 MiB 2.17 1289 7268 1575 5261 432 63.1 MiB 0.09 0.00 8.3813 -168.316 -8.3813 8.3813 0.65 0.000974086 0.000903302 0.0414575 0.0384207 38 3745 37 6.79088e+06 296384 678818. 2348.85 3.49 0.257695 0.22336 25966 169698 -1 2829 22 1498 3994 208332 49057 7.33967 7.33967 -159.087 -7.33967 0 0 902133. 3121.57 0.22 0.10 0.16 -1 -1 0.22 0.0426348 0.0373043 137 210 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_025.v common 5.69 vpr 61.86 MiB 0.03 6352 -1 -1 8 0.10 -1 -1 30992 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63344 32 32 155 187 1 128 81 17 17 289 -1 unnamed_device 23.3 MiB 2.32 737 11631 4246 5219 2166 61.9 MiB 0.08 0.00 4.77835 -104.906 -4.77835 4.77835 0.65 0.000514294 0.000477895 0.0373539 0.0347392 30 1930 29 6.79088e+06 229024 556674. 1926.21 0.97 0.104463 0.0919141 24526 138013 -1 1556 18 651 1433 81377 18685 4.0956 4.0956 -102.965 -4.0956 0 0 706193. 2443.58 0.18 0.03 0.08 -1 -1 0.18 0.0110387 0.00987682 64 61 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_026.v common 6.92 vpr 62.70 MiB 0.04 6832 -1 -1 15 0.23 -1 -1 33148 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 253 285 1 192 81 17 17 289 -1 unnamed_device 24.2 MiB 1.82 1155 10581 3115 6097 1369 62.7 MiB 0.11 0.00 8.86251 -178.17 -8.86251 8.86251 0.69 0.000849706 0.000788254 0.0572703 0.0531995 46 2717 18 6.79088e+06 229024 828058. 2865.25 2.06 0.230695 0.201731 27406 200422 -1 2305 15 984 2683 138652 31196 7.79833 7.79833 -164.21 -7.79833 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0285159 0.0252333 118 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_027.v common 9.74 vpr 63.09 MiB 0.02 6772 -1 -1 12 0.25 -1 -1 32780 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64600 32 32 309 341 1 218 86 17 17 289 -1 unnamed_device 24.4 MiB 1.52 1241 4433 817 3477 139 63.1 MiB 0.06 0.00 7.21583 -155.808 -7.21583 7.21583 0.70 0.000977367 0.000903724 0.0277414 0.025713 36 4047 49 6.79088e+06 296384 648988. 2245.63 5.46 0.266888 0.231106 25390 158009 -1 3080 26 1780 5685 441383 135939 6.24054 6.24054 -147.996 -6.24054 0 0 828058. 2865.25 0.20 0.09 0.09 -1 -1 0.20 0.027633 0.0245762 145 215 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_028.v common 7.53 vpr 62.81 MiB 0.02 6708 -1 -1 13 0.28 -1 -1 32684 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 289 321 1 212 84 17 17 289 -1 unnamed_device 24.2 MiB 1.33 1284 4659 748 3690 221 62.8 MiB 0.06 0.00 8.13835 -165.274 -8.13835 8.13835 0.65 0.000914223 0.000845613 0.0282342 0.0261828 38 3292 49 6.79088e+06 269440 678818. 2348.85 3.31 0.258067 0.222906 25966 169698 -1 2675 18 1339 3722 195352 44319 6.88526 6.88526 -154.561 -6.88526 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0353296 0.0310848 136 195 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_029.v common 6.36 vpr 62.48 MiB 0.05 6576 -1 -1 12 0.19 -1 -1 32288 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 239 271 1 179 83 17 17 289 -1 unnamed_device 24.0 MiB 2.05 1045 5303 1002 3952 349 62.5 MiB 0.06 0.00 6.60115 -147.873 -6.60115 6.60115 0.65 0.000766293 0.000709242 0.0256175 0.023697 38 2622 19 6.79088e+06 255968 678818. 2348.85 1.76 0.175372 0.151829 25966 169698 -1 2310 14 940 2469 134532 30494 5.90389 5.90389 -141.743 -5.90389 0 0 902133. 3121.57 0.21 0.04 0.09 -1 -1 0.21 0.0148605 0.0135481 106 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_030.v common 7.28 vpr 62.15 MiB 0.02 6520 -1 -1 11 0.15 -1 -1 32716 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 30 32 213 245 1 166 82 17 17 289 -1 unnamed_device 23.5 MiB 1.87 954 11652 3379 7115 1158 62.1 MiB 0.10 0.00 6.23714 -130.615 -6.23714 6.23714 0.67 0.000692035 0.00064107 0.0481296 0.0446396 38 2452 30 6.79088e+06 269440 678818. 2348.85 2.69 0.194208 0.169217 25966 169698 -1 2025 16 952 2455 147220 32167 5.44954 5.44954 -130.105 -5.44954 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0258718 0.0228321 97 125 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_031.v common 7.40 vpr 62.30 MiB 0.02 6604 -1 -1 11 0.15 -1 -1 32412 -1 -1 19 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 28 32 221 253 1 179 79 17 17 289 -1 unnamed_device 23.9 MiB 1.17 1013 7346 1810 4929 607 62.3 MiB 0.07 0.00 6.76313 -133.919 -6.76313 6.76313 0.65 0.000727466 0.000674401 0.0346294 0.0321114 36 2839 26 6.79088e+06 255968 648988. 2245.63 3.52 0.188786 0.164067 25390 158009 -1 2411 17 1234 3161 183810 41439 5.81774 5.81774 -129.793 -5.81774 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0268238 0.0236634 107 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_032.v common 7.50 vpr 62.93 MiB 0.04 6652 -1 -1 12 0.19 -1 -1 32424 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 273 305 1 207 83 17 17 289 -1 unnamed_device 24.1 MiB 1.93 1274 9443 2812 5690 941 62.9 MiB 0.10 0.00 6.88424 -161.28 -6.88424 6.88424 0.65 0.000859532 0.000796501 0.0497391 0.0460911 38 3239 49 6.79088e+06 255968 678818. 2348.85 2.74 0.260935 0.226094 25966 169698 -1 2702 19 1357 3398 176130 39887 6.07609 6.07609 -157.356 -6.07609 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.034222 0.0300518 119 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_033.v common 7.39 vpr 62.39 MiB 0.03 6508 -1 -1 11 0.17 -1 -1 32520 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 31 32 238 270 1 181 80 17 17 289 -1 unnamed_device 23.9 MiB 1.49 908 10056 3226 4794 2036 62.4 MiB 0.10 0.00 6.39517 -140.882 -6.39517 6.39517 0.66 0.000772882 0.000715927 0.0483496 0.0448044 36 2970 31 6.79088e+06 229024 648988. 2245.63 3.11 0.220481 0.192112 25390 158009 -1 2301 17 1161 3108 192775 44194 5.65324 5.65324 -139.772 -5.65324 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.028406 0.025032 107 147 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_034.v common 5.91 vpr 62.52 MiB 0.04 6676 -1 -1 10 0.17 -1 -1 32640 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 29 32 221 253 1 160 79 17 17 289 -1 unnamed_device 23.9 MiB 1.38 870 8022 2297 4713 1012 62.5 MiB 0.08 0.00 6.19022 -129.37 -6.19022 6.19022 0.69 0.00072027 0.000666601 0.0365349 0.0337065 34 2314 24 6.79088e+06 242496 618332. 2139.56 1.86 0.190137 0.165164 25102 150614 -1 2008 19 795 2271 131804 30171 5.57822 5.57822 -125.253 -5.57822 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0286698 0.0251962 103 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_035.v common 9.82 vpr 63.10 MiB 0.02 6808 -1 -1 13 0.32 -1 -1 33424 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 333 365 1 236 86 17 17 289 -1 unnamed_device 24.5 MiB 1.48 1352 10103 2504 6636 963 63.1 MiB 0.12 0.00 7.85531 -169.709 -7.85531 7.85531 0.66 0.00106153 0.000980609 0.0609609 0.0563514 38 3914 48 6.79088e+06 296384 678818. 2348.85 5.45 0.320641 0.278858 25966 169698 -1 3084 20 1441 4689 253476 55219 6.88531 6.88531 -159.581 -6.88531 0 0 902133. 3121.57 0.21 0.06 0.09 -1 -1 0.21 0.0252382 0.0227633 162 239 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_036.v common 12.02 vpr 63.28 MiB 0.05 6816 -1 -1 13 0.32 -1 -1 32952 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 297 329 1 231 85 17 17 289 -1 unnamed_device 24.5 MiB 1.67 1274 13849 4315 6877 2657 63.3 MiB 0.15 0.00 7.85526 -169.716 -7.85526 7.85526 0.65 0.000983715 0.000910464 0.0767195 0.070801 36 4447 42 6.79088e+06 282912 648988. 2245.63 7.33 0.315242 0.275346 25390 158009 -1 3232 21 1963 5759 386051 89615 6.78453 6.78453 -165.458 -6.78453 0 0 828058. 2865.25 0.21 0.13 0.14 -1 -1 0.21 0.0427464 0.0374926 152 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_037.v common 10.24 vpr 62.39 MiB 0.05 6552 -1 -1 12 0.15 -1 -1 32844 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 31 32 234 266 1 169 81 17 17 289 -1 unnamed_device 23.7 MiB 1.25 851 11631 4796 6628 207 62.4 MiB 0.11 0.00 7.11438 -152.359 -7.11438 7.11438 0.65 0.00074102 0.000685826 0.0524204 0.0485176 36 2928 40 6.79088e+06 242496 648988. 2245.63 6.20 0.231086 0.201834 25390 158009 -1 2261 17 1051 2832 184145 41060 6.29098 6.29098 -147.205 -6.29098 0 0 828058. 2865.25 0.20 0.07 0.09 -1 -1 0.20 0.0267652 0.0236954 102 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_038.v common 6.63 vpr 63.24 MiB 0.02 6700 -1 -1 12 0.26 -1 -1 33056 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 31 32 310 342 1 217 86 17 17 289 -1 unnamed_device 24.5 MiB 1.18 1154 12749 3915 6368 2466 63.2 MiB 0.14 0.00 7.84323 -159.621 -7.84323 7.84323 0.59 0.000978239 0.000905998 0.0705089 0.0652143 40 3413 28 6.79088e+06 309856 706193. 2443.58 2.57 0.275407 0.240257 26254 175826 -1 2995 23 1839 5712 332103 77359 6.96022 6.96022 -155.826 -6.96022 0 0 926341. 3205.33 0.22 0.12 0.12 -1 -1 0.22 0.0450531 0.039395 148 219 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_039.v common 14.38 vpr 62.95 MiB 0.05 6764 -1 -1 14 0.35 -1 -1 33104 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 31 32 284 316 1 219 84 17 17 289 -1 unnamed_device 24.4 MiB 1.19 1375 11247 2864 6672 1711 63.0 MiB 0.12 0.00 8.18012 -172.817 -8.18012 8.18012 0.65 0.000955624 0.000885556 0.0625237 0.0579839 36 4160 47 6.79088e+06 282912 648988. 2245.63 10.10 0.408809 0.353661 25390 158009 -1 3295 20 1448 4046 254393 55212 7.30047 7.30047 -166.625 -7.30047 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0394323 0.0346858 146 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_040.v common 7.29 vpr 62.67 MiB 0.04 6880 -1 -1 13 0.26 -1 -1 32808 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 31 32 271 303 1 211 84 17 17 289 -1 unnamed_device 24.0 MiB 2.17 1310 10149 2655 5632 1862 62.7 MiB 0.11 0.00 7.78561 -164.423 -7.78561 7.78561 0.66 0.000879432 0.000814639 0.0527774 0.0489338 40 3171 33 6.79088e+06 282912 706193. 2443.58 2.17 0.241611 0.21026 26254 175826 -1 2932 18 1410 3652 240235 52553 7.08209 7.08209 -161.624 -7.08209 0 0 926341. 3205.33 0.23 0.09 0.16 -1 -1 0.23 0.0344146 0.0302114 126 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_041.v common 19.05 vpr 62.61 MiB 0.02 6692 -1 -1 12 0.24 -1 -1 32904 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 31 32 280 312 1 206 86 17 17 289 -1 unnamed_device 24.0 MiB 0.92 1267 10859 2857 6722 1280 62.6 MiB 0.12 0.00 7.65156 -158.395 -7.65156 7.65156 0.66 0.00108257 0.000995625 0.0592775 0.0548986 40 3210 25 6.79088e+06 309856 706193. 2443.58 15.11 0.423023 0.36614 26254 175826 -1 3013 17 1224 3601 230109 50036 6.59546 6.59546 -152.651 -6.59546 0 0 926341. 3205.33 0.27 0.09 0.15 -1 -1 0.27 0.0351359 0.0311736 135 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_042.v common 8.22 vpr 62.56 MiB 0.04 6732 -1 -1 12 0.20 -1 -1 32832 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 264 296 1 188 81 17 17 289 -1 unnamed_device 24.1 MiB 1.12 1093 11106 3659 5731 1716 62.6 MiB 0.11 0.00 7.11863 -144.901 -7.11863 7.11863 0.60 0.00083187 0.000770231 0.0562454 0.0521067 36 3341 42 6.79088e+06 229024 648988. 2245.63 4.34 0.251322 0.218438 25390 158009 -1 2534 19 1305 3419 209779 47129 6.48693 6.48693 -144.823 -6.48693 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.033241 0.0291358 113 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_043.v common 8.80 vpr 63.43 MiB 0.04 7024 -1 -1 14 0.47 -1 -1 32520 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 32 32 339 371 1 247 89 17 17 289 -1 unnamed_device 24.5 MiB 1.32 1406 13355 3498 8147 1710 63.4 MiB 0.16 0.00 8.18038 -175.8 -8.18038 8.18038 0.65 0.00108322 0.00100082 0.0825634 0.0763236 38 4021 47 6.79088e+06 336800 678818. 2348.85 4.21 0.348322 0.304694 25966 169698 -1 3245 16 1675 4934 268217 59005 7.49762 7.49762 -171.824 -7.49762 0 0 902133. 3121.57 0.27 0.10 0.14 -1 -1 0.27 0.0389529 0.0345345 169 245 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_044.v common 8.93 vpr 62.46 MiB 0.02 6524 -1 -1 11 0.22 -1 -1 32520 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63956 31 32 246 278 1 185 81 17 17 289 -1 unnamed_device 23.9 MiB 1.60 1088 9006 2212 5478 1316 62.5 MiB 0.09 0.00 6.58747 -141.672 -6.58747 6.58747 0.65 0.000814582 0.000754596 0.045453 0.042099 36 3313 23 6.79088e+06 242496 648988. 2245.63 4.53 0.215458 0.187331 25390 158009 -1 2796 18 1373 3660 246448 53510 5.94647 5.94647 -142.293 -5.94647 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0309182 0.0271323 113 155 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_045.v common 8.19 vpr 62.80 MiB 0.05 6744 -1 -1 13 0.29 -1 -1 32752 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 31 32 268 300 1 191 82 17 17 289 -1 unnamed_device 24.2 MiB 1.58 1133 5422 1123 3954 345 62.8 MiB 0.07 0.00 7.76692 -152.212 -7.76692 7.76692 0.67 0.000891563 0.000825724 0.0307146 0.0285062 36 3213 29 6.79088e+06 255968 648988. 2245.63 3.63 0.219689 0.190027 25390 158009 -1 2683 17 1135 3524 216222 47111 6.59546 6.59546 -146.118 -6.59546 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0330407 0.0291576 132 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_046.v common 10.08 vpr 63.16 MiB 0.03 6636 -1 -1 12 0.25 -1 -1 32992 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 318 350 1 227 85 17 17 289 -1 unnamed_device 24.4 MiB 1.39 1437 6967 1505 4666 796 63.2 MiB 0.09 0.00 7.30746 -159.645 -7.30746 7.30746 0.65 0.00100091 0.000925063 0.0416451 0.038539 38 3828 35 6.79088e+06 282912 678818. 2348.85 5.73 0.278546 0.241791 25966 169698 -1 3129 20 1505 4519 268216 58977 6.50582 6.50582 -154.121 -6.50582 0 0 902133. 3121.57 0.22 0.11 0.14 -1 -1 0.22 0.041517 0.0364808 153 224 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_047.v common 9.12 vpr 62.73 MiB 0.05 6748 -1 -1 13 0.26 -1 -1 32692 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 273 305 1 198 83 17 17 289 -1 unnamed_device 24.1 MiB 1.29 1157 7823 1835 4914 1074 62.7 MiB 0.11 0.00 7.47708 -158.746 -7.47708 7.47708 0.66 0.00089482 0.00082905 0.0528113 0.0489852 36 3541 41 6.79088e+06 255968 648988. 2245.63 4.85 0.274706 0.239579 25390 158009 -1 2777 16 1346 3846 223572 50333 6.62347 6.62347 -153.831 -6.62347 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0317307 0.0280545 131 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_048.v common 8.07 vpr 62.98 MiB 0.03 6876 -1 -1 13 0.21 -1 -1 32748 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 24.2 MiB 1.90 1097 11106 3753 5771 1582 63.0 MiB 0.13 0.00 7.69072 -162.222 -7.69072 7.69072 0.67 0.000987304 0.000922097 0.0615489 0.0569984 34 3515 39 6.79088e+06 229024 618332. 2139.56 3.12 0.257682 0.224207 25102 150614 -1 2637 24 1428 3851 351737 110675 6.58083 6.58083 -153.595 -6.58083 0 0 787024. 2723.27 0.20 0.13 0.13 -1 -1 0.20 0.0426018 0.0372754 118 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_049.v common 9.78 vpr 62.99 MiB 0.03 6720 -1 -1 12 0.25 -1 -1 32756 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 298 330 1 217 87 17 17 289 -1 unnamed_device 24.5 MiB 1.96 1359 8151 1869 5680 602 63.0 MiB 0.09 0.00 7.62073 -165.231 -7.62073 7.62073 0.66 0.00097055 0.000897938 0.0463755 0.0430064 36 3806 40 6.79088e+06 309856 648988. 2245.63 4.93 0.272105 0.235851 25390 158009 -1 3171 19 1335 4203 269671 57713 7.12467 7.12467 -166.166 -7.12467 0 0 828058. 2865.25 0.20 0.10 0.09 -1 -1 0.20 0.0388009 0.0341413 150 204 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_050.v common 19.87 vpr 62.84 MiB 0.04 6828 -1 -1 13 0.32 -1 -1 32780 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 299 331 1 229 84 17 17 289 -1 unnamed_device 24.4 MiB 1.97 1315 9051 2036 5908 1107 62.8 MiB 0.10 0.00 7.55776 -165.084 -7.55776 7.55776 0.68 0.000960503 0.000887814 0.0515224 0.0476589 40 3325 24 6.79088e+06 269440 706193. 2443.58 14.80 0.442727 0.381893 26254 175826 -1 3145 28 1639 4912 495639 171665 6.99932 6.99932 -162.116 -6.99932 0 0 926341. 3205.33 0.23 0.17 0.15 -1 -1 0.23 0.0514664 0.0449435 143 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_051.v common 17.77 vpr 62.54 MiB 0.02 6748 -1 -1 14 0.27 -1 -1 32900 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 259 291 1 195 82 17 17 289 -1 unnamed_device 24.0 MiB 2.01 1139 8270 1889 5806 575 62.5 MiB 0.09 0.00 8.36252 -172.285 -8.36252 8.36252 0.67 0.000861859 0.000799242 0.0446075 0.0414042 40 2999 22 6.79088e+06 242496 706193. 2443.58 12.81 0.402548 0.346931 26254 175826 -1 2868 16 1271 3527 223782 49875 7.46496 7.46496 -168.675 -7.46496 0 0 926341. 3205.33 0.25 0.08 0.16 -1 -1 0.25 0.0303815 0.0268631 123 165 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_052.v common 8.82 vpr 62.96 MiB 0.02 6852 -1 -1 13 0.31 -1 -1 32880 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 293 325 1 216 84 17 17 289 -1 unnamed_device 24.1 MiB 3.04 1159 8868 1881 6136 851 63.0 MiB 0.10 0.00 8.02321 -165.348 -8.02321 8.02321 0.66 0.000937212 0.00086874 0.0490727 0.0455 36 3689 32 6.79088e+06 269440 648988. 2245.63 2.78 0.222677 0.19443 25390 158009 -1 2935 19 1521 3981 226668 51258 6.75652 6.75652 -158.777 -6.75652 0 0 828058. 2865.25 0.21 0.11 0.13 -1 -1 0.21 0.040276 0.0354975 134 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_053.v common 6.88 vpr 63.26 MiB 0.02 6808 -1 -1 13 0.28 -1 -1 33108 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 31 32 311 343 1 236 86 17 17 289 -1 unnamed_device 24.5 MiB 1.19 1323 8591 2185 5991 415 63.3 MiB 0.10 0.00 8.19403 -174.315 -8.19403 8.19403 0.65 0.000996346 0.000922088 0.0495303 0.0458475 40 3394 20 6.79088e+06 309856 706193. 2443.58 2.69 0.247883 0.21549 26254 175826 -1 3066 25 1743 5231 489753 175031 7.25772 7.25772 -167.404 -7.25772 0 0 926341. 3205.33 0.23 0.17 0.15 -1 -1 0.23 0.049066 0.0430426 154 220 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_054.v common 7.20 vpr 63.45 MiB 0.02 6736 -1 -1 12 0.33 -1 -1 32756 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 324 356 1 230 88 17 17 289 -1 unnamed_device 24.7 MiB 1.39 1325 11983 3288 6841 1854 63.4 MiB 0.13 0.00 7.62163 -166.383 -7.62163 7.62163 0.65 0.00102033 0.000944733 0.067737 0.0625685 44 3682 36 6.79088e+06 323328 787024. 2723.27 2.71 0.296889 0.25863 27118 194962 -1 2742 18 1471 4099 199138 47944 6.49812 6.49812 -156.573 -6.49812 0 0 997811. 3452.63 0.26 0.12 0.16 -1 -1 0.26 0.0452158 0.0401748 157 230 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_055.v common 11.54 vpr 62.26 MiB 0.04 6576 -1 -1 11 0.13 -1 -1 32380 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63752 32 32 216 248 1 162 77 17 17 289 -1 unnamed_device 23.7 MiB 1.39 956 7249 1855 4884 510 62.3 MiB 0.07 0.00 6.10061 -138.097 -6.10061 6.10061 0.65 0.000681386 0.000630026 0.0339751 0.031483 40 2274 24 6.79088e+06 175136 706193. 2443.58 7.43 0.304264 0.262135 26254 175826 -1 2061 14 902 2231 149609 32911 5.5245 5.5245 -134.444 -5.5245 0 0 926341. 3205.33 0.23 0.06 0.11 -1 -1 0.23 0.0225574 0.0199568 90 122 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_056.v common 7.92 vpr 62.59 MiB 0.04 6644 -1 -1 13 0.18 -1 -1 32672 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 245 277 1 192 81 17 17 289 -1 unnamed_device 24.1 MiB 2.47 1073 11631 3861 5991 1779 62.6 MiB 0.12 0.00 7.81611 -170.556 -7.81611 7.81611 0.66 0.00091697 0.000857745 0.0593602 0.0550011 38 2825 21 6.79088e+06 229024 678818. 2348.85 2.57 0.231004 0.202037 25966 169698 -1 2314 16 1060 2726 147569 33312 6.70962 6.70962 -158.286 -6.70962 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0294951 0.0260914 113 151 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_057.v common 8.79 vpr 63.41 MiB 0.03 6960 -1 -1 14 0.40 -1 -1 32792 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 32 32 361 393 1 262 88 17 17 289 -1 unnamed_device 24.5 MiB 1.01 1399 15493 4561 8338 2594 63.4 MiB 0.18 0.00 8.67312 -179.019 -8.67312 8.67312 0.67 0.00113674 0.00104557 0.0949061 0.0876823 40 4316 49 6.79088e+06 323328 706193. 2443.58 4.23 0.369944 0.323016 26254 175826 -1 3795 37 3221 10978 976505 293645 7.9304 7.9304 -179.416 -7.9304 0 0 926341. 3205.33 0.25 0.32 0.17 -1 -1 0.25 0.0814709 0.0708164 180 267 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_058.v common 8.91 vpr 63.25 MiB 0.02 6828 -1 -1 13 0.31 -1 -1 32816 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 318 350 1 242 85 17 17 289 -1 unnamed_device 24.4 MiB 2.23 1244 13849 3731 7364 2754 63.3 MiB 0.15 0.00 8.43396 -178.911 -8.43396 8.43396 0.65 0.00102789 0.000950214 0.0808519 0.0747894 38 3697 23 6.79088e+06 282912 678818. 2348.85 3.59 0.299817 0.262257 25966 169698 -1 2755 16 1418 3990 204815 47150 7.34737 7.34737 -164.785 -7.34737 0 0 902133. 3121.57 0.24 0.09 0.14 -1 -1 0.24 0.0370009 0.0327971 154 224 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_059.v common 4.90 vpr 62.41 MiB 0.02 6568 -1 -1 11 0.16 -1 -1 32620 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 30 32 223 255 1 164 79 17 17 289 -1 unnamed_device 23.8 MiB 0.66 899 5994 1459 3795 740 62.4 MiB 0.06 0.00 6.69493 -140.456 -6.69493 6.69493 0.65 0.000723002 0.000669835 0.0286268 0.026468 30 2669 49 6.79088e+06 229024 556674. 1926.21 1.65 0.147432 0.128286 24526 138013 -1 2044 17 941 2630 130731 31260 5.90384 5.90384 -134.218 -5.90384 0 0 706193. 2443.58 0.18 0.06 0.08 -1 -1 0.18 0.0267135 0.0235382 99 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_060.v common 7.87 vpr 63.60 MiB 0.04 6960 -1 -1 15 0.44 -1 -1 32912 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 335 367 1 254 88 17 17 289 -1 unnamed_device 24.7 MiB 1.30 1572 8083 1890 5078 1115 63.6 MiB 0.11 0.00 9.61575 -193.644 -9.61575 9.61575 0.71 0.00109983 0.00100924 0.0525623 0.0485348 44 4110 31 6.79088e+06 323328 787024. 2723.27 3.29 0.305529 0.265312 27118 194962 -1 3390 17 1634 4978 276321 60698 8.1454 8.1454 -178.826 -8.1454 0 0 997811. 3452.63 0.25 0.11 0.16 -1 -1 0.25 0.0402975 0.0356574 172 241 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_061.v common 7.11 vpr 62.98 MiB 0.02 6664 -1 -1 13 0.37 -1 -1 33028 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 32 32 301 333 1 229 86 17 17 289 -1 unnamed_device 24.5 MiB 1.07 1447 9914 2954 6315 645 63.0 MiB 0.11 0.00 8.38843 -181.197 -8.38843 8.38843 0.65 0.000988445 0.000915501 0.055689 0.0516018 38 3572 19 6.79088e+06 296384 678818. 2348.85 3.03 0.248495 0.21691 25966 169698 -1 3018 18 1464 4144 216137 47891 7.081 7.081 -169.041 -7.081 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0389201 0.034419 149 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_062.v common 5.61 vpr 62.23 MiB 0.02 6540 -1 -1 11 0.13 -1 -1 32636 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63724 32 32 238 270 1 173 80 17 17 289 -1 unnamed_device 23.6 MiB 1.52 1043 11604 3704 5973 1927 62.2 MiB 0.10 0.00 6.83225 -151.19 -6.83225 6.83225 0.65 0.000729788 0.000675276 0.0520692 0.0481738 30 2701 43 6.79088e+06 215552 556674. 1926.21 1.49 0.1639 0.144063 24526 138013 -1 2242 18 991 2518 138088 31398 6.20139 6.20139 -146.884 -6.20139 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0280305 0.0246262 97 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_063.v common 7.03 vpr 63.10 MiB 0.03 6888 -1 -1 12 0.29 -1 -1 32796 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 308 340 1 226 85 17 17 289 -1 unnamed_device 24.4 MiB 1.50 1321 11989 3057 7272 1660 63.1 MiB 0.13 0.00 7.80487 -167.158 -7.80487 7.80487 0.66 0.000984237 0.000904521 0.0670253 0.0617948 40 3150 27 6.79088e+06 282912 706193. 2443.58 2.48 0.270904 0.236111 26254 175826 -1 3019 17 1406 4153 254158 55179 6.74877 6.74877 -155.224 -6.74877 0 0 926341. 3205.33 0.23 0.10 0.16 -1 -1 0.23 0.0370457 0.0326176 152 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_064.v common 8.81 vpr 62.44 MiB 0.04 6596 -1 -1 12 0.19 -1 -1 32384 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 253 285 1 190 80 17 17 289 -1 unnamed_device 23.9 MiB 1.83 1076 11776 3996 5804 1976 62.4 MiB 0.12 0.00 7.20737 -155.525 -7.20737 7.20737 0.65 0.000847847 0.000784424 0.0606436 0.056238 38 3023 28 6.79088e+06 215552 678818. 2348.85 4.16 0.236441 0.206429 25966 169698 -1 2627 22 1335 3623 254853 62853 6.20488 6.20488 -150.164 -6.20488 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.036946 0.0323494 115 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_065.v common 5.05 vpr 62.62 MiB 0.02 6592 -1 -1 12 0.18 -1 -1 32696 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 30 32 227 259 1 163 81 17 17 289 -1 unnamed_device 24.0 MiB 1.35 861 12331 3461 6927 1943 62.6 MiB 0.11 0.00 7.68992 -150.206 -7.68992 7.68992 0.65 0.000749869 0.000694947 0.0553767 0.0512959 30 2423 23 6.79088e+06 255968 556674. 1926.21 0.99 0.146864 0.129806 24526 138013 -1 1934 14 767 2134 98458 23749 6.47016 6.47016 -138.444 -6.47016 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0241836 0.0214652 105 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_066.v common 8.24 vpr 62.67 MiB 0.02 6800 -1 -1 12 0.28 -1 -1 32860 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 29 32 292 324 1 202 85 17 17 289 -1 unnamed_device 24.3 MiB 1.30 1109 13105 4321 6403 2381 62.7 MiB 0.13 0.00 7.73882 -148.46 -7.73882 7.73882 0.65 0.000958017 0.000879371 0.0710996 0.0657443 36 3249 25 6.79088e+06 323328 648988. 2245.63 3.98 0.272708 0.238035 25390 158009 -1 2672 17 1266 3743 206131 47941 6.80802 6.80802 -140.964 -6.80802 0 0 828058. 2865.25 0.21 0.09 0.13 -1 -1 0.21 0.0353883 0.0312504 144 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_067.v common 7.79 vpr 63.12 MiB 0.04 6672 -1 -1 14 0.31 -1 -1 33036 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 316 348 1 248 86 17 17 289 -1 unnamed_device 24.3 MiB 2.29 1442 8024 2021 5399 604 63.1 MiB 0.10 0.00 8.63126 -174.325 -8.63126 8.63126 0.73 0.00101852 0.000942938 0.0476384 0.0440779 46 3512 20 6.79088e+06 296384 828058. 2865.25 2.34 0.254685 0.221315 27406 200422 -1 2947 17 1622 4161 220693 49235 7.51525 7.51525 -163.122 -7.51525 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0376891 0.0333169 155 222 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_068.v common 7.92 vpr 62.86 MiB 0.02 6780 -1 -1 12 0.23 -1 -1 32784 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 286 318 1 212 83 17 17 289 -1 unnamed_device 24.4 MiB 1.37 1323 12503 3954 6429 2120 62.9 MiB 0.13 0.00 7.68002 -164.527 -7.68002 7.68002 0.65 0.00110627 0.00102459 0.069317 0.06415 38 3480 45 6.79088e+06 255968 678818. 2348.85 3.62 0.294539 0.257186 25966 169698 -1 2900 27 1408 4170 412991 165317 6.75652 6.75652 -157.509 -6.75652 0 0 902133. 3121.57 0.22 0.15 0.14 -1 -1 0.22 0.0478282 0.0417141 137 192 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_069.v common 7.00 vpr 62.36 MiB 0.04 6684 -1 -1 12 0.15 -1 -1 32728 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 221 253 1 164 79 17 17 289 -1 unnamed_device 23.7 MiB 1.27 883 6839 1546 5160 133 62.4 MiB 0.07 0.00 7.22527 -147.319 -7.22527 7.22527 0.66 0.000723939 0.000661849 0.0331961 0.0306145 34 2749 47 6.79088e+06 202080 618332. 2139.56 3.02 0.201823 0.174464 25102 150614 -1 2163 27 965 2570 323922 137593 6.16917 6.16917 -143.092 -6.16917 0 0 787024. 2723.27 0.21 0.13 0.11 -1 -1 0.21 0.0363901 0.0317303 95 127 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_070.v common 6.80 vpr 62.55 MiB 0.02 6724 -1 -1 12 0.21 -1 -1 32348 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 31 32 261 293 1 187 81 17 17 289 -1 unnamed_device 24.0 MiB 1.86 1016 11806 3829 5905 2072 62.6 MiB 0.12 0.00 7.21239 -153.602 -7.21239 7.21239 0.66 0.00084792 0.000786403 0.0614919 0.0570062 46 2377 20 6.79088e+06 242496 828058. 2865.25 2.04 0.225771 0.197152 27406 200422 -1 2052 17 949 2614 129035 29625 6.38057 6.38057 -145.937 -6.38057 0 0 1.01997e+06 3529.29 0.25 0.07 0.18 -1 -1 0.25 0.0313243 0.0276727 114 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_071.v common 18.43 vpr 62.73 MiB 0.02 6668 -1 -1 11 0.23 -1 -1 32756 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 30 32 277 309 1 200 84 17 17 289 -1 unnamed_device 24.1 MiB 2.61 1192 7587 1799 4901 887 62.7 MiB 0.08 0.00 6.65573 -139.172 -6.65573 6.65573 0.65 0.000899057 0.000833398 0.0399498 0.0369907 38 3199 19 6.79088e+06 296384 678818. 2348.85 12.99 0.347974 0.299089 25966 169698 -1 2692 17 1290 3976 208721 46066 5.73164 5.73164 -133.72 -5.73164 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0326184 0.0287622 129 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_072.v common 20.83 vpr 62.67 MiB 0.02 6764 -1 -1 11 0.20 -1 -1 32636 -1 -1 21 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 28 32 251 283 1 191 81 17 17 289 -1 unnamed_device 24.2 MiB 1.49 990 12156 4943 6412 801 62.7 MiB 0.12 0.00 6.59863 -125.892 -6.59863 6.59863 0.66 0.000846774 0.000784253 0.0614511 0.0568988 40 3108 38 6.79088e+06 282912 706193. 2443.58 16.43 0.434536 0.374581 26254 175826 -1 2573 23 1685 4826 323430 71588 5.86453 5.86453 -127.099 -5.86453 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0383975 0.0334717 125 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_073.v common 7.72 vpr 62.36 MiB 0.05 6736 -1 -1 13 0.18 -1 -1 32636 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 30 32 223 255 1 173 78 17 17 289 -1 unnamed_device 23.7 MiB 2.81 1023 6220 1452 4481 287 62.4 MiB 0.06 0.00 7.37394 -146.255 -7.37394 7.37394 0.65 0.000719139 0.000666296 0.0298326 0.0276704 36 2646 31 6.79088e+06 215552 648988. 2245.63 2.16 0.185248 0.160569 25390 158009 -1 2284 14 901 2336 132417 30127 6.50592 6.50592 -141.822 -6.50592 0 0 828058. 2865.25 0.21 0.06 0.14 -1 -1 0.21 0.0242371 0.0215957 104 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_074.v common 7.87 vpr 62.65 MiB 0.02 6604 -1 -1 12 0.21 -1 -1 32604 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 269 301 1 197 84 17 17 289 -1 unnamed_device 24.1 MiB 2.15 1239 4476 858 3235 383 62.6 MiB 0.06 0.00 7.13568 -159.479 -7.13568 7.13568 0.66 0.000876021 0.000808667 0.0260865 0.0241892 36 3048 33 6.79088e+06 269440 648988. 2245.63 2.91 0.220181 0.18966 25390 158009 -1 2617 16 1096 2894 182823 39794 6.45548 6.45548 -153.776 -6.45548 0 0 828058. 2865.25 0.21 0.08 0.15 -1 -1 0.21 0.0312789 0.0276188 125 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_075.v common 6.60 vpr 62.77 MiB 0.03 6804 -1 -1 13 0.29 -1 -1 32964 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 31 32 283 315 1 193 83 17 17 289 -1 unnamed_device 24.3 MiB 1.79 1176 7283 1697 4959 627 62.8 MiB 0.08 0.00 7.98183 -162.706 -7.98183 7.98183 0.64 0.000921218 0.000853488 0.0412566 0.0382389 38 2773 17 6.79088e+06 269440 678818. 2348.85 1.94 0.216817 0.188067 25966 169698 -1 2364 19 1086 3314 147941 34759 6.84611 6.84611 -150.495 -6.84611 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0370006 0.0326052 137 192 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_076.v common 8.00 vpr 63.31 MiB 0.05 6656 -1 -1 14 0.30 -1 -1 32776 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64832 32 32 308 340 1 224 85 17 17 289 -1 unnamed_device 24.6 MiB 1.51 1408 9013 2325 5592 1096 63.3 MiB 0.10 0.00 8.8032 -181.521 -8.8032 8.8032 0.66 0.000996657 0.000922751 0.0522658 0.0483439 36 3712 28 6.79088e+06 282912 648988. 2245.63 3.45 0.274069 0.238578 25390 158009 -1 3077 16 1355 3646 217262 48005 7.85554 7.85554 -178.788 -7.85554 0 0 828058. 2865.25 0.23 0.09 0.15 -1 -1 0.23 0.0355089 0.0314035 149 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_077.v common 19.85 vpr 62.75 MiB 0.04 6784 -1 -1 14 0.26 -1 -1 32800 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 277 309 1 209 84 17 17 289 -1 unnamed_device 24.3 MiB 2.21 1168 12528 4001 6466 2061 62.8 MiB 0.13 0.00 8.11366 -160.164 -8.11366 8.11366 0.65 0.000907343 0.000839678 0.0676538 0.0626655 38 3448 46 6.79088e+06 269440 678818. 2348.85 14.65 0.419273 0.362094 25966 169698 -1 2636 20 1464 4364 221739 50683 7.34388 7.34388 -154.812 -7.34388 0 0 902133. 3121.57 0.23 0.10 0.14 -1 -1 0.23 0.037957 0.0333438 136 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_078.v common 7.91 vpr 62.77 MiB 0.05 6668 -1 -1 13 0.34 -1 -1 33396 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 288 320 1 210 83 17 17 289 -1 unnamed_device 24.3 MiB 1.95 1266 7823 1896 4973 954 62.8 MiB 0.09 0.00 7.98865 -167.696 -7.98865 7.98865 0.66 0.000946398 0.000874796 0.0462085 0.04274 44 3303 29 6.79088e+06 255968 787024. 2723.27 2.77 0.254475 0.221032 27118 194962 -1 2645 17 1220 3736 198638 44655 6.74882 6.74882 -154.997 -6.74882 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0351314 0.0310337 139 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_079.v common 6.66 vpr 62.51 MiB 0.04 6524 -1 -1 13 0.20 -1 -1 32784 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 30 32 230 262 1 176 78 17 17 289 -1 unnamed_device 23.8 MiB 1.49 955 5888 1275 4387 226 62.5 MiB 0.06 0.00 7.30909 -151.711 -7.30909 7.30909 0.66 0.000752619 0.000692434 0.0294945 0.0273368 40 2382 30 6.79088e+06 215552 706193. 2443.58 2.34 0.186868 0.162107 26254 175826 -1 2197 16 1037 2468 154235 34830 6.41977 6.41977 -144.343 -6.41977 0 0 926341. 3205.33 0.23 0.07 0.16 -1 -1 0.23 0.0270252 0.0239526 106 142 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_080.v common 9.18 vpr 62.84 MiB 0.04 6868 -1 -1 13 0.43 -1 -1 32928 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 30 32 294 326 1 222 85 17 17 289 -1 unnamed_device 24.3 MiB 1.41 1281 12175 3045 7735 1395 62.8 MiB 0.13 0.00 8.2401 -167.978 -8.2401 8.2401 0.65 0.000986682 0.000915319 0.0685038 0.0634771 36 3566 29 6.79088e+06 309856 648988. 2245.63 4.61 0.281897 0.246267 25390 158009 -1 3025 23 1642 4310 364544 125273 7.47605 7.47605 -167.45 -7.47605 0 0 828058. 2865.25 0.21 0.14 0.14 -1 -1 0.21 0.045127 0.0395111 144 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_081.v common 6.73 vpr 62.69 MiB 0.04 6868 -1 -1 14 0.28 -1 -1 31400 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 276 308 1 206 84 17 17 289 -1 unnamed_device 24.1 MiB 1.58 1252 6306 1410 4478 418 62.7 MiB 0.08 0.00 8.1933 -176.786 -8.1933 8.1933 0.66 0.000890066 0.000821668 0.034845 0.0322939 46 3049 24 6.79088e+06 269440 828058. 2865.25 2.09 0.217121 0.187978 27406 200422 -1 2560 18 1161 3517 179903 39884 7.43347 7.43347 -170.772 -7.43347 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0359006 0.0316988 133 182 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_082.v common 7.41 vpr 63.03 MiB 0.03 6708 -1 -1 12 0.25 -1 -1 32928 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 31 32 293 325 1 212 84 17 17 289 -1 unnamed_device 24.4 MiB 1.64 1214 6855 1626 4139 1090 63.0 MiB 0.08 0.00 7.87232 -159.238 -7.87232 7.87232 0.65 0.000946808 0.000878238 0.0392083 0.0363668 38 3142 49 6.79088e+06 282912 678818. 2348.85 2.88 0.265233 0.229415 25966 169698 -1 2595 16 1318 3782 197344 44613 6.75996 6.75996 -149.088 -6.75996 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0344545 0.0304355 143 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_083.v common 8.60 vpr 62.79 MiB 0.05 6784 -1 -1 13 0.21 -1 -1 32724 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 30 32 273 305 1 208 83 17 17 289 -1 unnamed_device 24.2 MiB 1.86 1166 13583 4513 7114 1956 62.8 MiB 0.13 0.00 8.05477 -151.514 -8.05477 8.05477 0.65 0.00087284 0.000807684 0.0694914 0.0643185 38 3283 21 6.79088e+06 282912 678818. 2348.85 3.83 0.246843 0.215918 25966 169698 -1 2677 16 1345 3593 186223 41846 7.08558 7.08558 -144.629 -7.08558 0 0 902133. 3121.57 0.23 0.08 0.17 -1 -1 0.23 0.0320303 0.028247 126 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_084.v common 8.81 vpr 63.29 MiB 0.02 6688 -1 -1 14 0.39 -1 -1 32952 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64804 32 32 310 342 1 235 85 17 17 289 -1 unnamed_device 24.8 MiB 1.45 1356 6595 1328 4700 567 63.3 MiB 0.08 0.00 8.2637 -174.994 -8.2637 8.2637 0.65 0.00101205 0.000937719 0.0401248 0.0372516 38 3897 30 6.79088e+06 282912 678818. 2348.85 4.22 0.264622 0.229885 25966 169698 -1 3095 22 1828 5270 279232 60897 7.22201 7.22201 -164.867 -7.22201 0 0 902133. 3121.57 0.31 0.11 0.16 -1 -1 0.31 0.0400624 0.0357349 154 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_085.v common 6.73 vpr 62.71 MiB 0.02 6824 -1 -1 11 0.33 -1 -1 32816 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 29 32 259 291 1 194 83 17 17 289 -1 unnamed_device 24.1 MiB 1.31 1061 13403 4351 6899 2153 62.7 MiB 0.13 0.00 6.99502 -136.053 -6.99502 6.99502 0.65 0.000873357 0.000809848 0.0685248 0.0635579 30 3783 49 6.79088e+06 296384 556674. 1926.21 2.48 0.212668 0.186631 24526 138013 -1 2675 25 1322 3998 313633 101063 5.87926 5.87926 -131.148 -5.87926 0 0 706193. 2443.58 0.19 0.12 0.12 -1 -1 0.19 0.0421213 0.0367616 130 174 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_086.v common 8.92 vpr 62.56 MiB 0.02 6580 -1 -1 13 0.17 -1 -1 32800 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 225 257 1 182 78 17 17 289 -1 unnamed_device 23.9 MiB 2.89 995 4062 701 3272 89 62.6 MiB 0.05 0.00 6.9771 -161.617 -6.9771 6.9771 0.62 0.000736398 0.000682564 0.022381 0.0208204 36 2919 36 6.79088e+06 188608 648988. 2245.63 3.37 0.188296 0.162748 25390 158009 -1 2556 16 1141 2694 195830 44691 6.36594 6.36594 -160.729 -6.36594 0 0 828058. 2865.25 0.21 0.08 0.16 -1 -1 0.21 0.0266293 0.0234957 99 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_087.v common 8.43 vpr 62.93 MiB 0.02 6884 -1 -1 14 0.23 -1 -1 32804 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 273 305 1 212 83 17 17 289 -1 unnamed_device 24.3 MiB 1.76 1302 5483 1117 4002 364 62.9 MiB 0.07 0.00 8.68565 -176.783 -8.68565 8.68565 0.65 0.000869959 0.000804854 0.0308036 0.0286151 36 3263 26 6.79088e+06 255968 648988. 2245.63 3.92 0.215526 0.186682 25390 158009 -1 2860 16 1237 3380 208791 44870 7.59375 7.59375 -167.243 -7.59375 0 0 828058. 2865.25 0.21 0.08 0.09 -1 -1 0.21 0.0313365 0.027698 129 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_088.v common 7.29 vpr 63.37 MiB 0.05 6720 -1 -1 15 0.36 -1 -1 33228 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 322 354 1 240 86 17 17 289 -1 unnamed_device 24.6 MiB 1.80 1292 9914 2574 6184 1156 63.4 MiB 0.12 0.00 9.1052 -186.475 -9.1052 9.1052 0.66 0.00103079 0.000954193 0.0602428 0.0557801 40 3560 37 6.79088e+06 296384 706193. 2443.58 2.36 0.302198 0.263357 26254 175826 -1 3108 21 1753 4648 284834 65709 7.8164 7.8164 -175.32 -7.8164 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0439346 0.0385692 153 228 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_089.v common 7.43 vpr 62.18 MiB 0.02 6560 -1 -1 11 0.16 -1 -1 32468 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63676 32 32 218 250 1 160 78 17 17 289 -1 unnamed_device 23.6 MiB 1.92 829 6054 1305 4663 86 62.2 MiB 0.07 0.00 6.63906 -133.693 -6.63906 6.63906 0.66 0.000710304 0.000658491 0.0290988 0.0269194 34 2844 35 6.79088e+06 188608 618332. 2139.56 2.79 0.186679 0.161459 25102 150614 -1 2151 17 993 2556 165416 38824 5.66443 5.66443 -134.501 -5.66443 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0255808 0.022537 91 124 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_090.v common 7.02 vpr 62.39 MiB 0.04 6540 -1 -1 12 0.19 -1 -1 32440 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63884 31 32 244 276 1 185 79 17 17 289 -1 unnamed_device 23.9 MiB 1.47 1045 8360 2472 4444 1444 62.4 MiB 0.09 0.00 7.09988 -155.106 -7.09988 7.09988 0.65 0.000798881 0.000740265 0.0431063 0.0399729 36 3087 23 6.79088e+06 215552 648988. 2245.63 2.74 0.199241 0.173284 25390 158009 -1 2519 19 1185 3042 166105 39305 6.07958 6.07958 -147.379 -6.07958 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0319637 0.0280363 111 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_091.v common 7.45 vpr 63.02 MiB 0.02 6772 -1 -1 12 0.30 -1 -1 32944 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64536 32 32 301 333 1 214 84 17 17 289 -1 unnamed_device 24.5 MiB 1.41 1231 6306 1337 4274 695 63.0 MiB 0.08 0.00 7.48442 -156.804 -7.48442 7.48442 0.65 0.000981217 0.000908445 0.0380226 0.0352391 36 3798 37 6.79088e+06 269440 648988. 2245.63 3.17 0.257174 0.222356 25390 158009 -1 2961 20 1445 3931 275428 71510 6.67381 6.67381 -156.005 -6.67381 0 0 828058. 2865.25 0.20 0.12 0.09 -1 -1 0.20 0.0440589 0.0389136 145 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_092.v common 8.51 vpr 62.75 MiB 0.05 6788 -1 -1 12 0.24 -1 -1 32812 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 278 310 1 207 83 17 17 289 -1 unnamed_device 24.1 MiB 1.59 1313 9443 2521 5826 1096 62.8 MiB 0.10 0.00 7.56551 -160.745 -7.56551 7.56551 0.65 0.000894614 0.000828851 0.0506707 0.0469297 36 3623 36 6.79088e+06 255968 648988. 2245.63 3.99 0.254871 0.22146 25390 158009 -1 3056 18 1341 4044 240255 52849 6.72081 6.72081 -158.475 -6.72081 0 0 828058. 2865.25 0.22 0.09 0.11 -1 -1 0.22 0.034846 0.0307756 133 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_093.v common 8.33 vpr 63.55 MiB 0.04 6940 -1 -1 14 0.46 -1 -1 33396 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 333 365 1 242 87 17 17 289 -1 unnamed_device 24.6 MiB 1.28 1284 5079 907 4069 103 63.5 MiB 0.09 0.00 8.77515 -179.37 -8.77515 8.77515 0.65 0.00109846 0.00101288 0.0469696 0.0436119 38 4131 35 6.79088e+06 309856 678818. 2348.85 3.82 0.288553 0.250651 25966 169698 -1 3224 19 1704 5050 265728 61838 7.75826 7.75826 -171.928 -7.75826 0 0 902133. 3121.57 0.22 0.11 0.15 -1 -1 0.22 0.0454537 0.0401231 170 239 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_094.v common 18.25 vpr 62.66 MiB 0.02 6812 -1 -1 11 0.28 -1 -1 32364 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 30 32 261 293 1 195 83 17 17 289 -1 unnamed_device 24.1 MiB 1.85 1159 11963 3648 6429 1886 62.7 MiB 0.12 0.00 7.06667 -142.983 -7.06667 7.06667 0.65 0.000870817 0.000806857 0.061618 0.0571294 38 2927 33 6.79088e+06 282912 678818. 2348.85 13.40 0.373272 0.323193 25966 169698 -1 2582 16 1118 3242 177675 39214 6.29442 6.29442 -136.052 -6.29442 0 0 902133. 3121.57 0.25 0.08 0.16 -1 -1 0.25 0.032027 0.0283375 128 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_095.v common 10.50 vpr 62.36 MiB 0.04 6540 -1 -1 11 0.20 -1 -1 32420 -1 -1 19 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 27 32 217 249 1 154 78 17 17 289 -1 unnamed_device 23.8 MiB 1.11 770 7714 1883 5409 422 62.4 MiB 0.07 0.00 6.64923 -122.654 -6.64923 6.64923 0.65 0.000709526 0.000656662 0.0359064 0.0332524 38 2218 30 6.79088e+06 255968 678818. 2348.85 6.56 0.332114 0.285248 25966 169698 -1 1741 20 933 2501 122623 29125 6.02914 6.02914 -121.034 -6.02914 0 0 902133. 3121.57 0.22 0.07 0.16 -1 -1 0.22 0.0296906 0.026003 101 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_096.v common 9.32 vpr 63.66 MiB 0.04 6860 -1 -1 13 0.47 -1 -1 32888 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65184 32 32 373 405 1 276 93 17 17 289 -1 unnamed_device 24.9 MiB 1.64 1654 14793 4090 8037 2666 63.7 MiB 0.18 0.00 8.15219 -167.23 -8.15219 8.15219 0.65 0.00119286 0.00109271 0.0894951 0.0824395 40 4464 26 6.79088e+06 390688 706193. 2443.58 4.07 0.335756 0.293341 26254 175826 -1 4342 43 3548 11778 1281392 416657 7.30036 7.30036 -164.554 -7.30036 0 0 926341. 3205.33 0.23 0.39 0.15 -1 -1 0.23 0.0919851 0.0798388 191 279 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_097.v common 6.38 vpr 62.82 MiB 0.05 6844 -1 -1 14 0.25 -1 -1 33132 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64332 31 32 269 301 1 201 83 17 17 289 -1 unnamed_device 24.1 MiB 1.54 1216 6923 1704 4584 635 62.8 MiB 0.08 0.00 8.60637 -173.25 -8.60637 8.60637 0.65 0.000881511 0.000817615 0.0374556 0.0347465 30 3569 30 6.79088e+06 269440 556674. 1926.21 2.06 0.164119 0.144001 24526 138013 -1 2784 18 1329 3487 180050 42102 7.39006 7.39006 -168.706 -7.39006 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0336854 0.029663 128 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_098.v common 6.96 vpr 62.32 MiB 0.02 6632 -1 -1 12 0.14 -1 -1 32520 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 32 32 228 260 1 188 83 17 17 289 -1 unnamed_device 23.7 MiB 2.04 1144 8723 2365 5890 468 62.3 MiB 0.09 0.00 7.40683 -169.316 -7.40683 7.40683 0.65 0.000760785 0.000704796 0.039794 0.0368709 44 3005 29 6.79088e+06 255968 787024. 2723.27 2.17 0.199649 0.173954 27118 194962 -1 2396 17 1034 2599 148015 32235 6.54507 6.54507 -160.371 -6.54507 0 0 997811. 3452.63 0.25 0.07 0.18 -1 -1 0.25 0.0275522 0.0243322 109 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_099.v common 20.11 vpr 62.63 MiB 0.03 6660 -1 -1 13 0.34 -1 -1 32804 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 32 32 265 297 1 195 82 17 17 289 -1 unnamed_device 24.0 MiB 2.56 1115 5066 1001 3852 213 62.6 MiB 0.06 0.00 8.33866 -169.136 -8.33866 8.33866 0.65 0.000881964 0.000817565 0.0285675 0.0265245 38 3306 39 6.79088e+06 242496 678818. 2348.85 14.54 0.391644 0.335993 25966 169698 -1 2672 26 1221 3475 344525 134931 7.04987 7.04987 -158.656 -7.04987 0 0 902133. 3121.57 0.22 0.14 0.15 -1 -1 0.22 0.0443258 0.0387524 125 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_100.v common 21.00 vpr 63.13 MiB 0.03 6840 -1 -1 13 0.31 -1 -1 33436 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 31 32 325 357 1 249 88 17 17 289 -1 unnamed_device 24.4 MiB 1.93 1490 8083 1681 5214 1188 63.1 MiB 0.10 0.00 7.4732 -162.473 -7.4732 7.4732 0.81 0.00105775 0.00097991 0.0473236 0.0438176 38 4261 31 6.79088e+06 336800 678818. 2348.85 15.76 0.479036 0.412165 25966 169698 -1 3280 31 2001 6065 538299 199400 6.59197 6.59197 -155.291 -6.59197 0 0 902133. 3121.57 0.22 0.20 0.15 -1 -1 0.22 0.0598445 0.0521619 159 234 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_101.v common 8.96 vpr 62.73 MiB 0.05 6832 -1 -1 11 0.23 -1 -1 32788 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 30 32 287 319 1 197 85 17 17 289 -1 unnamed_device 24.1 MiB 1.51 1209 11059 2877 6113 2069 62.7 MiB 0.12 0.00 7.11391 -144.84 -7.11391 7.11391 0.68 0.000924005 0.000854906 0.0594386 0.0550371 38 3561 49 6.79088e+06 309856 678818. 2348.85 4.47 0.297232 0.258854 25966 169698 -1 2802 19 1231 4028 222812 48680 6.29442 6.29442 -138.469 -6.29442 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.036919 0.0324452 140 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_102.v common 6.85 vpr 62.86 MiB 0.02 6704 -1 -1 15 0.32 -1 -1 33008 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 297 329 1 220 83 17 17 289 -1 unnamed_device 24.4 MiB 1.46 1211 12503 3460 7559 1484 62.9 MiB 0.14 0.00 9.11536 -184.558 -9.11536 9.11536 0.66 0.000957695 0.000886033 0.0728687 0.0674037 40 2992 23 6.79088e+06 255968 706193. 2443.58 2.24 0.253575 0.22212 26254 175826 -1 2859 22 1385 3747 325915 107909 7.59386 7.59386 -167.071 -7.59386 0 0 926341. 3205.33 0.22 0.13 0.15 -1 -1 0.22 0.0409518 0.0363788 142 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_103.v common 13.85 vpr 63.09 MiB 0.05 6708 -1 -1 13 0.30 -1 -1 33016 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 311 343 1 230 87 17 17 289 -1 unnamed_device 24.5 MiB 1.98 1357 5463 1001 4200 262 63.1 MiB 0.07 0.00 8.32676 -176.58 -8.32676 8.32676 0.67 0.00101777 0.000935024 0.0330101 0.0304794 36 4143 34 6.79088e+06 309856 648988. 2245.63 8.83 0.268636 0.233102 25390 158009 -1 3215 15 1397 4264 255465 56839 7.3039 7.3039 -167.703 -7.3039 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0349146 0.0309497 154 217 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_104.v common 6.54 vpr 62.66 MiB 0.01 6544 -1 -1 12 0.20 -1 -1 32216 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64164 29 32 236 268 1 182 79 17 17 289 -1 unnamed_device 24.1 MiB 1.86 941 10557 3755 4946 1856 62.7 MiB 0.10 0.00 7.68137 -155.362 -7.68137 7.68137 0.65 0.000757528 0.000702472 0.0521987 0.0484591 36 2695 26 6.79088e+06 242496 648988. 2245.63 1.91 0.214178 0.186965 25390 158009 -1 2097 18 1092 2579 149818 35102 6.42326 6.42326 -142.319 -6.42326 0 0 828058. 2865.25 0.22 0.07 0.15 -1 -1 0.22 0.0287767 0.0253272 109 151 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_105.v common 6.26 vpr 62.63 MiB 0.05 6536 -1 -1 11 0.16 -1 -1 32440 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 231 263 1 184 78 17 17 289 -1 unnamed_device 24.0 MiB 1.40 1148 5224 1190 3763 271 62.6 MiB 0.06 0.00 6.84847 -147.97 -6.84847 6.84847 0.65 0.000727127 0.000673502 0.0258115 0.0239181 48 2763 18 6.79088e+06 188608 865456. 2994.66 2.04 0.176656 0.153093 27694 206865 -1 2400 16 1054 2657 164840 36234 6.07953 6.07953 -142.602 -6.07953 0 0 1.05005e+06 3633.38 0.27 0.07 0.17 -1 -1 0.27 0.0263788 0.0233756 98 137 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_106.v common 8.42 vpr 63.08 MiB 0.04 6804 -1 -1 13 0.30 -1 -1 32976 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 31 32 294 326 1 214 85 17 17 289 -1 unnamed_device 24.6 MiB 1.06 1115 8455 2194 4906 1355 63.1 MiB 0.10 0.00 7.89179 -153.02 -7.89179 7.89179 0.65 0.000944991 0.00087284 0.0474494 0.0439367 38 3369 23 6.79088e+06 296384 678818. 2348.85 4.37 0.254673 0.220982 25966 169698 -1 2582 19 1522 4380 232121 52519 7.01056 7.01056 -146.958 -7.01056 0 0 902133. 3121.57 0.22 0.10 0.15 -1 -1 0.22 0.0387025 0.0340688 144 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_107.v common 6.41 vpr 62.30 MiB 0.04 6624 -1 -1 10 0.17 -1 -1 32800 -1 -1 17 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 29 32 221 253 1 164 78 17 17 289 -1 unnamed_device 23.7 MiB 1.63 851 10204 2504 7246 454 62.3 MiB 0.09 0.00 6.11518 -125.484 -6.11518 6.11518 0.66 0.000717875 0.000665162 0.0480387 0.044561 38 2368 25 6.79088e+06 229024 678818. 2348.85 1.96 0.193202 0.168449 25966 169698 -1 1961 20 991 2669 141776 33456 5.23803 5.23803 -121.582 -5.23803 0 0 902133. 3121.57 0.24 0.07 0.15 -1 -1 0.24 0.0309449 0.0272841 98 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_108.v common 10.45 vpr 62.34 MiB 0.05 6636 -1 -1 14 0.19 -1 -1 32668 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 32 32 240 272 1 188 82 17 17 289 -1 unnamed_device 23.9 MiB 2.57 1049 6312 1330 4556 426 62.3 MiB 0.07 0.00 7.76918 -161.081 -7.76918 7.76918 0.65 0.000767009 0.000709957 0.0302132 0.0279868 36 3203 45 6.79088e+06 242496 648988. 2245.63 5.02 0.219435 0.190197 25390 158009 -1 2679 40 1212 3341 519010 263304 6.83492 6.83492 -157.055 -6.83492 0 0 828058. 2865.25 0.21 0.20 0.13 -1 -1 0.21 0.0545022 0.047217 110 146 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_109.v common 9.15 vpr 62.60 MiB 0.02 6764 -1 -1 12 0.31 -1 -1 32956 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 31 32 292 324 1 210 85 17 17 289 -1 unnamed_device 24.2 MiB 1.25 1262 12919 3620 7000 2299 62.6 MiB 0.13 0.00 7.60154 -161.988 -7.60154 7.60154 0.63 0.000945839 0.000875602 0.0696219 0.0643847 36 3634 39 6.79088e+06 296384 648988. 2245.63 4.79 0.291627 0.254687 25390 158009 -1 2971 17 1351 4072 238734 51864 6.42321 6.42321 -153.96 -6.42321 0 0 828058. 2865.25 0.25 0.09 0.15 -1 -1 0.25 0.0352955 0.0311369 143 201 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_110.v common 7.11 vpr 62.33 MiB 0.02 6632 -1 -1 12 0.15 -1 -1 32360 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63828 31 32 229 261 1 179 79 17 17 289 -1 unnamed_device 23.7 MiB 2.20 992 10726 2823 7181 722 62.3 MiB 0.10 0.00 6.58069 -144.507 -6.58069 6.58069 0.65 0.000721007 0.000667529 0.0499757 0.0463652 30 2929 43 6.79088e+06 215552 556674. 1926.21 2.21 0.162971 0.143133 24526 138013 -1 2473 14 1119 2569 158771 34817 5.98999 5.98999 -142.769 -5.98999 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0272719 0.0242128 101 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_111.v common 8.34 vpr 63.12 MiB 0.02 6864 -1 -1 12 0.17 -1 -1 32792 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 282 314 1 202 82 17 17 289 -1 unnamed_device 24.3 MiB 1.37 1163 7736 1889 5402 445 63.1 MiB 0.09 0.00 7.51176 -154.757 -7.51176 7.51176 0.70 0.00089032 0.00082465 0.0431257 0.0399267 38 3181 29 6.79088e+06 242496 678818. 2348.85 4.15 0.238941 0.20782 25966 169698 -1 2515 17 1225 3565 177970 39879 6.38406 6.38406 -145.925 -6.38406 0 0 902133. 3121.57 0.22 0.08 0.15 -1 -1 0.22 0.0330206 0.0290881 123 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_112.v common 6.44 vpr 62.71 MiB 0.05 6908 -1 -1 13 0.31 -1 -1 32936 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 31 32 269 301 1 204 82 17 17 289 -1 unnamed_device 24.1 MiB 1.43 1250 11296 2557 6849 1890 62.7 MiB 0.12 0.00 7.49717 -162.624 -7.49717 7.49717 0.65 0.000887658 0.000822129 0.0600729 0.0556774 40 2968 20 6.79088e+06 255968 706193. 2443.58 1.99 0.235329 0.205195 26254 175826 -1 2890 18 1359 3719 224408 50533 6.33367 6.33367 -151.835 -6.33367 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.034331 0.0301982 134 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_113.v common 6.33 vpr 62.40 MiB 0.02 6640 -1 -1 11 0.16 -1 -1 32280 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63900 32 32 237 269 1 188 79 17 17 289 -1 unnamed_device 24.0 MiB 1.27 937 7515 1724 5667 124 62.4 MiB 0.08 0.00 7.16165 -142.405 -7.16165 7.16165 0.66 0.000757994 0.000702342 0.037093 0.0343982 46 2683 20 6.79088e+06 202080 828058. 2865.25 2.20 0.191511 0.166523 27406 200422 -1 2105 16 1065 2783 146822 34446 6.16912 6.16912 -137.479 -6.16912 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0268485 0.0237702 105 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_114.v common 7.87 vpr 62.56 MiB 0.04 6656 -1 -1 13 0.19 -1 -1 32508 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 259 291 1 191 81 17 17 289 -1 unnamed_device 24.0 MiB 1.82 1005 13381 4639 6392 2350 62.6 MiB 0.13 0.00 7.38301 -157.601 -7.38301 7.38301 0.66 0.000844927 0.000783327 0.0698167 0.0647163 38 2883 22 6.79088e+06 229024 678818. 2348.85 3.20 0.249236 0.21871 25966 169698 -1 2179 17 1098 2908 144764 33900 6.33367 6.33367 -144.611 -6.33367 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0313334 0.0276416 116 165 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_115.v common 6.97 vpr 62.91 MiB 0.02 6832 -1 -1 13 0.33 -1 -1 32876 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 277 309 1 213 82 17 17 289 -1 unnamed_device 24.2 MiB 1.58 1327 8092 2018 5457 617 62.9 MiB 0.09 0.00 7.14878 -159.209 -7.14878 7.14878 0.66 0.000911679 0.000845738 0.0456385 0.0423815 46 3203 25 6.79088e+06 242496 828058. 2865.25 2.31 0.231398 0.201114 27406 200422 -1 2726 18 1482 4155 215129 47900 6.28328 6.28328 -149.019 -6.28328 0 0 1.01997e+06 3529.29 0.26 0.10 0.18 -1 -1 0.26 0.0367871 0.0324787 130 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_116.v common 7.87 vpr 62.51 MiB 0.05 6740 -1 -1 11 0.17 -1 -1 32676 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 29 32 245 277 1 176 83 17 17 289 -1 unnamed_device 24.1 MiB 1.55 925 13403 4743 6446 2214 62.5 MiB 0.12 0.00 6.69836 -125.024 -6.69836 6.69836 0.66 0.000792215 0.000733799 0.0637596 0.0590521 36 2760 29 6.79088e+06 296384 648988. 2245.63 3.47 0.239158 0.208796 25390 158009 -1 2154 17 1003 2901 164149 37455 5.69593 5.69593 -121.036 -5.69593 0 0 828058. 2865.25 0.21 0.07 0.13 -1 -1 0.21 0.0353595 0.0316033 115 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_117.v common 7.07 vpr 63.23 MiB 0.02 6876 -1 -1 14 0.30 -1 -1 33396 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 316 348 1 232 86 17 17 289 -1 unnamed_device 24.4 MiB 1.45 1410 8213 2036 5597 580 63.2 MiB 0.10 0.00 9.10514 -189.548 -9.10514 9.10514 0.69 0.00102188 0.000945495 0.0490702 0.0453912 44 3396 25 6.79088e+06 296384 787024. 2723.27 2.44 0.268305 0.234053 27118 194962 -1 2903 16 1318 3784 199349 45117 7.69105 7.69105 -175.013 -7.69105 0 0 997811. 3452.63 0.25 0.09 0.17 -1 -1 0.25 0.0366234 0.0324489 160 222 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_118.v common 10.35 vpr 62.57 MiB 0.03 6552 -1 -1 12 0.20 -1 -1 32448 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 31 32 230 262 1 188 81 17 17 289 -1 unnamed_device 24.1 MiB 2.75 1093 11281 2937 6811 1533 62.6 MiB 0.12 0.00 6.61653 -142.296 -6.61653 6.61653 0.68 0.000739598 0.000684599 0.0556871 0.051583 34 3493 43 6.79088e+06 242496 618332. 2139.56 4.73 0.239341 0.209101 25102 150614 -1 2644 17 1058 2530 171616 37701 5.57833 5.57833 -135.866 -5.57833 0 0 787024. 2723.27 0.20 0.07 0.15 -1 -1 0.20 0.0277811 0.0245617 108 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_119.v common 7.52 vpr 62.80 MiB 0.03 6784 -1 -1 13 0.28 -1 -1 32840 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 282 314 1 208 83 17 17 289 -1 unnamed_device 24.2 MiB 1.89 1323 14123 4442 7710 1971 62.8 MiB 0.16 0.00 7.64293 -157.325 -7.64293 7.64293 0.65 0.000910992 0.000843453 0.0851464 0.0791705 44 3212 24 6.79088e+06 255968 787024. 2723.27 2.64 0.262284 0.230792 27118 194962 -1 2727 18 1357 4001 218500 48455 6.37287 6.37287 -147.379 -6.37287 0 0 997811. 3452.63 0.25 0.09 0.17 -1 -1 0.25 0.036052 0.0317784 132 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_120.v common 7.66 vpr 62.36 MiB 0.02 6508 -1 -1 13 0.18 -1 -1 32748 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 235 267 1 182 80 17 17 289 -1 unnamed_device 23.7 MiB 1.97 1020 12120 3554 6383 2183 62.4 MiB 0.11 0.00 7.35402 -164.423 -7.35402 7.35402 0.67 0.000749268 0.000693755 0.05646 0.0522906 36 3009 44 6.79088e+06 215552 648988. 2245.63 3.01 0.236476 0.206462 25390 158009 -1 2467 19 1120 2675 158666 36333 6.53393 6.53393 -161.337 -6.53393 0 0 828058. 2865.25 0.20 0.05 0.09 -1 -1 0.20 0.0177433 0.0160074 104 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_121.v common 7.35 vpr 62.93 MiB 0.04 6852 -1 -1 12 0.21 -1 -1 32688 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 265 297 1 189 83 17 17 289 -1 unnamed_device 24.1 MiB 1.93 1030 11783 4465 6036 1282 62.9 MiB 0.13 0.00 7.13827 -153.033 -7.13827 7.13827 0.76 0.000851435 0.00078783 0.063309 0.0585885 44 2856 22 6.79088e+06 255968 787024. 2723.27 2.36 0.233966 0.204359 27118 194962 -1 2225 15 1084 3330 175817 42092 6.16912 6.16912 -142.865 -6.16912 0 0 997811. 3452.63 0.25 0.08 0.16 -1 -1 0.25 0.0305704 0.0270152 121 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_122.v common 8.91 vpr 63.37 MiB 0.04 6908 -1 -1 15 0.46 -1 -1 32864 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 344 376 1 260 88 17 17 289 -1 unnamed_device 24.8 MiB 1.93 1457 12373 3076 6798 2499 63.4 MiB 0.15 0.00 9.48621 -188.88 -9.48621 9.48621 0.66 0.00115167 0.00106615 0.0765741 0.0707904 46 4011 21 6.79088e+06 323328 828058. 2865.25 3.66 0.317332 0.277743 27406 200422 -1 3155 20 1759 5315 268635 60438 8.1923 8.1923 -173.082 -8.1923 0 0 1.01997e+06 3529.29 0.25 0.11 0.17 -1 -1 0.25 0.0471324 0.0414787 176 250 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_123.v common 5.95 vpr 61.80 MiB 0.03 6388 -1 -1 10 0.10 -1 -1 32076 -1 -1 11 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63280 30 32 173 205 1 129 73 17 17 289 -1 unnamed_device 23.2 MiB 1.50 678 9345 2965 4615 1765 61.8 MiB 0.09 0.00 5.03415 -115.492 -5.03415 5.03415 0.66 0.000659133 0.000612134 0.0426856 0.039637 36 1722 23 6.79088e+06 148192 648988. 2245.63 1.75 0.154225 0.134529 25390 158009 -1 1490 19 617 1422 82833 19307 4.47925 4.47925 -110.656 -4.47925 0 0 828058. 2865.25 0.23 0.05 0.15 -1 -1 0.23 0.0232266 0.0203336 63 85 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_124.v common 7.58 vpr 62.45 MiB 0.04 6656 -1 -1 13 0.17 -1 -1 32472 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 30 32 229 261 1 179 81 17 17 289 -1 unnamed_device 24.0 MiB 1.70 930 9881 2975 5177 1729 62.4 MiB 0.09 0.00 7.15369 -149.901 -7.15369 7.15369 0.65 0.000752687 0.000697858 0.0462136 0.0428857 36 2757 44 6.79088e+06 255968 648988. 2245.63 3.11 0.219457 0.190866 25390 158009 -1 2162 19 1034 2563 146984 34951 6.58089 6.58089 -147.837 -6.58089 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0297497 0.0261988 105 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_125.v common 8.14 vpr 62.59 MiB 0.04 6508 -1 -1 12 0.19 -1 -1 32540 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 261 293 1 204 81 17 17 289 -1 unnamed_device 24.1 MiB 1.87 1026 12331 4984 6774 573 62.6 MiB 0.12 0.00 7.35057 -161.147 -7.35057 7.35057 0.66 0.000835594 0.000773534 0.0627522 0.0580946 38 3211 42 6.79088e+06 229024 678818. 2348.85 3.41 0.260059 0.226507 25966 169698 -1 2536 19 1368 3347 180087 42413 6.29447 6.29447 -152.265 -6.29447 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0337063 0.0296842 115 167 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_126.v common 4.71 vpr 62.12 MiB 0.04 6588 -1 -1 9 0.13 -1 -1 32368 -1 -1 20 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63608 25 32 184 216 1 138 77 17 17 289 -1 unnamed_device 23.6 MiB 1.06 772 8553 2593 4994 966 62.1 MiB 0.07 0.00 5.4216 -101.246 -5.4216 5.4216 0.70 0.000616888 0.000573226 0.0348058 0.0323538 32 2040 31 6.79088e+06 269440 586450. 2029.24 0.97 0.118619 0.104045 24814 144142 -1 1839 15 706 1824 129932 28936 5.04314 5.04314 -102.623 -5.04314 0 0 744469. 2576.02 0.20 0.06 0.14 -1 -1 0.20 0.0206391 0.0181989 86 111 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_127.v common 10.87 vpr 63.19 MiB 0.05 6828 -1 -1 12 0.25 -1 -1 32736 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 32 32 302 334 1 236 87 17 17 289 -1 unnamed_device 24.4 MiB 2.36 1475 10263 2607 5842 1814 63.2 MiB 0.11 0.00 7.81518 -176.908 -7.81518 7.81518 0.65 0.000961972 0.000890265 0.0555956 0.0514356 38 4034 49 6.79088e+06 309856 678818. 2348.85 5.55 0.298123 0.25967 25966 169698 -1 3243 17 1703 4413 238466 53477 6.59551 6.59551 -164.984 -6.59551 0 0 902133. 3121.57 0.22 0.10 0.15 -1 -1 0.22 0.0358162 0.0316376 146 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_128.v common 8.09 vpr 63.22 MiB 0.04 6876 -1 -1 14 0.33 -1 -1 33024 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 31 32 295 327 1 217 85 17 17 289 -1 unnamed_device 24.5 MiB 1.19 1195 12733 3723 6434 2576 63.2 MiB 0.13 0.00 9.14434 -182.838 -9.14434 9.14434 0.66 0.00095869 0.000886502 0.0699998 0.0646894 38 3451 34 6.79088e+06 296384 678818. 2348.85 3.83 0.285693 0.24914 25966 169698 -1 2866 18 1467 4253 248414 55322 7.60495 7.60495 -165.543 -7.60495 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.038403 0.0339505 151 204 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 5.18 vpr 63.46 MiB 0.03 7152 -1 -1 1 0.03 -1 -1 30736 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64988 32 32 438 350 1 202 101 17 17 289 -1 unnamed_device 24.8 MiB 1.20 895 12321 3076 8292 953 63.5 MiB 0.14 0.00 4.3249 -144.349 -4.3249 4.3249 0.66 0.000824308 0.000766581 0.0467388 0.0434153 30 2780 27 6.87369e+06 517032 556674. 1926.21 1.30 0.150131 0.131748 25186 138497 -1 1954 20 1593 2579 127329 33406 3.6718 3.6718 -141.768 -3.6718 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0309578 0.0269769 155 96 32 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 6.96 vpr 63.28 MiB 0.03 7204 -1 -1 1 0.03 -1 -1 30632 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 30 32 409 330 1 192 85 17 17 289 -1 unnamed_device 24.5 MiB 3.24 889 13477 4603 6656 2218 63.3 MiB 0.14 0.00 4.22285 -135.326 -4.22285 4.22285 0.65 0.000758029 0.000703394 0.0583357 0.0541799 32 3092 26 6.87369e+06 321398 586450. 2029.24 1.02 0.154216 0.136041 25474 144626 -1 2288 23 2027 3381 287011 67177 4.121 4.121 -145.685 -4.121 0 0 744469. 2576.02 0.19 0.10 0.13 -1 -1 0.19 0.0323683 0.0280503 141 91 30 30 89 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 5.33 vpr 63.19 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30456 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 387 309 1 191 100 17 17 289 -1 unnamed_device 24.4 MiB 1.65 953 18428 5979 9684 2765 63.2 MiB 0.16 0.00 3.74716 -129.333 -3.74716 3.74716 0.67 0.000741727 0.000686721 0.061256 0.0566361 30 2530 23 6.87369e+06 503058 556674. 1926.21 0.99 0.150016 0.13263 25186 138497 -1 1991 22 1373 2248 151771 33644 3.4165 3.4165 -128.179 -3.4165 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0308084 0.0267687 145 65 54 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 5.59 vpr 63.15 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 30604 -1 -1 23 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 29 32 343 267 1 184 84 17 17 289 -1 unnamed_device 24.4 MiB 1.23 922 15090 5352 7218 2520 63.1 MiB 0.16 0.00 4.1666 -130.205 -4.1666 4.1666 0.70 0.000786983 0.000728851 0.0614599 0.0571558 34 2444 21 6.87369e+06 321398 618332. 2139.56 1.63 0.199329 0.174925 25762 151098 -1 2020 23 1917 3359 239341 55969 4.3166 4.3166 -143.125 -4.3166 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0297362 0.0258013 136 34 87 29 29 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 6.03 vpr 63.31 MiB 0.04 7104 -1 -1 1 0.03 -1 -1 30384 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64828 32 32 376 288 1 202 85 17 17 289 -1 unnamed_device 24.5 MiB 1.69 1047 14965 5078 8038 1849 63.3 MiB 0.15 0.00 4.2175 -149.421 -4.2175 4.2175 0.65 0.000741226 0.000688539 0.0621227 0.0577285 34 2922 24 6.87369e+06 293451 618332. 2139.56 1.59 0.208179 0.182566 25762 151098 -1 2467 23 2282 4190 341515 77402 3.9847 3.9847 -156.502 -3.9847 0 0 787024. 2723.27 0.20 0.12 0.13 -1 -1 0.20 0.032851 0.0285934 147 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 4.74 vpr 63.32 MiB 0.02 7124 -1 -1 1 0.04 -1 -1 30396 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 402 316 1 200 103 17 17 289 -1 unnamed_device 24.6 MiB 1.11 1041 20588 6432 11323 2833 63.3 MiB 0.19 0.00 3.55395 -124.862 -3.55395 3.55395 0.65 0.000766237 0.000709123 0.0682532 0.0632196 32 2871 28 6.87369e+06 544980 586450. 2029.24 0.94 0.165902 0.146965 25474 144626 -1 2313 19 1603 2531 206076 47316 3.10926 3.10926 -120.656 -3.10926 0 0 744469. 2576.02 0.19 0.10 0.11 -1 -1 0.19 0.0323527 0.0280992 154 64 63 32 63 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 5.56 vpr 62.62 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30672 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 27 32 269 226 1 146 79 17 17 289 -1 unnamed_device 24.1 MiB 1.99 640 10388 2730 6621 1037 62.6 MiB 0.10 0.00 3.6994 -105.15 -3.6994 3.6994 0.68 0.000564366 0.000524551 0.0363824 0.0338211 28 1921 25 6.87369e+06 279477 531479. 1839.03 0.93 0.106706 0.0936416 24610 126494 -1 1647 24 1322 2212 167417 39122 3.02426 3.02426 -109.231 -3.02426 0 0 648988. 2245.63 0.17 0.07 0.13 -1 -1 0.17 0.0253451 0.0218606 102 34 54 27 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 4.27 vpr 63.14 MiB 0.04 7016 -1 -1 1 0.03 -1 -1 30180 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 24.4 MiB 0.87 969 14273 4212 7662 2399 63.1 MiB 0.13 0.00 3.61131 -114.549 -3.61131 3.61131 0.65 0.000664295 0.000617927 0.0443504 0.0411473 30 2496 28 6.87369e+06 489084 556674. 1926.21 0.90 0.130101 0.114546 25186 138497 -1 1952 21 1179 2018 122816 28697 2.78496 2.78496 -110.852 -2.78496 0 0 706193. 2443.58 0.18 0.07 0.08 -1 -1 0.18 0.0259802 0.0226949 141 4 115 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 5.81 vpr 62.96 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 30184 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 31 32 338 292 1 153 79 17 17 289 -1 unnamed_device 24.1 MiB 2.45 735 9712 2823 5738 1151 63.0 MiB 0.09 0.00 3.24697 -108.666 -3.24697 3.24697 0.69 0.00050926 0.000466416 0.0345157 0.0317336 28 1915 21 6.87369e+06 223581 531479. 1839.03 0.84 0.111252 0.0972724 24610 126494 -1 1739 17 919 1420 107737 25602 2.89926 2.89926 -113.073 -2.89926 0 0 648988. 2245.63 0.17 0.06 0.11 -1 -1 0.17 0.0227074 0.0197891 103 85 0 0 84 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 7.72 vpr 62.69 MiB 0.02 6848 -1 -1 1 0.03 -1 -1 30300 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 3.54 706 12808 2978 8428 1402 62.7 MiB 0.10 0.00 3.8076 -131.302 -3.8076 3.8076 0.67 0.00051977 0.000477234 0.0483749 0.0448819 34 2315 45 6.87369e+06 223581 618332. 2139.56 1.57 0.196852 0.171433 25762 151098 -1 1639 23 1661 2634 166704 41893 3.15451 3.15451 -129.185 -3.15451 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.027833 0.0241278 114 34 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 6.26 vpr 62.92 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 30156 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 30 32 325 273 1 160 80 17 17 289 -1 unnamed_device 24.1 MiB 2.84 860 11776 3165 7564 1047 62.9 MiB 0.11 0.00 3.7375 -122.128 -3.7375 3.7375 0.66 0.000651147 0.00060539 0.0465814 0.0433071 32 2014 21 6.87369e+06 251529 586450. 2029.24 0.86 0.122218 0.108004 25474 144626 -1 1835 18 1296 1880 151371 35407 3.03531 3.03531 -122.731 -3.03531 0 0 744469. 2576.02 0.21 0.07 0.13 -1 -1 0.21 0.0240918 0.0209726 109 63 30 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 5.24 vpr 63.06 MiB 0.02 6856 -1 -1 1 0.03 -1 -1 30524 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 331 280 1 161 96 17 17 289 -1 unnamed_device 24.1 MiB 1.31 881 15207 4108 9975 1124 63.1 MiB 0.13 0.00 3.45001 -118.108 -3.45001 3.45001 0.66 0.000668208 0.000613345 0.0480654 0.0444845 34 2251 27 6.87369e+06 447163 618332. 2139.56 1.38 0.178478 0.155449 25762 151098 -1 1843 20 1213 2051 155533 34394 2.62536 2.62536 -111.579 -2.62536 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0249312 0.021619 116 65 25 25 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 8.48 vpr 63.28 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30296 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 386 305 1 195 99 17 17 289 -1 unnamed_device 24.4 MiB 4.23 958 19935 5624 11872 2439 63.3 MiB 0.18 0.00 3.64005 -125.972 -3.64005 3.64005 0.69 0.000750177 0.000696164 0.0679397 0.062932 34 2786 25 6.87369e+06 489084 618332. 2139.56 1.56 0.21544 0.188842 25762 151098 -1 2241 18 1734 2943 202750 49391 3.10426 3.10426 -124.888 -3.10426 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.026464 0.0230953 147 58 64 32 57 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 5.87 vpr 63.36 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30544 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.5 MiB 2.15 1059 21016 6637 11817 2562 63.4 MiB 0.20 0.00 4.34584 -150.842 -4.34584 4.34584 0.65 0.000778745 0.000719782 0.0742459 0.0687613 30 2683 24 6.87369e+06 517032 556674. 1926.21 0.96 0.16812 0.149083 25186 138497 -1 2163 23 1814 2997 177827 41708 3.8954 3.8954 -147.648 -3.8954 0 0 706193. 2443.58 0.19 0.09 0.12 -1 -1 0.19 0.0335842 0.0291474 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 5.10 vpr 62.49 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30772 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63992 29 32 272 228 1 148 80 17 17 289 -1 unnamed_device 23.9 MiB 1.74 791 11776 3380 6895 1501 62.5 MiB 0.10 0.00 3.6364 -112.843 -3.6364 3.6364 0.66 0.000577156 0.000536725 0.0415926 0.0386977 32 2110 22 6.87369e+06 265503 586450. 2029.24 0.85 0.110343 0.0973497 25474 144626 -1 1823 20 1173 1939 168036 38331 2.94926 2.94926 -110.312 -2.94926 0 0 744469. 2576.02 0.19 0.07 0.12 -1 -1 0.19 0.022329 0.0193585 102 29 58 29 24 24 +fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 6.98 vpr 63.40 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30480 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 401 315 1 200 85 17 17 289 -1 unnamed_device 24.5 MiB 2.44 930 14221 5969 7807 445 63.4 MiB 0.15 0.00 3.52575 -124.171 -3.52575 3.52575 0.70 0.000782763 0.000727059 0.0623666 0.0579136 36 2582 25 6.87369e+06 293451 648988. 2245.63 1.81 0.216391 0.188923 26050 158493 -1 2034 22 1927 3356 229504 55016 3.46446 3.46446 -129.72 -3.46446 0 0 828058. 2865.25 0.20 0.10 0.09 -1 -1 0.20 0.0319652 0.0278269 145 63 64 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 7.80 vpr 63.35 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30372 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 32 32 383 303 1 193 102 17 17 289 -1 unnamed_device 24.5 MiB 4.18 1056 17238 4537 10962 1739 63.3 MiB 0.15 0.00 3.55695 -127.024 -3.55695 3.55695 0.65 0.000743976 0.000691406 0.0564693 0.0523558 28 2543 24 6.87369e+06 531006 531479. 1839.03 0.93 0.146379 0.129385 24610 126494 -1 2220 24 1752 2626 193827 42633 2.76296 2.76296 -120.046 -2.76296 0 0 648988. 2245.63 0.17 0.09 0.12 -1 -1 0.17 0.0327378 0.0283884 148 57 64 32 56 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 6.19 vpr 63.04 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30040 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 339 284 1 165 93 17 17 289 -1 unnamed_device 24.1 MiB 2.20 836 17103 4501 10697 1905 63.0 MiB 0.17 0.00 3.09156 -112.02 -3.09156 3.09156 0.68 0.000677391 0.000629515 0.0649323 0.0602691 26 2266 24 6.87369e+06 405241 503264. 1741.40 1.34 0.14913 0.132447 24322 120374 -1 2041 21 1192 1809 149970 34919 2.68907 2.68907 -114.096 -2.68907 0 0 618332. 2139.56 0.16 0.07 0.11 -1 -1 0.16 0.0268488 0.0233194 117 65 29 29 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 3.95 vpr 62.16 MiB 0.03 6772 -1 -1 1 0.02 -1 -1 30228 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 30 32 226 208 1 119 76 17 17 289 -1 unnamed_device 23.6 MiB 0.54 560 9036 3714 4978 344 62.2 MiB 0.08 0.00 2.94056 -94.1681 -2.94056 2.94056 0.67 0.000599612 0.000557753 0.0329556 0.0306448 28 1745 31 6.87369e+06 195634 531479. 1839.03 0.90 0.102272 0.0895668 24610 126494 -1 1394 18 735 1051 92304 21605 2.33662 2.33662 -95.3449 -2.33662 0 0 648988. 2245.63 0.19 0.05 0.12 -1 -1 0.19 0.0174037 0.0151332 73 34 24 24 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 4.63 vpr 62.85 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 30436 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 31 32 335 280 1 165 80 17 17 289 -1 unnamed_device 24.2 MiB 1.07 944 12636 3568 7641 1427 62.8 MiB 0.12 0.00 4.39847 -135.821 -4.39847 4.39847 0.67 0.000668939 0.000621373 0.0526463 0.048927 32 2277 24 6.87369e+06 237555 586450. 2029.24 0.91 0.14042 0.124216 25474 144626 -1 1947 22 1174 1750 172510 36533 3.3365 3.3365 -129.527 -3.3365 0 0 744469. 2576.02 0.19 0.08 0.13 -1 -1 0.19 0.0286841 0.0250083 113 64 31 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 5.14 vpr 63.23 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30196 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 366 283 1 197 100 17 17 289 -1 unnamed_device 24.4 MiB 0.88 894 19124 5624 10425 3075 63.2 MiB 0.17 0.00 4.20059 -139.885 -4.20059 4.20059 0.67 0.00073568 0.000684357 0.0624691 0.0578932 34 2709 23 6.87369e+06 503058 618332. 2139.56 1.64 0.212976 0.186411 25762 151098 -1 2001 22 1790 2566 197699 45882 3.8879 3.8879 -138.638 -3.8879 0 0 787024. 2723.27 0.19 0.05 0.09 -1 -1 0.19 0.0161849 0.0142448 150 34 91 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 9.70 vpr 63.48 MiB 0.03 7188 -1 -1 1 0.05 -1 -1 30564 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65000 32 32 460 375 1 199 104 17 17 289 -1 unnamed_device 24.7 MiB 2.84 951 19380 5821 10599 2960 63.5 MiB 0.19 0.00 3.81248 -128.436 -3.81248 3.81248 0.66 0.000965596 0.000890459 0.0710356 0.0655544 30 2850 21 6.87369e+06 558954 556674. 1926.21 4.09 0.279563 0.242999 25186 138497 -1 2061 21 1429 2276 150987 35757 3.6544 3.6544 -128.383 -3.6544 0 0 706193. 2443.58 0.20 0.08 0.12 -1 -1 0.20 0.0338636 0.0294632 154 124 0 0 125 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 5.15 vpr 62.01 MiB 0.04 6820 -1 -1 1 0.02 -1 -1 30636 -1 -1 16 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63496 26 32 198 186 1 109 74 17 17 289 -1 unnamed_device 23.5 MiB 1.83 600 9219 3759 4898 562 62.0 MiB 0.09 0.00 2.91856 -82.7442 -2.91856 2.91856 0.66 0.000449184 0.000417831 0.0358766 0.0333842 28 1359 19 6.87369e+06 223581 531479. 1839.03 0.81 0.0874968 0.077471 24610 126494 -1 1250 23 736 1165 95982 22384 2.15012 2.15012 -80.673 -2.15012 0 0 648988. 2245.63 0.18 0.05 0.11 -1 -1 0.18 0.0192123 0.0165744 69 30 26 26 22 22 +fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 5.90 vpr 63.02 MiB 0.02 6848 -1 -1 1 0.04 -1 -1 30112 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 24.3 MiB 1.26 1038 9757 2635 6591 531 63.0 MiB 0.11 0.00 4.1666 -141.416 -4.1666 4.1666 0.66 0.000690641 0.000642682 0.0384623 0.0357679 36 2506 23 6.87369e+06 293451 648988. 2245.63 1.76 0.177851 0.154779 26050 158493 -1 2117 22 1706 2907 189677 46185 3.8514 3.8514 -146.011 -3.8514 0 0 828058. 2865.25 0.21 0.08 0.16 -1 -1 0.21 0.0289807 0.0252395 141 3 122 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 3.95 vpr 62.21 MiB 0.02 6644 -1 -1 1 0.04 -1 -1 30532 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63708 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 23.7 MiB 0.37 506 9516 2238 6770 508 62.2 MiB 0.07 0.00 2.55523 -88.1124 -2.55523 2.55523 0.66 0.000477073 0.000444144 0.0296652 0.0275798 34 1387 22 6.87369e+06 167686 618332. 2139.56 1.20 0.122826 0.107296 25762 151098 -1 1150 20 592 734 48391 12727 2.11717 2.11717 -87.019 -2.11717 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0260763 0.0226997 71 3 53 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 4.61 vpr 63.24 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 30516 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 376 288 1 202 100 17 17 289 -1 unnamed_device 24.4 MiB 0.74 1092 17964 4627 11625 1712 63.2 MiB 0.20 0.00 4.26205 -149.131 -4.26205 4.26205 0.68 0.000747215 0.000685284 0.0679371 0.0628589 32 3060 24 6.87369e+06 503058 586450. 2029.24 1.07 0.158056 0.140152 25474 144626 -1 2548 20 1822 2753 230312 52330 3.9206 3.9206 -152.653 -3.9206 0 0 744469. 2576.02 0.19 0.09 0.13 -1 -1 0.19 0.0289582 0.0252195 155 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 4.49 vpr 63.21 MiB 0.03 6976 -1 -1 1 0.03 -1 -1 30100 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 24.5 MiB 0.81 964 9612 2267 6482 863 63.2 MiB 0.10 0.00 3.55269 -121.215 -3.55269 3.55269 0.66 0.000704692 0.000653942 0.0318044 0.0294946 32 2813 35 6.87369e+06 503058 586450. 2029.24 1.03 0.131265 0.114954 25474 144626 -1 2169 20 1584 2557 178230 43373 2.96796 2.96796 -121.474 -2.96796 0 0 744469. 2576.02 0.19 0.08 0.13 -1 -1 0.19 0.0283436 0.024758 151 3 124 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 6.31 vpr 63.33 MiB 0.03 7084 -1 -1 1 0.03 -1 -1 30524 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 407 319 1 202 103 17 17 289 -1 unnamed_device 24.5 MiB 1.01 1088 13358 3512 8899 947 63.3 MiB 0.14 0.00 4.2809 -148.724 -4.2809 4.2809 0.66 0.000787531 0.00073061 0.0461596 0.0427486 26 3507 43 6.87369e+06 544980 503264. 1741.40 2.59 0.157384 0.138137 24322 120374 -1 2777 24 2222 3984 399516 88533 4.0287 4.0287 -159.105 -4.0287 0 0 618332. 2139.56 0.17 0.13 0.13 -1 -1 0.17 0.0351887 0.0306229 156 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 4.86 vpr 62.61 MiB 0.02 6724 -1 -1 1 0.03 -1 -1 30208 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 294 246 1 157 79 17 17 289 -1 unnamed_device 24.1 MiB 0.87 734 6839 1724 4743 372 62.6 MiB 0.07 0.00 3.07332 -108.035 -3.07332 3.07332 0.67 0.000618767 0.000575155 0.0279089 0.0259652 34 2178 27 6.87369e+06 209608 618332. 2139.56 1.40 0.16177 0.140414 25762 151098 -1 1783 17 1068 1727 121433 29608 3.05556 3.05556 -115.804 -3.05556 0 0 787024. 2723.27 0.21 0.06 0.14 -1 -1 0.21 0.0224363 0.0196942 104 34 54 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 4.67 vpr 62.52 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30232 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 30 32 296 244 1 160 80 17 17 289 -1 unnamed_device 24.0 MiB 1.01 856 11260 3834 5392 2034 62.5 MiB 0.12 0.00 3.7936 -125.971 -3.7936 3.7936 0.74 0.000615131 0.00057151 0.0480709 0.0446482 32 2233 22 6.87369e+06 251529 586450. 2029.24 0.96 0.128142 0.113442 25474 144626 -1 1734 18 1225 1760 141072 32466 3.21861 3.21861 -125.851 -3.21861 0 0 744469. 2576.02 0.21 0.09 0.13 -1 -1 0.21 0.0309663 0.0268571 109 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 4.65 vpr 62.55 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 30364 -1 -1 19 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 28 32 278 232 1 150 79 17 17 289 -1 unnamed_device 24.0 MiB 1.00 743 13092 5209 6121 1762 62.6 MiB 0.14 0.00 3.48175 -108.034 -3.48175 3.48175 0.66 0.00104244 0.000970629 0.056577 0.0526437 28 2217 26 6.87369e+06 265503 531479. 1839.03 0.98 0.130704 0.115795 24610 126494 -1 1863 20 1315 2251 185300 42415 3.23286 3.23286 -118.946 -3.23286 0 0 648988. 2245.63 0.24 0.07 0.11 -1 -1 0.24 0.019505 0.0171101 104 34 56 28 28 28 +fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 5.21 vpr 62.56 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30348 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.0 MiB 1.16 861 14700 5460 6955 2285 62.6 MiB 0.13 0.00 3.58201 -129.205 -3.58201 3.58201 0.65 0.000610198 0.000567512 0.0540774 0.0503314 34 2321 22 6.87369e+06 223581 618332. 2139.56 1.41 0.172981 0.15157 25762 151098 -1 1919 21 1522 2476 189897 42368 2.98996 2.98996 -129.209 -2.98996 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0250465 0.0217846 114 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 4.31 vpr 62.97 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 30320 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 31 32 303 249 1 163 95 17 17 289 -1 unnamed_device 24.6 MiB 0.75 924 11975 3064 7554 1357 63.0 MiB 0.11 0.00 3.50375 -121.402 -3.50375 3.50375 0.65 0.000628985 0.000584458 0.0374879 0.0348522 32 2375 25 6.87369e+06 447163 586450. 2029.24 0.89 0.114705 0.100691 25474 144626 -1 2070 24 1467 2345 210193 47487 2.97126 2.97126 -122.609 -2.97126 0 0 744469. 2576.02 0.20 0.09 0.13 -1 -1 0.20 0.0292368 0.0253047 119 34 61 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 6.35 vpr 62.88 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30060 -1 -1 32 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 29 32 312 264 1 155 93 17 17 289 -1 unnamed_device 24.0 MiB 2.47 824 15003 4455 7859 2689 62.9 MiB 0.13 0.00 2.90021 -94.838 -2.90021 2.90021 0.65 0.000625439 0.000579086 0.0476329 0.0441351 34 1788 20 6.87369e+06 447163 618332. 2139.56 1.32 0.167999 0.146315 25762 151098 -1 1448 21 1212 2084 125367 29858 2.01852 2.01852 -85.8352 -2.01852 0 0 787024. 2723.27 0.21 0.07 0.09 -1 -1 0.21 0.0249962 0.0216256 113 61 29 29 57 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 8.98 vpr 63.56 MiB 0.03 7140 -1 -1 1 0.04 -1 -1 30500 -1 -1 44 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65084 32 32 423 310 1 231 108 17 17 289 -1 unnamed_device 24.9 MiB 3.67 1315 20411 5511 12546 2354 63.6 MiB 0.22 0.00 4.25391 -147.758 -4.25391 4.25391 0.66 0.000951756 0.000889169 0.0717005 0.066358 28 3619 31 6.87369e+06 614849 531479. 1839.03 2.38 0.185272 0.163801 24610 126494 -1 3097 23 2411 4323 372744 82822 4.1853 4.1853 -157.686 -4.1853 0 0 648988. 2245.63 0.18 0.13 0.12 -1 -1 0.18 0.0376156 0.0326261 184 29 128 32 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 6.40 vpr 63.34 MiB 0.04 7076 -1 -1 1 0.04 -1 -1 30428 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 403 317 1 200 103 17 17 289 -1 unnamed_device 24.5 MiB 2.74 1049 18419 4848 10881 2690 63.3 MiB 0.17 0.00 3.66825 -130.624 -3.66825 3.66825 0.65 0.000785432 0.000729863 0.0620304 0.0574961 32 2652 21 6.87369e+06 544980 586450. 2029.24 0.91 0.152535 0.135162 25474 144626 -1 2174 17 1649 2433 172499 39302 2.87266 2.87266 -123.401 -2.87266 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0268916 0.0235475 154 65 62 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 7.32 vpr 62.79 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30468 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 31 32 353 302 1 160 94 17 17 289 -1 unnamed_device 24.4 MiB 3.18 881 17134 5393 9307 2434 62.8 MiB 0.15 0.00 3.56305 -119.83 -3.56305 3.56305 0.66 0.000679746 0.000630078 0.0569747 0.0527326 34 1979 19 6.87369e+06 433189 618332. 2139.56 1.43 0.184421 0.161195 25762 151098 -1 1755 20 1161 1937 141124 32855 2.74101 2.74101 -108.676 -2.74101 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0260103 0.0224943 116 90 0 0 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 6.33 vpr 63.25 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30380 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 31 32 391 309 1 195 85 17 17 289 -1 unnamed_device 24.5 MiB 1.93 1019 8641 2131 5612 898 63.3 MiB 0.12 0.00 3.59121 -120.774 -3.59121 3.59121 0.69 0.000901426 0.000837606 0.0419826 0.0390702 34 2671 24 6.87369e+06 307425 618332. 2139.56 1.59 0.200644 0.174369 25762 151098 -1 2251 23 1813 3000 244202 55078 3.15256 3.15256 -124.24 -3.15256 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0319811 0.0277115 141 64 60 30 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 9.10 vpr 63.56 MiB 0.05 7308 -1 -1 1 0.03 -1 -1 30640 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65084 31 32 455 371 1 198 85 17 17 289 -1 unnamed_device 24.8 MiB 4.65 1071 16825 7101 8757 967 63.6 MiB 0.18 0.00 4.97069 -151.888 -4.97069 4.97069 0.67 0.000838496 0.00077902 0.078059 0.0725153 34 2813 21 6.87369e+06 307425 618332. 2139.56 1.68 0.231984 0.203309 25762 151098 -1 2372 20 1593 2572 232898 50187 4.30295 4.30295 -153.122 -4.30295 0 0 787024. 2723.27 0.22 0.07 0.14 -1 -1 0.22 0.0256751 0.0223169 145 124 0 0 124 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 5.98 vpr 63.32 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30348 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64844 31 32 413 333 1 195 85 17 17 289 -1 unnamed_device 24.5 MiB 1.72 980 12175 3299 8119 757 63.3 MiB 0.13 0.00 4.75154 -140.36 -4.75154 4.75154 0.65 0.00076967 0.000714377 0.0529953 0.0492247 34 2589 22 6.87369e+06 307425 618332. 2139.56 1.53 0.203831 0.177919 25762 151098 -1 2152 22 1658 2704 201753 47080 3.66545 3.66545 -138.955 -3.66545 0 0 787024. 2723.27 0.20 0.08 0.14 -1 -1 0.20 0.0320425 0.0278831 141 90 31 31 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 6.48 vpr 63.31 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30480 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64828 31 32 391 309 1 195 99 17 17 289 -1 unnamed_device 24.5 MiB 2.34 1053 19023 5653 10954 2416 63.3 MiB 0.17 0.00 3.64005 -125.414 -3.64005 3.64005 0.66 0.000753904 0.000700112 0.0649646 0.0601688 34 2453 25 6.87369e+06 503058 618332. 2139.56 1.45 0.212462 0.186034 25762 151098 -1 2058 22 1911 3227 218788 51238 2.76466 2.76466 -117.377 -2.76466 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0311568 0.0269399 148 64 60 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 8.60 vpr 63.21 MiB 0.05 7092 -1 -1 1 0.05 -1 -1 30436 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64728 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 24.4 MiB 1.65 1150 19618 5466 12522 1630 63.2 MiB 0.18 0.00 4.1996 -145.707 -4.1996 4.1996 0.66 0.000768546 0.000713743 0.0659248 0.0610962 30 2927 24 6.87369e+06 531006 556674. 1926.21 4.24 0.248663 0.217349 25186 138497 -1 2218 18 1562 2480 174353 38167 3.7701 3.7701 -147.596 -3.7701 0 0 706193. 2443.58 0.25 0.08 0.10 -1 -1 0.25 0.0271111 0.0236894 156 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 6.96 vpr 64.03 MiB 0.03 7236 -1 -1 1 0.04 -1 -1 30788 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65564 32 32 496 380 1 234 106 17 17 289 -1 unnamed_device 25.1 MiB 3.12 1303 13356 3327 8820 1209 64.0 MiB 0.16 0.00 4.31511 -149.42 -4.31511 4.31511 0.65 0.000928107 0.000854251 0.0529036 0.0489521 28 3336 22 6.87369e+06 586901 531479. 1839.03 1.16 0.161466 0.141839 24610 126494 -1 2813 21 2231 3611 254602 59974 4.0493 4.0493 -151.462 -4.0493 0 0 648988. 2245.63 0.17 0.11 0.11 -1 -1 0.17 0.0373986 0.032535 186 96 62 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 5.85 vpr 62.59 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30552 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64088 31 32 305 250 1 164 80 17 17 289 -1 unnamed_device 24.0 MiB 1.81 908 12636 4255 7048 1333 62.6 MiB 0.13 0.00 3.7654 -130.371 -3.7654 3.7654 0.65 0.000629638 0.000585682 0.0506952 0.0471489 34 2191 32 6.87369e+06 237555 618332. 2139.56 1.51 0.182895 0.159836 25762 151098 -1 1901 19 1345 2114 161441 36556 3.16561 3.16561 -127.759 -3.16561 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0233526 0.0202751 112 34 62 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 6.40 vpr 63.30 MiB 0.03 7128 -1 -1 1 0.03 -1 -1 30388 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 31 32 395 311 1 198 100 17 17 289 -1 unnamed_device 24.6 MiB 2.49 1036 19820 6398 10981 2441 63.3 MiB 0.18 0.00 4.25889 -142.345 -4.25889 4.25889 0.66 0.000766016 0.000711435 0.0692492 0.0642729 32 3207 38 6.87369e+06 517032 586450. 2029.24 1.23 0.181169 0.160024 25474 144626 -1 2384 23 1979 3333 315549 70052 3.8954 3.8954 -144.974 -3.8954 0 0 744469. 2576.02 0.20 0.11 0.13 -1 -1 0.20 0.0321021 0.0278334 152 64 62 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 5.91 vpr 63.43 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30704 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 32 32 397 313 1 198 99 17 17 289 -1 unnamed_device 24.6 MiB 1.90 1118 16515 4839 10227 1449 63.4 MiB 0.16 0.00 3.56001 -125.702 -3.56001 3.56001 0.66 0.000775388 0.000720561 0.0582834 0.0540856 28 2719 24 6.87369e+06 489084 531479. 1839.03 1.35 0.150679 0.13316 24610 126494 -1 2454 22 1851 3206 255819 57374 3.09956 3.09956 -129.409 -3.09956 0 0 648988. 2245.63 0.17 0.10 0.11 -1 -1 0.17 0.0311658 0.0270078 150 63 62 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 6.27 vpr 63.19 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 30340 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 24.5 MiB 1.39 942 16081 4088 11306 687 63.2 MiB 0.16 0.00 4.1996 -144.758 -4.1996 4.1996 0.66 0.000708782 0.000658644 0.0637822 0.0592522 34 3051 25 6.87369e+06 293451 618332. 2139.56 2.17 0.205772 0.180814 25762 151098 -1 2458 24 2272 3946 289627 70974 4.038 4.038 -157.316 -4.038 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0316372 0.0275019 147 3 128 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 7.77 vpr 63.33 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30560 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 424 343 1 195 100 17 17 289 -1 unnamed_device 24.5 MiB 3.56 1066 20980 7180 11264 2536 63.3 MiB 0.19 0.00 3.54349 -125.696 -3.54349 3.54349 0.65 0.000790765 0.000734141 0.0745136 0.0689941 34 2404 23 6.87369e+06 503058 618332. 2139.56 1.51 0.23023 0.202274 25762 151098 -1 2064 21 1654 2544 172073 40140 3.11856 3.11856 -124.399 -3.11856 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0308858 0.0268074 148 96 25 25 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 7.37 vpr 63.30 MiB 0.02 7016 -1 -1 1 0.04 -1 -1 30480 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 395 311 1 198 103 17 17 289 -1 unnamed_device 24.5 MiB 3.52 1032 19142 4987 12020 2135 63.3 MiB 0.20 0.00 3.61805 -127.505 -3.61805 3.61805 0.67 0.000760629 0.000705234 0.0710442 0.0657893 28 2710 41 6.87369e+06 544980 531479. 1839.03 1.28 0.182299 0.160931 24610 126494 -1 2177 24 1467 2685 183400 45007 3.20756 3.20756 -128.693 -3.20756 0 0 648988. 2245.63 0.17 0.05 0.07 -1 -1 0.17 0.0179675 0.0156835 152 61 64 32 60 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 6.43 vpr 63.38 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 30400 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 405 318 1 201 104 17 17 289 -1 unnamed_device 24.5 MiB 2.72 1111 18648 5184 11229 2235 63.4 MiB 0.18 0.00 3.58025 -126.995 -3.58025 3.58025 0.66 0.000768883 0.00071323 0.0662197 0.0613132 32 2918 26 6.87369e+06 558954 586450. 2029.24 0.98 0.159213 0.140945 25474 144626 -1 2322 21 1852 2981 273061 60337 2.98226 2.98226 -124.39 -2.98226 0 0 744469. 2576.02 0.19 0.10 0.13 -1 -1 0.19 0.0321075 0.0280837 156 65 63 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 5.58 vpr 63.29 MiB 0.05 7068 -1 -1 1 0.04 -1 -1 30648 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 376 288 1 202 103 17 17 289 -1 unnamed_device 24.4 MiB 0.84 973 12876 3455 7707 1714 63.3 MiB 0.11 0.00 4.3249 -147.802 -4.3249 4.3249 0.69 0.000753225 0.000700128 0.0426039 0.0395544 34 2850 24 6.87369e+06 544980 618332. 2139.56 1.99 0.191678 0.167373 25762 151098 -1 2253 21 1907 3029 202354 51263 4.099 4.099 -155.694 -4.099 0 0 787024. 2723.27 0.20 0.09 0.14 -1 -1 0.20 0.0278979 0.0243932 156 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 7.14 vpr 63.24 MiB 0.05 6956 -1 -1 1 0.04 -1 -1 30664 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 407 319 1 202 105 17 17 289 -1 unnamed_device 24.4 MiB 2.62 1087 15172 3966 9854 1352 63.2 MiB 0.15 0.00 4.1996 -143.047 -4.1996 4.1996 0.69 0.000774825 0.000719516 0.0509635 0.0471673 34 2680 28 6.87369e+06 572927 618332. 2139.56 1.71 0.211864 0.184404 25762 151098 -1 2383 23 2194 3480 262882 60946 3.9034 3.9034 -147.818 -3.9034 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.0331884 0.0288214 157 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 7.46 vpr 63.77 MiB 0.03 7268 -1 -1 1 0.03 -1 -1 30580 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65300 31 32 449 367 1 195 100 17 17 289 -1 unnamed_device 25.1 MiB 3.71 988 19356 5396 10906 3054 63.8 MiB 0.19 0.00 4.16785 -135.645 -4.16785 4.16785 0.65 0.000830933 0.000770036 0.0712429 0.065899 30 2632 23 6.87369e+06 517032 556674. 1926.21 1.01 0.169308 0.149593 25186 138497 -1 2033 22 1505 2618 168069 38438 3.4725 3.4725 -128.631 -3.4725 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0330511 0.0285719 150 122 0 0 122 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 7.15 vpr 63.47 MiB 0.02 7144 -1 -1 1 0.04 -1 -1 30568 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64992 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 24.6 MiB 2.67 1079 15709 4633 9421 1655 63.5 MiB 0.17 0.00 4.13359 -143.515 -4.13359 4.13359 0.66 0.000812796 0.000754658 0.0711953 0.0661087 34 3228 24 6.87369e+06 293451 618332. 2139.56 1.72 0.230343 0.201755 25762 151098 -1 2526 23 2128 3896 292262 68799 3.7624 3.7624 -144.624 -3.7624 0 0 787024. 2723.27 0.20 0.11 0.14 -1 -1 0.20 0.0343442 0.0297476 145 94 32 32 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 4.40 vpr 62.59 MiB 0.02 6824 -1 -1 1 0.03 -1 -1 30540 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64096 32 32 312 255 1 167 96 17 17 289 -1 unnamed_device 24.0 MiB 0.84 919 15426 4260 9754 1412 62.6 MiB 0.13 0.00 3.51475 -125.544 -3.51475 3.51475 0.66 0.000638318 0.000593958 0.0478223 0.0443698 32 2428 31 6.87369e+06 447163 586450. 2029.24 0.94 0.134697 0.118574 25474 144626 -1 1987 23 1581 2437 217566 48085 2.95396 2.95396 -122.94 -2.95396 0 0 744469. 2576.02 0.19 0.09 0.13 -1 -1 0.19 0.0273314 0.0236843 121 34 63 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 6.54 vpr 63.25 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30428 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 370 314 1 166 80 17 17 289 -1 unnamed_device 24.4 MiB 2.86 953 12980 4579 7047 1354 63.3 MiB 0.14 0.00 3.6884 -132.193 -3.6884 3.6884 0.68 0.000714009 0.000662914 0.0590387 0.0547913 32 2548 27 6.87369e+06 223581 586450. 2029.24 0.93 0.147839 0.13069 25474 144626 -1 2133 23 1484 2336 225729 48654 3.18556 3.18556 -130.661 -3.18556 0 0 744469. 2576.02 0.22 0.10 0.15 -1 -1 0.22 0.0341031 0.0296644 112 94 0 0 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 7.06 vpr 63.43 MiB 0.03 7212 -1 -1 1 0.03 -1 -1 30788 -1 -1 44 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 469 351 1 236 108 17 17 289 -1 unnamed_device 24.9 MiB 1.90 1419 16556 4403 10830 1323 63.4 MiB 0.18 0.00 4.99284 -170.715 -4.99284 4.99284 0.66 0.00106753 0.000993415 0.0614611 0.0569834 28 3950 45 6.87369e+06 614849 531479. 1839.03 2.46 0.19887 0.17469 24610 126494 -1 3285 23 2755 4689 480810 98758 5.07045 5.07045 -183.474 -5.07045 0 0 648988. 2245.63 0.20 0.14 0.08 -1 -1 0.20 0.037568 0.0325996 189 65 96 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 6.32 vpr 63.20 MiB 0.03 6988 -1 -1 1 0.03 -1 -1 30304 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 368 284 1 198 99 17 17 289 -1 unnamed_device 24.4 MiB 2.55 1069 15831 4027 10006 1798 63.2 MiB 0.15 0.00 3.59121 -127.943 -3.59121 3.59121 0.66 0.000780036 0.000723825 0.0544397 0.050286 26 2546 23 6.87369e+06 489084 503264. 1741.40 1.13 0.142686 0.125882 24322 120374 -1 2396 32 2226 3289 246797 55862 3.21856 3.21856 -133.794 -3.21856 0 0 618332. 2139.56 0.17 0.11 0.11 -1 -1 0.17 0.0413221 0.0356822 150 34 92 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 4.27 vpr 63.02 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30296 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 30 32 296 244 1 160 93 17 17 289 -1 unnamed_device 24.1 MiB 0.67 823 15633 5297 7776 2560 63.0 MiB 0.13 0.00 3.51601 -116.196 -3.51601 3.51601 0.65 0.000617644 0.000573172 0.048343 0.0448172 28 2054 23 6.87369e+06 433189 531479. 1839.03 1.03 0.123391 0.108888 24610 126494 -1 1737 22 1350 2077 160529 36914 3.06026 3.06026 -118.11 -3.06026 0 0 648988. 2245.63 0.17 0.04 0.07 -1 -1 0.17 0.0161521 0.0141071 116 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 9.93 vpr 63.50 MiB 0.05 7332 -1 -1 1 0.03 -1 -1 31072 -1 -1 47 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 531 413 1 236 111 17 17 289 -1 unnamed_device 24.9 MiB 5.40 1193 22455 6528 13018 2909 63.5 MiB 0.22 0.00 4.91264 -167.151 -4.91264 4.91264 0.69 0.000953751 0.00088506 0.0835759 0.0774261 32 3593 50 6.87369e+06 656770 586450. 2029.24 1.62 0.239314 0.210922 25474 144626 -1 2679 25 2765 4463 413666 88971 4.85905 4.85905 -176.73 -4.85905 0 0 744469. 2576.02 0.21 0.14 0.13 -1 -1 0.21 0.0437943 0.0378161 190 127 32 32 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 6.82 vpr 63.20 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30508 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 376 288 1 202 104 17 17 289 -1 unnamed_device 24.3 MiB 2.86 975 19868 5843 10688 3337 63.2 MiB 0.17 0.00 4.28153 -144.516 -4.28153 4.28153 0.67 0.000750213 0.000696956 0.0632288 0.0586669 32 2796 48 6.87369e+06 558954 586450. 2029.24 1.19 0.183376 0.161556 25474 144626 -1 2049 20 1866 2816 214883 49440 3.684 3.684 -141.143 -3.684 0 0 744469. 2576.02 0.19 0.09 0.13 -1 -1 0.19 0.0289729 0.0251684 156 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 4.08 vpr 62.68 MiB 0.03 6748 -1 -1 1 0.03 -1 -1 30376 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 24.3 MiB 0.59 857 11197 2857 7409 931 62.7 MiB 0.10 0.00 3.64005 -128.736 -3.64005 3.64005 0.65 0.000622527 0.000579222 0.0331289 0.030761 30 2290 23 6.87369e+06 461137 556674. 1926.21 0.87 0.107121 0.0941421 25186 138497 -1 1821 20 1230 1962 126723 29562 2.83966 2.83966 -120.97 -2.83966 0 0 706193. 2443.58 0.21 0.08 0.13 -1 -1 0.21 0.0262032 0.0226931 123 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 6.70 vpr 63.43 MiB 0.03 7192 -1 -1 1 0.03 -1 -1 30856 -1 -1 45 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64948 32 32 438 320 1 236 109 17 17 289 -1 unnamed_device 24.7 MiB 2.38 1249 21169 5887 12519 2763 63.4 MiB 0.20 0.00 4.9297 -168.732 -4.9297 4.9297 0.66 0.00085602 0.00079554 0.0723584 0.06716 28 3487 31 6.87369e+06 628823 531479. 1839.03 1.51 0.183078 0.16176 24610 126494 -1 2951 24 2799 4931 437770 97531 4.83715 4.83715 -177.425 -4.83715 0 0 648988. 2245.63 0.19 0.14 0.11 -1 -1 0.19 0.0372862 0.0322512 189 34 128 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 4.91 vpr 62.81 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30276 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 0.87 806 12292 2857 8871 564 62.8 MiB 0.11 0.00 3.7764 -134.344 -3.7764 3.7764 0.65 0.000604044 0.000561094 0.0452227 0.0420221 34 2200 24 6.87369e+06 223581 618332. 2139.56 1.37 0.166068 0.145075 25762 151098 -1 1826 23 1612 2529 189821 43692 3.24061 3.24061 -134.105 -3.24061 0 0 787024. 2723.27 0.22 0.08 0.14 -1 -1 0.22 0.0264163 0.0228978 114 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 5.64 vpr 62.72 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 30060 -1 -1 33 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 30 32 296 244 1 162 95 17 17 289 -1 unnamed_device 24.3 MiB 2.16 719 10463 2628 6946 889 62.7 MiB 0.10 0.00 3.56001 -114.458 -3.56001 3.56001 0.65 0.000614356 0.000571372 0.0315518 0.0292482 28 2094 21 6.87369e+06 461137 531479. 1839.03 0.92 0.104927 0.0919668 24610 126494 -1 1794 23 1547 2588 207889 48329 3.06826 3.06826 -118.701 -3.06826 0 0 648988. 2245.63 0.17 0.08 0.11 -1 -1 0.17 0.026353 0.022756 118 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 7.17 vpr 63.34 MiB 0.03 7196 -1 -1 1 0.03 -1 -1 30260 -1 -1 35 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 29 32 393 319 1 186 96 17 17 289 -1 unnamed_device 24.5 MiB 3.05 1008 14550 3923 8443 2184 63.3 MiB 0.14 0.00 3.54707 -114.227 -3.54707 3.54707 0.68 0.000741532 0.000688413 0.0515543 0.0478369 34 2543 22 6.87369e+06 489084 618332. 2139.56 1.47 0.195202 0.170421 25762 151098 -1 2164 21 1661 2781 199378 47628 2.96496 2.96496 -116.623 -2.96496 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0292661 0.025383 141 88 29 29 85 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 6.46 vpr 63.44 MiB 0.02 7084 -1 -1 1 0.04 -1 -1 30608 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.6 MiB 2.03 854 12175 2685 7576 1914 63.4 MiB 0.11 0.00 4.2388 -146.065 -4.2388 4.2388 0.65 0.000753416 0.000701605 0.0531092 0.049309 34 2806 28 6.87369e+06 293451 618332. 2139.56 1.78 0.209919 0.183107 25762 151098 -1 2128 25 2375 3614 256909 62781 4.0459 4.0459 -155.816 -4.0459 0 0 787024. 2723.27 0.24 0.10 0.13 -1 -1 0.24 0.0352036 0.0305181 147 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 7.59 vpr 63.40 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 30656 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.5 MiB 3.91 1100 18901 5336 11603 1962 63.4 MiB 0.18 0.00 4.27679 -150.534 -4.27679 4.27679 0.56 0.000790326 0.000727356 0.0651175 0.0603553 30 2779 22 6.87369e+06 517032 556674. 1926.21 1.05 0.156513 0.13878 25186 138497 -1 2296 23 1941 3228 203722 46819 3.6781 3.6781 -148.543 -3.6781 0 0 706193. 2443.58 0.18 0.09 0.13 -1 -1 0.18 0.0330496 0.0286816 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 6.94 vpr 63.12 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30504 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64636 32 32 345 287 1 168 97 17 17 289 -1 unnamed_device 24.4 MiB 2.86 825 17191 6233 8742 2216 63.1 MiB 0.14 0.00 3.60705 -126.657 -3.60705 3.60705 0.65 0.000686204 0.00063105 0.0547869 0.0507557 36 2048 23 6.87369e+06 461137 648988. 2245.63 1.46 0.187298 0.163615 26050 158493 -1 1649 21 1425 2224 134529 32913 2.98526 2.98526 -118.315 -2.98526 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0270182 0.02349 123 65 32 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 7.57 vpr 63.09 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30464 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 31 32 353 302 1 160 81 17 17 289 -1 unnamed_device 24.2 MiB 3.58 738 4456 873 3135 448 63.1 MiB 0.06 0.00 3.6994 -119.902 -3.6994 3.6994 0.65 0.00067665 0.000629265 0.0193315 0.0179786 34 2217 18 6.87369e+06 251529 618332. 2139.56 1.43 0.149279 0.128934 25762 151098 -1 1875 22 1387 2476 191987 45689 3.11956 3.11956 -117.478 -3.11956 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0278404 0.0240939 108 90 0 0 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 6.73 vpr 63.17 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 30384 -1 -1 34 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 30 32 374 297 1 189 96 17 17 289 -1 unnamed_device 24.4 MiB 2.68 914 16740 4391 9932 2417 63.2 MiB 0.16 0.00 3.59605 -116.379 -3.59605 3.59605 0.69 0.000726804 0.00067534 0.0586669 0.0544782 34 2147 21 6.87369e+06 475111 618332. 2139.56 1.32 0.19726 0.172673 25762 151098 -1 1808 19 1286 2110 120121 31186 3.07756 3.07756 -113.914 -3.07756 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.026658 0.0231992 143 60 60 30 57 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 5.67 vpr 62.95 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 30468 -1 -1 35 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 28 32 332 260 1 180 95 17 17 289 -1 unnamed_device 24.2 MiB 1.48 905 12191 3346 7959 886 63.0 MiB 0.11 0.00 4.19891 -125.962 -4.19891 4.19891 0.66 0.000667003 0.000620877 0.0398213 0.0369411 26 2593 24 6.87369e+06 489084 503264. 1741.40 1.61 0.121865 0.106907 24322 120374 -1 2263 28 2010 3451 348753 73625 4.2133 4.2133 -142.681 -4.2133 0 0 618332. 2139.56 0.16 0.11 0.11 -1 -1 0.16 0.0340326 0.0294761 139 34 84 28 28 28 +fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 5.69 vpr 62.96 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30308 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 30 32 325 273 1 161 80 17 17 289 -1 unnamed_device 24.1 MiB 2.24 882 11432 3518 6484 1430 63.0 MiB 0.11 0.00 3.7324 -126.153 -3.7324 3.7324 0.67 0.00064665 0.000600903 0.0452925 0.042106 30 2191 20 6.87369e+06 251529 556674. 1926.21 0.86 0.119422 0.105373 25186 138497 -1 1853 21 1294 2164 150246 32740 2.82871 2.82871 -116.084 -2.82871 0 0 706193. 2443.58 0.18 0.07 0.12 -1 -1 0.18 0.0261104 0.0226434 110 63 30 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 7.23 vpr 63.13 MiB 0.04 6872 -1 -1 1 0.04 -1 -1 30364 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 361 308 1 163 81 17 17 289 -1 unnamed_device 24.2 MiB 3.05 904 14256 4718 7453 2085 63.1 MiB 0.14 0.00 3.6144 -123.374 -3.6144 3.6144 0.66 0.000703585 0.000650192 0.0597809 0.0555272 34 2227 20 6.87369e+06 237555 618332. 2139.56 1.37 0.19492 0.170785 25762 151098 -1 1931 21 1128 1866 148478 33442 2.97226 2.97226 -121.122 -2.97226 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0279126 0.024247 110 91 0 0 91 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 4.88 vpr 62.88 MiB 0.02 7000 -1 -1 1 0.04 -1 -1 30184 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 24.3 MiB 0.79 962 16804 5215 8614 2975 62.9 MiB 0.15 0.00 4.24789 -140.354 -4.24789 4.24789 0.65 0.000808979 0.000759869 0.0529431 0.0491689 28 3199 26 6.87369e+06 517032 531479. 1839.03 1.45 0.13249 0.11744 24610 126494 -1 2450 19 1768 2821 237606 55531 4.1383 4.1383 -148.079 -4.1383 0 0 648988. 2245.63 0.18 0.09 0.12 -1 -1 0.18 0.0260193 0.0227999 151 4 124 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 8.00 vpr 63.53 MiB 0.05 6968 -1 -1 1 0.05 -1 -1 30536 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65056 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 24.7 MiB 3.93 1093 19380 5712 11198 2470 63.5 MiB 0.18 0.00 4.29189 -149.386 -4.29189 4.29189 0.66 0.000773174 0.000717835 0.0658998 0.0610278 28 2995 25 6.87369e+06 531006 531479. 1839.03 1.37 0.162521 0.143906 24610 126494 -1 2670 25 2267 3928 339145 75328 4.0207 4.0207 -157.565 -4.0207 0 0 648988. 2245.63 0.17 0.12 0.11 -1 -1 0.17 0.0352847 0.030557 156 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 7.19 vpr 63.41 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 30324 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.5 MiB 3.51 1146 17256 4889 10338 2029 63.4 MiB 0.18 0.00 4.30289 -150.744 -4.30289 4.30289 0.65 0.000781793 0.00072618 0.0666785 0.0618434 30 3045 23 6.87369e+06 517032 556674. 1926.21 1.01 0.160697 0.142402 25186 138497 -1 2268 21 1665 2813 150264 36836 3.7671 3.7671 -149.208 -3.7671 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0308231 0.0268498 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 6.97 vpr 63.17 MiB 0.02 7072 -1 -1 1 0.04 -1 -1 30528 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 399 315 1 198 103 17 17 289 -1 unnamed_device 24.4 MiB 2.81 1114 16491 4519 10066 1906 63.2 MiB 0.15 0.00 4.16249 -142.489 -4.16249 4.16249 0.65 0.000763161 0.000708717 0.0554139 0.051306 28 3159 33 6.87369e+06 544980 531479. 1839.03 1.51 0.162854 0.143553 24610 126494 -1 2632 22 1851 3241 245138 57811 3.9647 3.9647 -149.766 -3.9647 0 0 648988. 2245.63 0.17 0.10 0.11 -1 -1 0.17 0.0313768 0.0272022 152 65 60 30 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 5.86 vpr 62.68 MiB 0.05 6808 -1 -1 1 0.03 -1 -1 30376 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 30 32 296 244 1 160 81 17 17 289 -1 unnamed_device 24.1 MiB 2.33 746 10406 2932 6420 1054 62.7 MiB 0.10 0.00 3.7324 -121.378 -3.7324 3.7324 0.65 0.000616316 0.000573793 0.0385431 0.0358612 32 2264 21 6.87369e+06 265503 586450. 2029.24 0.89 0.110609 0.0974482 25474 144626 -1 1944 19 1250 2056 193370 43340 3.31086 3.31086 -121.534 -3.31086 0 0 744469. 2576.02 0.21 0.09 0.14 -1 -1 0.21 0.0256651 0.0223086 110 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 6.54 vpr 63.23 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30324 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 30 32 383 303 1 192 85 17 17 289 -1 unnamed_device 24.4 MiB 2.95 980 15709 4819 8970 1920 63.2 MiB 0.15 0.00 4.23999 -140.261 -4.23999 4.23999 0.66 0.00073329 0.000680726 0.0643365 0.0597156 30 2357 25 6.87369e+06 321398 556674. 1926.21 0.93 0.155382 0.137461 25186 138497 -1 1983 20 1484 2354 155562 33827 3.7184 3.7184 -141.349 -3.7184 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0283602 0.0246686 140 63 60 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 8.93 vpr 63.62 MiB 0.04 7188 -1 -1 1 0.04 -1 -1 30872 -1 -1 43 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65144 32 32 469 381 1 202 107 17 17 289 -1 unnamed_device 24.8 MiB 4.94 1155 15540 3963 10188 1389 63.6 MiB 0.16 0.00 4.23385 -146.284 -4.23385 4.23385 0.67 0.00086016 0.000796699 0.0557272 0.0515611 32 3029 43 6.87369e+06 600875 586450. 2029.24 1.21 0.183672 0.160561 25474 144626 -1 2474 24 2205 3740 360243 77125 3.7941 3.7941 -146.23 -3.7941 0 0 744469. 2576.02 0.19 0.12 0.13 -1 -1 0.19 0.0372594 0.0321419 158 127 0 0 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 4.92 vpr 63.46 MiB 0.03 7188 -1 -1 1 0.03 -1 -1 30656 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64984 31 32 425 341 1 197 96 17 17 289 -1 unnamed_device 24.6 MiB 1.08 1029 18273 5989 9373 2911 63.5 MiB 0.18 0.00 4.26989 -143.564 -4.26989 4.26989 0.65 0.000797005 0.000740538 0.0693751 0.064245 28 2783 23 6.87369e+06 461137 531479. 1839.03 1.20 0.145321 0.129603 24610 126494 -1 2420 23 2143 3547 280375 63485 4.102 4.102 -152.634 -4.102 0 0 648988. 2245.63 0.18 0.11 0.11 -1 -1 0.18 0.0337583 0.0293146 149 94 31 31 93 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 5.90 vpr 63.26 MiB 0.02 7272 -1 -1 1 0.03 -1 -1 30648 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 30 32 404 328 1 188 94 17 17 289 -1 unnamed_device 24.4 MiB 2.15 942 16921 5030 8706 3185 63.3 MiB 0.17 0.00 3.63595 -118.056 -3.63595 3.63595 0.67 0.000762288 0.000700316 0.0626343 0.0579815 30 2456 23 6.87369e+06 447163 556674. 1926.21 1.02 0.160772 0.14198 25186 138497 -1 1779 22 1419 2439 131400 32524 2.92396 2.92396 -111.704 -2.92396 0 0 706193. 2443.58 0.19 0.08 0.13 -1 -1 0.19 0.0309738 0.0268622 141 92 26 26 90 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 8.70 vpr 63.63 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30508 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65156 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.8 MiB 4.20 1087 14593 4252 9147 1194 63.6 MiB 0.16 0.00 4.1996 -148.308 -4.1996 4.1996 0.65 0.000780075 0.000724251 0.0637187 0.0591754 34 3260 29 6.87369e+06 293451 618332. 2139.56 1.88 0.226378 0.198045 25762 151098 -1 2669 23 2273 3881 337747 75784 4.102 4.102 -157.524 -4.102 0 0 787024. 2723.27 0.20 0.12 0.09 -1 -1 0.20 0.0342308 0.0297091 147 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 5.67 vpr 63.16 MiB 0.04 7128 -1 -1 1 0.05 -1 -1 30332 -1 -1 36 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 29 32 387 316 1 181 97 17 17 289 -1 unnamed_device 24.5 MiB 2.12 943 12751 3363 8405 983 63.2 MiB 0.12 0.00 3.54105 -112.818 -3.54105 3.54105 0.63 0.000737109 0.000682388 0.0452754 0.0419034 26 2618 24 6.87369e+06 503058 503264. 1741.40 0.95 0.140566 0.123506 24322 120374 -1 2300 23 1689 2777 271257 63076 3.58206 3.58206 -122.754 -3.58206 0 0 618332. 2139.56 0.17 0.10 0.11 -1 -1 0.17 0.0312349 0.027035 138 88 26 26 85 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 4.55 vpr 62.57 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30356 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.0 MiB 0.62 862 12292 3174 7904 1214 62.6 MiB 0.11 0.00 3.7104 -131.958 -3.7104 3.7104 0.65 0.000612204 0.000569761 0.0456634 0.0425053 34 2313 18 6.87369e+06 223581 618332. 2139.56 1.35 0.161486 0.141329 25762 151098 -1 1950 20 1422 2169 170148 39363 3.29991 3.29991 -133.305 -3.29991 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0241587 0.0210505 114 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 8.00 vpr 63.34 MiB 0.05 7076 -1 -1 1 0.04 -1 -1 30344 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.5 MiB 4.19 1088 19841 5443 12522 1876 63.3 MiB 0.19 0.00 4.3249 -149.309 -4.3249 4.3249 0.66 0.000772559 0.000715829 0.0680462 0.0629887 32 3036 24 6.87369e+06 517032 586450. 2029.24 1.00 0.162678 0.144142 25474 144626 -1 2367 24 2066 3250 279137 64767 3.9207 3.9207 -150.114 -3.9207 0 0 744469. 2576.02 0.19 0.11 0.14 -1 -1 0.19 0.0345776 0.0299965 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 8.23 vpr 63.29 MiB 0.02 7076 -1 -1 1 0.04 -1 -1 30452 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.4 MiB 3.84 1071 15151 5130 8107 1914 63.3 MiB 0.16 0.00 4.2388 -148.068 -4.2388 4.2388 0.66 0.00077875 0.000722277 0.0661096 0.0613743 36 2570 23 6.87369e+06 293451 648988. 2245.63 1.61 0.219556 0.192488 26050 158493 -1 2102 22 2152 3479 208398 51233 3.6638 3.6638 -145.28 -3.6638 0 0 828058. 2865.25 0.21 0.09 0.15 -1 -1 0.21 0.0325765 0.0283577 147 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 7.26 vpr 62.93 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30412 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 24.0 MiB 3.32 885 16708 4981 9424 2303 62.9 MiB 0.14 0.00 3.50501 -121.209 -3.50501 3.50501 0.68 0.000658966 0.000612815 0.0536003 0.0497633 34 2092 22 6.87369e+06 419215 618332. 2139.56 1.32 0.177315 0.155474 25762 151098 -1 1758 22 1214 2091 161943 37394 2.93226 2.93226 -114.098 -2.93226 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0262076 0.0227107 112 55 32 32 54 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 4.30 vpr 62.47 MiB 0.03 6844 -1 -1 1 0.03 -1 -1 30364 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 23.9 MiB 0.82 723 6960 1528 4773 659 62.5 MiB 0.09 0.00 3.7434 -125.643 -3.7434 3.7434 0.66 0.000751047 0.000699405 0.0280819 0.026162 32 2245 24 6.87369e+06 237555 586450. 2029.24 0.91 0.102889 0.0900109 25474 144626 -1 1812 20 1388 2205 168538 38814 3.09956 3.09956 -123.67 -3.09956 0 0 744469. 2576.02 0.19 0.07 0.13 -1 -1 0.19 0.023112 0.0200812 112 4 93 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 6.26 vpr 63.30 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30288 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 381 303 1 194 99 17 17 289 -1 unnamed_device 24.4 MiB 2.69 1023 18795 5447 10788 2560 63.3 MiB 0.17 0.00 4.30799 -144.78 -4.30799 4.30799 0.65 0.000755549 0.000702316 0.0643126 0.0596367 28 2603 22 6.87369e+06 489084 531479. 1839.03 0.90 0.151806 0.134682 24610 126494 -1 2312 20 1627 2445 176945 40331 3.637 3.637 -140.477 -3.637 0 0 648988. 2245.63 0.17 0.08 0.11 -1 -1 0.17 0.0281979 0.024527 144 59 60 32 58 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 5.09 vpr 63.22 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30336 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 406 330 1 191 97 17 17 289 -1 unnamed_device 24.4 MiB 1.09 1094 18745 5603 10775 2367 63.2 MiB 0.17 0.00 4.21185 -141.009 -4.21185 4.21185 0.65 0.000761726 0.000706579 0.0669063 0.0619691 28 2842 31 6.87369e+06 461137 531479. 1839.03 1.22 0.167508 0.148047 24610 126494 -1 2441 24 1849 2884 230492 51132 4.10256 4.10256 -145.761 -4.10256 0 0 648988. 2245.63 0.18 0.10 0.12 -1 -1 0.18 0.0360327 0.0312447 142 88 28 28 88 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 6.71 vpr 63.41 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30500 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 24.7 MiB 0.92 1329 17642 5677 9392 2573 63.4 MiB 0.18 0.00 4.98719 -165.596 -4.98719 4.98719 0.63 0.000797412 0.000740577 0.0597168 0.0554178 34 3730 48 6.87369e+06 572927 618332. 2139.56 3.00 0.255546 0.223881 25762 151098 -1 2666 23 2092 3309 293486 62129 4.59455 4.59455 -163.458 -4.59455 0 0 787024. 2723.27 0.20 0.11 0.13 -1 -1 0.20 0.0340414 0.0296232 183 3 156 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 6.67 vpr 63.21 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30512 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 30 32 371 295 1 188 94 17 17 289 -1 unnamed_device 24.4 MiB 2.54 1005 13300 3782 8501 1017 63.2 MiB 0.14 0.00 3.59605 -120.715 -3.59605 3.59605 0.66 0.000717272 0.000665628 0.0502434 0.0465363 34 2294 27 6.87369e+06 447163 618332. 2139.56 1.47 0.194386 0.169441 25762 151098 -1 2011 19 1635 2586 164466 39881 2.93496 2.93496 -116.36 -2.93496 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0264931 0.0230704 141 59 60 30 56 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 4.12 vpr 62.46 MiB 0.04 6836 -1 -1 1 0.03 -1 -1 30584 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 27 32 269 226 1 145 79 17 17 289 -1 unnamed_device 24.0 MiB 0.70 735 12247 4571 5926 1750 62.5 MiB 0.11 0.00 3.6866 -109.378 -3.6866 3.6866 0.66 0.000438321 0.000402263 0.0441998 0.0409729 32 1771 18 6.87369e+06 279477 586450. 2029.24 0.83 0.108583 0.0959298 25474 144626 -1 1554 20 1118 1583 134320 29464 3.03351 3.03351 -108.423 -3.03351 0 0 744469. 2576.02 0.19 0.06 0.13 -1 -1 0.19 0.0254477 0.0222748 102 34 54 27 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 6.56 vpr 63.50 MiB 0.03 7296 -1 -1 1 0.03 -1 -1 30608 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 493 378 1 233 106 17 17 289 -1 unnamed_device 25.0 MiB 2.40 1290 11856 2585 8478 793 63.5 MiB 0.14 0.00 4.1886 -144.868 -4.1886 4.1886 0.65 0.000911214 0.000843078 0.0472187 0.0437474 30 3626 23 6.87369e+06 586901 556674. 1926.21 1.43 0.1571 0.137866 25186 138497 -1 2701 23 2039 3711 246498 54124 3.4805 3.4805 -140.124 -3.4805 0 0 706193. 2443.58 0.19 0.10 0.12 -1 -1 0.19 0.0385309 0.0333936 184 95 62 31 95 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 8.01 vpr 63.35 MiB 0.04 7240 -1 -1 1 0.03 -1 -1 30552 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 31 32 455 371 1 199 86 17 17 289 -1 unnamed_device 24.7 MiB 3.14 874 9914 2276 6234 1404 63.4 MiB 0.11 0.00 4.91157 -150.663 -4.91157 4.91157 0.66 0.000827605 0.000768579 0.0461521 0.042895 34 2604 24 6.87369e+06 321398 618332. 2139.56 2.13 0.221078 0.191836 25762 151098 -1 1968 22 1570 2400 176110 43897 4.09455 4.09455 -145.251 -4.09455 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0339433 0.0293362 144 124 0 0 124 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 7.04 vpr 62.92 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 355 304 1 162 80 17 17 289 -1 unnamed_device 24.1 MiB 3.01 802 14356 5267 6628 2461 62.9 MiB 0.14 0.00 4.598 -126.496 -4.598 4.598 0.68 0.000683953 0.000634897 0.0601246 0.0558216 34 2153 24 6.87369e+06 223581 618332. 2139.56 1.38 0.195489 0.171096 25762 151098 -1 1756 15 795 1183 93190 21619 3.18321 3.18321 -119.099 -3.18321 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0236867 0.0209187 107 89 0 0 89 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 5.18 vpr 63.28 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 30520 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 364 282 1 196 98 17 17 289 -1 unnamed_device 24.5 MiB 0.91 1114 14723 4652 8968 1103 63.3 MiB 0.17 0.00 4.1955 -143.003 -4.1955 4.1955 0.66 0.000727696 0.00067575 0.0569265 0.0526309 28 2955 24 6.87369e+06 475111 531479. 1839.03 1.57 0.146848 0.130104 24610 126494 -1 2662 21 1784 2607 314392 88903 4.151 4.151 -151.44 -4.151 0 0 648988. 2245.63 0.18 0.11 0.12 -1 -1 0.18 0.0290997 0.0253113 147 34 90 30 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 6.90 vpr 63.64 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30584 -1 -1 40 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 31 32 443 336 1 224 103 17 17 289 -1 unnamed_device 24.9 MiB 1.94 1006 19865 6118 9930 3817 63.6 MiB 0.20 0.00 4.28153 -140.004 -4.28153 4.28153 0.73 0.000856362 0.000787946 0.0737644 0.0680664 34 3026 32 6.87369e+06 558954 618332. 2139.56 2.04 0.261921 0.228464 25762 151098 -1 2189 23 2117 3144 206084 51178 4.0632 4.0632 -141.309 -4.0632 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.03676 0.0317884 176 64 87 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 6.09 vpr 63.18 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 30384 -1 -1 36 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 30 32 373 297 1 188 98 17 17 289 -1 unnamed_device 24.4 MiB 1.77 1085 17873 5357 10009 2507 63.2 MiB 0.16 0.00 3.50639 -115.998 -3.50639 3.50639 0.65 0.000720965 0.000669362 0.0599912 0.0555172 34 2647 22 6.87369e+06 503058 618332. 2139.56 1.60 0.204157 0.178497 25762 151098 -1 2153 22 1658 2864 201610 47113 2.80196 2.80196 -110.281 -2.80196 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0300644 0.0260486 144 61 58 30 58 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 6.76 vpr 63.40 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30592 -1 -1 46 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 407 319 1 202 110 17 17 289 -1 unnamed_device 24.7 MiB 2.49 1127 20887 5685 13197 2005 63.4 MiB 0.19 0.00 4.26133 -148.826 -4.26133 4.26133 0.66 0.000788578 0.000731863 0.0657779 0.0609127 28 2839 24 6.87369e+06 642796 531479. 1839.03 1.48 0.159922 0.141491 24610 126494 -1 2475 24 2081 3460 266999 60202 4.0097 4.0097 -157.752 -4.0097 0 0 648988. 2245.63 0.17 0.10 0.11 -1 -1 0.17 0.0342995 0.0297039 160 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 6.93 vpr 63.66 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30384 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65192 32 32 405 318 1 201 106 17 17 289 -1 unnamed_device 24.8 MiB 2.69 1115 19606 5308 11826 2472 63.7 MiB 0.17 0.00 3.52575 -126.542 -3.52575 3.52575 0.71 0.000774671 0.000719273 0.0636793 0.0590545 26 2952 46 6.87369e+06 586901 503264. 1741.40 1.47 0.184439 0.162356 24322 120374 -1 2600 24 1925 3092 270852 57727 3.26586 3.26586 -133.903 -3.26586 0 0 618332. 2139.56 0.17 0.11 0.11 -1 -1 0.17 0.0351058 0.0304891 157 65 63 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 5.55 vpr 62.57 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30404 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 29 32 287 238 1 155 80 17 17 289 -1 unnamed_device 24.0 MiB 1.61 669 12808 5105 6141 1562 62.6 MiB 0.11 0.00 3.73366 -117.212 -3.73366 3.73366 0.69 0.000600059 0.000558053 0.0481315 0.0447571 34 1767 23 6.87369e+06 265503 618332. 2139.56 1.29 0.172589 0.150466 25762 151098 -1 1473 20 1280 1843 130614 29379 3.01631 3.01631 -114.603 -3.01631 0 0 787024. 2723.27 0.20 0.06 0.11 -1 -1 0.20 0.0231166 0.0200212 107 34 58 29 29 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 6.24 vpr 63.00 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30188 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 334 290 1 156 81 17 17 289 -1 unnamed_device 24.2 MiB 2.16 808 7256 1653 5365 238 63.0 MiB 0.08 0.00 4.2805 -117.484 -4.2805 4.2805 0.66 0.000655947 0.000609585 0.0291951 0.0271077 34 2056 25 6.87369e+06 237555 618332. 2139.56 1.50 0.165215 0.143015 25762 151098 -1 1666 12 728 1027 80728 18767 2.95265 2.95265 -112.069 -2.95265 0 0 787024. 2723.27 0.23 0.05 0.13 -1 -1 0.23 0.0174827 0.0153623 102 82 0 0 82 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 6.08 vpr 63.35 MiB 0.03 7120 -1 -1 1 0.03 -1 -1 30600 -1 -1 39 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 31 32 365 281 1 197 102 17 17 289 -1 unnamed_device 24.5 MiB 1.74 1136 19618 6151 11073 2394 63.3 MiB 0.18 0.00 4.1886 -141.394 -4.1886 4.1886 0.67 0.000739426 0.000687628 0.0625609 0.0580227 28 2901 39 6.87369e+06 544980 531479. 1839.03 1.67 0.168992 0.149286 24610 126494 -1 2491 21 2032 3397 317230 66691 4.146 4.146 -150.688 -4.146 0 0 648988. 2245.63 0.18 0.11 0.11 -1 -1 0.18 0.0306524 0.0267349 152 34 93 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 7.02 vpr 62.55 MiB 0.03 6968 -1 -1 1 0.03 -1 -1 30492 -1 -1 32 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 29 32 297 254 1 148 93 17 17 289 -1 unnamed_device 23.9 MiB 3.12 794 17103 5256 9538 2309 62.5 MiB 0.13 0.00 3.45975 -106.144 -3.45975 3.45975 0.66 0.000732981 0.000681337 0.0512668 0.0475683 24 2312 34 6.87369e+06 447163 470940. 1629.55 1.30 0.136931 0.120641 24034 113901 -1 2020 25 1539 2525 317977 69202 3.18086 3.18086 -116.05 -3.18086 0 0 586450. 2029.24 0.15 0.10 0.10 -1 -1 0.15 0.0277466 0.0239175 108 56 29 29 52 26 +fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 7.47 vpr 62.82 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30352 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 3.23 809 12464 3077 8852 535 62.8 MiB 0.12 0.00 3.7104 -131.395 -3.7104 3.7104 0.71 0.000651743 0.000606525 0.0497787 0.0462442 34 2309 26 6.87369e+06 223581 618332. 2139.56 1.46 0.183816 0.160462 25762 151098 -1 1864 22 1545 2458 186905 44531 3.17461 3.17461 -128.489 -3.17461 0 0 787024. 2723.27 0.22 0.08 0.17 -1 -1 0.22 0.026802 0.0232539 114 34 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 6.46 vpr 63.34 MiB 0.03 7064 -1 -1 1 0.03 -1 -1 30324 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 31 32 387 307 1 193 98 17 17 289 -1 unnamed_device 24.5 MiB 2.43 1003 13598 3664 8482 1452 63.3 MiB 0.13 0.00 3.61625 -124.489 -3.61625 3.61625 0.67 0.000756087 0.000695232 0.0489639 0.0453438 34 2208 22 6.87369e+06 489084 618332. 2139.56 1.36 0.193099 0.168457 25762 151098 -1 1890 20 1820 2793 169616 40025 2.93196 2.93196 -117.837 -2.93196 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.028702 0.0248798 146 64 58 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 6.31 vpr 62.78 MiB 0.02 6864 -1 -1 1 0.03 -1 -1 30260 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 31 32 308 262 1 154 79 17 17 289 -1 unnamed_device 24.2 MiB 2.79 698 11402 3727 5924 1751 62.8 MiB 0.11 0.00 3.33623 -109.833 -3.33623 3.33623 0.72 0.000630362 0.000585237 0.0446494 0.0414952 26 2239 28 6.87369e+06 223581 503264. 1741.40 0.96 0.124848 0.109778 24322 120374 -1 1867 21 1246 1962 158994 38515 3.19191 3.19191 -123.167 -3.19191 0 0 618332. 2139.56 0.16 0.07 0.11 -1 -1 0.16 0.0251477 0.0217892 103 55 31 31 53 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 6.25 vpr 63.30 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30396 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 383 307 1 190 101 17 17 289 -1 unnamed_device 24.4 MiB 2.61 1019 17256 4700 9815 2741 63.3 MiB 0.17 0.00 3.59195 -122.625 -3.59195 3.59195 0.66 0.000775791 0.000725351 0.0543374 0.0501793 32 2782 36 6.87369e+06 517032 586450. 2029.24 0.97 0.124028 0.109911 25474 144626 -1 2123 22 1479 2492 193417 44922 3.16886 3.16886 -118.293 -3.16886 0 0 744469. 2576.02 0.20 0.09 0.08 -1 -1 0.20 0.0328952 0.028551 143 65 52 26 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 6.80 vpr 63.36 MiB 0.03 7260 -1 -1 1 0.03 -1 -1 30348 -1 -1 39 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 31 32 422 339 1 196 102 17 17 289 -1 unnamed_device 24.5 MiB 3.10 929 10336 2368 6764 1204 63.4 MiB 0.12 0.00 3.59605 -120.102 -3.59605 3.59605 0.67 0.000954493 0.000879385 0.0384382 0.0355927 32 2620 21 6.87369e+06 544980 586450. 2029.24 0.99 0.140274 0.123039 25474 144626 -1 1977 23 2042 3063 228409 54704 3.05556 3.05556 -120.265 -3.05556 0 0 744469. 2576.02 0.20 0.10 0.14 -1 -1 0.20 0.0340739 0.0295237 151 93 31 31 92 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 6.40 vpr 62.92 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 30264 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 333 279 1 164 81 17 17 289 -1 unnamed_device 24.1 MiB 2.42 812 13206 3975 7418 1813 62.9 MiB 0.13 0.00 3.26897 -114.681 -3.26897 3.26897 0.65 0.000661677 0.000614619 0.0525356 0.0488033 34 2174 27 6.87369e+06 237555 618332. 2139.56 1.36 0.187335 0.16367 25762 151098 -1 1858 21 1290 2029 166499 37639 2.94126 2.94126 -117.102 -2.94126 0 0 787024. 2723.27 0.24 0.08 0.14 -1 -1 0.24 0.0291006 0.0254726 110 61 32 32 60 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 6.71 vpr 63.18 MiB 0.02 6800 -1 -1 1 0.03 -1 -1 30200 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 339 283 1 166 80 17 17 289 -1 unnamed_device 24.3 MiB 3.09 923 10056 2840 6443 773 63.2 MiB 0.12 0.00 3.6884 -128.712 -3.6884 3.6884 0.72 0.000683846 0.000636064 0.0453038 0.0421213 32 2547 22 6.87369e+06 223581 586450. 2029.24 0.94 0.129975 0.114587 25474 144626 -1 2104 23 1487 2433 226899 49342 3.04626 3.04626 -128.09 -3.04626 0 0 744469. 2576.02 0.19 0.09 0.13 -1 -1 0.19 0.0288887 0.025074 112 63 32 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 6.96 vpr 63.20 MiB 0.03 6972 -1 -1 1 0.03 -1 -1 30660 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 407 319 1 202 104 17 17 289 -1 unnamed_device 24.4 MiB 2.74 1032 14988 3846 9829 1313 63.2 MiB 0.14 0.00 4.29009 -147.998 -4.29009 4.29009 0.65 0.000771264 0.000715448 0.0504058 0.0466934 34 2540 20 6.87369e+06 558954 618332. 2139.56 1.58 0.19899 0.173873 25762 151098 -1 2226 23 2038 3314 227209 52582 3.8283 3.8283 -150.515 -3.8283 0 0 787024. 2723.27 0.20 0.10 0.14 -1 -1 0.20 0.0341398 0.029763 157 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 6.53 vpr 63.13 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30412 -1 -1 34 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 29 32 367 293 1 185 95 17 17 289 -1 unnamed_device 24.4 MiB 2.21 880 11759 2826 8215 718 63.1 MiB 0.10 0.00 3.59605 -112.745 -3.59605 3.59605 0.68 0.000717498 0.000664608 0.031817 0.0293698 26 2672 41 6.87369e+06 475111 503264. 1741.40 1.71 0.142312 0.123945 24322 120374 -1 2326 23 1580 2473 242244 65796 3.09026 3.09026 -123.914 -3.09026 0 0 618332. 2139.56 0.17 0.10 0.11 -1 -1 0.17 0.0306797 0.0265987 140 62 56 29 58 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 9.45 vpr 63.50 MiB 0.04 7260 -1 -1 1 0.04 -1 -1 30692 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 469 381 1 202 104 17 17 289 -1 unnamed_device 24.7 MiB 4.75 930 19136 5654 10352 3130 63.5 MiB 0.21 0.00 4.25669 -144.754 -4.25669 4.25669 0.66 0.000868862 0.000798952 0.0792822 0.0734335 34 2868 25 6.87369e+06 558954 618332. 2139.56 1.92 0.26059 0.228082 25762 151098 -1 2197 23 2099 3388 250736 58546 4.0317 4.0317 -148.667 -4.0317 0 0 787024. 2723.27 0.20 0.10 0.09 -1 -1 0.20 0.0357247 0.030804 157 127 0 0 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 4.16 vpr 62.33 MiB 0.02 6768 -1 -1 1 0.03 -1 -1 30232 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63824 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 23.9 MiB 0.65 801 6501 1452 4525 524 62.3 MiB 0.07 0.00 3.09052 -106.923 -3.09052 3.09052 0.73 0.00057597 0.000535847 0.0249699 0.0232568 32 2327 32 6.87369e+06 223581 586450. 2029.24 0.87 0.10285 0.0898931 25474 144626 -1 1761 20 1169 1781 155204 36100 3.01046 3.01046 -118.138 -3.01046 0 0 744469. 2576.02 0.19 0.08 0.10 -1 -1 0.19 0.0261874 0.0228877 104 4 85 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 5.80 vpr 63.65 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30360 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65180 32 32 418 338 1 194 101 17 17 289 -1 unnamed_device 24.8 MiB 1.53 977 17961 5555 9821 2585 63.7 MiB 0.16 0.00 4.24789 -140.827 -4.24789 4.24789 0.65 0.000778746 0.000715034 0.0618852 0.05732 34 2366 23 6.87369e+06 517032 618332. 2139.56 1.48 0.210948 0.18454 25762 151098 -1 1978 17 1468 2127 144770 34492 3.7313 3.7313 -136.286 -3.7313 0 0 787024. 2723.27 0.21 0.07 0.15 -1 -1 0.21 0.0270205 0.0235709 147 92 28 28 92 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 7.96 vpr 63.06 MiB 0.03 7092 -1 -1 1 0.03 -1 -1 30156 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 3.90 961 12808 4157 6979 1672 63.1 MiB 0.13 0.00 3.7416 -135.274 -3.7416 3.7416 0.65 0.000716397 0.000664129 0.0562931 0.052254 34 2201 17 6.87369e+06 223581 618332. 2139.56 1.38 0.195542 0.17106 25762 151098 -1 2005 22 1516 2173 167105 38026 3.11226 3.11226 -134.014 -3.11226 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0310427 0.0269383 114 96 0 0 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 6.73 vpr 63.26 MiB 0.02 7076 -1 -1 1 0.04 -1 -1 30408 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 32 32 401 316 1 199 103 17 17 289 -1 unnamed_device 24.4 MiB 2.74 1013 13117 3136 9263 718 63.3 MiB 0.13 0.00 3.62407 -127.528 -3.62407 3.62407 0.65 0.000867654 0.000801319 0.0446385 0.0413264 28 2551 39 6.87369e+06 544980 531479. 1839.03 1.29 0.155098 0.135901 24610 126494 -1 2315 24 1674 2618 204769 46581 3.43616 3.43616 -129.921 -3.43616 0 0 648988. 2245.63 0.17 0.09 0.12 -1 -1 0.17 0.0340171 0.0295209 153 65 61 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 8.61 vpr 63.51 MiB 0.03 7292 -1 -1 1 0.03 -1 -1 30724 -1 -1 47 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65032 32 32 500 382 1 236 111 17 17 289 -1 unnamed_device 25.1 MiB 4.25 1138 14475 3597 10051 827 63.5 MiB 0.15 0.00 4.97494 -166.026 -4.97494 4.97494 0.68 0.000922833 0.000857177 0.0534347 0.0494461 32 3530 43 6.87369e+06 656770 586450. 2029.24 1.50 0.190793 0.166873 25474 144626 -1 2649 23 2462 3966 355319 77702 4.60855 4.60855 -171.893 -4.60855 0 0 744469. 2576.02 0.19 0.13 0.14 -1 -1 0.19 0.0407452 0.0353433 190 96 64 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 5.22 vpr 62.23 MiB 0.02 6848 -1 -1 1 0.03 -1 -1 30276 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63720 30 32 246 229 1 118 76 17 17 289 -1 unnamed_device 23.6 MiB 1.90 613 9036 2242 6211 583 62.2 MiB 0.07 0.00 2.94746 -92.2629 -2.94746 2.94746 0.69 0.000529727 0.000492728 0.0315819 0.0293703 32 1520 24 6.87369e+06 195634 586450. 2029.24 0.80 0.0948377 0.0831344 25474 144626 -1 1331 16 658 912 81906 19438 2.13917 2.13917 -90.061 -2.13917 0 0 744469. 2576.02 0.20 0.05 0.13 -1 -1 0.20 0.0177852 0.015482 72 56 0 0 53 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 4.38 vpr 62.54 MiB 0.03 6912 -1 -1 1 0.03 -1 -1 30392 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 30 32 296 244 1 158 80 17 17 289 -1 unnamed_device 24.0 MiB 0.86 764 12120 4745 5717 1658 62.5 MiB 0.11 0.00 3.7196 -120.247 -3.7196 3.7196 0.68 0.000619074 0.000575869 0.0465721 0.0433318 32 2131 23 6.87369e+06 251529 586450. 2029.24 0.89 0.121427 0.10727 25474 144626 -1 1739 21 1445 2038 178621 39973 3.28591 3.28591 -121.948 -3.28591 0 0 744469. 2576.02 0.20 0.09 0.14 -1 -1 0.20 0.0308532 0.0267 109 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 5.60 vpr 63.00 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 30128 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 1.23 884 12464 4265 6183 2016 63.0 MiB 0.13 0.00 3.52575 -127.584 -3.52575 3.52575 0.69 0.000648627 0.00060256 0.0494308 0.0459043 34 2591 20 6.87369e+06 223581 618332. 2139.56 1.61 0.179223 0.156751 25762 151098 -1 2230 22 1709 3066 262084 58779 3.08856 3.08856 -127.988 -3.08856 0 0 787024. 2723.27 0.21 0.10 0.18 -1 -1 0.21 0.0291762 0.0252425 114 34 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 4.13 vpr 62.48 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30452 -1 -1 37 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 25 32 251 214 1 139 94 17 17 289 -1 unnamed_device 23.9 MiB 0.70 742 15004 4316 8330 2358 62.5 MiB 0.11 0.00 3.44875 -93.4127 -3.44875 3.44875 0.69 0.000536234 0.000499064 0.0406833 0.0378205 30 1638 20 6.87369e+06 517032 556674. 1926.21 0.82 0.102713 0.0905946 25186 138497 -1 1402 22 950 1565 87054 21069 2.67036 2.67036 -92.3339 -2.67036 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0239987 0.0207911 105 34 50 25 25 25 +fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 6.93 vpr 63.42 MiB 0.04 7136 -1 -1 1 0.03 -1 -1 30552 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 24.5 MiB 2.53 1035 11989 3061 8035 893 63.4 MiB 0.14 0.00 4.14459 -143.245 -4.14459 4.14459 0.67 0.000917043 0.000859411 0.056505 0.0524247 34 2922 23 6.87369e+06 293451 618332. 2139.56 1.68 0.214136 0.186802 25762 151098 -1 2363 20 1886 3422 237506 56554 3.7261 3.7261 -146.04 -3.7261 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0311656 0.0271431 145 94 32 32 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 6.71 vpr 63.41 MiB 0.03 7164 -1 -1 1 0.03 -1 -1 30348 -1 -1 40 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 31 32 421 339 1 195 103 17 17 289 -1 unnamed_device 24.5 MiB 2.48 969 12394 3038 8536 820 63.4 MiB 0.13 0.00 3.62425 -121.977 -3.62425 3.62425 0.72 0.000632201 0.000576616 0.044336 0.0409093 34 2208 23 6.87369e+06 558954 618332. 2139.56 1.44 0.199252 0.173141 25762 151098 -1 1964 22 2020 3079 203389 49390 2.88196 2.88196 -119.328 -2.88196 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.034764 0.0302143 151 94 29 29 93 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 5.93 vpr 63.36 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30596 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64880 32 32 438 350 1 295 93 17 17 289 -1 unnamed_device 24.6 MiB 1.50 1383 18363 6134 9531 2698 63.4 MiB 0.18 0.00 5.11247 -173.262 -5.11247 5.11247 0.68 0.000814662 0.000756751 0.0745697 0.0692271 36 3373 46 6.89349e+06 408721 648988. 2245.63 1.52 0.198317 0.174686 26050 158493 -1 2894 20 2329 2889 204014 45929 4.53065 4.53065 -169.913 -4.53065 0 0 828058. 2865.25 0.23 0.09 0.14 -1 -1 0.23 0.0316248 0.0275274 192 96 32 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 6.33 vpr 63.33 MiB 0.03 7244 -1 -1 1 0.03 -1 -1 30632 -1 -1 29 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 30 32 409 330 1 262 91 17 17 289 -1 unnamed_device 24.5 MiB 1.41 1338 16411 5641 8181 2589 63.3 MiB 0.17 0.00 5.22297 -160.634 -5.22297 5.22297 0.66 0.000771333 0.000716127 0.0646034 0.0600002 36 3246 31 6.89349e+06 408721 648988. 2245.63 2.17 0.225976 0.197639 26050 158493 -1 2686 24 2108 2969 221728 48494 4.53198 4.53198 -155.377 -4.53198 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0340051 0.0294828 177 91 30 30 89 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 6.57 vpr 63.04 MiB 0.05 6948 -1 -1 1 0.03 -1 -1 30408 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 387 309 1 253 89 17 17 289 -1 unnamed_device 24.3 MiB 1.73 1277 15533 4267 9018 2248 63.0 MiB 0.17 0.00 4.0146 -140.879 -4.0146 4.0146 0.66 0.000904504 0.000841248 0.0651527 0.0604988 34 3518 44 6.89349e+06 352346 618332. 2139.56 2.08 0.231806 0.202867 25762 151098 -1 2677 21 1751 2210 191142 41206 3.9037 3.9037 -142.762 -3.9037 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0301146 0.0262361 167 65 54 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 6.19 vpr 62.88 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30412 -1 -1 25 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 29 32 343 267 1 209 86 17 17 289 -1 unnamed_device 24.2 MiB 1.89 1071 16718 5447 9404 1867 62.9 MiB 0.17 0.00 4.53305 -141.516 -4.53305 4.53305 0.65 0.000678768 0.000629657 0.0629253 0.0584318 34 2586 28 6.89349e+06 352346 618332. 2139.56 1.60 0.206028 0.18034 25762 151098 -1 2003 23 1782 2683 158633 39220 4.01296 4.01296 -142.769 -4.01296 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0298366 0.0256272 148 34 87 29 29 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 6.90 vpr 63.05 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30380 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 24.2 MiB 1.80 1361 14518 4265 8140 2113 63.0 MiB 0.17 0.00 5.03124 -172.909 -5.03124 5.03124 0.68 0.000744171 0.000691603 0.0624521 0.0580995 36 3336 26 6.89349e+06 338252 648988. 2245.63 2.23 0.218016 0.191295 26050 158493 -1 2797 21 2223 3856 262196 58328 4.14865 4.14865 -163.069 -4.14865 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0287129 0.0250095 163 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 6.20 vpr 63.26 MiB 0.03 7168 -1 -1 1 0.03 -1 -1 30452 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64780 32 32 402 316 1 257 105 17 17 289 -1 unnamed_device 24.4 MiB 1.69 1499 20359 6047 11800 2512 63.3 MiB 0.19 0.00 4.44565 -148.532 -4.44565 4.44565 0.70 0.000765735 0.000710406 0.0659912 0.060989 34 3677 25 6.89349e+06 577847 618332. 2139.56 1.63 0.225103 0.197021 25762 151098 -1 2932 24 2054 3264 227716 50763 3.46365 3.46365 -138.668 -3.46365 0 0 787024. 2723.27 0.22 0.11 0.16 -1 -1 0.22 0.0377332 0.0327929 179 64 63 32 63 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 4.72 vpr 62.41 MiB 0.02 6804 -1 -1 1 0.03 -1 -1 30572 -1 -1 21 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 27 32 269 226 1 164 80 17 17 289 -1 unnamed_device 23.9 MiB 1.40 730 14528 4147 9388 993 62.4 MiB 0.12 0.00 3.83226 -109.129 -3.83226 3.83226 0.66 0.000570349 0.000530453 0.0502473 0.046429 30 2039 26 6.89349e+06 295971 556674. 1926.21 0.85 0.12109 0.106741 25186 138497 -1 1610 19 1077 1556 98401 24134 3.16615 3.16615 -109.066 -3.16615 0 0 706193. 2443.58 0.18 0.05 0.12 -1 -1 0.18 0.020886 0.0181141 112 34 54 27 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 4.79 vpr 62.97 MiB 0.03 7004 -1 -1 1 0.04 -1 -1 30192 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 24.1 MiB 0.70 921 14273 4335 7347 2591 63.0 MiB 0.12 0.00 3.53335 -112.01 -3.53335 3.53335 0.66 0.000667263 0.00061852 0.0445223 0.0412815 34 2397 23 6.89349e+06 493284 618332. 2139.56 1.50 0.173638 0.151537 25762 151098 -1 1930 20 1233 2018 129329 30123 2.76481 2.76481 -107.874 -2.76481 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0251962 0.0218916 141 4 115 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 5.63 vpr 62.80 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 30316 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 31 32 338 292 1 225 84 17 17 289 -1 unnamed_device 24.1 MiB 1.48 1141 14358 3961 8348 2049 62.8 MiB 0.14 0.00 3.63141 -123.531 -3.63141 3.63141 0.65 0.000667176 0.000620384 0.0549113 0.0510073 34 2852 46 6.89349e+06 295971 618332. 2139.56 1.46 0.207373 0.1806 25762 151098 -1 2258 20 1623 1983 132304 31127 3.03746 3.03746 -119.802 -3.03746 0 0 787024. 2723.27 0.27 0.07 0.15 -1 -1 0.27 0.0258118 0.0224631 140 85 0 0 84 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 5.65 vpr 62.68 MiB 0.02 6832 -1 -1 1 0.02 -1 -1 30308 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 314 256 1 193 83 17 17 289 -1 unnamed_device 24.1 MiB 1.53 873 6923 1573 5100 250 62.7 MiB 0.08 0.00 3.71245 -131.003 -3.71245 3.71245 0.69 0.000653017 0.000607625 0.027036 0.0251553 34 2505 33 6.89349e+06 267783 618332. 2139.56 1.45 0.164051 0.141865 25762 151098 -1 2040 21 1696 2217 167201 38798 3.19856 3.19856 -130.67 -3.19856 0 0 787024. 2723.27 0.30 0.07 0.16 -1 -1 0.30 0.022868 0.0200957 127 34 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 5.82 vpr 62.95 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30152 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 30 32 325 273 1 203 83 17 17 289 -1 unnamed_device 24.1 MiB 1.87 942 6923 1677 4944 302 62.9 MiB 0.08 0.00 4.3965 -138.695 -4.3965 4.3965 0.65 0.000653269 0.000607913 0.027475 0.0255772 34 2532 21 6.89349e+06 295971 618332. 2139.56 1.37 0.155406 0.134354 25762 151098 -1 2019 19 1555 2064 144585 32989 3.78655 3.78655 -137.938 -3.78655 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0246215 0.0215017 135 63 30 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 6.09 vpr 63.02 MiB 0.02 6988 -1 -1 1 0.02 -1 -1 30512 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 331 280 1 215 84 17 17 289 -1 unnamed_device 24.1 MiB 1.48 883 15822 6326 7340 2156 63.0 MiB 0.16 0.00 3.8129 -121.35 -3.8129 3.8129 0.65 0.000667063 0.000620052 0.0654446 0.0605474 36 2401 21 6.89349e+06 281877 648988. 2245.63 1.97 0.194438 0.170413 26050 158493 -1 1750 16 1148 1290 88420 21821 3.16081 3.16081 -112.317 -3.16081 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0215603 0.0188545 135 65 25 25 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 7.78 vpr 63.29 MiB 0.04 7176 -1 -1 1 0.03 -1 -1 30308 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 386 305 1 239 89 17 17 289 -1 unnamed_device 24.5 MiB 1.18 987 17513 5731 7853 3929 63.3 MiB 0.15 0.00 4.23419 -140.25 -4.23419 4.23419 0.71 0.000752529 0.000698813 0.0690538 0.0641029 38 3008 43 6.89349e+06 352346 678818. 2348.85 3.79 0.243409 0.213178 26626 170182 -1 2047 21 1870 2551 179023 42643 3.158 3.158 -120.917 -3.158 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0301451 0.0262744 161 58 64 32 57 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 5.72 vpr 63.29 MiB 0.03 7140 -1 -1 1 0.03 -1 -1 30500 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 407 319 1 264 92 17 17 289 -1 unnamed_device 24.4 MiB 1.34 1162 11063 2970 6995 1098 63.3 MiB 0.13 0.00 5.02024 -166.562 -5.02024 5.02024 0.69 0.000784876 0.000729547 0.0447949 0.0416092 36 3019 23 6.89349e+06 394628 648988. 2245.63 1.65 0.198332 0.172675 26050 158493 -1 2473 20 2078 2744 172262 40553 4.63875 4.63875 -165.591 -4.63875 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0297018 0.0258776 175 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 5.25 vpr 62.37 MiB 0.02 6804 -1 -1 1 0.03 -1 -1 30604 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 29 32 272 228 1 171 82 17 17 289 -1 unnamed_device 23.9 MiB 1.34 754 11296 2879 7697 720 62.4 MiB 0.10 0.00 3.61645 -112 -3.61645 3.61645 0.68 0.000574843 0.000535077 0.0385279 0.0358409 34 1919 28 6.89349e+06 295971 618332. 2139.56 1.32 0.158036 0.137188 25762 151098 -1 1620 21 1078 1505 115201 26818 2.94016 2.94016 -107.534 -2.94016 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0237539 0.0205872 112 29 58 29 24 24 +fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 6.91 vpr 63.25 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30556 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 401 315 1 256 89 17 17 289 -1 unnamed_device 24.4 MiB 2.06 1259 17315 5682 9212 2421 63.3 MiB 0.19 0.00 4.31019 -146.5 -4.31019 4.31019 0.67 0.000771233 0.000716628 0.0706687 0.0655446 34 3889 35 6.89349e+06 352346 618332. 2139.56 2.01 0.234803 0.205348 25762 151098 -1 3012 22 2472 3856 304331 66969 3.9642 3.9642 -153.037 -3.9642 0 0 787024. 2723.27 0.20 0.11 0.14 -1 -1 0.20 0.0320295 0.0278038 174 63 64 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 5.23 vpr 63.23 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 30388 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 383 303 1 236 89 17 17 289 -1 unnamed_device 24.4 MiB 1.11 1183 12365 3291 7811 1263 63.2 MiB 0.14 0.00 3.69045 -130.871 -3.69045 3.69045 0.70 0.000750409 0.000697488 0.0535743 0.0497959 34 2840 24 6.89349e+06 352346 618332. 2139.56 1.44 0.199528 0.17421 25762 151098 -1 2358 17 1669 2089 152593 34412 3.06081 3.06081 -123.816 -3.06081 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0252498 0.0220485 160 57 64 32 56 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 5.90 vpr 62.96 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30036 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 339 284 1 224 86 17 17 289 -1 unnamed_device 24.3 MiB 1.62 1015 15395 4903 8010 2482 63.0 MiB 0.15 0.00 3.61051 -123.557 -3.61051 3.61051 0.66 0.000676303 0.000628844 0.0576347 0.0535386 38 2435 45 6.89349e+06 310065 678818. 2348.85 1.55 0.211748 0.184358 26626 170182 -1 1964 20 1472 2002 131218 30024 2.82146 2.82146 -110.196 -2.82146 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0242771 0.0212977 139 65 29 29 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 4.92 vpr 62.16 MiB 0.02 6768 -1 -1 1 0.03 -1 -1 30116 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 30 32 226 208 1 142 77 17 17 289 -1 unnamed_device 23.6 MiB 0.91 569 8227 1998 5670 559 62.2 MiB 0.07 0.00 3.06366 -95.1937 -3.06366 3.06366 0.71 0.000504474 0.000469591 0.0305402 0.0284067 34 1571 21 6.89349e+06 211408 618332. 2139.56 1.33 0.136929 0.118765 25762 151098 -1 1189 20 733 875 64480 15598 2.11917 2.11917 -85.5775 -2.11917 0 0 787024. 2723.27 0.20 0.05 0.09 -1 -1 0.20 0.0205741 0.0177333 85 34 24 24 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 5.28 vpr 62.94 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 30404 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 31 32 335 280 1 217 85 17 17 289 -1 unnamed_device 24.0 MiB 1.24 1101 13663 4048 7780 1835 62.9 MiB 0.13 0.00 4.32835 -147.32 -4.32835 4.32835 0.65 0.000663957 0.000616671 0.0509524 0.0473151 34 2756 25 6.89349e+06 310065 618332. 2139.56 1.44 0.183452 0.160239 25762 151098 -1 2197 20 1528 2052 155926 35353 3.38045 3.38045 -136.099 -3.38045 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0255511 0.0222404 141 64 31 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 5.23 vpr 63.00 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 30136 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 32 32 366 283 1 228 104 17 17 289 -1 unnamed_device 24.3 MiB 0.94 1052 20112 6009 11047 3056 63.0 MiB 0.18 0.00 4.67003 -155.404 -4.67003 4.67003 0.69 0.000730979 0.000679574 0.0635106 0.058872 34 2792 26 6.89349e+06 563754 618332. 2139.56 1.55 0.212695 0.186528 25762 151098 -1 2216 20 1950 2674 199058 44989 3.95124 3.95124 -146.782 -3.95124 0 0 787024. 2723.27 0.20 0.08 0.14 -1 -1 0.20 0.0277791 0.0241897 166 34 91 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 5.70 vpr 63.43 MiB 0.03 7096 -1 -1 1 0.03 -1 -1 30552 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64948 32 32 460 375 1 309 95 17 17 289 -1 unnamed_device 24.7 MiB 1.18 1507 16511 4972 9774 1765 63.4 MiB 0.18 0.00 4.34661 -147.62 -4.34661 4.34661 0.65 0.00085323 0.000793618 0.0688169 0.0639282 36 3423 27 6.89349e+06 436909 648988. 2245.63 1.61 0.238115 0.207872 26050 158493 -1 2914 22 2279 2613 182020 41823 3.8883 3.8883 -142.486 -3.8883 0 0 828058. 2865.25 0.21 0.09 0.15 -1 -1 0.21 0.0353182 0.0306665 201 124 0 0 125 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 5.51 vpr 62.10 MiB 0.04 6656 -1 -1 1 0.03 -1 -1 30556 -1 -1 18 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63588 26 32 198 186 1 129 76 17 17 289 -1 unnamed_device 23.6 MiB 1.23 692 10476 3888 5359 1229 62.1 MiB 0.08 0.00 2.84541 -81.5212 -2.84541 2.84541 0.69 0.000453685 0.000422005 0.0314768 0.0292775 30 1478 31 6.89349e+06 253689 556674. 1926.21 1.70 0.139016 0.120288 25186 138497 -1 1263 14 466 590 39612 9015 1.93805 1.93805 -75.764 -1.93805 0 0 706193. 2443.58 0.21 0.03 0.13 -1 -1 0.21 0.0134009 0.0117558 77 30 26 26 22 22 +fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 5.01 vpr 63.02 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 30140 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 24.2 MiB 1.10 1016 9571 2543 6414 614 63.0 MiB 0.10 0.00 4.12784 -139.243 -4.12784 4.12784 0.65 0.000689839 0.000641581 0.0376758 0.0350422 30 2786 37 6.89349e+06 295971 556674. 1926.21 1.33 0.134323 0.117734 25186 138497 -1 2116 24 1422 2615 150282 36059 3.85235 3.85235 -144.388 -3.85235 0 0 706193. 2443.58 0.18 0.08 0.09 -1 -1 0.18 0.0308415 0.0267066 141 3 122 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 3.53 vpr 61.88 MiB 0.04 6708 -1 -1 1 0.02 -1 -1 30336 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63360 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 23.5 MiB 0.31 514 9356 2285 6456 615 61.9 MiB 0.07 0.00 2.43188 -86.7872 -2.43188 2.43188 0.65 0.000470195 0.000437111 0.0289716 0.0269239 28 1509 16 6.89349e+06 169126 531479. 1839.03 0.80 0.0810777 0.0716888 24610 126494 -1 1311 19 741 1063 81209 20552 1.89376 1.89376 -87.0135 -1.89376 0 0 648988. 2245.63 0.17 0.05 0.11 -1 -1 0.17 0.017299 0.0151035 71 3 53 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 4.84 vpr 63.11 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30616 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 376 288 1 233 89 17 17 289 -1 unnamed_device 24.4 MiB 1.24 1097 15929 4551 10101 1277 63.1 MiB 0.17 0.00 4.62958 -159.64 -4.62958 4.62958 0.67 0.00074212 0.00069041 0.061923 0.0575796 30 2755 25 6.89349e+06 352346 556674. 1926.21 0.92 0.152959 0.135604 25186 138497 -1 2149 18 1484 2021 120282 29101 3.99286 3.99286 -151.639 -3.99286 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0272663 0.0239687 161 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 4.28 vpr 62.97 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30040 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 24.1 MiB 0.68 885 10772 2583 7345 844 63.0 MiB 0.11 0.00 3.4709 -116.935 -3.4709 3.4709 0.65 0.000699184 0.000648524 0.0347602 0.0322028 32 2653 40 6.89349e+06 507378 586450. 2029.24 1.01 0.141413 0.123618 25474 144626 -1 2071 21 1546 2415 157585 39663 2.84981 2.84981 -118.371 -2.84981 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0284688 0.0247894 151 3 124 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 6.18 vpr 63.29 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 30452 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.5 MiB 1.56 1365 8130 1863 5269 998 63.3 MiB 0.10 0.00 4.69935 -162.091 -4.69935 4.69935 0.65 0.000811709 0.000751433 0.0353053 0.0328058 34 3698 26 6.89349e+06 366440 618332. 2139.56 1.87 0.19101 0.166039 25762 151098 -1 2937 22 2290 3311 239159 52119 4.21846 4.21846 -163.604 -4.21846 0 0 787024. 2723.27 0.25 0.10 0.14 -1 -1 0.25 0.0321296 0.0279349 174 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 6.24 vpr 62.50 MiB 0.02 6780 -1 -1 1 0.03 -1 -1 30216 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 294 246 1 188 81 17 17 289 -1 unnamed_device 23.9 MiB 1.69 863 14256 5690 7135 1431 62.5 MiB 0.13 0.00 3.57625 -122.952 -3.57625 3.57625 0.66 0.000617675 0.000574261 0.0524083 0.0487129 36 2395 27 6.89349e+06 239595 648988. 2245.63 1.87 0.178267 0.155801 26050 158493 -1 1954 22 1507 2255 187460 40961 2.79796 2.79796 -116.127 -2.79796 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0261654 0.0227301 118 34 54 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 5.88 vpr 62.54 MiB 0.03 6896 -1 -1 1 0.05 -1 -1 30244 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 30 32 296 244 1 182 81 17 17 289 -1 unnamed_device 24.0 MiB 1.58 1065 12331 4460 6746 1125 62.5 MiB 0.12 0.00 4.27029 -139.911 -4.27029 4.27029 0.68 0.000618654 0.000575045 0.0456839 0.0424895 34 2653 21 6.89349e+06 267783 618332. 2139.56 1.55 0.167686 0.146275 25762 151098 -1 2175 20 1480 2326 199572 41781 3.57495 3.57495 -136.569 -3.57495 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0236671 0.0205487 121 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 5.44 vpr 62.50 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 30336 -1 -1 21 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 28 32 278 232 1 173 81 17 17 289 -1 unnamed_device 24.0 MiB 1.93 839 10231 2827 6777 627 62.5 MiB 0.10 0.00 4.26535 -126.926 -4.26535 4.26535 0.67 0.000588695 0.000547534 0.037111 0.034541 30 2437 23 6.89349e+06 295971 556674. 1926.21 0.92 0.108192 0.0951554 25186 138497 -1 1837 21 1164 1980 126771 30045 3.5641 3.5641 -124.418 -3.5641 0 0 706193. 2443.58 0.19 0.09 0.13 -1 -1 0.19 0.0315655 0.0272671 115 34 56 28 28 28 +fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 5.24 vpr 62.36 MiB 0.03 6820 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 23.9 MiB 1.24 860 14700 5342 7547 1811 62.4 MiB 0.13 0.00 3.60535 -129.612 -3.60535 3.60535 0.65 0.000613571 0.0005711 0.0548607 0.0510648 34 2261 23 6.89349e+06 225501 618332. 2139.56 1.38 0.175613 0.154105 25762 151098 -1 1953 20 1495 2467 200666 42802 2.88526 2.88526 -123.256 -2.88526 0 0 787024. 2723.27 0.20 0.08 0.15 -1 -1 0.20 0.0235494 0.0204532 114 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 4.77 vpr 62.36 MiB 0.05 6796 -1 -1 1 0.03 -1 -1 30284 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 31 32 303 249 1 191 82 17 17 289 -1 unnamed_device 23.8 MiB 1.26 985 14322 4727 7440 2155 62.4 MiB 0.13 0.00 3.69435 -127.028 -3.69435 3.69435 0.66 0.000625972 0.000582575 0.0525159 0.0488251 30 2355 32 6.89349e+06 267783 556674. 1926.21 0.92 0.136137 0.120401 25186 138497 -1 1904 18 1088 1540 90311 21257 2.89006 2.89006 -117.579 -2.89006 0 0 706193. 2443.58 0.18 0.06 0.12 -1 -1 0.18 0.0246196 0.0214825 121 34 61 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 5.49 vpr 62.54 MiB 0.03 7028 -1 -1 1 0.03 -1 -1 30184 -1 -1 23 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 29 32 312 264 1 201 84 17 17 289 -1 unnamed_device 23.9 MiB 1.37 1052 14724 4760 7779 2185 62.5 MiB 0.16 0.00 3.57215 -115.596 -3.57215 3.57215 0.66 0.0006679 0.000615592 0.0615132 0.0571439 34 2412 48 6.89349e+06 324158 618332. 2139.56 1.36 0.203841 0.178033 25762 151098 -1 2059 18 1204 1615 110153 25182 2.84821 2.84821 -110.088 -2.84821 0 0 787024. 2723.27 0.21 0.06 0.14 -1 -1 0.21 0.0236364 0.0206202 130 61 29 29 57 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 6.87 vpr 63.40 MiB 0.03 7212 -1 -1 1 0.04 -1 -1 30468 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 423 310 1 254 91 17 17 289 -1 unnamed_device 24.5 MiB 1.83 1199 18247 5521 9891 2835 63.4 MiB 0.20 0.00 4.73855 -160.484 -4.73855 4.73855 0.61 0.000944782 0.000886486 0.077647 0.0721764 34 3612 43 6.89349e+06 380534 618332. 2139.56 2.32 0.273519 0.239992 25762 151098 -1 2796 20 2035 3278 238805 52979 4.28236 4.28236 -159.226 -4.28236 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0323775 0.0281225 184 29 128 32 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 6.27 vpr 63.33 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30440 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 403 317 1 260 89 17 17 289 -1 unnamed_device 24.5 MiB 1.65 1143 14147 4354 7296 2497 63.3 MiB 0.15 0.00 4.17974 -143.168 -4.17974 4.17974 0.66 0.000780443 0.000724921 0.0583653 0.0542628 34 3686 37 6.89349e+06 352346 618332. 2139.56 1.80 0.22626 0.197571 25762 151098 -1 2757 24 2870 3968 321931 71661 3.9572 3.9572 -151.377 -3.9572 0 0 787024. 2723.27 0.20 0.13 0.13 -1 -1 0.20 0.0372731 0.0322047 173 65 62 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 4.92 vpr 63.00 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30632 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 31 32 353 302 1 229 85 17 17 289 -1 unnamed_device 24.3 MiB 0.84 1094 14965 4562 8063 2340 63.0 MiB 0.14 0.00 3.67235 -123.222 -3.67235 3.67235 0.68 0.00067781 0.000630017 0.0565901 0.0525905 34 2583 23 6.89349e+06 310065 618332. 2139.56 1.42 0.193196 0.169104 25762 151098 -1 2152 20 1279 1328 109559 24885 3.11566 3.11566 -119.952 -3.11566 0 0 787024. 2723.27 0.21 0.06 0.14 -1 -1 0.21 0.0259383 0.0225191 143 90 0 0 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 6.62 vpr 63.14 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30388 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 31 32 391 309 1 246 89 17 17 289 -1 unnamed_device 24.3 MiB 2.20 1244 16523 4277 10843 1403 63.1 MiB 0.18 0.00 4.45875 -146.616 -4.45875 4.45875 0.67 0.00075042 0.000696704 0.0643215 0.0596278 34 3212 33 6.89349e+06 366440 618332. 2139.56 1.65 0.224049 0.195669 25762 151098 -1 2592 22 1886 2726 189128 43273 3.575 3.575 -140.253 -3.575 0 0 787024. 2723.27 0.22 0.09 0.09 -1 -1 0.22 0.0315598 0.0274849 170 64 60 30 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 6.45 vpr 63.64 MiB 0.02 7236 -1 -1 1 0.04 -1 -1 30540 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65168 31 32 455 371 1 307 94 17 17 289 -1 unnamed_device 24.8 MiB 1.79 1489 17560 4957 10293 2310 63.6 MiB 0.20 0.00 5.02254 -165.43 -5.02254 5.02254 0.67 0.000844596 0.000785597 0.0727489 0.0675953 34 3603 25 6.89349e+06 436909 618332. 2139.56 1.88 0.22124 0.193928 25762 151098 -1 2828 19 2056 2331 149675 36960 4.78164 4.78164 -163.804 -4.78164 0 0 787024. 2723.27 0.20 0.08 0.15 -1 -1 0.20 0.0315655 0.0273469 201 124 0 0 124 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 9.65 vpr 63.33 MiB 0.05 7200 -1 -1 1 0.04 -1 -1 30412 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 31 32 413 333 1 269 91 17 17 289 -1 unnamed_device 24.5 MiB 2.17 1401 11923 3470 7236 1217 63.3 MiB 0.13 0.00 5.49816 -175.294 -5.49816 5.49816 0.74 0.000599742 0.000548754 0.0421888 0.0389026 34 3760 29 6.89349e+06 394628 618332. 2139.56 4.67 0.305638 0.263652 25762 151098 -1 2849 21 2337 3169 226449 53884 5.30184 5.30184 -177.291 -5.30184 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0312856 0.0272792 181 90 31 31 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 6.14 vpr 63.07 MiB 0.03 7148 -1 -1 1 0.04 -1 -1 30416 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 31 32 391 309 1 249 90 17 17 289 -1 unnamed_device 24.2 MiB 1.70 1340 14763 4284 8311 2168 63.1 MiB 0.17 0.00 3.76655 -130.012 -3.76655 3.76655 0.69 0.000758729 0.000704496 0.0621432 0.0576911 34 3258 47 6.89349e+06 380534 618332. 2139.56 1.68 0.238548 0.208237 25762 151098 -1 2645 22 2257 3104 229312 50693 3.07996 3.07996 -123.899 -3.07996 0 0 787024. 2723.27 0.20 0.10 0.14 -1 -1 0.20 0.0325238 0.0283092 168 64 60 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 6.98 vpr 63.34 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30496 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.6 MiB 2.02 1284 16207 4365 9844 1998 63.3 MiB 0.16 0.00 4.62085 -160.706 -4.62085 4.62085 0.89 0.000595015 0.000546169 0.0507187 0.0466176 34 3366 50 6.89349e+06 380534 618332. 2139.56 2.02 0.235743 0.204373 25762 151098 -1 2675 20 2097 2768 213441 47597 4.08816 4.08816 -158.057 -4.08816 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0310796 0.0270776 178 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 8.54 vpr 63.60 MiB 0.05 7228 -1 -1 1 0.04 -1 -1 30724 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 496 380 1 321 95 17 17 289 -1 unnamed_device 25.1 MiB 2.44 1764 15215 4236 8627 2352 63.6 MiB 0.19 0.00 5.15348 -175.341 -5.15348 5.15348 0.69 0.000845263 0.000778541 0.067427 0.0624955 34 4947 37 6.89349e+06 436909 618332. 2139.56 3.20 0.275509 0.240112 25762 151098 -1 3930 21 3340 4681 433075 89564 5.07269 5.07269 -188.593 -5.07269 0 0 787024. 2723.27 0.21 0.14 0.13 -1 -1 0.21 0.036504 0.0317521 220 96 62 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 5.81 vpr 62.51 MiB 0.02 6788 -1 -1 1 0.03 -1 -1 30640 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 31 32 305 250 1 192 83 17 17 289 -1 unnamed_device 23.9 MiB 1.56 822 6743 1455 4759 529 62.5 MiB 0.08 0.00 3.853 -129.297 -3.853 3.853 0.66 0.000640445 0.000595956 0.0260511 0.0242337 34 2124 38 6.89349e+06 281877 618332. 2139.56 1.39 0.168767 0.145881 25762 151098 -1 1695 21 1403 1837 121272 28905 3.14351 3.14351 -127.25 -3.14351 0 0 787024. 2723.27 0.22 0.07 0.15 -1 -1 0.22 0.0254668 0.0221603 127 34 62 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 6.55 vpr 63.32 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30384 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 31 32 395 311 1 251 90 17 17 289 -1 unnamed_device 24.5 MiB 1.54 1294 17376 6419 8627 2330 63.3 MiB 0.18 0.00 5.00234 -161.335 -5.00234 5.00234 0.67 0.000773185 0.000717775 0.070126 0.0651223 34 3454 30 6.89349e+06 380534 618332. 2139.56 2.25 0.225203 0.197945 25762 151098 -1 2537 22 1852 2286 198519 43793 4.09035 4.09035 -145.609 -4.09035 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0301526 0.0263922 168 64 62 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 6.72 vpr 63.14 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 30544 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 397 313 1 254 91 17 17 289 -1 unnamed_device 24.3 MiB 1.82 1356 15391 5368 7626 2397 63.1 MiB 0.17 0.00 4.39449 -148.549 -4.39449 4.39449 0.72 0.000761155 0.000706715 0.0613051 0.0568303 36 3343 28 6.89349e+06 380534 648988. 2245.63 2.09 0.220736 0.193029 26050 158493 -1 2717 19 1647 2572 179704 41804 3.4417 3.4417 -136.201 -3.4417 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.028877 0.0253072 172 63 62 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 6.13 vpr 62.62 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 30448 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 24.0 MiB 1.18 953 14407 3720 10033 654 62.6 MiB 0.14 0.00 4.3344 -147.594 -4.3344 4.3344 0.66 0.000549258 0.000503653 0.0453129 0.0416019 34 3038 25 6.89349e+06 295971 618332. 2139.56 2.12 0.175794 0.152898 25762 151098 -1 2307 22 1927 3367 226780 53457 4.0709 4.0709 -157.004 -4.0709 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0262622 0.0231332 147 3 128 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 6.04 vpr 63.30 MiB 0.05 7164 -1 -1 1 0.04 -1 -1 30572 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 424 343 1 281 92 17 17 289 -1 unnamed_device 24.6 MiB 1.39 1279 18101 5797 9598 2706 63.3 MiB 0.18 0.00 4.41459 -148.068 -4.41459 4.41459 0.68 0.000785157 0.00072935 0.0714047 0.0663381 34 3456 36 6.89349e+06 394628 618332. 2139.56 1.84 0.244635 0.214167 25762 151098 -1 2495 17 1742 2005 141326 32991 3.5498 3.5498 -134.758 -3.5498 0 0 787024. 2723.27 0.20 0.07 0.15 -1 -1 0.20 0.0264702 0.0230928 184 96 25 25 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 8.03 vpr 63.11 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30300 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 395 311 1 255 91 17 17 289 -1 unnamed_device 24.3 MiB 1.94 1221 17635 5673 8836 3126 63.1 MiB 0.17 0.00 4.28929 -146.442 -4.28929 4.28929 0.70 0.000765099 0.000710982 0.068382 0.0635126 36 3258 26 6.89349e+06 380534 648988. 2245.63 3.16 0.227184 0.199386 26050 158493 -1 2353 25 2033 3153 228574 54200 3.7364 3.7364 -144.199 -3.7364 0 0 828058. 2865.25 0.31 0.09 0.16 -1 -1 0.31 0.0304305 0.0266997 169 61 64 32 60 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 5.98 vpr 63.20 MiB 0.03 7140 -1 -1 1 0.03 -1 -1 30428 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 24.4 MiB 1.53 1303 7027 1560 5110 357 63.2 MiB 0.09 0.00 3.72045 -130.455 -3.72045 3.72045 0.68 0.000773989 0.000718967 0.0295816 0.0274594 34 3432 32 6.89349e+06 380534 618332. 2139.56 1.64 0.194466 0.168186 25762 151098 -1 2779 19 2292 3111 220573 50545 3.34586 3.34586 -134.809 -3.34586 0 0 787024. 2723.27 0.28 0.08 0.15 -1 -1 0.28 0.0254669 0.022511 175 65 63 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 5.77 vpr 63.31 MiB 0.03 6896 -1 -1 1 0.02 -1 -1 30516 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64828 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 24.6 MiB 1.47 1190 14518 4171 8562 1785 63.3 MiB 0.15 0.00 4.63815 -161.109 -4.63815 4.63815 0.65 0.000739279 0.000686759 0.0578805 0.0537937 34 2867 24 6.89349e+06 338252 618332. 2139.56 1.57 0.205645 0.180198 25762 151098 -1 2297 20 1953 2892 199364 44289 3.94566 3.94566 -153.36 -3.94566 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0285819 0.0248603 161 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 5.42 vpr 63.32 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30668 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.5 MiB 1.16 1201 13351 3240 8446 1665 63.3 MiB 0.14 0.00 4.60525 -158.398 -4.60525 4.60525 0.65 0.000781109 0.000726329 0.0528392 0.0490879 36 3088 18 6.89349e+06 380534 648988. 2245.63 1.58 0.197814 0.17268 26050 158493 -1 2542 22 2132 2720 189470 43438 3.95366 3.95366 -155.201 -3.95366 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0333611 0.02902 177 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 5.72 vpr 63.45 MiB 0.05 7272 -1 -1 1 0.03 -1 -1 30492 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 31 32 449 367 1 300 94 17 17 289 -1 unnamed_device 24.7 MiB 1.28 1470 18625 5270 10765 2590 63.4 MiB 0.19 0.00 5.00359 -155.604 -5.00359 5.00359 0.68 0.000824741 0.000766393 0.075484 0.0701894 34 3523 29 6.89349e+06 436909 618332. 2139.56 1.61 0.245376 0.214839 25762 151098 -1 2759 20 1882 2213 161482 36768 4.39925 4.39925 -149.753 -4.39925 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.032127 0.0279234 195 122 0 0 122 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 7.14 vpr 63.41 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30432 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 432 346 1 287 91 17 17 289 -1 unnamed_device 24.6 MiB 2.43 1648 15391 4130 9133 2128 63.4 MiB 0.18 0.00 4.77885 -161.828 -4.77885 4.77885 0.58 0.000808666 0.000750706 0.0660986 0.0614237 36 3608 22 6.89349e+06 380534 648988. 2245.63 1.91 0.223825 0.195887 26050 158493 -1 2977 22 2584 3747 246133 55196 3.9931 3.9931 -155.328 -3.9931 0 0 828058. 2865.25 0.22 0.11 0.14 -1 -1 0.22 0.0354378 0.0308238 190 94 32 32 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 5.44 vpr 62.45 MiB 0.02 6848 -1 -1 1 0.03 -1 -1 30488 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63952 32 32 312 255 1 198 85 17 17 289 -1 unnamed_device 23.9 MiB 1.39 1067 16081 5068 9178 1835 62.5 MiB 0.15 0.00 3.68745 -131.866 -3.68745 3.68745 0.69 0.00063878 0.000594292 0.057265 0.0532629 34 2400 20 6.89349e+06 295971 618332. 2139.56 1.37 0.17875 0.156902 25762 151098 -1 2004 18 1181 1671 111213 25748 2.83886 2.83886 -122.699 -2.83886 0 0 787024. 2723.27 0.21 0.06 0.14 -1 -1 0.21 0.0226333 0.0197451 127 34 63 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 7.85 vpr 63.04 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30416 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 370 314 1 250 85 17 17 289 -1 unnamed_device 24.3 MiB 1.36 1122 7711 1541 6020 150 63.0 MiB 0.09 0.00 4.29439 -143.523 -4.29439 4.29439 0.67 0.000713226 0.000658812 0.0316974 0.0294515 34 3249 25 6.89349e+06 295971 618332. 2139.56 3.80 0.252353 0.216896 25762 151098 -1 2403 19 1818 2118 159690 36677 3.76829 3.76829 -140.768 -3.76829 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0283052 0.0246409 154 94 0 0 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 6.15 vpr 63.59 MiB 0.03 7236 -1 -1 1 0.03 -1 -1 30816 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65116 32 32 469 351 1 298 94 17 17 289 -1 unnamed_device 24.7 MiB 1.62 1537 17347 5978 9037 2332 63.6 MiB 0.21 0.00 5.35709 -181.872 -5.35709 5.35709 0.66 0.000898264 0.000835384 0.0771597 0.0718201 38 3731 22 6.89349e+06 422815 678818. 2348.85 1.70 0.250313 0.219649 26626 170182 -1 3131 21 2573 3590 244368 53394 5.0127 5.0127 -182.62 -5.0127 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0353743 0.0308159 209 65 96 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 6.40 vpr 63.04 MiB 0.03 7004 -1 -1 1 0.03 -1 -1 30376 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 368 284 1 225 87 17 17 289 -1 unnamed_device 24.3 MiB 1.68 1176 14295 4272 7910 2113 63.0 MiB 0.15 0.00 3.7808 -134.415 -3.7808 3.7808 0.66 0.000737146 0.00068476 0.0594284 0.0552571 34 2997 45 6.89349e+06 324158 618332. 2139.56 2.05 0.219935 0.192145 25762 151098 -1 2396 24 2126 3102 261342 57832 3.48181 3.48181 -130.98 -3.48181 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.0335909 0.029144 156 34 92 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 5.00 vpr 62.57 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 30324 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 30 32 296 244 1 183 94 17 17 289 -1 unnamed_device 23.9 MiB 1.10 932 11809 3108 7963 738 62.6 MiB 0.11 0.00 4.33203 -134.423 -4.33203 4.33203 0.66 0.000620462 0.000577476 0.0360648 0.0334708 34 2124 20 6.89349e+06 451003 618332. 2139.56 1.31 0.154345 0.134096 25762 151098 -1 1763 20 1114 1836 110640 27034 3.45265 3.45265 -126.061 -3.45265 0 0 787024. 2723.27 0.23 0.06 0.14 -1 -1 0.23 0.0240635 0.0208005 129 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 7.46 vpr 63.36 MiB 0.05 7424 -1 -1 1 0.04 -1 -1 31064 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 531 413 1 356 99 17 17 289 -1 unnamed_device 25.1 MiB 1.66 1787 18111 5206 10704 2201 63.4 MiB 0.22 0.00 5.73258 -193.193 -5.73258 5.73258 0.65 0.00095312 0.000885592 0.0802955 0.0745641 36 4099 45 6.89349e+06 493284 648988. 2245.63 2.93 0.306627 0.267899 26050 158493 -1 3443 22 2883 3553 247502 56234 5.31523 5.31523 -188.864 -5.31523 0 0 828058. 2865.25 0.23 0.11 0.16 -1 -1 0.23 0.0408635 0.0354266 239 127 32 32 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 5.73 vpr 63.03 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30404 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 376 288 1 225 87 17 17 289 -1 unnamed_device 24.3 MiB 1.30 1091 13143 3864 7923 1356 63.0 MiB 0.14 0.00 4.41749 -154.465 -4.41749 4.41749 0.70 0.000755398 0.000702227 0.0531662 0.0494078 34 2892 26 6.89349e+06 324158 618332. 2139.56 1.64 0.202496 0.177006 25762 151098 -1 2392 21 2162 2968 238683 51533 3.84896 3.84896 -151.21 -3.84896 0 0 787024. 2723.27 0.20 0.09 0.14 -1 -1 0.20 0.030776 0.0268782 159 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 4.11 vpr 62.37 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30356 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 23.8 MiB 0.53 849 10087 2557 6780 750 62.4 MiB 0.10 0.00 3.73565 -131.011 -3.73565 3.73565 0.69 0.000607691 0.00056421 0.0302899 0.0280971 30 2269 22 6.89349e+06 465097 556674. 1926.21 0.91 0.103581 0.0907569 25186 138497 -1 1801 19 1159 1980 121392 27199 2.88986 2.88986 -122.13 -2.88986 0 0 706193. 2443.58 0.21 0.07 0.12 -1 -1 0.21 0.0226924 0.0197163 123 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 7.01 vpr 63.49 MiB 0.04 7160 -1 -1 1 0.03 -1 -1 30888 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 438 320 1 267 93 17 17 289 -1 unnamed_device 24.8 MiB 1.71 1275 12273 3390 7733 1150 63.5 MiB 0.15 0.00 5.39711 -179.414 -5.39711 5.39711 0.65 0.000825004 0.000764344 0.0525839 0.0488961 34 3822 27 6.89349e+06 408721 618332. 2139.56 2.52 0.226504 0.197057 25762 151098 -1 2912 22 2549 3843 311394 66607 5.1379 5.1379 -187.584 -5.1379 0 0 787024. 2723.27 0.21 0.11 0.14 -1 -1 0.21 0.0347328 0.0302902 194 34 128 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 4.98 vpr 62.51 MiB 0.04 6876 -1 -1 1 0.03 -1 -1 30420 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 0.88 787 10056 2193 7590 273 62.5 MiB 0.10 0.00 3.8468 -135.678 -3.8468 3.8468 0.67 0.000609598 0.000567276 0.0374044 0.0348083 34 2224 26 6.89349e+06 225501 618332. 2139.56 1.48 0.161203 0.140457 25762 151098 -1 1846 22 1541 2509 193294 43434 3.19371 3.19371 -132.436 -3.19371 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0252483 0.0218891 114 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 5.28 vpr 62.51 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30504 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 23.9 MiB 1.06 801 8131 1824 5536 771 62.5 MiB 0.08 0.00 3.71635 -120.03 -3.71635 3.71635 0.65 0.000619491 0.00057624 0.03094 0.0287925 36 2120 22 6.89349e+06 267783 648988. 2245.63 1.65 0.151238 0.131217 26050 158493 -1 1750 19 1241 1698 126802 29254 3.19991 3.19991 -118.784 -3.19991 0 0 828058. 2865.25 0.21 0.06 0.13 -1 -1 0.21 0.0227629 0.0197732 121 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 5.49 vpr 63.44 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30340 -1 -1 31 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 29 32 393 319 1 253 92 17 17 289 -1 unnamed_device 24.6 MiB 1.32 1254 15203 3953 9019 2231 63.4 MiB 0.16 0.00 4.1318 -129.307 -4.1318 4.1318 0.68 0.000756186 0.000703455 0.0608763 0.056558 34 2921 25 6.89349e+06 436909 618332. 2139.56 1.46 0.207846 0.18168 25762 151098 -1 2342 21 1662 2222 140241 33338 3.5421 3.5421 -128.502 -3.5421 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0295208 0.0256722 171 88 29 29 85 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 6.26 vpr 63.29 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 30656 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.4 MiB 1.80 1381 16974 4929 9664 2381 63.3 MiB 0.16 0.00 5.29596 -177.687 -5.29596 5.29596 0.66 0.000772564 0.000717011 0.0675648 0.0626923 36 3381 23 6.89349e+06 366440 648988. 2245.63 1.80 0.222756 0.195445 26050 158493 -1 2889 22 2137 3133 238064 52828 4.75305 4.75305 -177.116 -4.75305 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0331964 0.0290045 178 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 6.42 vpr 63.41 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30688 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.5 MiB 1.63 1376 18180 6112 9250 2818 63.4 MiB 0.20 0.00 5.13064 -174.448 -5.13064 5.13064 0.67 0.000775111 0.000719759 0.0749303 0.0695437 34 3618 39 6.89349e+06 366440 618332. 2139.56 1.94 0.24831 0.217417 25762 151098 -1 2890 21 2383 3336 267896 58265 4.49945 4.49945 -170.954 -4.49945 0 0 787024. 2723.27 0.21 0.11 0.14 -1 -1 0.21 0.0338205 0.0296997 175 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 5.47 vpr 63.02 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 30520 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 345 287 1 218 85 17 17 289 -1 unnamed_device 24.4 MiB 1.16 1013 14221 3579 9597 1045 63.0 MiB 0.14 0.00 4.30029 -147.314 -4.30029 4.30029 0.67 0.000686692 0.000637367 0.0565328 0.0525669 34 2793 24 6.89349e+06 295971 618332. 2139.56 1.68 0.17555 0.154024 25762 151098 -1 2061 19 1391 1569 107953 25914 3.5608 3.5608 -135.674 -3.5608 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0256387 0.0222136 141 65 32 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 5.81 vpr 63.06 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 30408 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 31 32 353 302 1 231 85 17 17 289 -1 unnamed_device 24.3 MiB 1.53 1168 10501 2617 6825 1059 63.1 MiB 0.10 0.00 4.23729 -139.76 -4.23729 4.23729 0.80 0.000599761 0.000555292 0.0325614 0.0299336 34 2811 21 6.89349e+06 310065 618332. 2139.56 1.54 0.169565 0.146518 25762 151098 -1 2304 21 1494 1888 140373 31134 3.437 3.437 -131.651 -3.437 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0270898 0.0234813 146 90 0 0 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 6.12 vpr 63.22 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30368 -1 -1 29 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 30 32 374 297 1 236 91 17 17 289 -1 unnamed_device 24.4 MiB 1.73 1158 18043 5948 9235 2860 63.2 MiB 0.18 0.00 3.9471 -130.183 -3.9471 3.9471 0.68 0.000724236 0.000672838 0.0664106 0.0616246 36 2742 19 6.89349e+06 408721 648988. 2245.63 1.64 0.206139 0.181084 26050 158493 -1 2236 22 1585 2245 148948 33787 3.17971 3.17971 -124.133 -3.17971 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.0301111 0.0261603 164 60 60 30 57 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 4.67 vpr 62.96 MiB 0.03 7120 -1 -1 1 0.04 -1 -1 30508 -1 -1 27 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 28 32 332 260 1 203 87 17 17 289 -1 unnamed_device 24.0 MiB 1.14 970 11031 2869 6600 1562 63.0 MiB 0.10 0.00 4.51585 -132.654 -4.51585 4.51585 0.65 0.00067334 0.000626267 0.0405629 0.0377353 30 2598 22 6.89349e+06 380534 556674. 1926.21 1.00 0.121685 0.106867 25186 138497 -1 2048 21 1376 2097 140015 34156 3.80466 3.80466 -129.854 -3.80466 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0269296 0.0234438 145 34 84 28 28 28 +fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 6.38 vpr 62.90 MiB 0.02 6992 -1 -1 1 0.03 -1 -1 30156 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 30 32 325 273 1 208 83 17 17 289 -1 unnamed_device 24.0 MiB 1.78 1087 9083 2557 5800 726 62.9 MiB 0.09 0.00 4.36859 -139.508 -4.36859 4.36859 0.78 0.000506865 0.000467057 0.0344534 0.0319675 36 2461 21 6.89349e+06 295971 648988. 2245.63 1.88 0.15765 0.137056 26050 158493 -1 2210 18 1549 2144 153888 34396 3.93924 3.93924 -143.927 -3.93924 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0230874 0.020111 136 63 30 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 5.91 vpr 63.06 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 30376 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 361 308 1 245 85 17 17 289 -1 unnamed_device 24.3 MiB 1.68 1180 8827 2269 5871 687 63.1 MiB 0.10 0.00 3.8008 -130.21 -3.8008 3.8008 0.65 0.000697827 0.000648362 0.0353878 0.0328445 34 2947 27 6.89349e+06 295971 618332. 2139.56 1.69 0.170767 0.148019 25762 151098 -1 2298 19 1784 2086 141746 33966 3.33536 3.33536 -124.603 -3.33536 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0245359 0.0216055 150 91 0 0 91 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 5.11 vpr 63.02 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30152 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 24.4 MiB 0.66 1032 15180 4497 8229 2454 63.0 MiB 0.14 0.00 4.35445 -144.691 -4.35445 4.35445 0.67 0.000702391 0.000651045 0.0479968 0.0444774 28 3116 24 6.89349e+06 521472 531479. 1839.03 1.79 0.136155 0.120052 24610 126494 -1 2417 23 1852 2944 264887 56478 4.146 4.146 -146.482 -4.146 0 0 648988. 2245.63 0.18 0.10 0.11 -1 -1 0.18 0.0293902 0.025461 151 4 124 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 5.56 vpr 63.25 MiB 0.03 7064 -1 -1 1 0.03 -1 -1 30588 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64768 32 32 407 319 1 257 90 17 17 289 -1 unnamed_device 24.4 MiB 1.13 1263 12351 3110 8140 1101 63.2 MiB 0.14 0.00 4.78058 -162.367 -4.78058 4.78058 0.66 0.000779867 0.000724425 0.0514792 0.0478223 34 3370 34 6.89349e+06 366440 618332. 2139.56 1.67 0.216361 0.188747 25762 151098 -1 2699 20 2011 2692 190290 44248 4.11729 4.11729 -159.216 -4.11729 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0306781 0.0267664 173 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 6.63 vpr 63.27 MiB 0.04 7044 -1 -1 1 0.04 -1 -1 30360 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 407 319 1 256 90 17 17 289 -1 unnamed_device 24.4 MiB 1.47 1405 10743 3107 6650 986 63.3 MiB 0.13 0.00 4.9601 -169.723 -4.9601 4.9601 0.66 0.000782458 0.000726051 0.0442406 0.0410427 36 3352 21 6.89349e+06 366440 648988. 2245.63 2.37 0.193773 0.168572 26050 158493 -1 2841 24 2714 3829 281475 60219 4.60149 4.60149 -175.01 -4.60149 0 0 828058. 2865.25 0.21 0.11 0.15 -1 -1 0.21 0.0350189 0.0304775 171 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 6.76 vpr 63.09 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30444 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 399 315 1 257 91 17 17 289 -1 unnamed_device 24.2 MiB 1.63 1306 10087 2279 7315 493 63.1 MiB 0.12 0.00 4.3224 -145.723 -4.3224 4.3224 0.65 0.000765612 0.00071099 0.0387853 0.0359745 34 4019 38 6.89349e+06 380534 618332. 2139.56 2.34 0.205393 0.178093 25762 151098 -1 2959 22 2024 2984 275031 58181 3.8787 3.8787 -143.052 -3.8787 0 0 787024. 2723.27 0.27 0.11 0.15 -1 -1 0.27 0.0317707 0.0278175 172 65 60 30 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 5.53 vpr 62.43 MiB 0.02 6864 -1 -1 1 0.03 -1 -1 30536 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63932 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 23.9 MiB 1.50 814 9181 2458 5686 1037 62.4 MiB 0.09 0.00 3.809 -121.257 -3.809 3.809 0.66 0.000618892 0.000575783 0.0342749 0.0318868 34 2414 23 6.89349e+06 267783 618332. 2139.56 1.44 0.156651 0.136129 25762 151098 -1 1981 18 1325 1862 137906 31352 3.32811 3.32811 -124.606 -3.32811 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0219365 0.0190904 122 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 6.56 vpr 63.11 MiB 0.05 7228 -1 -1 1 0.03 -1 -1 30544 -1 -1 26 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 30 32 383 303 1 241 88 17 17 289 -1 unnamed_device 24.3 MiB 2.05 1287 12568 3293 7724 1551 63.1 MiB 0.13 0.00 5.05854 -160.711 -5.05854 5.05854 0.66 0.000740285 0.000687467 0.0501106 0.0465692 34 3215 23 6.89349e+06 366440 618332. 2139.56 1.77 0.196956 0.171803 25762 151098 -1 2669 22 2168 2985 251473 53133 4.62785 4.62785 -167.287 -4.62785 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0308118 0.0267599 165 63 60 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 5.81 vpr 63.68 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30840 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65212 32 32 469 381 1 316 94 17 17 289 -1 unnamed_device 24.8 MiB 1.04 1479 11383 3062 7492 829 63.7 MiB 0.13 0.00 4.57601 -155.587 -4.57601 4.57601 0.67 0.00105856 0.000978628 0.0495089 0.0460141 36 3485 21 6.89349e+06 422815 648988. 2245.63 1.98 0.214935 0.186912 26050 158493 -1 2832 22 2013 2060 161581 36432 4.3846 4.3846 -161.201 -4.3846 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0353186 0.0305541 204 127 0 0 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 6.10 vpr 63.36 MiB 0.02 7240 -1 -1 1 0.03 -1 -1 30688 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 31 32 425 341 1 280 92 17 17 289 -1 unnamed_device 24.6 MiB 1.44 1301 16445 5093 9336 2016 63.4 MiB 0.18 0.00 5.17904 -171.173 -5.17904 5.17904 0.67 0.000943993 0.000877503 0.0661523 0.0613718 36 3067 22 6.89349e+06 408721 648988. 2245.63 1.83 0.221465 0.193967 26050 158493 -1 2596 21 2101 2656 176406 39956 4.55855 4.55855 -167.212 -4.55855 0 0 828058. 2865.25 0.23 0.11 0.17 -1 -1 0.23 0.0385531 0.0335524 186 94 31 31 93 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 6.86 vpr 63.21 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30564 -1 -1 28 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 30 32 404 328 1 261 90 17 17 289 -1 unnamed_device 24.3 MiB 1.85 1252 12351 3368 8179 804 63.2 MiB 0.14 0.00 4.25135 -136.296 -4.25135 4.25135 0.66 0.000772645 0.00071895 0.0498195 0.0462778 34 3685 43 6.89349e+06 394628 618332. 2139.56 2.24 0.226691 0.196903 25762 151098 -1 2594 20 2113 2985 216177 51036 3.6894 3.6894 -134.45 -3.6894 0 0 787024. 2723.27 0.26 0.08 0.14 -1 -1 0.26 0.0278975 0.024293 175 92 26 26 90 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 6.30 vpr 63.30 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30676 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.4 MiB 1.57 1349 14160 4180 8412 1568 63.3 MiB 0.16 0.00 5.11687 -171.214 -5.11687 5.11687 0.67 0.000781613 0.000725574 0.0604479 0.0561111 34 3581 27 6.89349e+06 366440 618332. 2139.56 1.96 0.21853 0.19107 25762 151098 -1 2791 20 2316 3288 250957 53444 4.38015 4.38015 -167.903 -4.38015 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0309337 0.0270696 177 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 6.08 vpr 63.16 MiB 0.05 7260 -1 -1 1 0.03 -1 -1 30424 -1 -1 30 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 29 32 387 316 1 251 91 17 17 289 -1 unnamed_device 24.3 MiB 1.77 1337 17431 5595 9274 2562 63.2 MiB 0.17 0.00 4.49555 -136.793 -4.49555 4.49555 0.67 0.000845239 0.000792664 0.0648763 0.0602063 34 3073 24 6.89349e+06 422815 618332. 2139.56 1.49 0.214704 0.187933 25762 151098 -1 2550 21 1725 2466 178342 39501 3.5011 3.5011 -124.119 -3.5011 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0293322 0.0255011 170 88 26 26 85 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 4.50 vpr 62.27 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30296 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63764 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 23.8 MiB 0.48 851 10744 3065 7267 412 62.3 MiB 0.11 0.00 3.7888 -133.854 -3.7888 3.7888 0.66 0.000614028 0.000571497 0.0415225 0.0385499 34 2305 21 6.89349e+06 225501 618332. 2139.56 1.39 0.163716 0.142801 25762 151098 -1 2030 19 1345 2174 159532 36663 3.14346 3.14346 -132.265 -3.14346 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0225579 0.019614 114 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 6.57 vpr 63.27 MiB 0.04 7016 -1 -1 1 0.04 -1 -1 30548 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 407 319 1 259 91 17 17 289 -1 unnamed_device 24.3 MiB 1.44 1266 16411 5685 8276 2450 63.3 MiB 0.18 0.00 5.17997 -174.972 -5.17997 5.17997 0.65 0.000779496 0.000723423 0.0675635 0.0627493 34 3964 24 6.89349e+06 380534 618332. 2139.56 2.32 0.22524 0.197591 25762 151098 -1 2919 22 2505 3449 295666 64678 4.51349 4.51349 -172.423 -4.51349 0 0 787024. 2723.27 0.20 0.11 0.14 -1 -1 0.20 0.0327204 0.0285389 174 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 7.35 vpr 63.37 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30524 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 407 319 1 263 89 17 17 289 -1 unnamed_device 24.5 MiB 2.40 1294 9791 2343 6863 585 63.4 MiB 0.12 0.00 5.01095 -168.663 -5.01095 5.01095 0.67 0.000779052 0.000723442 0.0432461 0.040209 34 3734 27 6.89349e+06 352346 618332. 2139.56 2.16 0.205585 0.179192 25762 151098 -1 3073 21 2521 3502 329891 67655 4.83919 4.83919 -182.492 -4.83919 0 0 787024. 2723.27 0.21 0.11 0.13 -1 -1 0.21 0.0313068 0.0272672 176 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 5.51 vpr 62.70 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 30412 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 32 32 315 267 1 204 83 17 17 289 -1 unnamed_device 24.1 MiB 1.47 971 13043 4021 6975 2047 62.7 MiB 0.12 0.00 3.51612 -116.281 -3.51612 3.51612 0.65 0.000637815 0.000592886 0.0486843 0.0453133 34 2366 21 6.89349e+06 267783 618332. 2139.56 1.39 0.17343 0.15127 25762 151098 -1 2000 20 1104 1335 121547 26462 2.8625 2.8625 -110.607 -2.8625 0 0 787024. 2723.27 0.21 0.07 0.15 -1 -1 0.21 0.0261222 0.022552 128 55 32 32 54 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 4.24 vpr 62.42 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30384 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 24.0 MiB 0.71 734 11604 2641 7381 1582 62.4 MiB 0.11 0.00 3.8218 -128.161 -3.8218 3.8218 0.65 0.000600294 0.000558988 0.0423281 0.0394172 32 2249 20 6.89349e+06 239595 586450. 2029.24 0.86 0.112232 0.099313 25474 144626 -1 1818 21 1430 2242 171277 39732 3.12151 3.12151 -125.297 -3.12151 0 0 744469. 2576.02 0.19 0.07 0.13 -1 -1 0.19 0.0239617 0.0207526 112 4 93 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 5.47 vpr 63.23 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30260 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 381 303 1 240 89 17 17 289 -1 unnamed_device 24.5 MiB 1.29 1234 14147 4178 8444 1525 63.2 MiB 0.14 0.00 4.31849 -141.833 -4.31849 4.31849 0.66 0.00074055 0.000688048 0.0553447 0.051401 34 3001 25 6.89349e+06 352346 618332. 2139.56 1.51 0.203815 0.178228 25762 151098 -1 2423 23 1713 2161 161461 37745 3.7616 3.7616 -139.443 -3.7616 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0334719 0.029112 158 59 60 32 58 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 5.88 vpr 63.21 MiB 0.03 7144 -1 -1 1 0.02 -1 -1 30268 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64728 32 32 406 330 1 261 90 17 17 289 -1 unnamed_device 24.4 MiB 1.42 1314 10341 2747 6842 752 63.2 MiB 0.12 0.00 5.10864 -160.907 -5.10864 5.10864 0.65 0.00077034 0.000714279 0.0430161 0.0398155 34 3382 28 6.89349e+06 366440 618332. 2139.56 1.81 0.201561 0.175094 25762 151098 -1 2663 21 1947 2359 175874 40231 4.70585 4.70585 -165.127 -4.70585 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0304018 0.0264744 170 88 28 28 88 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 5.19 vpr 63.27 MiB 0.03 7040 -1 -1 1 0.03 -1 -1 30568 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 24.4 MiB 0.72 1292 15419 3797 10101 1521 63.3 MiB 0.16 0.00 4.85078 -164.688 -4.85078 4.85078 0.65 0.000800683 0.000744646 0.053115 0.0492494 34 3291 24 6.89349e+06 577847 618332. 2139.56 1.74 0.201032 0.175853 25762 151098 -1 2778 22 2120 3540 253505 56982 4.41009 4.41009 -164.794 -4.41009 0 0 787024. 2723.27 0.23 0.10 0.09 -1 -1 0.23 0.0326577 0.0284132 183 3 156 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 5.83 vpr 63.21 MiB 0.02 7024 -1 -1 1 0.05 -1 -1 30564 -1 -1 27 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 30 32 371 295 1 235 89 17 17 289 -1 unnamed_device 24.4 MiB 1.50 1124 9395 2323 6078 994 63.2 MiB 0.11 0.00 3.8961 -125.22 -3.8961 3.8961 0.66 0.000718096 0.000667181 0.0375023 0.0348973 34 2687 35 6.89349e+06 380534 618332. 2139.56 1.63 0.196532 0.170741 25762 151098 -1 2215 22 1871 2641 178277 40722 3.23245 3.23245 -123.072 -3.23245 0 0 787024. 2723.27 0.20 0.08 0.14 -1 -1 0.20 0.0296547 0.0257776 160 59 60 30 56 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 4.94 vpr 62.48 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 30580 -1 -1 22 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 27 32 269 226 1 168 81 17 17 289 -1 unnamed_device 24.0 MiB 1.09 915 13031 5095 6351 1585 62.5 MiB 0.11 0.00 4.34539 -126.288 -4.34539 4.34539 0.66 0.000573393 0.000534107 0.0446719 0.0415869 34 2091 19 6.89349e+06 310065 618332. 2139.56 1.31 0.15341 0.133857 25762 151098 -1 1747 20 1241 1802 139980 30557 3.5341 3.5341 -120.468 -3.5341 0 0 787024. 2723.27 0.19 0.04 0.09 -1 -1 0.19 0.0135077 0.0118618 112 34 54 27 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 6.91 vpr 63.32 MiB 0.05 7188 -1 -1 1 0.03 -1 -1 30656 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 493 378 1 322 96 17 17 289 -1 unnamed_device 24.8 MiB 1.67 1748 16302 4126 10044 2132 63.3 MiB 0.21 0.00 5.09354 -170.611 -5.09354 5.09354 0.69 0.000913683 0.000848699 0.0754689 0.0700495 34 4285 25 6.89349e+06 451003 618332. 2139.56 2.23 0.263129 0.230048 25762 151098 -1 3468 22 2649 3800 298982 65983 4.56475 4.56475 -168.829 -4.56475 0 0 787024. 2723.27 0.21 0.11 0.10 -1 -1 0.21 0.0376485 0.0326776 219 95 62 31 95 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 6.86 vpr 63.34 MiB 0.04 7260 -1 -1 1 0.04 -1 -1 30612 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 31 32 455 371 1 306 94 17 17 289 -1 unnamed_device 24.7 MiB 1.93 1467 12661 2948 8528 1185 63.3 MiB 0.14 0.00 5.14784 -166.315 -5.14784 5.14784 0.65 0.000835935 0.000777052 0.0524276 0.0487052 36 3334 29 6.89349e+06 436909 648988. 2245.63 2.12 0.239097 0.208474 26050 158493 -1 2867 20 2116 2465 175785 40132 4.44755 4.44755 -164.311 -4.44755 0 0 828058. 2865.25 0.22 0.10 0.15 -1 -1 0.22 0.0365614 0.0317343 201 124 0 0 124 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 6.25 vpr 63.07 MiB 0.02 6888 -1 -1 1 0.03 -1 -1 30356 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 355 304 1 245 86 17 17 289 -1 unnamed_device 24.3 MiB 1.82 1133 9914 2313 7132 469 63.1 MiB 0.10 0.00 4.28535 -139.234 -4.28535 4.28535 0.66 0.000690364 0.000641708 0.0385024 0.0357575 34 3076 43 6.89349e+06 310065 618332. 2139.56 1.72 0.192896 0.167087 25762 151098 -1 2412 19 1636 1891 160594 35200 3.481 3.481 -133.609 -3.481 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0254125 0.0221273 150 89 0 0 89 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 5.83 vpr 63.18 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30304 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 364 282 1 225 87 17 17 289 -1 unnamed_device 24.5 MiB 1.56 1114 12951 3612 7720 1619 63.2 MiB 0.14 0.00 4.53785 -150.754 -4.53785 4.53785 0.71 0.000715818 0.000664725 0.0514777 0.0477639 34 2799 24 6.89349e+06 324158 618332. 2139.56 1.45 0.195754 0.170853 25762 151098 -1 2218 20 1438 2033 143461 35360 3.7092 3.7092 -142.167 -3.7092 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0278901 0.0242964 151 34 90 30 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 5.97 vpr 63.52 MiB 0.05 7276 -1 -1 1 0.04 -1 -1 30808 -1 -1 30 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65048 31 32 443 336 1 280 93 17 17 289 -1 unnamed_device 24.9 MiB 1.43 1475 19413 5609 11709 2095 63.5 MiB 0.22 0.00 4.64537 -154.979 -4.64537 4.64537 0.67 0.000848432 0.000774615 0.0824658 0.0764143 34 3553 32 6.89349e+06 422815 618332. 2139.56 1.68 0.259517 0.227124 25762 151098 -1 2807 23 2386 3265 238394 52982 4.17126 4.17126 -155.088 -4.17126 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0358803 0.0311398 193 64 87 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 6.22 vpr 63.11 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30372 -1 -1 28 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64624 30 32 373 297 1 235 90 17 17 289 -1 unnamed_device 24.3 MiB 1.80 1223 16773 5429 8542 2802 63.1 MiB 0.17 0.00 4.28025 -135.791 -4.28025 4.28025 0.67 0.000710746 0.000659044 0.0645845 0.0599933 36 2894 24 6.89349e+06 394628 648988. 2245.63 1.70 0.211616 0.185501 26050 158493 -1 2401 18 1433 2202 145554 32451 3.6091 3.6091 -131.979 -3.6091 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0254733 0.0221865 162 61 58 30 58 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 6.20 vpr 63.20 MiB 0.02 7116 -1 -1 1 0.04 -1 -1 30520 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 407 319 1 260 92 17 17 289 -1 unnamed_device 24.3 MiB 1.34 1373 17066 5393 8866 2807 63.2 MiB 0.19 0.00 5.03124 -168.563 -5.03124 5.03124 0.65 0.000771233 0.000715691 0.0662816 0.0615148 34 3693 35 6.89349e+06 394628 618332. 2139.56 2.07 0.235689 0.20599 25762 151098 -1 2740 22 2222 3059 251636 53797 4.29915 4.29915 -158.747 -4.29915 0 0 787024. 2723.27 0.20 0.10 0.14 -1 -1 0.20 0.0321644 0.0278831 173 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 6.03 vpr 63.36 MiB 0.03 7120 -1 -1 1 0.03 -1 -1 30448 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 24.5 MiB 1.65 1418 13147 3928 7969 1250 63.4 MiB 0.14 0.00 3.78872 -134.171 -3.78872 3.78872 0.65 0.000773749 0.000718387 0.0523408 0.0485918 34 3370 23 6.89349e+06 380534 618332. 2139.56 1.58 0.204366 0.178316 25762 151098 -1 2925 21 1983 2746 211273 47183 3.17981 3.17981 -134.108 -3.17981 0 0 787024. 2723.27 0.25 0.09 0.13 -1 -1 0.25 0.0316773 0.0276089 175 65 63 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 5.10 vpr 62.51 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30564 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 29 32 287 238 1 178 82 17 17 289 -1 unnamed_device 24.0 MiB 1.22 802 14322 5252 6511 2559 62.5 MiB 0.12 0.00 3.809 -119.785 -3.809 3.809 0.66 0.000599199 0.000557055 0.0497353 0.0462152 34 2019 23 6.89349e+06 295971 618332. 2139.56 1.30 0.168639 0.147509 25762 151098 -1 1751 19 1425 1879 137804 30801 3.26411 3.26411 -118.076 -3.26411 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.022427 0.0194646 118 34 58 29 29 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 5.27 vpr 62.84 MiB 0.03 6992 -1 -1 1 0.03 -1 -1 30072 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 334 290 1 223 84 17 17 289 -1 unnamed_device 24.2 MiB 0.99 1059 7038 1561 5080 397 62.8 MiB 0.08 0.00 4.31213 -129.707 -4.31213 4.31213 0.67 0.000689935 0.000643465 0.0278587 0.0259047 34 2689 32 6.89349e+06 281877 618332. 2139.56 1.60 0.165497 0.142971 25762 151098 -1 2148 17 1344 1631 108759 26640 3.7788 3.7788 -131.06 -3.7788 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0228659 0.0199174 136 82 0 0 82 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 6.02 vpr 63.19 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30428 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 31 32 365 281 1 225 87 17 17 289 -1 unnamed_device 24.5 MiB 1.24 1144 15255 6301 7544 1410 63.2 MiB 0.15 0.00 4.60015 -151.135 -4.60015 4.60015 0.71 0.000724668 0.000673279 0.06073 0.0565168 36 2816 23 6.89349e+06 338252 648988. 2245.63 1.86 0.204606 0.179496 26050 158493 -1 2145 19 1764 2558 160669 37103 3.92066 3.92066 -143.869 -3.92066 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0269208 0.0234775 154 34 93 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 5.03 vpr 62.59 MiB 0.03 6948 -1 -1 1 0.03 -1 -1 30496 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 29 32 297 254 1 193 82 17 17 289 -1 unnamed_device 23.9 MiB 1.09 955 13610 4945 6467 2198 62.6 MiB 0.12 0.00 3.4839 -106.878 -3.4839 3.4839 0.67 0.00060445 0.000561901 0.0487858 0.0453608 34 2297 24 6.89349e+06 295971 618332. 2139.56 1.31 0.168695 0.147071 25762 151098 -1 1931 18 1315 1515 115667 26473 3.1574 3.1574 -109.197 -3.1574 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0214843 0.0186098 123 56 29 29 52 26 +fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 5.94 vpr 62.61 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 30272 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 314 256 1 194 82 17 17 289 -1 unnamed_device 24.1 MiB 1.65 1000 12186 3922 6390 1874 62.6 MiB 0.12 0.00 3.839 -135.657 -3.839 3.839 0.67 0.0006523 0.000605655 0.0467834 0.0434786 34 2613 22 6.89349e+06 253689 618332. 2139.56 1.58 0.17476 0.15239 25762 151098 -1 2132 22 1891 2640 232575 48135 3.10751 3.10751 -128.9 -3.10751 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0267946 0.0232994 127 34 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 6.38 vpr 63.18 MiB 0.02 7012 -1 -1 1 0.05 -1 -1 30448 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 31 32 387 307 1 242 90 17 17 289 -1 unnamed_device 24.4 MiB 1.64 1201 16773 5048 9300 2425 63.2 MiB 0.18 0.00 4.20938 -143.511 -4.20938 4.20938 0.72 0.000751088 0.000697637 0.0707558 0.0657831 36 2859 23 6.89349e+06 380534 648988. 2245.63 1.91 0.222262 0.195433 26050 158493 -1 2419 22 2190 3082 242995 52192 3.64895 3.64895 -144.415 -3.64895 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.031477 0.0274093 164 64 58 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 5.20 vpr 62.47 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30272 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 31 32 308 262 1 196 84 17 17 289 -1 unnamed_device 23.9 MiB 1.27 877 7953 1966 5579 408 62.5 MiB 0.08 0.00 3.31212 -108.619 -3.31212 3.31212 0.63 0.000627417 0.000584103 0.0293072 0.0272561 34 2321 22 6.89349e+06 295971 618332. 2139.56 1.34 0.153871 0.133352 25762 151098 -1 1901 18 1276 1570 111572 25912 3.01256 3.01256 -113.321 -3.01256 0 0 787024. 2723.27 0.20 0.06 0.10 -1 -1 0.20 0.0223677 0.019471 125 55 31 31 53 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 6.08 vpr 63.14 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30456 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 383 307 1 242 89 17 17 289 -1 unnamed_device 24.4 MiB 1.47 1287 17711 6388 9306 2017 63.1 MiB 0.19 0.00 4.20729 -140.905 -4.20729 4.20729 0.67 0.000575323 0.000526356 0.0654438 0.0603268 34 3044 21 6.89349e+06 352346 618332. 2139.56 1.81 0.211317 0.185098 25762 151098 -1 2560 20 1544 2234 213895 43178 3.5641 3.5641 -135.638 -3.5641 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0284906 0.0248235 162 65 52 26 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 6.69 vpr 63.29 MiB 0.03 7188 -1 -1 1 0.03 -1 -1 30380 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64804 31 32 422 339 1 277 94 17 17 289 -1 unnamed_device 24.6 MiB 1.63 1441 16921 4862 9627 2432 63.3 MiB 0.18 0.00 5.00842 -163.951 -5.00842 5.00842 0.68 0.000794888 0.000737576 0.0661728 0.0612932 36 3492 23 6.89349e+06 436909 648988. 2245.63 2.25 0.225335 0.197201 26050 158493 -1 2891 24 2593 3646 269905 59430 4.16489 4.16489 -156.414 -4.16489 0 0 828058. 2865.25 0.21 0.11 0.14 -1 -1 0.21 0.0352343 0.0305635 185 93 31 31 92 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 6.62 vpr 62.87 MiB 0.03 6860 -1 -1 1 0.03 -1 -1 30480 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 333 279 1 216 85 17 17 289 -1 unnamed_device 24.2 MiB 2.34 1150 11245 3095 6987 1163 62.9 MiB 0.11 0.00 3.53115 -123.245 -3.53115 3.53115 0.67 0.000663854 0.000615866 0.0421587 0.0391318 34 2943 19 6.89349e+06 295971 618332. 2139.56 1.68 0.172017 0.149719 25762 151098 -1 2393 17 1450 1984 143036 31845 3.10156 3.10156 -121.146 -3.10156 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0224854 0.0196273 137 61 32 32 60 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 5.59 vpr 62.94 MiB 0.03 6968 -1 -1 1 0.03 -1 -1 30096 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 339 283 1 218 84 17 17 289 -1 unnamed_device 24.3 MiB 1.18 1121 13443 3684 8167 1592 62.9 MiB 0.14 0.00 3.817 -131.483 -3.817 3.817 0.67 0.000682202 0.000634343 0.0513523 0.0476972 34 2949 27 6.89349e+06 281877 618332. 2139.56 1.69 0.189867 0.166386 25762 151098 -1 2392 21 1570 1870 159181 34078 3.24886 3.24886 -128.122 -3.24886 0 0 787024. 2723.27 0.20 0.04 0.09 -1 -1 0.20 0.0146559 0.0129044 139 63 32 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 5.79 vpr 63.17 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30728 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.3 MiB 1.29 1272 13147 3375 7731 2041 63.2 MiB 0.13 0.00 4.61515 -160.202 -4.61515 4.61515 0.67 0.000777982 0.000722589 0.0523372 0.0486044 36 3093 23 6.89349e+06 380534 648988. 2245.63 1.74 0.208077 0.181763 26050 158493 -1 2636 20 2063 2521 193357 41596 3.88486 3.88486 -153.502 -3.88486 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0297772 0.0259352 178 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 5.28 vpr 62.97 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30540 -1 -1 26 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 29 32 367 293 1 231 87 17 17 289 -1 unnamed_device 24.2 MiB 1.57 1161 15639 4794 8641 2204 63.0 MiB 0.16 0.00 3.67945 -117.378 -3.67945 3.67945 0.66 0.000714878 0.000664131 0.0604291 0.0561476 30 2520 23 6.89349e+06 366440 556674. 1926.21 0.93 0.14709 0.130266 25186 138497 -1 1989 19 1450 1920 111005 25802 2.84786 2.84786 -111.673 -2.84786 0 0 706193. 2443.58 0.20 0.06 0.12 -1 -1 0.20 0.0263567 0.0229532 157 62 56 29 58 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 6.16 vpr 63.41 MiB 0.03 7284 -1 -1 1 0.04 -1 -1 30624 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 469 381 1 315 93 17 17 289 -1 unnamed_device 24.7 MiB 1.26 1517 16893 4857 9388 2648 63.4 MiB 0.18 0.00 4.97404 -168.093 -4.97404 4.97404 0.68 0.000862907 0.000802851 0.0726144 0.0674697 36 3623 47 6.89349e+06 408721 648988. 2245.63 1.95 0.271562 0.236577 26050 158493 -1 3156 22 2673 3071 248178 52666 4.42455 4.42455 -165.65 -4.42455 0 0 828058. 2865.25 0.24 0.10 0.14 -1 -1 0.24 0.0352143 0.0305116 203 127 0 0 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 3.94 vpr 62.39 MiB 0.03 6860 -1 -1 1 0.03 -1 -1 30436 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 23.7 MiB 0.54 803 5149 1186 3599 364 62.4 MiB 0.06 0.00 2.99217 -104.791 -2.99217 2.99217 0.66 0.000579995 0.00053995 0.0189923 0.0176763 30 2012 19 6.89349e+06 225501 556674. 1926.21 0.83 0.0848815 0.074009 25186 138497 -1 1603 22 963 1634 103346 23619 2.56431 2.56431 -108.433 -2.56431 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0235743 0.0204233 104 4 85 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 6.11 vpr 63.33 MiB 0.05 7080 -1 -1 1 0.04 -1 -1 30320 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 418 338 1 273 92 17 17 289 -1 unnamed_device 24.4 MiB 1.47 1396 18101 5815 9868 2418 63.3 MiB 0.18 0.00 5.41163 -177.078 -5.41163 5.41163 0.65 0.000790206 0.000734033 0.0713302 0.0661524 34 3746 48 6.89349e+06 394628 618332. 2139.56 1.81 0.254653 0.222124 25762 151098 -1 2832 22 2354 3065 225336 49285 4.79744 4.79744 -173.538 -4.79744 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.0346148 0.0300479 179 92 28 28 92 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 7.39 vpr 63.10 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30208 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 376 318 1 259 88 17 17 289 -1 unnamed_device 24.4 MiB 1.96 1193 17248 5142 9796 2310 63.1 MiB 0.17 0.00 4.89074 -162.672 -4.89074 4.89074 0.68 0.000715418 0.000663996 0.0659456 0.0611808 36 3213 26 6.89349e+06 338252 648988. 2245.63 2.61 0.215899 0.189306 26050 158493 -1 2595 22 2546 3207 264163 56603 4.16159 4.16159 -158.769 -4.16159 0 0 828058. 2865.25 0.21 0.12 0.14 -1 -1 0.21 0.0353093 0.0306815 161 96 0 0 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 5.67 vpr 63.15 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30312 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 401 316 1 253 89 17 17 289 -1 unnamed_device 24.3 MiB 1.54 1163 10187 2742 6187 1258 63.1 MiB 0.12 0.00 3.75965 -128.904 -3.75965 3.75965 0.66 0.000765216 0.000710701 0.0427696 0.0397187 34 3025 27 6.89349e+06 352346 618332. 2139.56 1.47 0.198324 0.17252 25762 151098 -1 2491 19 1597 2189 181128 38779 3.2337 3.2337 -127.372 -3.2337 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0286161 0.0249786 170 65 61 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 6.93 vpr 63.37 MiB 0.05 7312 -1 -1 1 0.04 -1 -1 30924 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 500 382 1 323 97 17 17 289 -1 unnamed_device 24.9 MiB 1.50 1578 21409 7235 11132 3042 63.4 MiB 0.24 0.00 5.18464 -176.869 -5.18464 5.18464 0.65 0.000904094 0.000839176 0.0913222 0.0847569 36 3817 25 6.89349e+06 465097 648988. 2245.63 2.47 0.271983 0.238701 26050 158493 -1 3239 23 2994 3556 290956 61778 4.88125 4.88125 -179.725 -4.88125 0 0 828058. 2865.25 0.31 0.10 0.14 -1 -1 0.31 0.0377031 0.0327356 224 96 64 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 4.73 vpr 62.16 MiB 0.04 6780 -1 -1 1 0.03 -1 -1 30292 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63648 30 32 246 229 1 160 78 17 17 289 -1 unnamed_device 23.5 MiB 0.98 774 12860 4018 7384 1458 62.2 MiB 0.10 0.00 3.08706 -94.2237 -3.08706 3.08706 0.66 0.000538033 0.000501127 0.0429908 0.0399963 34 1779 20 6.89349e+06 225501 618332. 2139.56 1.18 0.14515 0.1267 25762 151098 -1 1561 15 687 705 51265 12169 2.43936 2.43936 -93.3328 -2.43936 0 0 787024. 2723.27 0.20 0.04 0.11 -1 -1 0.20 0.0164764 0.0143541 93 56 0 0 53 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 5.05 vpr 62.50 MiB 0.05 6916 -1 -1 1 0.03 -1 -1 30384 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 30 32 296 244 1 181 83 17 17 289 -1 unnamed_device 23.9 MiB 1.06 936 13763 4663 7110 1990 62.5 MiB 0.12 0.00 4.23979 -138.497 -4.23979 4.23979 0.65 0.00062033 0.000577311 0.0493624 0.0459567 34 2090 22 6.89349e+06 295971 618332. 2139.56 1.34 0.170095 0.148815 25762 151098 -1 1767 23 1644 2455 174843 39582 3.62805 3.62805 -135.745 -3.62805 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0267058 0.0231481 124 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 6.85 vpr 62.80 MiB 0.04 6788 -1 -1 1 0.03 -1 -1 30084 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 314 256 1 199 82 17 17 289 -1 unnamed_device 24.1 MiB 1.97 1009 8448 2021 6048 379 62.8 MiB 0.10 0.00 4.33609 -148.866 -4.33609 4.33609 0.67 0.000651327 0.000605289 0.0330376 0.0307111 36 2726 23 6.89349e+06 253689 648988. 2245.63 2.17 0.162991 0.141553 26050 158493 -1 2244 23 1750 3033 226759 49740 3.981 3.981 -153.41 -3.981 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0277595 0.0240871 129 34 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 4.99 vpr 62.28 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30396 -1 -1 24 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63772 25 32 251 214 1 162 81 17 17 289 -1 unnamed_device 23.9 MiB 1.11 636 10231 2621 6138 1472 62.3 MiB 0.09 0.00 3.787 -96.2626 -3.787 3.787 0.65 0.000532951 0.00049636 0.0326782 0.0303697 34 1789 21 6.89349e+06 338252 618332. 2139.56 1.29 0.13608 0.117899 25762 151098 -1 1441 21 1055 1429 95864 23033 3.07751 3.07751 -97.8095 -3.07751 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0214047 0.0184975 107 34 50 25 25 25 +fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 7.26 vpr 63.37 MiB 0.04 7112 -1 -1 1 0.04 -1 -1 30512 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 432 346 1 288 92 17 17 289 -1 unnamed_device 24.7 MiB 2.32 1453 17273 5845 8574 2854 63.4 MiB 0.19 0.00 4.55715 -154.068 -4.55715 4.55715 0.65 0.000623687 0.00057108 0.0635065 0.0586403 38 3543 25 6.89349e+06 394628 678818. 2348.85 1.99 0.225873 0.197435 26626 170182 -1 2910 22 2580 3748 276062 57948 3.99116 3.99116 -151.47 -3.99116 0 0 902133. 3121.57 0.23 0.11 0.17 -1 -1 0.23 0.0344365 0.0299281 190 94 32 32 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 6.30 vpr 63.44 MiB 0.03 7164 -1 -1 1 0.03 -1 -1 30460 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 31 32 421 339 1 274 90 17 17 289 -1 unnamed_device 24.8 MiB 1.74 1285 13758 3623 8223 1912 63.4 MiB 0.15 0.00 4.84654 -156.987 -4.84654 4.84654 0.66 0.000781438 0.000725232 0.0564222 0.0523852 34 3577 46 6.89349e+06 380534 618332. 2139.56 1.80 0.236814 0.206271 25762 151098 -1 2901 28 2703 3702 321887 69079 4.64999 4.64999 -160.617 -4.64999 0 0 787024. 2723.27 0.20 0.13 0.13 -1 -1 0.20 0.0408528 0.0354271 183 94 29 29 93 31 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor/config/golden_results.txt index eefbc507b7b..ff1ef00e2e0 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor/config/golden_results.txt @@ -1,21 +1,21 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - k6_frac_N10_mem32K_40nm.xml arm_core.v common 331.07 vpr 251.66 MiB -1 -1 25.50 124384 25 62.05 -1 -1 71304 -1 -1 880 133 24 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 257704 133 179 13858 14037 1 6950 1216 37 37 1369 clb auto 143.3 MiB 29.86 119218 177.3 MiB 12.28 0.11 16.8221 -179760 -16.8221 16.8221 4.91 0.024897 0.0207667 2.90686 2.39692 110 181688 23 7.54166e+07 6.05797e+07 9.46594e+06 6914.49 164.62 12.278 10.2454 198012 2024479 -1 167445 16 32465 129313 40479102 9786367 0 0 40479102 9786367 115993 45293 0 0 580867 550454 0 0 660336 587183 0 0 121987 50528 0 0 19595899 4258999 0 0 19404020 4293910 0 0 115993 0 0 86620 709493 724472 3800525 15352 1371 18.8069 18.8069 -201662 -18.8069 -3.34957 -0.292146 1.20852e+07 8827.75 3.43 9.51 1.60 -1 -1 3.43 1.3884 1.25149 8205 9816 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml bgm.v common 89.62 parmys 237.31 MiB -1 -1 41.41 243004 13 14.02 -1 -1 50952 -1 -1 277 257 0 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 103792 257 32 5061 5093 1 2823 566 22 22 484 clb auto 64.4 MiB 5.16 19037 101.4 MiB 3.13 0.04 7.532 -3426.62 -7.532 7.532 1.94 0.0123415 0.0105706 0.80791 0.674211 56 32869 21 2.50602e+07 1.49286e+07 1.74986e+06 3615.40 10.88 3.4558 2.95808 51906 351851 -1 29754 17 11898 37468 1183057 228527 0 0 1183057 228527 37468 19736 0 0 47877 37914 0 0 71573 47920 0 0 39706 22568 0 0 492365 49512 0 0 494068 50877 0 0 37468 0 0 25613 47612 52102 367949 0 0 9.01859 9.01859 -3986.46 -9.01859 0 0 2.23304e+06 4613.71 0.93 0.85 0.38 -1 -1 0.93 0.540476 0.495183 2580 2832 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml blob_merge.v common 120.58 parmys 299.75 MiB -1 -1 15.30 306944 7 21.06 -1 -1 60652 -1 -1 566 36 0 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 139692 36 100 6840 6940 1 3200 702 30 30 900 clb auto 89.6 MiB 5.40 43736 126.5 MiB 6.37 0.07 5.10014 -2014.54 -5.10014 5.10014 4.21 0.018015 0.0149433 1.87685 1.55304 64 69889 41 4.8774e+07 3.0504e+07 3.87092e+06 4301.02 50.73 7.47254 6.24453 103136 784142 -1 64679 16 15948 72029 3403089 438932 0 0 3403089 438932 72029 25148 0 0 94036 72494 0 0 135640 94181 0 0 76795 27067 0 0 1514903 112546 0 0 1509686 107496 0 0 72029 0 0 59140 565524 538368 3322403 0 0 5.75529 5.75529 -2266.15 -5.75529 0 0 4.83441e+06 5371.56 1.54 1.70 0.56 -1 -1 1.54 0.815596 0.745607 4872 6190 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml boundtop.v common 21.67 vpr 71.89 MiB -1 -1 12.93 34152 4 0.30 -1 -1 37684 -1 -1 42 195 1 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 73612 195 193 1088 1281 1 593 431 15 15 225 io auto 34.1 MiB 0.43 2826 71.9 MiB 0.73 0.01 2.15453 -959.938 -2.15453 2.15453 0.65 0.00217983 0.0019678 0.200591 0.18107 38 5989 23 1.03862e+07 2.81155e+06 544128. 2418.35 4.00 0.850141 0.770548 21038 109288 -1 5191 12 1628 2319 175678 46820 0 0 175678 46820 2319 1858 0 0 7726 7101 0 0 8410 7732 0 0 2424 1974 0 0 76777 14086 0 0 78022 14069 0 0 2319 0 0 697 2057 2073 14192 0 0 2.61515 2.61515 -1160.11 -2.61515 -0.438572 -0.179493 690492. 3068.85 0.30 0.14 0.13 -1 -1 0.30 0.0951135 0.0896374 347 525 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 3.64 vpr 68.38 MiB -1 -1 0.29 20884 3 0.10 -1 -1 36308 -1 -1 68 99 1 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 70020 99 130 343 473 1 225 298 12 12 144 clb auto 29.6 MiB 0.15 599 68.4 MiB 0.18 0.00 1.62851 -108.153 -1.62851 1.62851 0.30 0.000389295 0.000352612 0.0370537 0.0334683 36 1445 27 5.66058e+06 4.21279e+06 305235. 2119.69 1.37 0.264753 0.242377 12238 58442 -1 1263 12 429 686 37045 11418 0 0 37045 11418 686 536 0 0 1992 1802 0 0 2359 1992 0 0 742 603 0 0 15126 3546 0 0 16140 2939 0 0 686 0 0 257 388 336 2661 0 0 1.99752 1.99752 -139.829 -1.99752 -0.305022 -0.0771249 378970. 2631.74 0.14 0.04 0.07 -1 -1 0.14 0.0228981 0.0215011 144 96 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml diffeq1.v common 19.17 vpr 71.54 MiB -1 -1 0.45 26128 15 0.46 -1 -1 37944 -1 -1 36 162 0 5 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 73252 162 96 994 935 1 694 299 16 16 256 mult_36 auto 33.6 MiB 0.33 5116 71.5 MiB 0.63 0.01 20.0144 -1558.29 -20.0144 20.0144 0.79 0.00213179 0.00192593 0.198733 0.17979 56 12472 41 1.21132e+07 3.92018e+06 870502. 3400.40 13.34 1.23752 1.12808 26504 172068 -1 9597 21 3314 6473 1915300 561075 0 0 1915300 561075 6473 4257 0 0 79176 77413 0 0 83503 79536 0 0 7040 4760 0 0 876728 200002 0 0 862380 195107 0 0 6473 0 0 3187 9442 8998 50446 0 0 22.6342 22.6342 -1798.21 -22.6342 0 0 1.11200e+06 4343.75 0.43 0.58 0.18 -1 -1 0.43 0.134312 0.125165 337 478 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml diffeq2.v common 18.95 vpr 69.71 MiB -1 -1 0.40 24984 16 0.35 -1 -1 36572 -1 -1 27 66 0 5 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 71380 66 96 610 551 1 452 194 16 16 256 mult_36 auto 31.3 MiB 0.32 3619 69.7 MiB 0.36 0.01 15.7903 -878.673 -15.7903 15.7903 0.89 0.00193757 0.00177868 0.128858 0.117956 48 10126 49 1.21132e+07 3.43514e+06 756778. 2956.16 13.69 0.788738 0.723907 25228 149258 -1 7854 26 3671 8608 2818483 858811 0 0 2818483 858811 8608 5965 0 0 108541 106943 0 0 121330 109071 0 0 9356 6937 0 0 1320917 326126 0 0 1249731 303769 0 0 8608 0 0 4958 13474 13631 60359 0 0 18.1389 18.1389 -1039.1 -18.1389 0 0 968034. 3781.38 0.35 0.62 0.10 -1 -1 0.35 0.09051 0.084697 235 286 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml mkDelayWorker32B.v common 113.15 vpr 308.10 MiB -1 -1 12.81 128316 5 5.29 -1 -1 59960 -1 -1 460 506 47 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 315492 506 553 3055 3608 1 2790 1566 50 50 2500 memory auto 56.9 MiB 4.16 14964 308.1 MiB 6.93 0.07 7.09624 -1748.49 -7.09624 7.09624 34.52 0.0153364 0.0138158 2.10618 1.87565 38 22686 16 1.47946e+08 5.05479e+07 6.86584e+06 2746.33 22.84 6.59621 6.03313 251304 1421084 -1 21885 15 3661 4728 3459647 869150 0 0 3459647 869150 4455 4205 0 0 94514 93340 0 0 97140 94966 0 0 4690 4289 0 0 1636782 331137 0 0 1622066 341213 0 0 4455 0 0 799 10716 7260 15887 378 1167 7.95918 7.95918 -2103 -7.95918 -5.50836 -0.295467 8.69095e+06 3476.38 4.95 1.61 1.52 -1 -1 4.95 0.775133 0.711026 953 407 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml mkPktMerge.v common 19.71 vpr 73.59 MiB -1 -1 1.24 28416 2 0.16 -1 -1 37268 -1 -1 27 311 15 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 75356 311 156 972 1128 1 953 509 28 28 784 memory auto 35.4 MiB 0.61 8908 73.6 MiB 1.08 0.01 3.91091 -4218.66 -3.91091 3.91091 2.84 0.00230926 0.00200984 0.359046 0.308642 40 15717 19 4.25198e+07 9.67514e+06 1.94918e+06 2486.20 7.22 1.34863 1.19471 74338 387760 -1 14542 14 3080 3479 2680140 773137 0 0 2680140 773137 3479 3217 0 0 83837 82957 0 0 85441 84103 0 0 3518 3281 0 0 1254782 296821 0 0 1249083 302758 0 0 3479 0 0 399 2545 2929 12232 0 0 4.23237 4.23237 -5056.72 -4.23237 -15.8076 -0.339827 2.88571e+06 3375 1.04 0.88 0.29 -1 -1 1.04 0.17844 0.164245 109 172 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml mkSMAdapter4B.v common 31.43 vpr 80.86 MiB -1 -1 5.88 58256 7 3.39 -1 -1 40880 -1 -1 153 193 5 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 82800 193 205 2152 2357 1 1161 556 20 20 400 memory auto 43.4 MiB 1.94 8943 80.9 MiB 1.66 0.02 4.78473 -2696.64 -4.78473 4.78473 1.53 0.00400297 0.0034052 0.472395 0.410113 48 16781 24 2.07112e+07 1.09858e+07 1.23055e+06 3076.38 11.24 1.93493 1.69409 40448 245963 -1 14742 16 4328 10873 1200255 281400 0 0 1200255 281400 10461 6031 0 0 40538 37788 0 0 45332 40719 0 0 11069 6828 0 0 547455 95851 0 0 545400 94183 0 0 10461 0 0 6311 23915 22852 163514 486 39 5.16776 5.16776 -3186.51 -5.16776 -5.4156 -0.29768 1.57502e+06 3937.55 0.75 0.54 0.30 -1 -1 0.75 0.239954 0.221467 947 1120 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml or1200.v common 89.48 vpr 115.21 MiB -1 -1 4.85 69064 27 5.97 -1 -1 45296 -1 -1 251 385 2 1 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 117980 385 394 3884 4215 1 2355 1033 27 27 729 io auto 59.1 MiB 3.65 30973 96.2 MiB 6.03 0.06 13.1188 -12463.4 -13.1188 13.1188 3.21 0.0109579 0.0097997 1.35065 1.18507 80 49382 38 3.93038e+07 1.50194e+07 3.74040e+06 5130.86 51.71 5.72447 5.12141 91129 774047 -1 43968 14 9967 34459 2922044 557916 0 0 2922044 557916 33383 13994 0 0 74658 66867 0 0 93740 74784 0 0 34958 16026 0 0 1347423 190400 0 0 1337882 195845 0 0 33383 0 0 23997 107693 110664 651095 1126 170 15.0745 15.0745 -14171.5 -15.0745 0 0 4.71674e+06 6470.15 2.20 1.38 0.96 -1 -1 2.20 0.569131 0.530093 2220 2691 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml raygentop.v common 33.96 vpr 83.09 MiB -1 -1 3.94 47416 8 1.08 -1 -1 42200 -1 -1 116 235 1 6 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 85080 235 305 2594 2755 1 1443 663 19 19 361 io auto 45.4 MiB 1.74 11728 83.1 MiB 1.71 0.03 4.56197 -2459.7 -4.56197 4.56197 1.02 0.00514274 0.00446085 0.426807 0.379367 60 24673 37 1.72706e+07 9.1757e+06 1.37250e+06 3801.94 16.44 2.37913 2.12622 39239 274781 -1 20375 14 5989 16204 2539325 570437 0 0 2539325 570437 16204 9559 0 0 98499 94860 0 0 105825 98612 0 0 17294 10778 0 0 1155691 177930 0 0 1145812 178698 0 0 16204 0 0 10307 33334 32584 209541 0 0 4.97453 4.97453 -2881.32 -4.97453 -4.68518 -0.168146 1.72845e+06 4787.94 0.71 0.85 0.31 -1 -1 0.71 0.273433 0.254423 1038 1288 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml sha.v common 24.93 vpr 83.68 MiB -1 -1 2.44 49324 21 3.11 -1 -1 42448 -1 -1 149 38 0 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 85688 38 36 2570 2606 1 1074 223 17 17 289 clb auto 46.5 MiB 1.66 9514 83.7 MiB 0.74 0.01 12.4644 -2393.4 -12.4644 12.4644 1.02 0.00481272 0.00415747 0.300222 0.253292 48 16665 38 1.34605e+07 8.03021e+06 864508. 2991.38 7.21 1.51678 1.30377 28519 171069 -1 13641 14 4140 12331 398989 73362 0 0 398989 73362 10963 5247 0 0 16034 12603 0 0 20718 16034 0 0 11418 5863 0 0 174349 16137 0 0 165507 17478 0 0 10963 0 0 7027 33342 33275 197050 1783 212 14.5478 14.5478 -2910.6 -14.5478 0 0 1.10659e+06 3829.03 0.48 0.38 0.19 -1 -1 0.48 0.276267 0.253697 1458 1647 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml stereovision0.v common 164.71 vpr 218.30 MiB -1 -1 10.05 121516 5 61.88 -1 -1 68980 -1 -1 744 169 0 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 223544 169 197 21166 21363 1 7142 1110 34 34 1156 clb auto 152.3 MiB 10.44 46165 184.9 MiB 9.27 0.06 3.01927 -12729.8 -3.01927 3.01927 5.26 0.0167966 0.0137124 2.80423 2.30907 56 70282 24 6.50233e+07 4.00974e+07 4.37687e+06 3786.22 40.15 12.3035 10.3507 127124 890184 -1 65055 15 20021 32399 1255132 239317 0 0 1255132 239317 30131 21962 0 0 44899 34059 0 0 60291 44951 0 0 30916 22999 0 0 543661 57588 0 0 545234 57758 0 0 30131 0 0 10297 45427 47407 259322 2718 1311 3.57211 3.57211 -15077.5 -3.57211 0 0 5.58150e+06 4828.29 2.89 1.93 0.81 -1 -1 2.89 1.75263 1.60445 7006 9645 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml stereovision1.v common 250.30 vpr 242.63 MiB -1 -1 11.90 136124 6 24.83 -1 -1 72356 -1 -1 757 113 0 44 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 248456 113 145 21669 19534 1 9921 1059 40 40 1600 mult_36 auto 155.2 MiB 11.02 84966 189.9 MiB 13.52 0.12 5.13703 -21640.5 -5.13703 5.13703 6.10 0.0254963 0.0205479 3.55014 2.96238 80 136248 32 9.16046e+07 5.82227e+07 8.41679e+06 5260.49 144.01 13.5423 11.5404 201376 1751416 -1 121716 14 32286 54656 25487611 4986490 0 0 25487611 4986490 49794 37559 0 0 615639 601806 0 0 643432 616200 0 0 50968 38944 0 0 11616420 1869516 0 0 12511358 1822465 0 0 49794 0 0 18185 237271 200073 850021 5397 6870 5.33749 5.33749 -24758.4 -5.33749 0 0 1.06125e+07 6632.80 3.78 5.71 1.37 -1 -1 3.78 1.34153 1.23692 7327 9008 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml stereovision2.v common 1056.65 vpr 943.41 MiB -1 -1 31.50 331100 16 133.21 -1 -1 135988 -1 -1 1888 149 0 179 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 966048 149 182 46684 38970 1 28472 2398 80 80 6400 mult_36 auto 332.0 MiB 31.28 393214 899.7 MiB 42.95 0.32 15.9487 -50914 -15.9487 15.9487 71.15 0.0597852 0.0512421 7.37159 6.33625 110 515126 25 3.90281e+08 1.72634e+08 4.62465e+07 7226.02 649.24 29.7808 25.664 947776 10037526 -1 486806 15 92407 154782 52999200 10768095 0 0 52999200 10768095 149927 105762 0 0 1007198 962859 0 0 1079400 1010284 0 0 156232 110440 0 0 25404625 4221842 0 0 25201818 4356908 0 0 149927 0 0 57676 219177 213704 847726 5290 6377 17.987 17.987 -58723 -17.987 0 0 5.90184e+07 9221.63 21.20 12.07 7.35 -1 -1 21.20 2.78895 2.56434 17776 23295 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml stereovision3.v common 9.25 vpr 66.33 MiB -1 -1 0.57 25160 5 0.11 -1 -1 37068 -1 -1 7 10 0 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 67924 10 2 181 183 1 37 19 6 6 36 clb auto 27.9 MiB 0.06 131 66.3 MiB 0.01 0.00 1.93751 -82.3688 -1.93751 1.93751 0.04 0.000169238 0.000130915 0.00259954 0.0023627 20 190 13 646728 377258 34888.9 969.136 0.07 0.0130989 0.012017 2216 6354 -1 156 6 69 100 1591 585 0 0 1591 585 100 81 0 0 139 100 0 0 155 139 0 0 105 85 0 0 632 70 0 0 460 110 0 0 100 0 0 31 29 32 280 0 0 2.0211 2.0211 -91.3362 -2.0211 0 0 45676.2 1268.78 0.01 0.01 0.01 -1 -1 0.01 0.00803925 0.00765069 52 88 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml LU8PEEng.v common 466.95 vpr 445.93 MiB -1 -1 59.63 335624 122 82.28 -1 -1 81980 -1 -1 1335 114 45 8 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 456628 114 102 21867 21777 1 11032 1604 50 50 2500 memory auto 208.8 MiB 26.32 155124 406.2 MiB 24.67 0.19 67.5178 -51175 -67.5178 67.5178 25.42 0.0453485 0.0387181 5.09578 4.21828 94 232477 22 1.47946e+08 9.97789e+07 1.55181e+07 6207.23 193.62 18.9489 15.9124 341268 3271592 -1 212120 19 40727 161630 45058607 10746751 0 0 45058607 10746751 154686 53843 0 0 613506 564597 0 0 724880 621333 0 0 160007 63242 0 0 21674885 4640633 0 0 21730643 4803103 0 0 154686 0 0 116598 469846 457812 2910250 7265 5157 79.6938 79.6938 -67331.5 -79.6938 -4.63469 -0.293253 1.95446e+07 7817.85 6.28 12.61 2.37 -1 -1 6.28 2.32899 2.05913 12499 14088 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml LU32PEEng.v common 2140.54 vpr 1.57 GiB -1 -1 186.04 998368 121 513.06 -1 -1 235996 -1 -1 4471 114 168 32 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 1642344 114 102 72397 71731 1 37195 4887 92 92 8464 memory auto 651.9 MiB 64.23 725538 1324.1 MiB 147.06 0.93 69.2775 -297336 -69.2775 69.2775 77.41 0.112838 0.0964397 15.7361 13.0779 124 963655 20 5.19428e+08 3.45674e+08 6.83823e+07 8079.19 962.28 58.8085 49.5209 1330926 14951874 -1 905364 20 130555 572169 232286285 61691524 0 0 232286285 61691524 524807 160878 0 0 2225561 2059152 0 0 2651212 2247498 0 0 539806 190687 0 0 112394185 27988380 0 0 113950714 29044929 0 0 524807 0 0 403174 2369250 2339003 11512966 48866 136531 80.1891 80.1891 -428654 -80.1891 -29.9739 -0.29436 8.66909e+07 10242.3 26.17 61.95 11.56 -1 -1 26.17 7.33236 6.54016 42436 46992 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml mcml.v common 3520.65 vpr 1.45 GiB -1 -1 414.23 1375900 63 2354.27 -1 -1 351976 -1 -1 4791 36 159 27 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 1517048 36 356 125074 123859 1 31592 5369 92 92 8464 memory auto 848.1 MiB 44.56 386934 1462.7 MiB 88.58 0.54 58.3963 -256243 -58.3963 58.3963 70.20 0.102126 0.0862249 15.2881 12.8959 78 552717 29 5.19428e+08 3.56007e+08 4.53556e+07 5358.65 392.74 50.871 43.3978 1077038 9588492 -1 516113 20 107011 333616 86438658 20655757 0 0 86438658 20655757 293838 140032 0 0 1564305 1471314 0 0 1739818 1576025 0 0 305295 159752 0 0 41379355 8551879 0 0 41156047 8756755 0 0 293838 0 0 189249 879941 879963 3765557 42162 383411 65.7748 65.7748 -332915 -65.7748 -0.225514 -0.0292962 5.73940e+07 6780.95 18.07 21.16 6.08 -1 -1 18.07 7.29225 6.61107 46619 73802 -1 -1 -1 -1 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +k6_frac_N10_mem32K_40nm.xml arm_core.v common 280.20 vpr 257.79 MiB -1 -1 25.75 122844 25 38.75 -1 -1 67596 -1 -1 880 133 24 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 263980 133 179 13858 14037 1 6950 1216 37 37 1369 clb auto 139.2 MiB 38.72 121109 624064 206086 398117 19861 181.0 MiB 12.25 0.12 18.1031 -192864 -18.1031 18.1031 3.43 0.0372554 0.0323182 4.18441 3.50112 110 190128 48 7.54166e+07 6.05797e+07 9.46594e+06 6914.49 136.75 18.0878 15.0006 198012 2024479 -1 169999 16 34106 138688 11533618 1984932 18.7961 18.7961 -198290 -18.7961 -1.49014 -0.292146 1.20852e+07 8827.75 3.07 4.13 1.84 -1 -1 3.07 1.65134 1.45084 8205 9816 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml bgm.v common 81.05 parmys 231.22 MiB -1 -1 42.19 236768 13 8.21 -1 -1 47672 -1 -1 277 257 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 99912 257 32 5061 5093 1 2823 566 22 22 484 clb auto 60.3 MiB 4.06 19462 199466 58246 130455 10765 97.6 MiB 2.58 0.03 8.83591 -3915.72 -8.83591 8.83591 1.08 0.0115025 0.00994773 1.03584 0.908806 58 32389 32 2.50602e+07 1.49286e+07 1.81652e+06 3753.13 13.19 4.54237 3.95427 52870 368945 -1 28855 15 10906 34558 982071 189322 9.64046 9.64046 -3932.02 -9.64046 0 0 2.31597e+06 4785.06 0.53 0.76 0.31 -1 -1 0.53 0.488917 0.443615 2580 2833 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml blob_merge.v common 89.76 parmys 291.04 MiB -1 -1 15.38 298020 7 11.99 -1 -1 57968 -1 -1 566 36 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 163404 36 100 6840 6940 1 3200 702 30 30 900 clb auto 85.5 MiB 4.42 44186 278204 76945 183206 18053 122.5 MiB 4.81 0.05 5.85686 -2192.32 -5.85686 5.85686 2.38 0.0180181 0.0160503 1.85784 1.60892 68 71187 28 4.8774e+07 3.0504e+07 4.08678e+06 4540.87 35.59 8.94537 7.61686 104936 820930 -1 63255 15 15176 68305 3028418 384879 6.04948 6.04948 -2275.21 -6.04948 0 0 5.07014e+06 5633.48 1.15 1.64 0.67 -1 -1 1.15 0.867118 0.785571 4872 6243 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml boundtop.v common 19.71 vpr 67.77 MiB -1 -1 12.00 31536 4 0.23 -1 -1 34556 -1 -1 42 195 1 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69400 195 193 1088 1281 1 593 431 15 15 225 io auto 29.8 MiB 0.40 2789 140353 37684 89836 12833 67.8 MiB 0.68 0.01 2.5026 -1068.95 -2.5026 2.5026 0.45 0.0035004 0.00326724 0.318219 0.29679 42 5940 17 1.03862e+07 2.81155e+06 589524. 2620.11 3.76 1.43455 1.31489 21486 116796 -1 5209 12 1582 2286 164748 45289 2.70224 2.70224 -1159.85 -2.70224 -0.575265 -0.201936 739091. 3284.85 0.16 0.16 0.11 -1 -1 0.16 0.112943 0.105183 347 531 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 3.90 vpr 64.06 MiB -1 -1 0.34 18776 3 0.09 -1 -1 33160 -1 -1 68 99 1 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65600 99 130 343 473 1 225 298 12 12 144 clb auto 25.6 MiB 0.15 593 66963 19571 35031 12361 64.1 MiB 0.23 0.00 1.865 -117.456 -1.865 1.865 0.27 0.00127756 0.00120824 0.0904413 0.0855813 42 1503 16 5.66058e+06 4.21279e+06 345702. 2400.71 1.53 0.430255 0.394458 12810 66778 -1 1212 8 350 556 27894 7863 2.02345 2.02345 -142.963 -2.02345 -0.458472 -0.106489 434679. 3018.61 0.09 0.04 0.07 -1 -1 0.09 0.0281257 0.026127 144 154 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml diffeq1.v common 11.92 vpr 67.45 MiB -1 -1 0.54 23452 15 0.32 -1 -1 34120 -1 -1 36 162 0 5 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69068 162 96 994 935 1 694 299 16 16 256 mult_36 auto 29.4 MiB 0.28 5022 91208 31929 52152 7127 67.4 MiB 0.66 0.01 21.1771 -1637.49 -21.1771 21.1771 0.51 0.0034124 0.00320223 0.331093 0.310751 56 12767 47 1.21132e+07 3.92018e+06 870502. 3400.40 6.96 1.28868 1.18762 26504 172068 -1 9174 19 3073 5862 965990 269588 22.2519 22.2519 -1734.32 -22.2519 0 0 1.11200e+06 4343.75 0.24 0.38 0.17 -1 -1 0.24 0.15888 0.147497 337 479 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml diffeq2.v common 12.80 vpr 65.55 MiB -1 -1 0.20 22176 16 0.24 -1 -1 33572 -1 -1 27 66 0 5 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 67124 66 96 610 551 1 452 194 16 16 256 mult_36 auto 27.3 MiB 0.30 3491 41708 11675 25394 4639 65.6 MiB 0.36 0.01 16.8255 -937.879 -16.8255 16.8255 0.51 0.00238587 0.00225299 0.189255 0.178809 50 9637 45 1.21132e+07 3.43514e+06 780512. 3048.87 8.84 1.16511 1.07001 25484 153448 -1 7566 22 3118 6840 1168639 359265 17.7302 17.7302 -1031.17 -17.7302 0 0 1.00276e+06 3917.05 0.21 0.38 0.14 -1 -1 0.21 0.120297 0.111441 235 288 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml mkDelayWorker32B.v common 81.17 vpr 332.60 MiB -1 -1 13.40 124716 5 3.43 -1 -1 56692 -1 -1 460 506 47 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 340580 506 553 3055 3608 1 2790 1566 50 50 2500 memory auto 52.9 MiB 4.44 15016 1146906 560934 403027 182945 332.6 MiB 5.64 0.06 7.02534 -1950.88 -7.02534 7.02534 18.86 0.0232393 0.0210229 3.05303 2.74244 38 22534 14 1.47946e+08 5.05479e+07 6.86584e+06 2746.33 17.59 8.34828 7.5787 251304 1421084 -1 21732 15 3907 5076 1040584 239224 7.06661 7.06661 -2232.41 -7.06661 -3.54638 -0.295467 8.69095e+06 3476.38 2.71 1.06 1.22 -1 -1 2.71 0.855401 0.790478 953 1207 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml mkPktMerge.v common 20.83 vpr 75.12 MiB -1 -1 1.22 25852 2 0.36 -1 -1 33772 -1 -1 27 311 15 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 76920 311 156 972 1128 1 953 509 28 28 784 memory auto 30.4 MiB 0.49 9059 189392 67096 112947 9349 71.6 MiB 1.08 0.02 4.05723 -4390.2 -4.05723 4.05723 1.83 0.00563434 0.00500276 0.552809 0.49016 48 14303 15 4.25198e+07 9.67514e+06 2.50616e+06 3196.63 10.09 2.37376 2.1062 80602 506684 -1 13827 14 2506 2832 619608 160214 4.25681 4.25681 -4915.31 -4.25681 -18.6727 -0.360359 3.20999e+06 4094.38 0.77 0.33 0.43 -1 -1 0.77 0.195921 0.177483 109 186 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml mkSMAdapter4B.v common 26.49 vpr 76.90 MiB -1 -1 6.16 54304 7 2.23 -1 -1 39368 -1 -1 153 193 5 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 78748 193 205 2152 2357 1 1161 556 20 20 400 memory auto 39.4 MiB 1.52 8858 231341 79266 127842 24233 76.9 MiB 1.59 0.02 4.96605 -2953.62 -4.96605 4.96605 0.81 0.00676456 0.00610519 0.727478 0.653919 50 16222 33 2.07112e+07 1.09858e+07 1.26944e+06 3173.59 9.27 2.9981 2.67772 40848 252947 -1 14533 15 4363 10859 617682 132576 4.91884 4.91884 -3085.46 -4.91884 -7.99782 -0.340786 1.63222e+06 4080.54 0.37 0.42 0.23 -1 -1 0.37 0.267345 0.244193 947 1174 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml or1200.v common 57.25 vpr 106.50 MiB -1 -1 5.56 66516 27 4.10 -1 -1 41788 -1 -1 251 385 2 1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 109052 385 394 3884 4215 1 2355 1033 27 27 729 io auto 55.4 MiB 3.25 30389 543809 195671 324050 24088 92.4 MiB 4.43 0.05 14.2915 -14497.5 -14.2915 14.2915 1.78 0.0159307 0.0147229 1.73485 1.59441 76 49108 37 3.93038e+07 1.50194e+07 3.58343e+06 4915.54 28.21 6.60013 6.08071 88945 732515 -1 44455 16 10274 35988 2241978 383269 14.6402 14.6402 -15147.4 -14.6402 0 0 4.48127e+06 6147.14 1.14 1.23 0.62 -1 -1 1.14 0.658728 0.615958 2220 2704 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml raygentop.v common 27.43 vpr 78.75 MiB -1 -1 4.42 44676 8 1.07 -1 -1 37480 -1 -1 116 235 1 6 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 80640 235 305 2594 2755 1 1443 663 19 19 361 io auto 41.4 MiB 1.93 11469 249117 81672 155282 12163 78.8 MiB 1.77 0.02 5.02261 -2656.49 -5.02261 5.02261 0.76 0.0080707 0.00746005 0.743191 0.684756 62 23379 36 1.72706e+07 9.1757e+06 1.42202e+06 3939.11 12.37 3.57352 3.25894 39599 281069 -1 19716 13 5626 15462 1415752 327524 5.02806 5.02806 -2816.27 -5.02806 -1.25369 -0.0304031 1.76637e+06 4892.99 0.44 0.61 0.25 -1 -1 0.44 0.300482 0.280819 1038 1294 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml sha.v common 16.37 vpr 79.59 MiB -1 -1 2.93 46276 21 2.14 -1 -1 41028 -1 -1 149 38 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81500 38 36 2570 2606 1 1074 223 17 17 289 clb auto 42.3 MiB 1.33 9358 36727 8203 26236 2288 79.6 MiB 0.70 0.01 13.9422 -2847.26 -13.9422 13.9422 0.59 0.0057032 0.00504453 0.365255 0.3232 46 17017 35 1.34605e+07 8.03021e+06 830882. 2875.03 4.35 1.59721 1.3833 28231 166010 -1 14224 16 4373 13089 440600 78841 14.6248 14.6248 -3199.06 -14.6248 0 0 1.06831e+06 3696.59 0.23 0.41 0.15 -1 -1 0.23 0.273543 0.245358 1458 1647 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml stereovision0.v common 120.06 vpr 211.45 MiB -1 -1 12.46 118612 5 38.23 -1 -1 65512 -1 -1 744 169 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 216520 169 197 21166 21363 1 7142 1110 34 34 1156 clb auto 148.3 MiB 8.67 45861 598590 201276 373880 23434 180.8 MiB 8.20 0.08 3.51874 -13718.2 -3.51874 3.51874 3.18 0.0315804 0.0269482 3.60117 3.03896 50 72032 40 6.50233e+07 4.00974e+07 3.91608e+06 3387.61 29.88 11.7812 9.90136 122504 796036 -1 63680 13 19399 32912 1202068 232349 3.99587 3.99587 -14950.3 -3.99587 0 0 5.04415e+06 4363.45 1.17 1.65 0.64 -1 -1 1.17 1.41413 1.26102 7006 9660 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml stereovision1.v common 149.64 vpr 255.67 MiB -1 -1 13.28 133600 6 15.86 -1 -1 68812 -1 -1 757 113 0 44 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 261808 113 145 21669 19534 1 9921 1059 40 40 1600 mult_36 auto 151.3 MiB 8.85 84857 572929 187668 359255 26006 218.2 MiB 9.69 0.10 5.28341 -22594.6 -5.28341 5.28341 4.27 0.0329171 0.0273991 3.78077 3.17952 78 133452 45 9.16046e+07 5.82227e+07 8.23230e+06 5145.19 72.58 15.4019 13.0152 199776 1720042 -1 120901 15 32194 54580 8831164 1886670 5.47538 5.47538 -24275.7 -5.47538 0 0 1.04203e+07 6512.68 2.53 3.33 1.44 -1 -1 2.53 1.5499 1.3837 7327 9014 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml stereovision2.v common 635.75 vpr 996.02 MiB -1 -1 36.83 328740 16 70.21 -1 -1 133104 -1 -1 1876 149 0 179 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1019928 149 182 46661 38947 1 28355 2386 80 80 6400 mult_36 auto 328.4 MiB 30.28 389491 1882952 686590 1144232 52130 996.0 MiB 38.45 0.31 16.4918 -53244.5 -16.4918 16.4918 52.21 0.0935859 0.0784214 11.9317 10.1222 104 510700 36 3.90281e+08 1.71987e+08 4.40397e+07 6881.20 320.76 47.4113 40.4603 922180 9498422 -1 485911 15 96178 161941 21019070 3995106 16.9093 16.9093 -58249.2 -16.9093 0 0 5.58521e+07 8726.89 15.76 8.57 8.77 -1 -1 15.76 3.90485 3.48743 17801 23404 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml stereovision3.v common 3.68 vpr 61.75 MiB -1 -1 0.66 22116 5 0.56 -1 -1 33120 -1 -1 7 10 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63228 10 2 181 183 1 37 19 6 6 36 clb auto 23.3 MiB 0.07 141 69 24 38 7 61.7 MiB 0.01 0.00 2.09635 -88.5998 -2.09635 2.09635 0.03 0.000440273 0.000400129 0.00344373 0.00327563 22 153 8 646728 377258 38051.9 1057.00 0.22 0.0706388 0.0596697 2252 6684 -1 146 6 59 78 1250 509 1.9813 1.9813 -92.4243 -1.9813 0 0 48335.4 1342.65 0.01 0.02 0.01 -1 -1 0.01 0.0110679 0.0100532 52 90 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml LU8PEEng.v common 380.28 vpr 447.63 MiB -1 -1 63.14 330592 122 52.12 -1 -1 78388 -1 -1 1335 114 45 8 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 458376 114 102 21867 21777 1 11032 1604 50 50 2500 memory auto 204.8 MiB 23.62 152279 1043339 380268 642201 20870 447.6 MiB 21.42 0.17 78.4204 -50987.4 -78.4204 78.4204 18.09 0.0559181 0.0485358 7.05789 5.89715 92 227942 22 1.47946e+08 9.97789e+07 1.52089e+07 6083.58 157.66 24.3402 20.3808 338772 3221652 -1 206756 21 42610 166663 10460851 1877538 80.03 80.03 -60801.1 -80.03 -37.6276 -0.296573 1.93279e+07 7731.17 5.48 5.23 2.85 -1 -1 5.48 3.20026 2.7896 12499 14107 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml LU32PEEng.v common 3075.17 vpr 1.51 GiB -1 -1 189.96 982752 123 549.53 -1 -1 232976 -1 -1 4468 114 168 32 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1579944 114 102 72376 71710 1 37280 4884 92 92 8464 memory auto 646.1 MiB 89.95 732413 5099544 2065394 2999776 34374 1453.7 MiB 162.73 1.10 79.8891 -312568 -79.8891 79.8891 75.41 0.228722 0.186131 29.8829 24.2673 120 983849 32 5.19428e+08 3.45512e+08 6.67849e+07 7890.46 1835.24 97.1313 79.4348 1305538 14414463 -1 910412 19 138241 602112 42567703 7206155 81.5412 81.5412 -447020 -81.5412 -28.0615 -0.217744 8.37475e+07 9894.55 29.95 24.32 13.39 -1 -1 29.95 11.7864 10.1246 42353 47014 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml mcml.v common 4265.25 vpr 1.57 GiB -1 -1 492.00 1362020 63 2913.81 -1 -1 353612 -1 -1 4799 36 159 27 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1648392 36 356 125109 123894 1 31753 5377 92 92 8464 memory auto 846.0 MiB 59.60 392580 6126557 2461082 3596228 69247 1609.8 MiB 109.27 0.81 61.5857 -306901 -61.5857 61.5857 68.45 0.226264 0.194004 31.9559 26.766 76 562122 45 5.19428e+08 3.56438e+08 4.44025e+07 5246.05 459.61 107.258 89.1941 1060110 9229922 -1 526565 19 113526 355232 24122936 4589796 63.0032 63.0032 -372579 -63.0032 -0.368789 -0.0921972 5.54969e+07 6556.82 16.04 18.01 7.95 -1 -1 16.04 12.4825 10.8292 46698 73839 -1 -1 -1 -1 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 ae79cfe8d64..898805268aa 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,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 place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 410.49 vpr 247.93 MiB -1 -1 32.15 123816 20 87.03 -1 -1 70872 -1 -1 847 133 25 0 success 168f007-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-09-10T13:47:58 gh-actions-runner-vtr-auto-spawned5 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 253880 133 179 14247 14104 1 7175 1184 36 36 1296 clb memory auto 153.3 MiB 50.61 124164 184.8 MiB 21.54 0.20 20.1971 -196187 -20.1971 20.1971 6.68 0.065806 0.0554361 6.95264 5.66225 116 184307 30 7.21828e+07 5.93492e+07 9.38276e+06 7239.79 177.77 18.9577 15.5062 194868 1992610 -1 167943 14 31188 120710 37625861 8623615 0 0 37625861 8623615 107763 41941 0 0 574769 541317 0 0 662041 583372 0 0 111775 46780 0 0 18123157 3657337 0 0 18046356 3752868 0 0 107763 0 0 79310 698204 707334 3708165 14829 4645 22.9142 22.9142 -219306 -22.9142 0 0 1.18192e+07 9119.77 3.82 10.63 1.87 -1 -1 3.82 1.7689 1.57821 - k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 656.48 vpr 649.96 MiB -1 -1 55.85 621404 14 112.02 -1 -1 122708 -1 -1 2696 257 0 11 success 168f007-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-09-10T13:47:58 gh-actions-runner-vtr-auto-spawned5 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 665564 257 32 35881 33523 1 19445 2996 62 62 3844 clb auto 373.2 MiB 112.47 252894 650.0 MiB 106.22 0.54 18.0476 -23441.6 -18.0476 18.0476 68.39 0.0888286 0.0718024 14.145 11.0996 74 402334 48 2.30929e+08 1.49656e+08 1.95699e+07 5091.03 120.89 34.9086 28.222 486884 4059627 -1 382077 20 95525 429835 27701264 4438423 0 0 27701264 4438423 429835 154897 0 0 668323 540084 0 0 974327 672168 0 0 451593 179858 0 0 12565365 1444359 0 0 12611821 1447057 0 0 429835 0 0 347139 2225493 2201164 15059253 0 0 20.2826 20.2826 -26579.7 -20.2826 0 0 2.45573e+07 6388.47 8.82 12.37 3.35 -1 -1 8.82 5.45561 4.76318 - k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 116.65 parmys 260.12 MiB -1 -1 14.82 266364 5 6.58 -1 -1 57716 -1 -1 494 36 0 0 success 168f007-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-09-10T13:47:58 gh-actions-runner-vtr-auto-spawned5 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 143860 36 100 10175 7629 1 2793 630 28 28 784 clb auto 106.3 MiB 26.47 40406 139.7 MiB 6.27 0.06 13.8907 -2243.5 -13.8907 13.8907 3.56 0.026724 0.0227478 2.82369 2.31027 70 68634 45 4.25198e+07 2.66236e+07 3.59791e+06 4589.17 40.47 10.7728 8.86161 94322 733910 -1 60756 14 12416 64374 2584240 372322 0 0 2584240 372322 64374 16853 0 0 79783 64889 0 0 116149 79800 0 0 66844 20480 0 0 1114016 90074 0 0 1143074 100226 0 0 64374 0 0 54035 288877 320817 1693591 0 0 15.7509 15.7509 -2589.41 -15.7509 0 0 4.52633e+06 5773.37 2.12 2.36 0.94 -1 -1 2.12 1.49619 1.29488 - k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 27.34 vpr 72.43 MiB -1 -1 17.59 46836 3 0.86 -1 -1 38532 -1 -1 44 196 1 0 success 168f007-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-09-10T13:47:58 gh-actions-runner-vtr-auto-spawned5 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74168 196 193 1202 1347 1 614 434 15 15 225 io auto 34.4 MiB 0.96 2959 72.4 MiB 0.83 0.01 2.02269 -977.766 -2.02269 2.02269 0.78 0.00401035 0.00366227 0.363492 0.330989 38 6366 23 1.03862e+07 2.91934e+06 544116. 2418.30 3.00 1.33966 1.21888 21558 109668 -1 5536 11 1841 2762 250892 63287 0 0 250892 63287 2762 2079 0 0 9948 9247 0 0 10819 9960 0 0 2853 2234 0 0 114330 19696 0 0 110180 20071 0 0 2762 0 0 927 2070 2736 17957 0 0 2.46579 2.46579 -1209.4 -2.46579 0 0 690508. 3068.92 0.26 0.22 0.13 -1 -1 0.26 0.142745 0.134823 - k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 3.97 vpr 67.61 MiB -1 -1 0.35 20916 3 0.09 -1 -1 35788 -1 -1 68 99 1 0 success 168f007-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-09-10T13:47:58 gh-actions-runner-vtr-auto-spawned5 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 69236 99 130 343 473 1 217 298 12 12 144 clb auto 29.2 MiB 0.30 494 67.6 MiB 0.25 0.00 1.48813 -107.16 -1.48813 1.48813 0.42 0.00103449 0.000954227 0.0813882 0.0749218 46 1057 9 5.66058e+06 4.21279e+06 378966. 2631.71 0.98 0.280223 0.255323 13518 73784 -1 1006 11 447 729 31364 10104 0 0 31364 10104 729 514 0 0 1918 1723 0 0 2674 1919 0 0 768 583 0 0 12561 3136 0 0 12714 2229 0 0 729 0 0 282 413 454 3102 0 0 1.91436 1.91436 -129.917 -1.91436 0 0 486261. 3376.82 0.16 0.05 0.10 -1 -1 0.16 0.0358634 0.0335493 - k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 15.96 vpr 70.80 MiB -1 -1 0.43 24488 5 0.22 -1 -1 37184 -1 -1 31 162 0 5 success 168f007-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-09-10T13:47:58 gh-actions-runner-vtr-auto-spawned5 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72496 162 96 1070 887 1 659 294 16 16 256 mult_36 auto 33.1 MiB 0.50 4847 70.8 MiB 0.77 0.01 15.3312 -1171.96 -15.3312 15.3312 0.91 0.00340029 0.00316111 0.34711 0.320261 58 9528 25 1.21132e+07 3.65071e+06 904541. 3533.36 9.77 1.59771 1.46539 27572 180683 -1 8410 20 2566 4073 1387787 349685 0 0 1387787 349685 4073 3049 0 0 69481 68582 0 0 72823 69782 0 0 4333 3409 0 0 624566 103890 0 0 612511 100973 0 0 4073 0 0 1528 3875 3716 21922 0 0 17.126 17.126 -1337.32 -17.126 0 0 1.15318e+06 4504.63 0.45 0.52 0.23 -1 -1 0.45 0.168054 0.157024 - k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 19.46 vpr 69.28 MiB -1 -1 0.30 23600 5 0.17 -1 -1 36696 -1 -1 22 66 0 5 success 168f007-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-09-10T13:47:58 gh-actions-runner-vtr-auto-spawned5 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 70944 66 96 780 597 1 469 189 16 16 256 mult_36 auto 31.2 MiB 0.67 3528 69.3 MiB 0.51 0.01 11.4423 -692.28 -11.4423 11.4423 0.92 0.00237204 0.00221104 0.244167 0.226432 60 7762 25 1.21132e+07 3.16567e+06 934704. 3651.19 13.46 1.30311 1.1985 27828 185084 -1 6796 22 3481 7550 2322059 624819 0 0 2322059 624819 7550 5477 0 0 109913 108872 0 0 122502 110413 0 0 8190 5990 0 0 1045776 198980 0 0 1028128 195087 0 0 7550 0 0 4080 9181 9731 47318 0 0 12.6561 12.6561 -816.855 -12.6561 0 0 1.17753e+06 4599.72 0.44 0.77 0.23 -1 -1 0.44 0.149045 0.139492 - k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 128.87 vpr 317.14 MiB -1 -1 15.94 120720 5 5.16 -1 -1 47476 -1 -1 464 506 44 0 success 168f007-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-09-10T13:47:58 gh-actions-runner-vtr-auto-spawned5 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 324756 506 553 3236 3734 1 2873 1567 50 50 2500 memory auto 60.1 MiB 6.11 16530 317.1 MiB 6.60 0.07 6.5587 -2064.11 -6.5587 6.5587 41.00 0.0217426 0.0197759 2.91889 2.63587 38 25063 15 1.47946e+08 4.91194e+07 6.86579e+06 2746.32 26.27 8.33918 7.67025 258216 1426232 -1 23931 15 4399 5669 4223937 1062482 0 0 4223937 1062482 5269 5153 0 0 111015 109614 0 0 114361 111587 0 0 5674 5481 0 0 1975177 414793 0 0 2012441 415854 0 0 5269 0 0 874 6520 5278 11010 405 693 7.25494 7.25494 -2525.54 -7.25494 0 0 8.69102e+06 3476.41 4.89 2.05 1.63 -1 -1 4.89 0.909881 0.855705 - k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 35.42 vpr 73.33 MiB -1 -1 1.30 27920 2 0.15 -1 -1 36924 -1 -1 30 311 15 0 success 168f007-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-09-10T13:47:58 gh-actions-runner-vtr-auto-spawned5 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75092 311 156 1015 1158 1 965 512 28 28 784 memory auto 35.5 MiB 0.91 7920 73.3 MiB 1.27 0.02 3.81344 -4181.51 -3.81344 3.81344 3.53 0.00538017 0.00465878 0.567556 0.495943 36 14928 16 4.25198e+07 9.83682e+06 1.94918e+06 2486.20 20.73 2.58546 2.30186 76314 389223 -1 13555 13 2939 3321 2467815 697757 0 0 2467815 697757 3321 3071 0 0 78555 77676 0 0 80178 78793 0 0 3351 3117 0 0 1157183 268007 0 0 1145227 267093 0 0 3321 0 0 382 2728 2532 11725 0 0 4.4448 4.4448 -5019.22 -4.4448 0 0 2.40571e+06 3068.51 1.22 0.96 0.44 -1 -1 1.22 0.225155 0.208091 - k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 36.13 vpr 84.81 MiB -1 -1 7.35 54744 5 2.70 -1 -1 40540 -1 -1 175 193 5 0 success 168f007-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-09-10T13:47:58 gh-actions-runner-vtr-auto-spawned5 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 86848 193 205 2771 2705 1 1368 578 20 20 400 memory auto 47.6 MiB 4.31 11113 84.8 MiB 2.34 0.03 5.23435 -2522.06 -5.23435 5.23435 1.62 0.00833023 0.00752518 0.9609 0.84644 52 19410 26 2.07112e+07 1.21714e+07 1.31074e+06 3276.84 11.44 3.26763 2.90235 42580 268535 -1 17407 13 4413 10923 1108643 243152 0 0 1108643 243152 10510 5488 0 0 35341 30980 0 0 40483 35495 0 0 10879 6021 0 0 515801 82152 0 0 495629 83016 0 0 10510 0 0 6386 36199 34608 249625 436 34 6.24907 6.24907 -3031.86 -6.24907 0 0 1.72518e+06 4312.96 0.71 0.71 0.31 -1 -1 0.71 0.391367 0.360728 - k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 90.68 vpr 116.33 MiB -1 -1 6.24 63900 8 5.12 -1 -1 43808 -1 -1 246 385 2 1 success 168f007-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-09-10T13:47:58 gh-actions-runner-vtr-auto-spawned5 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 119124 385 362 4434 4322 1 2384 996 26 26 676 io auto 62.2 MiB 9.42 29053 98.9 MiB 7.33 0.08 8.25506 -9374.4 -8.25506 8.25506 3.24 0.0179221 0.0162798 2.43977 2.08881 88 45940 41 3.69863e+07 1.47499e+07 3.77884e+06 5590.00 46.25 11.3089 9.88989 89712 781758 -1 41613 19 10306 33786 3148189 609073 0 0 3148189 609073 32510 14801 0 0 79948 72279 0 0 100823 80017 0 0 34137 16595 0 0 1472148 205944 0 0 1428623 219437 0 0 32510 0 0 22833 109217 114101 681016 1512 278 9.38469 9.38469 -10816.1 -9.38469 0 0 4.73879e+06 7010.04 2.17 2.12 1.06 -1 -1 2.17 1.03994 0.944849 - k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 34.54 vpr 85.78 MiB -1 -1 4.38 44508 3 1.05 -1 -1 39876 -1 -1 120 236 1 6 success 168f007-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-09-10T13:47:58 gh-actions-runner-vtr-auto-spawned5 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87836 236 305 3195 3007 1 1534 668 19 19 361 io auto 48.7 MiB 3.33 12524 85.8 MiB 2.77 0.03 4.26501 -2620.32 -4.26501 4.26501 1.44 0.01019 0.00931193 1.14033 1.01857 62 25344 28 1.72706e+07 9.39128e+06 1.42198e+06 3939.00 14.52 3.4611 3.08438 40483 281719 -1 21416 22 6829 19117 3520990 772892 0 0 3520990 772892 19117 11564 0 0 135357 131265 0 0 151809 135817 0 0 20512 12837 0 0 1588198 238811 0 0 1605997 242598 0 0 19117 0 0 12471 45282 45850 271868 0 0 5.15833 5.15833 -3045 -5.15833 0 0 1.76637e+06 4892.99 0.76 1.62 0.35 -1 -1 0.76 0.635537 0.581875 - k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 21.16 vpr 83.14 MiB -1 -1 2.89 46332 4 2.29 -1 -1 40824 -1 -1 132 38 0 0 success 168f007-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-09-10T13:47:58 gh-actions-runner-vtr-auto-spawned5 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 85132 38 36 2744 2493 1 1037 206 16 16 256 clb auto 46.1 MiB 2.60 8605 83.1 MiB 1.04 0.02 9.2557 -2488.28 -9.2557 9.2557 0.91 0.00913363 0.00746336 0.564793 0.483165 64 12823 20 1.21132e+07 7.11401e+06 1.00276e+06 3917.05 6.46 3.0148 2.62134 28592 198411 -1 12333 22 4332 9782 375885 65609 0 0 375885 65609 9182 5006 0 0 13374 9992 0 0 20044 13409 0 0 9413 5384 0 0 163146 15567 0 0 160726 16251 0 0 9182 0 0 5051 27553 26289 197761 730 107 10.9115 10.9115 -3081.15 -10.9115 0 0 1.25521e+06 4903.16 0.47 0.70 0.25 -1 -1 0.47 0.557217 0.494414 - k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 25.23 vpr 74.60 MiB -1 -1 3.34 34324 16 0.71 -1 -1 37800 -1 -1 61 45 3 1 success 168f007-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-09-10T13:47:58 gh-actions-runner-vtr-auto-spawned5 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 76388 45 32 1193 1152 1 791 142 14 14 196 memory auto 36.9 MiB 2.89 6696 74.6 MiB 0.72 0.01 9.71 -6283.34 -9.71 9.71 0.68 0.00422407 0.00378027 0.385671 0.338114 60 14858 44 9.20055e+06 5.32753e+06 710723. 3626.14 13.08 2.15118 1.89406 21456 140545 -1 11653 14 3704 9997 1842989 446772 0 0 1842989 446772 9997 5411 0 0 62472 60193 0 0 68126 62798 0 0 10426 6123 0 0 849342 158146 0 0 842626 154101 0 0 9997 0 0 6458 20629 22240 155104 0 0 11.3818 11.3818 -7431.53 -11.3818 0 0 894373. 4563.13 0.31 0.73 0.18 -1 -1 0.31 0.225156 0.207036 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 111.98 vpr 235.43 MiB -1 -1 12.31 101572 5 12.46 -1 -1 68608 -1 -1 710 169 0 0 success 168f007-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-09-10T13:47:58 gh-actions-runner-vtr-auto-spawned5 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 241076 169 197 23321 21461 1 6583 1076 33 33 1089 clb auto 177.1 MiB 14.96 40982 210.9 MiB 12.30 0.11 3.03587 -13154.2 -3.03587 3.03587 5.55 0.0490204 0.0442584 6.05107 5.03887 56 61157 24 6.0475e+07 3.82649e+07 4.09277e+06 3758.28 28.81 21.4407 17.8586 121655 832457 -1 57524 16 17484 27064 1063275 206702 0 0 1063275 206702 25415 19052 0 0 37966 28659 0 0 50636 38010 0 0 26029 19941 0 0 467714 50281 0 0 455515 50759 0 0 25415 0 0 8091 34720 35364 208223 1879 2046 3.7082 3.7082 -15176.1 -3.7082 0 0 5.21984e+06 4793.24 2.47 3.20 1.02 -1 -1 2.47 3.00445 2.6385 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 215.96 vpr 260.57 MiB -1 -1 10.85 123472 3 18.57 -1 -1 77008 -1 -1 680 115 0 40 success 168f007-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-09-10T13:47:58 gh-actions-runner-vtr-auto-spawned5 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 266824 115 145 22868 19305 1 9678 980 40 40 1600 mult_36 auto 172.5 MiB 13.41 85076 205.9 MiB 13.66 0.13 5.23187 -21800.3 -5.23187 5.23187 7.95 0.0403819 0.0355147 5.31263 4.45229 88 131011 37 9.16046e+07 5.24886e+07 9.19823e+06 5748.90 110.77 21.6179 17.9277 213624 1916262 -1 121150 15 33306 52413 27638660 5590543 0 0 27638660 5590543 47486 38101 0 0 603337 590193 0 0 638433 604646 0 0 48900 39273 0 0 13116047 2122596 0 0 13184457 2195734 0 0 47486 0 0 14789 194171 200346 743137 5350 2860 5.44068 5.44068 -25073.2 -5.44068 0 0 1.15336e+07 7208.51 5.66 11.18 2.54 -1 -1 5.66 2.46486 2.17612 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 716.30 vpr 923.09 MiB -1 -1 17.05 197132 3 9.97 -1 -1 155012 -1 -1 1498 149 0 179 success 168f007-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-09-10T13:47:58 gh-actions-runner-vtr-auto-spawned5 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 945244 149 182 55416 37075 1 28615 2008 80 80 6400 mult_36 auto 356.7 MiB 29.56 292875 923.1 MiB 86.89 0.59 12.0992 -47669.5 -12.0992 12.0992 126.87 0.132042 0.114467 20.0391 16.3461 96 422372 45 3.90281e+08 1.51617e+08 4.11781e+07 6434.07 312.23 65.3324 53.9182 901880 8701757 -1 383436 19 101430 119780 44985362 9118338 0 0 44985362 9118338 117847 105453 0 0 974905 936173 0 0 1099495 978614 0 0 118863 106726 0 0 21396619 3441321 0 0 21277633 3550051 0 0 117847 0 0 16517 101953 97518 383293 2408 3049 13.7193 13.7193 -54713.6 -13.7193 0 0 5.14892e+07 8045.19 28.90 24.87 12.88 -1 -1 28.90 7.41219 6.41351 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 2.79 vpr 66.95 MiB -1 -1 0.73 25044 4 0.18 -1 -1 35640 -1 -1 15 11 0 0 success 168f007-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-09-10T13:47:58 gh-actions-runner-vtr-auto-spawned5 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68560 11 2 303 283 2 80 28 7 7 49 clb auto 28.6 MiB 0.26 262 67.0 MiB 0.05 0.00 1.86328 -148.615 -1.86328 1.77125 0.09 0.000619303 0.000545237 0.0270593 0.024287 26 348 20 1.07788e+06 808410 68696.0 1401.96 0.20 0.121964 0.106082 3516 12294 -1 329 11 202 331 5307 1941 0 0 5307 1941 331 277 0 0 422 331 0 0 488 422 0 0 395 317 0 0 1902 351 0 0 1769 243 0 0 331 0 0 129 177 156 1255 0 0 1.98243 1.82748 -169.552 -1.98243 0 0 84249.8 1719.38 0.02 0.04 0.01 -1 -1 0.02 0.0323454 0.0298014 - k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 923.34 vpr 621.21 MiB -1 -1 65.69 454672 98 120.41 -1 -1 114976 -1 -1 2126 114 45 8 success 168f007-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-09-10T13:47:58 gh-actions-runner-vtr-auto-spawned5 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 636124 114 102 35713 31804 1 16877 2395 56 56 3136 clb auto 345.6 MiB 87.41 226044 553.2 MiB 91.76 0.70 66.0506 -53632.5 -66.0506 66.0506 50.57 0.127645 0.111196 16.7216 13.249 96 340308 28 1.8697e+08 1.42409e+08 1.98848e+07 6340.81 430.88 88.096 69.945 439150 4183214 -1 313293 23 65139 255112 41062722 8870199 0 0 41062722 8870199 248386 84504 0 0 698308 624575 0 0 868831 704028 0 0 258041 97160 0 0 19237817 3628633 0 0 19751339 3731299 0 0 248386 0 0 190255 880054 894728 5690042 7245 6009 74.2404 74.2404 -68009 -74.2404 0 0 2.48675e+07 7929.69 8.82 16.16 3.72 -1 -1 8.82 5.43805 4.71662 - k6_frac_N10_frac_chain_mem32K_40nm.xml LU32PEEng.v common 4696.50 vpr 2.22 GiB -1 -1 224.16 1476188 97 1295.36 -1 -1 357704 -1 -1 7412 114 168 32 success 168f007-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-09-10T13:47:58 gh-actions-runner-vtr-auto-spawned5 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 2331516 114 102 120062 107871 1 57253 7828 102 102 10404 clb auto 1117.3 MiB 311.31 1026779 1827.8 MiB 468.75 2.94 64.7172 -343930 -64.7172 64.7172 132.49 0.278765 0.244287 39.56 33.0954 132 1348522 23 6.36957e+08 5.04159e+08 8.88356e+07 8538.60 1927.09 174.105 142.084 1719732 19599881 -1 1294641 20 206456 897577 259367945 68896390 0 0 259367945 68896390 844868 255276 0 0 2617408 2394583 0 0 3226115 2635699 0 0 877238 309016 0 0 124439792 31032970 0 0 127362524 32268846 0 0 844868 0 0 663878 3915548 3927216 21958437 54562 195130 73.1695 73.1695 -478357 -73.1695 0 0 1.13733e+08 10931.6 57.08 112.55 20.01 -1 -1 57.08 18.0642 15.6145 - k6_frac_N10_frac_chain_mem32K_40nm.xml mcml.v common 6538.59 vpr 2.03 GiB -1 -1 293.14 1241956 25 4708.27 -1 -1 371036 -1 -1 6438 36 159 27 success 168f007-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-09-10T13:47:58 gh-actions-runner-vtr-auto-spawned5 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 2132944 36 356 184794 159441 1 63873 7016 95 95 9025 clb auto 1304.2 MiB 150.60 762501 1810.7 MiB 483.65 3.05 41.756 -304360 -41.756 41.756 103.52 0.250235 0.198828 37.009 30.2993 142 999026 44 5.4965e+08 4.44764e+08 8.24996e+07 9141.23 565.60 140.497 115.874 1545258 18129248 -1 961473 21 220892 499165 103698408 24915605 0 0 103698408 24915605 438773 253639 0 0 1517742 1393247 0 0 1870287 1525002 0 0 450080 273409 0 0 49548980 10620812 0 0 49872546 10849496 0 0 438773 0 0 220927 1134104 1047230 3824786 68547 252639 45.4769 45.4769 -371165 -45.4769 0 0 1.04574e+08 11587.1 44.65 45.09 18.73 -1 -1 44.65 15.6757 13.7463 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 347.81 vpr 304.34 MiB -1 -1 53.82 126076 20 102.96 -1 -1 71768 -1 -1 845 133 25 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 311640 133 179 14228 14085 1 7103 1182 36 36 1296 clb memory auto 151.9 MiB 50.58 126345 644623 217282 405134 22207 183.8 MiB 12.91 0.12 22.8575 -211550 -22.8575 22.8575 4.26 0.0208839 0.0180153 2.30248 1.95168 118 188142 29 7.21828e+07 5.92414e+07 9.54364e+06 7363.92 90.75 10.1752 8.78955 197456 2042276 -1 170705 18 30798 120350 10309620 1762251 23.8995 23.8995 -217733 -23.8995 0 0 1.20761e+07 9318.00 4.68 3.99 1.91 -1 -1 4.68 1.80003 1.67655 +k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 609.57 vpr 673.32 MiB -1 -1 110.72 637372 14 109.75 -1 -1 123556 -1 -1 2709 257 0 11 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 689476 257 32 36080 33722 1 19523 3009 63 63 3969 clb auto 374.2 MiB 80.49 245363 2130981 751008 1352357 27616 673.3 MiB 62.83 0.50 19.0314 -25569.1 -19.0314 19.0314 46.35 0.0460908 0.0383097 6.55815 5.62157 74 395685 32 2.36641e+08 1.50357e+08 2.02178e+07 5093.92 106.43 20.8968 18.3205 502298 4195434 -1 378412 19 99298 447896 21524472 3194789 19.3163 19.3163 -26089.1 -19.3163 0 0 2.53694e+07 6391.88 9.63 8.78 3.12 -1 -1 9.63 4.18202 3.90547 +k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 201.41 parmys 257.95 MiB -1 -1 35.09 264144 5 13.58 -1 -1 58532 -1 -1 495 36 0 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 144028 36 100 10178 7632 1 2757 631 29 29 841 clb auto 105.3 MiB 42.59 42156 227851 67230 146075 14546 139.0 MiB 9.05 0.07 15.3153 -2397.59 -15.3153 15.3153 5.91 0.00886581 0.00764147 1.62099 1.37247 70 73490 44 4.4999e+07 2.66775e+07 3.87716e+06 4610.18 56.82 7.51808 6.43158 101140 791177 -1 62580 14 12938 66339 2702589 385416 15.7284 15.7284 -2623.12 -15.7284 0 0 4.87732e+06 5799.43 3.65 2.41 1.30 -1 -1 3.65 1.41093 1.29701 +k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 68.83 vpr 71.76 MiB -1 -1 42.19 47728 3 2.80 -1 -1 38764 -1 -1 45 196 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 73484 196 193 1201 1346 1 603 435 15 15 225 io auto 33.9 MiB 2.13 2836 148665 42382 92853 13430 71.8 MiB 1.73 0.05 2.37784 -1101.45 -2.37784 2.37784 2.08 0.00161879 0.00149054 0.54454 0.52938 38 6358 28 1.03862e+07 2.97323e+06 544116. 2418.30 6.71 2.2937 2.24835 21558 109668 -1 5494 12 1894 2912 215378 57193 2.6555 2.6555 -1189.81 -2.6555 0 0 690508. 3068.92 0.86 0.36 0.25 -1 -1 0.86 0.22943 0.226118 +k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 27.79 vpr 65.73 MiB -1 -1 0.79 20976 3 2.93 -1 -1 36028 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67308 99 130 344 474 1 227 298 12 12 144 clb auto 27.6 MiB 0.58 665 70943 20214 37821 12908 65.7 MiB 0.55 0.00 1.89985 -118.566 -1.89985 1.89985 1.38 0.000421795 0.00037894 0.0828386 0.0318536 34 1521 10 5.66058e+06 4.21279e+06 293035. 2034.97 6.21 1.02139 0.805486 12374 55836 -1 1460 10 374 563 37546 11495 1.99363 1.99363 -142.699 -1.99363 0 0 360780. 2505.42 0.27 0.36 0.05 -1 -1 0.27 0.161709 0.160873 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 44.43 vpr 69.55 MiB -1 -1 0.97 24456 5 3.01 -1 -1 36672 -1 -1 32 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 71220 162 96 1075 892 1 666 295 16 16 256 mult_36 auto 31.9 MiB 2.13 4888 98395 35924 54623 7848 69.6 MiB 1.77 0.01 15.9849 -1245.5 -15.9849 15.9849 2.29 0.00115952 0.00104783 0.386678 0.374306 54 11517 39 1.21132e+07 3.70461e+06 835786. 3264.79 16.35 2.53611 2.49579 26808 168260 -1 9045 20 3002 4894 999650 272771 17.368 17.368 -1361.81 -17.368 0 0 1.08607e+06 4242.47 0.87 1.21 0.25 -1 -1 0.87 0.122627 0.118201 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 46.07 vpr 67.30 MiB -1 -1 0.72 23560 5 3.00 -1 -1 36612 -1 -1 22 66 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 68912 66 96 778 595 1 467 189 16 16 256 mult_36 auto 29.4 MiB 1.79 3517 47885 16325 27094 4466 67.3 MiB 1.18 0.00 12.1762 -748.789 -12.1762 12.1762 2.58 0.000842852 0.000763987 0.359297 0.351805 58 7863 24 1.21132e+07 3.16567e+06 904541. 3533.36 18.49 1.41528 1.26838 27572 180683 -1 6689 20 3225 6789 1347145 406246 12.9279 12.9279 -808.846 -12.9279 0 0 1.15318e+06 4504.63 1.45 1.49 0.68 -1 -1 1.45 0.520221 0.517106 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 222.40 vpr 316.47 MiB -1 -1 37.56 120696 5 12.17 -1 -1 48188 -1 -1 476 506 44 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 324064 506 553 3236 3734 1 2873 1579 50 50 2500 memory auto 59.2 MiB 13.91 15054 1214791 602860 418994 192937 316.5 MiB 10.67 0.15 8.181 -2068.91 -8.181 8.181 61.93 0.0478123 0.0467326 4.39858 4.10555 38 22965 15 1.47946e+08 4.97661e+07 6.86579e+06 2746.32 37.86 11.6146 11.063 258216 1426232 -1 21977 13 3929 4973 1082649 250286 8.4247 8.4247 -2363.08 -8.4247 0 0 8.69102e+06 3476.41 6.90 1.02 2.33 -1 -1 6.90 0.89153 0.854835 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 80.08 vpr 73.72 MiB -1 -1 2.94 28272 2 2.91 -1 -1 37080 -1 -1 30 311 15 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 75492 311 156 1015 1158 1 965 512 28 28 784 memory auto 33.5 MiB 2.55 8030 186789 65892 110912 9985 71.5 MiB 2.59 0.01 4.09928 -4345.67 -4.09928 4.09928 7.88 0.00264172 0.00233751 1.56568 1.07686 40 14144 15 4.25198e+07 9.83682e+06 2.13295e+06 2720.61 37.35 4.22736 3.45946 78662 432578 -1 13229 14 2738 3114 772542 202185 4.11992 4.11992 -5043.32 -4.11992 -0.00271738 -0.00135869 2.67004e+06 3405.67 3.00 0.93 1.00 -1 -1 3.00 0.313183 0.307375 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 84.20 vpr 83.47 MiB -1 -1 16.05 54968 5 7.85 -1 -1 42776 -1 -1 167 193 5 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 85476 193 205 2718 2652 1 1363 570 20 20 400 memory auto 46.0 MiB 10.28 10491 250942 88000 136250 26692 83.5 MiB 4.78 0.02 5.61304 -2876.77 -5.61304 5.61304 3.18 0.00324013 0.00285266 1.01821 0.915768 50 19733 40 2.07112e+07 1.17403e+07 1.26946e+06 3173.65 24.29 3.27003 3.08922 41784 253636 -1 16894 15 4991 12342 710062 143690 5.67088 5.67088 -3192.42 -5.67088 0 0 1.63222e+06 4080.54 1.47 0.91 0.47 -1 -1 1.47 0.694707 0.682032 +k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 169.02 vpr 124.16 MiB -1 -1 13.02 65968 8 13.01 -1 -1 44472 -1 -1 246 385 2 1 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 127144 385 362 4415 4299 1 2357 996 26 26 676 io auto 61.4 MiB 24.26 29214 557860 213197 320693 23970 98.2 MiB 14.97 0.17 8.92238 -9638.73 -8.92238 8.92238 5.87 0.0071698 0.00653702 2.02958 1.88836 104 42662 20 3.69863e+07 1.47499e+07 4.35880e+06 6447.93 71.20 9.70041 8.85034 97140 924598 -1 41533 17 8831 29448 1716817 288797 8.83648 8.83648 -9970.03 -8.83648 0 0 5.53220e+06 8183.73 4.32 1.77 1.63 -1 -1 4.32 0.929065 0.874115 +k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 79.85 vpr 85.10 MiB -1 -1 9.42 44716 3 3.09 -1 -1 40836 -1 -1 122 236 1 6 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 87140 236 305 3199 3011 1 1513 670 19 19 361 io auto 48.1 MiB 9.05 11986 276090 94198 168472 13420 85.1 MiB 5.65 0.28 4.7515 -2838.34 -4.7515 4.7515 3.68 0.00383922 0.00344295 1.71538 1.62701 62 24333 38 1.72706e+07 9.49907e+06 1.42198e+06 3939.00 31.27 5.68352 4.99371 40483 281719 -1 20473 16 5845 14538 1304206 307506 5.04173 5.04173 -3066.08 -5.04173 0 0 1.76637e+06 4892.99 1.37 1.62 0.51 -1 -1 1.37 0.980672 0.969505 +k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 59.15 vpr 82.88 MiB -1 -1 5.62 47460 3 5.84 -1 -1 42856 -1 -1 139 38 0 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 84872 38 36 2739 2488 1 1037 213 16 16 256 clb auto 45.7 MiB 6.78 8683 35138 8440 23818 2880 82.9 MiB 1.92 0.01 10.5532 -2964 -10.5532 10.5532 2.76 0.00221601 0.00187896 0.634926 0.269636 58 13510 42 1.21132e+07 7.49127e+06 904541. 3533.36 20.75 3.53901 2.77536 27572 180683 -1 11978 21 4001 9180 321108 56174 11.0143 11.0143 -3262.56 -11.0143 0 0 1.15318e+06 4504.63 1.42 0.92 0.46 -1 -1 1.42 0.520373 0.50522 +k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 48.71 vpr 73.43 MiB -1 -1 7.46 34864 16 2.07 -1 -1 38264 -1 -1 60 45 3 1 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 75192 45 32 1192 1151 1 782 141 14 14 196 memory auto 35.8 MiB 7.86 6410 20637 4949 13652 2036 73.4 MiB 0.99 0.00 10.3793 -6863.03 -10.3793 10.3793 1.73 0.000510972 0.000411354 0.320782 0.307111 58 12825 20 9.20055e+06 5.27364e+06 687722. 3508.79 16.72 1.80931 1.49467 21260 137239 -1 10935 15 3457 9035 790330 187947 10.8157 10.8157 -7288.37 -10.8157 0 0 876180. 4470.31 1.00 0.75 0.34 -1 -1 1.00 0.215598 0.208783 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 214.41 vpr 231.37 MiB -1 -1 28.40 101752 5 22.98 -1 -1 69572 -1 -1 707 169 0 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 236924 169 197 23225 21365 1 6482 1073 33 33 1089 clb auto 176.0 MiB 30.75 39441 555664 177689 355200 22775 209.6 MiB 14.76 0.11 3.49056 -13720.1 -3.49056 3.49056 7.69 0.0159828 0.013251 4.26642 3.67362 50 62353 46 6.0475e+07 3.81032e+07 3.66263e+06 3363.29 66.28 17.9847 15.396 117303 744553 -1 55179 14 16293 25082 928288 182208 3.67335 3.67335 -14773.3 -3.67335 0 0 4.71657e+06 4331.10 4.56 3.09 1.04 -1 -1 4.56 2.86949 2.67286 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 248.31 vpr 257.57 MiB -1 -1 23.50 124136 3 30.99 -1 -1 77592 -1 -1 679 115 0 40 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 263748 115 145 22864 19301 1 9652 979 40 40 1600 mult_36 auto 171.5 MiB 26.70 79679 506315 166111 319409 20795 206.4 MiB 17.36 0.16 5.28452 -22625 -5.28452 5.28452 11.55 0.0145416 0.0122082 4.30753 3.77434 86 127927 38 9.16046e+07 5.24347e+07 8.98461e+06 5615.38 89.60 17.7748 15.2986 212028 1885476 -1 116528 16 32579 50376 8549482 1753543 5.41965 5.41965 -25069.6 -5.41965 0 0 1.13675e+07 7104.67 5.41 3.42 2.27 -1 -1 5.41 1.63902 1.54586 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 678.77 vpr 977.16 MiB -1 -1 34.91 197452 3 16.89 -1 -1 155756 -1 -1 1503 149 0 179 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 1000616 149 182 55415 37074 1 28618 2013 80 80 6400 mult_36 auto 355.4 MiB 54.28 292699 1704483 597811 1047225 59447 932.7 MiB 34.31 0.28 13.6001 -51949.9 -13.6001 13.6001 95.49 0.0496311 0.0435272 5.96807 5.1399 98 403418 22 3.90281e+08 1.51886e+08 4.18005e+07 6531.32 305.19 24.6846 21.6949 914680 8979364 -1 379407 21 98693 116240 14827595 2931097 14.4246 14.4246 -56744.4 -14.4246 0 0 5.30091e+07 8282.68 23.99 5.42 6.67 -1 -1 23.99 2.93403 2.73413 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 16.45 vpr 65.95 MiB -1 -1 1.59 25536 4 3.60 -1 -1 35268 -1 -1 15 11 0 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67536 11 2 303 283 2 80 28 7 7 49 clb auto 27.5 MiB 0.47 271 994 177 758 59 66.0 MiB 0.13 0.00 2.03512 -161.709 -2.03512 1.89824 0.09 0.000210013 0.000166542 0.120271 0.119043 26 394 10 1.07788e+06 808410 68696.0 1401.96 0.54 0.156422 0.150238 3516 12294 -1 368 11 215 371 6520 2328 2.14356 1.95295 -169.844 -2.14356 0 0 84249.8 1719.38 0.15 0.02 0.01 -1 -1 0.15 0.0160037 0.0148764 +k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 672.40 vpr 645.20 MiB -1 -1 138.72 453444 97 117.11 -1 -1 115976 -1 -1 2135 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 660688 114 102 35834 31925 1 17063 2404 56 56 3136 clb auto 347.6 MiB 67.29 228215 1805268 676105 1101345 27818 558.2 MiB 52.66 0.47 74.09 -55972 -74.09 74.09 35.19 0.0472997 0.0409668 6.53089 5.49597 100 328871 23 1.8697e+08 1.42894e+08 2.05038e+07 6538.21 184.66 29.9856 25.7028 448554 4379381 -1 309498 22 65393 254908 13629212 2316157 74.6103 74.6103 -67429.4 -74.6103 0 0 2.58676e+07 8248.60 10.66 6.38 3.38 -1 -1 10.66 3.79848 3.49687 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_depop/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_depop/config/golden_results.txt index 52645d47c66..87e9637f9ad 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_depop/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_depop/config/golden_results.txt @@ -1,22 +1,22 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml arm_core.v common 545.64 vpr 346.07 MiB -1 -1 29.90 123068 20 97.42 -1 -1 73164 -1 -1 678 133 25 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 354372 133 179 14247 14104 1 6984 1015 36 36 1296 memory auto 153.1 MiB 32.08 113413 185.4 MiB 21.76 0.15 19.9189 -193674 -19.9189 19.9189 6.44 0.0512806 0.0392212 5.02432 4.19075 154 206362 36 7.21828e+07 5.02408e+07 1.28857e+07 9942.66 304.02 25.9725 21.2329 239994 2946416 -1 187180 16 34914 147358 43549116 9406829 0 0 43549116 9406829 128796 52721 0 0 796667 773582 0 0 1183163 952258 0 0 135026 60639 0 0 20402678 3789924 0 0 20902786 3777705 0 0 128796 0 0 97173 1051857 1049770 5043924 20799 3936 22.75 22.75 -217270 -22.75 -9.06156 -0.318417 1.62481e+07 12537.1 8.23 14.78 3.62 -1 -1 8.23 2.22202 1.99128 - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml bgm.v common 916.69 vpr 696.57 MiB -1 -1 52.71 616036 14 131.99 -1 -1 123236 -1 -1 2262 257 0 11 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 713292 257 32 35881 33523 1 18654 2562 58 58 3364 clb auto 367.5 MiB 62.17 234382 678.5 MiB 108.21 0.91 16.7655 -22604.2 -16.7655 16.7655 65.54 0.110066 0.0923915 11.6459 9.67862 116 471469 40 2.00088e+08 1.26268e+08 2.71672e+07 8075.87 384.87 52.4918 43.6872 551390 6104869 -1 446793 21 103550 485803 44896743 8058653 0 0 44896743 8058653 485803 193679 0 0 1494424 1414397 0 0 2729411 1994725 0 0 516475 233709 0 0 19823146 2094256 0 0 19847484 2127887 0 0 485803 0 0 401608 3364918 3264114 19931597 0 0 19.1568 19.1568 -25453.6 -19.1568 0 0 3.40353e+07 10117.5 16.25 18.90 6.71 -1 -1 16.25 6.1806 5.51673 - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml blob_merge.v common 197.18 parmys 257.84 MiB -1 -1 13.35 264024 5 8.09 -1 -1 57872 -1 -1 457 36 0 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 159772 36 100 10175 7629 1 2974 593 27 27 729 clb auto 106.9 MiB 27.83 42128 142.6 MiB 7.02 0.08 13.7533 -2228.18 -13.7533 13.7533 3.46 0.0244555 0.0210381 2.43882 2.06003 100 87535 49 3.93038e+07 2.46296e+07 4.90255e+06 6725.04 115.21 14.9657 12.2191 109618 1078381 -1 77019 16 14464 73262 5496259 1015970 0 0 5496259 1015970 73006 22458 0 0 210042 196832 0 0 368789 286982 0 0 76902 27413 0 0 2354010 242472 0 0 2413510 239813 0 0 73006 0 0 61110 436875 418289 2147399 294 1 15.511 15.511 -2652.93 -15.511 0 0 6.15199e+06 8438.94 3.18 3.27 1.33 -1 -1 3.18 1.40873 1.24341 - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml boundtop.v common 29.96 vpr 74.69 MiB -1 -1 16.44 46876 3 1.03 -1 -1 40252 -1 -1 44 196 1 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 76484 196 193 1202 1347 1 609 434 15 15 225 io auto 36.5 MiB 0.68 3010 74.7 MiB 0.85 0.01 2.16087 -974.233 -2.16087 2.16087 0.93 0.00291436 0.00253728 0.269948 0.239355 46 6701 18 1.03862e+07 2.91934e+06 698613. 3104.95 5.36 1.17064 1.03678 24628 145134 -1 6132 13 1970 3512 338399 93046 0 0 338399 93046 3512 2632 0 0 15349 14348 0 0 20394 18565 0 0 3701 2853 0 0 148499 26988 0 0 146944 27660 0 0 3512 0 0 1559 5536 5491 37604 0 0 2.76282 2.76282 -1228.81 -2.76282 -0.125944 -0.0328952 899203. 3996.46 0.39 0.23 0.15 -1 -1 0.39 0.127692 0.116743 - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml ch_intrinsics.v common 5.16 vpr 69.41 MiB -1 -1 0.32 21140 3 0.09 -1 -1 37708 -1 -1 65 99 1 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 71080 99 130 343 473 1 224 295 12 12 144 clb auto 31.2 MiB 0.15 510 69.4 MiB 0.25 0.00 1.48078 -108.611 -1.48078 1.48078 0.47 0.000466184 0.000420489 0.0550261 0.049682 42 1415 11 5.66058e+06 4.05111e+06 373597. 2594.42 2.17 0.241108 0.219032 14140 74821 -1 1202 12 506 825 49045 16861 0 0 49045 16861 825 620 0 0 3184 2978 0 0 4918 4135 0 0 885 744 0 0 19369 4525 0 0 19864 3859 0 0 825 0 0 319 685 400 4081 0 0 2.02783 2.02783 -137.202 -2.02783 -1.25569 -0.298787 468675. 3254.69 0.17 0.05 0.08 -1 -1 0.17 0.0303242 0.0283179 - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml diffeq1.v common 23.40 vpr 72.51 MiB -1 -1 0.40 24704 5 0.24 -1 -1 37440 -1 -1 27 162 0 5 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 74248 162 96 1070 887 1 659 290 16 16 256 mult_36 auto 34.5 MiB 0.55 4955 72.5 MiB 0.46 0.01 15.7359 -1183.88 -15.7359 15.7359 0.74 0.0015618 0.00144336 0.15971 0.144871 74 10345 24 1.21132e+07 3.43514e+06 1.21814e+06 4758.35 17.00 1.13425 1.01847 32224 250998 -1 9356 21 3025 5063 1917203 515989 0 0 1917203 515989 5063 3937 0 0 71465 70311 0 0 83578 76990 0 0 5603 4305 0 0 885898 179981 0 0 865596 180465 0 0 5063 0 0 2061 6773 6807 42224 0 0 17.2555 17.2555 -1414.82 -17.2555 0 0 1.52272e+06 5948.13 0.52 1.07 0.26 -1 -1 0.52 0.189198 0.177736 - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml diffeq2.v common 23.76 vpr 70.83 MiB -1 -1 0.32 23664 5 0.15 -1 -1 37356 -1 -1 18 66 0 5 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 72532 66 96 780 597 1 451 185 16 16 256 mult_36 auto 32.7 MiB 0.43 3373 70.8 MiB 0.37 0.01 11.5635 -690.79 -11.5635 11.5635 0.98 0.0013991 0.00126992 0.143864 0.130612 64 9288 43 1.21132e+07 2.95009e+06 1.08719e+06 4246.82 17.06 0.825223 0.746478 30692 221371 -1 7456 36 4915 10680 3626838 1068766 0 0 3626838 1068766 10680 8367 0 0 119161 117606 0 0 155051 125323 0 0 11344 9127 0 0 1696720 414975 0 0 1633882 393368 0 0 10680 0 0 5778 14544 14843 68687 0 0 13.1971 13.1971 -854.98 -13.1971 0 0 1.34733e+06 5263.00 0.57 0.93 0.24 -1 -1 0.57 0.137847 0.126881 - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml LU8PEEng.v common 1137.42 vpr 605.38 MiB -1 -1 65.07 453864 98 159.27 -1 -1 115012 -1 -1 1800 114 45 8 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 619908 114 102 35713 31804 1 16705 2069 51 51 2601 clb auto 338.8 MiB 62.68 216212 562.0 MiB 109.37 0.92 65.1279 -53179 -65.1279 65.1279 51.20 0.115797 0.0993619 14.912 12.244 126 392450 38 1.52527e+08 1.2484e+08 2.24362e+07 8626.00 574.60 66.8865 54.2519 443726 5099711 -1 363207 24 79344 328232 54538222 11461906 0 0 54538222 11461906 319436 123796 0 0 1309584 1255331 0 0 2187384 1661743 0 0 337525 148871 0 0 25015668 4112075 0 0 25368625 4160090 0 0 319436 0 0 249736 1464608 1468056 8468955 9016 6358 76.0747 76.0747 -67722.1 -76.0747 -27.1496 -0.195295 2.82603e+07 10865.1 16.33 26.33 7.14 -1 -1 16.33 7.10841 6.15306 - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml LU32PEEng.v common 5460.67 vpr 2.25 GiB -1 -1 204.09 1469716 97 1270.78 -1 -1 376704 -1 -1 6215 114 168 32 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 2356056 114 102 120062 107871 1 56756 6631 94 94 8836 clb auto 1096.8 MiB 161.65 1026245 1864.5 MiB 414.93 2.46 61.856 -342036 -61.856 61.856 127.26 0.214256 0.181937 34.0309 28.4655 164 1619287 39 5.40921e+08 4.39655e+08 9.81028e+07 11102.6 2921.96 150.146 126.472 1741328 23094485 -1 1509791 24 239982 1084153 347215008 92316822 0 0 347215008 92316822 1021771 355684 0 0 4690594 4489970 0 0 7624654 5795000 0 0 1077549 441474 0 0 165493958 40224130 0 0 167306482 41010564 0 0 1021771 0 0 815629 5697127 5782048 29953255 64454 297504 74.7282 74.7282 -492621 -74.7282 -43.8142 -0.29436 1.25175e+08 14166.5 45.64 106.84 19.07 -1 -1 45.64 14.2441 12.686 - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml mcml.v common 6514.10 vpr 2.35 GiB -1 -1 273.97 1238052 25 3629.32 -1 -1 372464 -1 -1 6040 36 159 27 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 2461804 36 356 184794 159441 1 63844 6618 93 93 8649 clb auto 1315.9 MiB 101.20 761761 1980.2 MiB 452.96 2.62 42.5926 -275094 -42.5926 42.5926 95.50 0.169429 0.134345 26.7855 22.0562 158 1103853 32 5.27943e+08 4.23316e+08 9.25072e+07 10695.7 1691.99 113.417 94.2878 1667048 21718160 -1 1046278 22 251197 612929 123566250 27262156 0 0 123566250 27262156 526934 313948 0 0 2698183 2576132 0 0 4050018 3326023 0 0 544113 350710 0 0 57911189 10164778 0 0 57835813 10530565 0 0 526934 0 0 279966 1659463 1658463 5585096 94831 756500 45.7759 45.7759 -340713 -45.7759 0 0 1.17788e+08 13618.7 40.92 35.94 17.19 -1 -1 40.92 11.3268 10.0706 - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml mkDelayWorker32B.v common 183.79 vpr 376.73 MiB -1 -1 15.42 122092 5 7.48 -1 -1 48112 -1 -1 456 506 44 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 385768 506 553 3236 3734 1 2845 1559 50 50 2500 memory auto 61.4 MiB 5.87 16661 376.7 MiB 7.68 0.07 6.08946 -1918.26 -6.08946 6.08946 48.86 0.0180085 0.0161754 2.42886 2.134 38 26043 20 1.47946e+08 4.86882e+07 7.51727e+06 3006.91 67.78 11.2247 10.1645 284136 1605944 -1 24776 18 4890 6097 5082714 1206233 0 0 5082714 1206233 5818 5691 0 0 127018 125750 0 0 137709 132675 0 0 6258 5994 0 0 2367367 459975 0 0 2438544 476148 0 0 5818 0 0 932 6599 5267 11846 282 627 7.03549 7.03549 -2373.9 -7.03549 -1.12373 -0.213983 9.46795e+06 3787.18 5.38 2.42 1.63 -1 -1 5.38 0.997662 0.932421 - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml mkPktMerge.v common 37.91 vpr 75.98 MiB -1 -1 1.32 28304 2 0.15 -1 -1 39160 -1 -1 27 311 15 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 77800 311 156 1015 1158 1 965 509 28 28 784 memory auto 36.7 MiB 0.79 8531 74.6 MiB 1.09 0.01 3.95535 -4203.47 -3.95535 3.95535 4.05 0.00313526 0.00254555 0.396748 0.345481 40 15122 15 4.25198e+07 9.67514e+06 2.32339e+06 2963.51 21.22 1.91402 1.69167 86072 485930 -1 14238 14 3030 3473 2777829 766783 0 0 2777829 766783 3473 3257 0 0 84812 84205 0 0 89366 87285 0 0 3569 3363 0 0 1319099 293134 0 0 1277510 295539 0 0 3473 0 0 443 3232 3126 13282 0 0 4.55303 4.55303 -5053.65 -4.55303 -15.3602 -0.340786 2.89875e+06 3697.39 1.72 1.46 0.39 -1 -1 1.72 0.246517 0.225111 - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml mkSMAdapter4B.v common 87.47 vpr 86.68 MiB -1 -1 6.69 54540 5 2.92 -1 -1 41848 -1 -1 151 193 5 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 88764 193 205 2771 2705 1 1306 554 20 20 400 memory auto 49.4 MiB 2.07 10333 86.7 MiB 2.26 0.03 4.41661 -2584.71 -4.41661 4.41661 1.91 0.00677448 0.00580945 0.715977 0.613892 70 22640 44 2.07112e+07 1.0878e+07 1.91061e+06 4776.53 63.83 4.08251 3.49397 50878 398303 -1 18746 16 5242 14268 1664881 365488 0 0 1664881 365488 13435 7952 0 0 64486 61570 0 0 92291 79694 0 0 14490 8855 0 0 747059 103694 0 0 733120 103723 0 0 13435 0 0 8560 55859 58640 361400 838 147 5.12411 5.12411 -2960.64 -5.12411 -9.25411 -0.298787 2.38830e+06 5970.76 1.22 0.85 0.35 -1 -1 1.22 0.357317 0.320467 - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml or1200.v common 165.29 vpr 129.20 MiB -1 -1 5.86 64248 8 5.86 -1 -1 45748 -1 -1 205 385 2 1 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 132296 385 362 4434 4322 1 2359 955 26 26 676 io auto 62.8 MiB 4.49 30146 99.9 MiB 7.37 0.08 8.16594 -8759.31 -8.16594 8.16594 2.86 0.0156776 0.0133762 1.75918 1.52151 126 52951 19 3.69863e+07 1.25403e+07 5.54371e+06 8200.76 121.01 8.3922 7.28661 113068 1241010 -1 49687 18 11061 38659 4973418 972806 0 0 4973418 972806 36300 17515 0 0 144694 138473 0 0 236099 183765 0 0 38678 20387 0 0 2249119 305906 0 0 2268528 306760 0 0 36300 0 0 25965 167898 168626 881524 2607 272 9.04328 9.04328 -9965.8 -9.04328 0 0 6.98504e+06 10332.9 3.61 2.07 1.65 -1 -1 3.61 0.79898 0.729692 - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml raygentop.v common 51.19 vpr 87.62 MiB -1 -1 4.10 44184 3 1.12 -1 -1 40264 -1 -1 112 236 1 6 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 89728 236 305 3195 3007 1 1538 660 19 19 361 io auto 50.2 MiB 2.00 12646 87.6 MiB 2.45 0.02 4.33653 -2645.65 -4.33653 4.33653 1.33 0.00405988 0.00366692 0.74619 0.661349 88 25126 23 1.72706e+07 8.96013e+06 2.08404e+06 5772.96 31.02 4.34992 3.82971 49918 442207 -1 23360 16 6285 16877 3437091 744040 0 0 3437091 744040 16092 9762 0 0 128757 125471 0 0 160801 146027 0 0 17477 11007 0 0 1566470 223155 0 0 1547494 228618 0 0 16092 0 0 10099 45915 44800 230552 842 41 4.76083 4.76083 -3149.62 -4.76083 -3.86567 -0.169679 2.59929e+06 7200.24 1.38 1.28 0.37 -1 -1 1.38 0.387934 0.357277 - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml sha.v common 28.29 vpr 84.93 MiB -1 -1 2.59 46604 4 2.64 -1 -1 41212 -1 -1 117 38 0 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 86972 38 36 2744 2493 1 1026 191 15 15 225 clb auto 47.8 MiB 1.83 8867 84.9 MiB 1.04 0.02 9.32796 -2447.88 -9.32796 9.32796 1.01 0.0058094 0.00486326 0.427394 0.363152 78 18988 30 1.03862e+07 6.3056e+06 1.12226e+06 4987.81 13.46 2.96217 2.5002 29332 237424 -1 15470 18 4847 13872 883945 191798 0 0 883945 191798 11584 6211 0 0 41783 38412 0 0 70229 57971 0 0 11986 6787 0 0 375407 40931 0 0 372956 41486 0 0 11584 0 0 7012 55203 55214 285092 2680 227 10.8148 10.8148 -3186.58 -10.8148 0 0 1.41477e+06 6287.88 0.61 0.59 0.27 -1 -1 0.61 0.3587 0.319312 - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml spree.v common 28.39 vpr 76.00 MiB -1 -1 2.95 34356 16 0.78 -1 -1 38304 -1 -1 46 45 3 1 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 77824 45 32 1193 1152 1 771 127 14 14 196 memory auto 38.5 MiB 1.24 6049 76.0 MiB 0.65 0.01 9.279 -6076.56 -9.279 9.279 0.80 0.00288547 0.00239332 0.291076 0.244835 90 13081 35 9.20055e+06 4.51912e+06 1.09403e+06 5581.78 17.44 1.81468 1.53341 26780 228147 -1 11860 14 3540 10244 2006820 500194 0 0 2006820 500194 10244 5702 0 0 69812 68133 0 0 91271 79384 0 0 10702 6685 0 0 913321 175447 0 0 911470 164843 0 0 10244 0 0 6849 25537 25219 171895 0 0 10.2605 10.2605 -7127.39 -10.2605 -14.2672 -0.317384 1.36167e+06 6947.29 0.59 0.65 0.24 -1 -1 0.59 0.147106 0.135394 - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml stereovision0.v common 141.74 vpr 247.67 MiB -1 -1 9.78 102876 5 9.82 -1 -1 69436 -1 -1 673 169 0 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 253612 169 197 23321 21461 1 6785 1039 33 33 1089 clb auto 179.3 MiB 10.76 41251 213.2 MiB 10.82 0.10 3.08234 -13147 -3.08234 3.08234 5.55 0.0273427 0.023104 3.42361 2.83565 78 65470 35 6.0475e+07 3.62708e+07 5.97661e+06 5488.16 67.21 18.087 14.9138 148670 1295497 -1 61251 14 16594 29274 1699709 394274 0 0 1699709 394274 25875 19353 0 0 89056 80593 0 0 137119 118902 0 0 26797 20616 0 0 711313 77700 0 0 709549 77110 0 0 25875 0 0 9458 48935 54831 239069 3826 1927 3.87583 3.87583 -15634.2 -3.87583 0 0 7.53085e+06 6915.38 4.02 2.38 1.47 -1 -1 4.02 1.98836 1.77451 - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml stereovision1.v common 356.60 vpr 298.27 MiB -1 -1 9.50 123468 3 17.20 -1 -1 79532 -1 -1 655 115 0 40 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 305432 115 145 22868 19305 1 9712 955 40 40 1600 mult_36 auto 175.4 MiB 10.12 82272 210.1 MiB 13.21 0.12 5.15059 -21406.4 -5.15059 5.15059 8.98 0.0283561 0.0236999 3.68002 3.10504 100 136709 35 9.16046e+07 5.11412e+07 1.10258e+07 6891.10 253.71 21.791 18.0567 242376 2436732 -1 123699 17 34263 54166 18393474 3828800 0 0 18393474 3828800 46677 38279 0 0 561638 549249 0 0 662523 619771 0 0 48054 39439 0 0 8579349 1288609 0 0 8495233 1293453 0 0 46677 0 0 12866 162410 159065 555314 8140 5217 5.48539 5.48539 -24969.7 -5.48539 0 0 1.38359e+07 8647.47 8.02 6.57 2.47 -1 -1 8.02 2.01249 1.77565 - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml stereovision2.v common 1568.29 vpr 1.06 GiB -1 -1 13.62 197080 3 8.22 -1 -1 157328 -1 -1 1490 149 0 179 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 1107964 149 182 55416 37075 1 28670 2000 80 80 6400 mult_36 auto 361.6 MiB 28.98 291939 1082.0 MiB 70.87 0.42 12.5458 -48952.6 -12.5458 12.5458 137.07 0.0571067 0.050096 12.1912 10.3311 100 418048 35 3.90281e+08 1.51186e+08 4.58129e+07 7158.27 1169.23 65.0704 54.0002 988936 10231362 -1 389032 20 98976 121041 47809628 9731402 0 0 47809628 9731402 115777 103569 0 0 1169182 1140059 0 0 1411483 1297865 0 0 116899 105223 0 0 22494027 3480737 0 0 22502260 3603949 0 0 115777 0 0 16949 122925 119822 398678 5579 10350 13.8912 13.8912 -57858.9 -13.8912 0 0 5.74647e+07 8978.85 35.65 20.89 11.96 -1 -1 35.65 5.31911 4.69368 - k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml stereovision3.v common 3.09 vpr 68.77 MiB -1 -1 0.67 24964 4 0.19 -1 -1 36240 -1 -1 13 11 0 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/vtr-verilog-to-routing 70420 11 2 303 283 2 70 26 7 7 49 clb auto 30.4 MiB 0.18 218 68.8 MiB 0.04 0.00 1.86682 -151.802 -1.86682 1.77386 0.09 0.000344302 0.000276027 0.0236224 0.0194743 26 512 13 1.07788e+06 700622 75813.7 1547.22 0.47 0.140131 0.117455 3816 13734 -1 438 11 240 500 16504 6703 0 0 16504 6703 500 416 0 0 1541 1353 0 0 2437 2240 0 0 580 522 0 0 5898 1098 0 0 5548 1074 0 0 500 0 0 260 476 425 2907 0 0 2.16847 1.939 -177.724 -2.16847 0 0 91376.6 1864.83 0.02 0.03 0.01 -1 -1 0.02 0.0203121 0.0186171 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml arm_core.v common 277.11 vpr 289.11 MiB -1 -1 16.67 124648 20 39.27 -1 -1 72328 -1 -1 679 133 25 0 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 296044 133 179 14228 14085 1 6986 1016 36 36 1296 memory auto 149.9 MiB 23.02 111869 506411 160230 326278 19903 181.8 MiB 9.47 0.08 19.5094 -192112 -19.5094 19.5094 4.12 0.0160466 0.0136643 1.86358 1.55727 154 199903 32 7.21828e+07 5.02946e+07 1.28857e+07 9942.66 153.26 8.23573 7.08873 239994 2946416 -1 183903 16 33799 138265 51564315 11944708 22.41 22.41 -214787 -22.41 -3.1378 -0.29436 1.62481e+07 12537.1 5.26 10.90 2.38 -1 -1 5.26 1.4659 1.3784 +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml bgm.v common 434.85 vpr 712.33 MiB -1 -1 33.46 637524 14 62.12 -1 -1 123408 -1 -1 2287 257 0 11 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 729428 257 32 36080 33722 1 18672 2587 58 58 3364 clb auto 366.8 MiB 41.13 238750 1777787 613628 1135373 28786 691.6 MiB 44.36 0.36 16.9078 -22798.4 -16.9078 16.9078 38.14 0.0417663 0.0365797 5.01023 4.34011 114 489515 43 2.00088e+08 1.27615e+08 2.67492e+07 7951.60 147.45 22.3155 19.5798 548026 6020043 -1 456285 20 103684 494058 43713903 7882929 19.3528 19.3528 -25719.6 -19.3528 0 0 3.36466e+07 10002.0 12.44 11.94 4.53 -1 -1 12.44 3.97353 3.71849 +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml blob_merge.v common 87.69 parmys 262.07 MiB -1 -1 8.08 268356 5 3.85 -1 -1 58680 -1 -1 447 36 0 0 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 179696 36 100 10178 7632 1 2978 583 27 27 729 clb auto 104.4 MiB 16.70 43318 219643 62652 141928 15063 140.1 MiB 3.02 0.03 13.6111 -2272.14 -13.6111 13.6111 2.20 0.00651588 0.00551055 0.768924 0.662803 110 84751 33 3.93038e+07 2.40906e+07 5.33614e+06 7319.81 41.58 4.4518 3.87219 114714 1189977 -1 77052 17 14017 69317 4925517 913768 15.4853 15.4853 -2667.39 -15.4853 0 0 6.77266e+06 9290.34 1.99 1.35 0.86 -1 -1 1.99 0.624448 0.586094 +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml boundtop.v common 17.08 vpr 71.96 MiB -1 -1 9.15 48936 3 0.67 -1 -1 39220 -1 -1 45 196 1 0 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 73692 196 193 1201 1346 1 604 435 15 15 225 io auto 33.8 MiB 0.47 2981 150312 44495 93614 12203 72.0 MiB 0.47 0.01 2.05507 -979.869 -2.05507 2.05507 0.57 0.00161266 0.00148292 0.165224 0.151168 40 7176 44 1.03862e+07 2.97323e+06 618415. 2748.51 3.52 0.779086 0.725008 23732 127356 -1 6238 14 2121 3542 344117 91418 2.57674 2.57674 -1194.23 -2.57674 -0.478269 -0.152189 773047. 3435.76 0.25 0.14 0.09 -1 -1 0.25 0.0824519 0.078801 +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml ch_intrinsics.v common 3.66 vpr 66.66 MiB -1 -1 0.24 21888 3 0.09 -1 -1 36920 -1 -1 65 99 1 0 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 68260 99 130 344 474 1 221 295 12 12 144 clb auto 28.3 MiB 0.10 584 75832 24915 37314 13603 66.7 MiB 0.14 0.00 1.60782 -108.554 -1.60782 1.60782 0.30 0.000408101 0.000365301 0.032699 0.0291703 46 1375 14 5.66058e+06 4.05111e+06 408669. 2837.98 1.60 0.165947 0.151987 14568 82464 -1 1241 9 501 815 42163 14297 1.90052 1.90052 -138.848 -1.90052 -0.522528 -0.192271 525203. 3647.24 0.16 0.02 0.06 -1 -1 0.16 0.0164117 0.0156824 +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml diffeq1.v common 13.23 vpr 69.73 MiB -1 -1 0.30 25348 5 0.16 -1 -1 38040 -1 -1 26 162 0 5 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 71408 162 96 1075 892 1 662 289 16 16 256 mult_36 auto 31.7 MiB 0.29 5020 87194 31634 49300 6260 69.7 MiB 0.37 0.01 15.5513 -1198.01 -15.5513 15.5513 0.60 0.00108968 0.00087173 0.117896 0.106419 62 11041 23 1.21132e+07 3.38124e+06 1.04918e+06 4098.38 9.27 0.629926 0.579055 30184 211102 -1 9365 22 3684 6482 1932785 501322 17.3515 17.3515 -1402.06 -17.3515 0 0 1.29183e+06 5046.22 0.37 0.35 0.14 -1 -1 0.37 0.0801783 0.0761602 +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml diffeq2.v common 16.37 vpr 68.38 MiB -1 -1 0.22 24472 5 0.12 -1 -1 37504 -1 -1 16 66 0 5 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70016 66 96 778 595 1 452 183 16 16 256 mult_36 auto 30.2 MiB 0.25 3796 47931 18238 24999 4694 68.4 MiB 0.23 0.01 11.6653 -721.689 -11.6653 11.6653 0.61 0.0021724 0.000634322 0.0820875 0.0733953 54 8985 24 1.21132e+07 2.8423e+06 903890. 3530.82 12.65 0.47082 0.431882 28908 188420 -1 7667 19 3422 6989 2894348 736724 13.1378 13.1378 -884.515 -13.1378 0 0 1.17254e+06 4580.24 0.33 0.47 0.12 -1 -1 0.33 0.054892 0.0522077 +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml LU8PEEng.v common 453.19 vpr 634.28 MiB -1 -1 40.35 458136 97 67.61 -1 -1 116280 -1 -1 1817 114 45 8 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 649504 114 102 35834 31925 1 16655 2086 52 52 2704 clb auto 338.8 MiB 38.84 215398 1480939 529962 920626 30351 592.6 MiB 35.90 0.30 63.9023 -51832.3 -63.9023 63.9023 29.27 0.0365643 0.0313887 4.72225 3.98955 118 403134 41 1.58905e+08 1.25757e+08 2.19720e+07 8125.73 179.07 22.5222 19.4447 445196 4945367 -1 365440 26 84812 347712 59122473 12667064 72.9598 72.9598 -67594.2 -72.9598 -22.3536 -0.293253 2.76197e+07 10214.4 10.15 15.98 3.68 -1 -1 10.15 3.82828 3.51735 +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml LU32PEEng.v common 4545.11 vpr 2.15 GiB -1 -1 128.48 1499332 97 635.41 -1 -1 358708 -1 -1 6264 114 168 32 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 2253068 114 102 120350 108159 1 57393 6680 94 94 8836 clb auto 1099.3 MiB 142.33 1002377 7741412 3101845 4587037 52530 1910.5 MiB 279.40 2.10 61.1772 -294786 -61.1772 61.1772 110.76 0.150743 0.129744 22.1123 18.9696 164 1599216 47 5.40921e+08 4.42296e+08 9.81028e+07 11102.6 2935.70 80.2872 69.5089 1741328 23094485 -1 1497489 23 245053 1111111 345304904 91442091 72.177 72.177 -449510 -72.177 -38.9067 -0.292146 1.25175e+08 14166.5 51.93 126.42 20.24 -1 -1 51.93 14.3855 13.1443 +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml mcml.v common 4052.63 vpr 2.22 GiB -1 -1 164.66 1254260 25 2216.02 -1 -1 373144 -1 -1 6092 36 159 27 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 2323188 36 356 185159 159806 1 63968 6670 93 93 8649 clb auto 1312.7 MiB 122.70 764984 9043966 3452533 5377457 213976 2034.1 MiB 415.93 2.64 44.0249 -277627 -44.0249 44.0249 108.37 0.156207 0.128577 24.3516 20.2318 154 1118635 43 5.27943e+08 4.26118e+08 9.06356e+07 10479.3 795.63 98.3709 83.4586 1641104 21087044 -1 1050884 22 254701 613161 130623601 28909159 47.7077 47.7077 -351690 -47.7077 -0.240863 -0.0215478 1.14427e+08 13230.1 50.66 42.81 17.78 -1 -1 50.66 12.7798 11.6449 +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml mkDelayWorker32B.v common 81.80 vpr 381.34 MiB -1 -1 8.92 121524 5 3.40 -1 -1 48636 -1 -1 465 506 44 0 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 390492 506 553 3236 3734 1 2854 1568 50 50 2500 memory auto 59.1 MiB 3.82 16229 1176113 568893 419592 187628 381.3 MiB 3.45 0.04 6.96637 -2056.03 -6.96637 6.96637 26.67 0.0110014 0.0102196 1.51912 1.39252 38 25725 17 1.47946e+08 4.91733e+07 7.51727e+06 3006.91 17.42 4.40965 4.1239 284136 1605944 -1 24262 17 4753 6161 4413542 1107869 7.71942 7.71942 -2574.22 -7.71942 -2.60855 -0.216197 9.46795e+06 3787.18 3.63 1.26 1.04 -1 -1 3.63 0.594962 0.567469 +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml mkPktMerge.v common 25.63 vpr 72.07 MiB -1 -1 0.91 29184 2 0.11 -1 -1 37840 -1 -1 27 311 15 0 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 73804 311 156 1015 1158 1 965 509 28 28 784 memory auto 34.2 MiB 0.53 8982 197516 69517 118417 9582 72.1 MiB 0.65 0.01 4.2275 -4143.2 -4.2275 4.2275 2.35 0.00294516 0.00258436 0.247937 0.21669 36 16496 41 4.25198e+07 9.67514e+06 2.12999e+06 2716.82 15.87 1.26374 1.13519 83724 436647 -1 14920 15 3351 3803 2953163 794022 4.6504 4.6504 -4999.11 -4.6504 -9.7666 -0.29768 2.61523e+06 3335.75 0.93 0.60 0.28 -1 -1 0.93 0.120155 0.111439 +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml mkSMAdapter4B.v common 30.85 vpr 83.23 MiB -1 -1 4.12 55588 5 1.66 -1 -1 42932 -1 -1 149 193 5 0 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 85224 193 205 2718 2652 1 1332 552 20 20 400 memory auto 45.8 MiB 1.29 10421 235904 85730 126610 23564 83.2 MiB 1.30 0.02 4.51877 -2546.56 -4.51877 4.51877 1.07 0.00365451 0.00316066 0.355002 0.307152 70 21547 47 2.07112e+07 1.07702e+07 1.91061e+06 4776.53 16.53 1.28063 1.14003 50878 398303 -1 18601 27 5203 13861 2099937 567638 5.29174 5.29174 -3059.47 -5.29174 -15.9103 -0.360359 2.38830e+06 5970.76 0.71 0.66 0.29 -1 -1 0.71 0.266539 0.248322 +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml or1200.v common 154.07 vpr 112.54 MiB -1 -1 3.35 66424 8 3.17 -1 -1 44760 -1 -1 197 385 2 1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 115244 385 362 4415 4299 1 2339 947 26 26 676 io auto 60.2 MiB 2.89 28988 521523 209405 290824 21294 97.3 MiB 3.58 0.04 8.42241 -8911.15 -8.42241 8.42241 1.90 0.00690316 0.00633374 0.750406 0.678248 112 56033 38 3.69863e+07 1.21091e+07 5.00714e+06 7407.01 130.40 4.44196 4.09271 106992 1111850 -1 49084 16 11578 40007 5288009 1017433 9.38843 9.38843 -10181.8 -9.38843 0 0 6.33320e+06 9368.63 1.92 1.30 0.83 -1 -1 1.92 0.479412 0.461578 +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml raygentop.v common 30.67 vpr 85.10 MiB -1 -1 2.53 45276 3 0.64 -1 -1 40988 -1 -1 111 236 1 6 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 87144 236 305 3199 3011 1 1531 659 19 19 361 io auto 47.6 MiB 1.39 12224 264331 92913 159695 11723 85.1 MiB 1.28 0.02 4.40121 -2674.93 -4.40121 4.40121 0.96 0.00318628 0.00288552 0.34631 0.311379 80 25950 44 1.72706e+07 8.90623e+06 1.90610e+06 5280.05 19.35 2.13825 1.95394 48118 405907 -1 22961 18 6262 17295 2780033 621184 4.77789 4.77789 -3156.13 -4.77789 -1.83131 -0.196402 2.39503e+06 6634.44 0.68 0.62 0.30 -1 -1 0.68 0.24386 0.231537 +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml sha.v common 17.48 vpr 82.26 MiB -1 -1 1.70 47948 3 1.20 -1 -1 43316 -1 -1 115 38 0 0 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 84236 38 36 2739 2488 1 1004 189 15 15 225 clb auto 45.2 MiB 1.14 8356 37045 9649 24758 2638 82.3 MiB 0.55 0.01 9.28401 -2528.93 -9.28401 9.28401 0.56 0.00175184 0.00144902 0.173924 0.145902 70 18776 49 1.03862e+07 6.19781e+06 1.04071e+06 4625.39 9.14 1.24178 1.07119 28212 215244 -1 15278 27 5167 14875 913664 202424 11.1228 11.1228 -3189.18 -11.1228 0 0 1.29999e+06 5777.74 0.38 0.35 0.14 -1 -1 0.38 0.209582 0.192104 +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml spree.v common 11.99 vpr 73.34 MiB -1 -1 2.03 35788 16 0.48 -1 -1 38724 -1 -1 46 45 3 1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 75100 45 32 1192 1151 1 782 127 14 14 196 memory auto 35.7 MiB 0.77 6226 27880 8859 15719 3302 73.3 MiB 0.36 0.00 9.20301 -5956.36 -9.20301 9.20301 0.47 0.00111759 0.000917258 0.129181 0.108048 88 13652 32 9.20055e+06 4.51912e+06 1.07466e+06 5482.98 5.14 0.554105 0.478437 26584 224627 -1 12292 13 3673 10311 2455365 598014 10.5235 10.5235 -7231.16 -10.5235 -14.7391 -0.317384 1.34088e+06 6841.21 0.42 0.47 0.17 -1 -1 0.42 0.10313 0.0972234 +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml stereovision0.v common 72.70 vpr 233.89 MiB -1 -1 6.73 102884 5 4.96 -1 -1 70160 -1 -1 682 169 0 0 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 239500 169 197 23225 21365 1 6678 1048 33 33 1089 clb auto 176.4 MiB 7.14 40853 549111 176435 350699 21977 210.6 MiB 4.93 0.05 3.08163 -12979.4 -3.08163 3.08163 3.21 0.0144561 0.0118314 1.51886 1.26053 66 68359 29 6.0475e+07 3.67558e+07 5.30978e+06 4875.83 29.88 7.52762 6.45734 139966 1102889 -1 63046 18 17522 29961 1904789 430843 4.01414 4.01414 -15376.1 -4.01414 0 0 6.51388e+06 5981.53 2.19 1.26 0.69 -1 -1 2.19 1.14384 1.06893 +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml stereovision1.v common 106.32 vpr 277.75 MiB -1 -1 5.67 125212 3 7.51 -1 -1 77896 -1 -1 650 115 0 40 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 284416 115 145 22864 19301 1 9740 950 40 40 1600 mult_36 auto 173.1 MiB 6.83 79459 505094 163866 316078 25150 211.3 MiB 6.13 0.07 5.4916 -21966.6 -5.4916 5.4916 5.36 0.0120955 0.0100814 1.64412 1.38057 98 135498 25 9.16046e+07 5.08717e+07 1.08598e+07 6787.37 50.76 6.70421 5.8006 240780 2401780 -1 120755 16 32923 51866 21019041 4322088 5.75602 5.75602 -25929.5 -5.75602 0 0 1.36941e+07 8558.84 4.59 4.18 1.69 -1 -1 4.59 1.13229 1.0594 +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml stereovision2.v common 435.72 vpr 1.07 GiB -1 -1 8.47 198472 3 4.65 -1 -1 155908 -1 -1 1500 149 0 179 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 1120368 149 182 55415 37074 1 28661 2010 80 80 6400 mult_36 auto 356.6 MiB 18.61 288964 1701130 572744 1062078 66308 1094.1 MiB 30.13 0.23 12.2118 -49442.5 -12.2118 12.2118 77.26 0.032975 0.0275799 5.18024 4.47614 94 427916 46 3.90281e+08 1.51724e+08 4.36043e+07 6813.17 210.91 22.444 19.7811 963340 9615902 -1 403969 19 110729 132979 60616727 12419672 13.8032 13.8032 -59813.2 -13.8032 0 0 5.46467e+07 8538.54 21.96 13.00 6.92 -1 -1 21.96 2.69993 2.50975 +k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml stereovision3.v common 2.16 vpr 65.91 MiB -1 -1 0.49 26296 4 0.14 -1 -1 36304 -1 -1 13 11 0 0 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67496 11 2 303 283 2 70 26 7 7 49 clb auto 27.5 MiB 0.13 214 1964 572 1226 166 65.9 MiB 0.03 0.00 1.86682 -151.278 -1.86682 1.77432 0.06 0.00023271 0.000187802 0.0145243 0.0116567 28 568 19 1.07788e+06 700622 79600.7 1624.51 0.31 0.0757083 0.0623371 3864 14328 -1 429 11 257 502 15631 6445 2.07763 1.88327 -173.551 -2.07763 0 0 95067.4 1940.15 0.02 0.02 0.01 -1 -1 0.02 0.0157527 0.0148059 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_predictor_off/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_predictor_off/config/config.txt index 8ab936423a7..9c26386bee3 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_predictor_off/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_predictor_off/config/config.txt @@ -9,6 +9,11 @@ circuits_dir=benchmarks/verilog # Path to directory of architectures to use archs_dir=arch/timing +# Turned off the largest circuits since they sometimes cause the runtime of this +# test to take too long. +# circuit_list_add=LU32PEEng.v +# circuit_list_add=mcml.v + # Add circuits to list to sweep circuit_list_add=arm_core.v circuit_list_add=bgm.v @@ -18,8 +23,6 @@ circuit_list_add=ch_intrinsics.v circuit_list_add=diffeq1.v circuit_list_add=diffeq2.v circuit_list_add=LU8PEEng.v -circuit_list_add=LU32PEEng.v -circuit_list_add=mcml.v circuit_list_add=mkDelayWorker32B.v circuit_list_add=mkPktMerge.v circuit_list_add=mkSMAdapter4B.v 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 2c43cbe8bd9..8af30fb0763 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,22 +1,20 @@ -arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time -k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 662.90 vpr 246.16 MiB -1 -1 29.70 123508 20 74.87 -1 -1 70936 -1 -1 847 133 25 0 success f0f2ad5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T02:06:25 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 252068 133 179 14247 14104 1 7175 1184 36 36 1296 clb memory auto 152.9 MiB 53.43 124776 633545 211897 398952 22696 185.0 MiB 23.54 0.21 20.3505 -191488 -20.3505 20.3505 7.11 0.0538231 0.0466267 6.37083 5.18968 114 188655 41 7.21828e+07 5.93492e+07 9.23903e+06 7128.88 419.76 29.9675 24.0725 193572 1964291 -1 170575 15 30747 118723 46198310 10629482 0 0 46198310 10629482 105863 40322 0 0 579634 544274 0 0 665347 588373 0 0 109729 44936 0 0 22510045 4696854 0 0 22227692 4714723 0 0 105863 0 0 77845 715282 675014 3675845 14755 3974 23.5006 23.5006 -216365 -23.5006 0 0 1.16798e+07 9012.23 7.30 23.23 2.75 -1 -1 7.30 3.04443 2.62974 -k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 933.24 vpr 651.30 MiB -1 -1 55.67 621584 14 111.04 -1 -1 122860 -1 -1 2696 257 0 11 success f0f2ad5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T02:06:25 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 666932 257 32 35881 33523 1 19445 2996 62 62 3844 clb auto 373.1 MiB 114.33 255790 2183485 783716 1368019 31750 648.7 MiB 131.39 0.96 18.436 -23852.7 -18.436 18.436 72.31 0.130172 0.112954 16.3846 12.9435 76 399987 47 2.30929e+08 1.49656e+08 1.99380e+07 5186.80 342.86 69.8405 55.5622 490724 4141743 -1 375131 21 97160 445177 29563204 4751982 0 0 29563204 4751982 445177 160609 0 0 676658 566225 0 0 960164 679631 0 0 469923 181977 0 0 13269982 1560492 0 0 13741300 1603048 0 0 445177 0 0 362256 2243966 2246907 15317408 0 0 20.5434 20.5434 -26836.5 -20.5434 0 0 2.49292e+07 6485.22 13.60 21.04 5.24 -1 -1 13.60 8.72632 7.43822 -k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 126.19 parmys 260.11 MiB -1 -1 13.85 266348 5 6.48 -1 -1 57656 -1 -1 494 36 0 0 success f0f2ad5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T02:06:25 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 143676 36 100 10175 7629 1 2793 630 28 28 784 clb auto 106.2 MiB 25.57 41246 224647 68328 142791 13528 139.6 MiB 5.63 0.06 13.5627 -2244.11 -13.5627 13.5627 3.57 0.0218009 0.0194185 2.20148 1.88779 70 69915 38 4.25198e+07 2.66236e+07 3.59791e+06 4589.17 52.84 9.56396 7.91345 94322 733910 -1 60825 14 12355 63451 2519813 363843 0 0 2519813 363843 63451 16038 0 0 78545 63843 0 0 114058 78556 0 0 65877 19328 0 0 1080972 92710 0 0 1116910 93368 0 0 63451 0 0 53124 302755 301446 1667430 0 0 15.9356 15.9356 -2614.43 -15.9356 0 0 4.52633e+06 5773.37 2.10 2.07 0.94 -1 -1 2.10 1.31412 1.15584 -k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 25.02 vpr 72.69 MiB -1 -1 15.85 47336 3 0.87 -1 -1 38504 -1 -1 44 196 1 0 success f0f2ad5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T02:06:25 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74432 196 193 1202 1347 1 614 434 15 15 225 io auto 34.7 MiB 0.92 2900 136720 34509 89771 12440 72.7 MiB 0.72 0.01 1.97071 -963.576 -1.97071 1.97071 0.78 0.00324965 0.00300489 0.292143 0.267685 38 6083 24 1.03862e+07 2.91934e+06 544116. 2418.30 2.69 1.09471 0.998606 21558 109668 -1 5456 11 1743 2574 215105 56195 0 0 215105 56195 2574 2011 0 0 8684 8026 0 0 9496 8694 0 0 2705 2127 0 0 96975 17430 0 0 94671 17907 0 0 2574 0 0 837 2716 2312 17083 0 0 2.63128 2.63128 -1201.53 -2.63128 0 0 690508. 3068.92 0.27 0.18 0.13 -1 -1 0.27 0.119568 0.112923 -k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 3.81 vpr 67.50 MiB -1 -1 0.35 21344 3 0.09 -1 -1 35912 -1 -1 68 99 1 0 success f0f2ad5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T02:06:25 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 69120 99 130 343 473 1 217 298 12 12 144 clb auto 29.0 MiB 0.28 528 78903 25073 40118 13712 67.5 MiB 0.27 0.00 1.48813 -106.534 -1.48813 1.48813 0.43 0.000973189 0.000888661 0.0801078 0.0737014 38 1426 9 5.66058e+06 4.21279e+06 319126. 2216.15 0.88 0.260036 0.236161 12802 62767 -1 1200 7 370 587 33660 11154 0 0 33660 11154 587 474 0 0 1916 1774 0 0 2379 1918 0 0 658 545 0 0 13929 3525 0 0 14191 2918 0 0 587 0 0 217 290 264 2194 0 0 2.05225 2.05225 -139.908 -2.05225 0 0 406307. 2821.58 0.15 0.04 0.08 -1 -1 0.15 0.0269922 0.0254845 -k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 13.67 vpr 70.82 MiB -1 -1 0.42 24544 5 0.20 -1 -1 36916 -1 -1 31 162 0 5 success f0f2ad5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T02:06:25 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72516 162 96 1070 887 1 659 294 16 16 256 mult_36 auto 33.1 MiB 0.48 4939 89201 31846 50165 7190 70.8 MiB 0.68 0.01 15.4576 -1184.08 -15.4576 15.4576 0.89 0.00311228 0.00284804 0.286005 0.264276 60 10060 43 1.21132e+07 3.65071e+06 934704. 3651.19 7.64 1.22761 1.13057 27828 185084 -1 8628 21 2914 5058 1744747 454671 0 0 1744747 454671 5058 3818 0 0 79245 78276 0 0 83992 79551 0 0 5595 4351 0 0 795448 148260 0 0 775409 140415 0 0 5058 0 0 2164 5459 5331 29592 0 0 16.9974 16.9974 -1348.27 -16.9974 0 0 1.17753e+06 4599.72 0.45 0.62 0.23 -1 -1 0.45 0.160523 0.150246 -k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 16.11 vpr 69.57 MiB -1 -1 0.28 23824 5 0.16 -1 -1 36664 -1 -1 22 66 0 5 success f0f2ad5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T02:06:25 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71236 66 96 780 597 1 469 189 16 16 256 mult_36 auto 31.5 MiB 0.64 3526 46801 16553 26380 3868 69.6 MiB 0.44 0.01 11.6851 -709.25 -11.6851 11.6851 0.92 0.00212032 0.00196569 0.200507 0.185855 50 8448 41 1.21132e+07 3.16567e+06 780532. 3048.95 10.20 0.816673 0.753486 26044 153858 -1 7233 23 3644 7691 3153030 829597 0 0 3153030 829597 7691 5655 0 0 106925 105962 0 0 118209 107404 0 0 8374 6346 0 0 1477559 306373 0 0 1434272 297857 0 0 7691 0 0 4058 9574 10187 48642 0 0 12.7739 12.7739 -825.445 -12.7739 0 0 1.00276e+06 3917.05 0.38 0.95 0.19 -1 -1 0.38 0.131645 0.123166 -k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 1024.32 vpr 583.37 MiB -1 -1 68.76 456164 98 120.48 -1 -1 115016 -1 -1 2126 114 45 8 success f0f2ad5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T02:06:25 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 597368 114 102 35713 31804 1 16877 2395 56 56 3136 clb auto 348.3 MiB 94.46 225629 1828333 682393 1114002 31938 555.8 MiB 105.63 0.84 66.7728 -53770.5 -66.7728 66.7728 56.79 0.135459 0.115272 17.051 13.7454 90 338247 34 1.8697e+08 1.42409e+08 1.87445e+07 5977.21 473.48 68.1463 54.4084 426610 3924124 -1 312213 22 69914 275085 38425627 8087296 0 0 38425627 8087296 267350 93882 0 0 730069 662093 0 0 905289 735847 0 0 278509 106077 0 0 17977454 3245056 0 0 18266956 3244341 0 0 267350 0 0 204831 940601 926855 5971273 8150 7176 75.429 75.429 -67708.4 -75.429 0 0 2.34582e+07 7480.28 15.77 24.35 5.71 -1 -1 15.77 8.58371 7.20655 -k6_frac_N10_frac_chain_mem32K_40nm.xml LU32PEEng.v common 9212.35 vpr 2.03 GiB -1 -1 224.70 1459188 97 1277.45 -1 -1 357456 -1 -1 7412 114 168 32 success f0f2ad5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T02:06:25 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 2130276 114 102 120062 107871 1 57253 7828 102 102 10404 clb auto 1117.2 MiB 289.39 1024166 9796894 4083424 5665631 47839 1828.0 MiB 758.50 5.25 63.6041 -357241 -63.6041 63.6041 136.18 0.53157 0.404365 64.2643 50.441 128 1352332 37 6.36957e+08 5.04159e+08 8.68880e+07 8351.40 6215.26 227.51 181.983 1688524 18950277 -1 1303316 21 208175 902044 237197876 60295767 0 0 237197876 60295767 846344 259659 0 0 2631493 2390813 0 0 3259511 2650739 0 0 879418 311750 0 0 113460829 26737869 0 0 116120281 27944937 0 0 846344 0 0 663648 3943837 4017603 21966204 57498 279443 72.5406 72.5406 -484679 -72.5406 0 0 1.09718e+08 10545.7 43.74 97.99 17.89 -1 -1 43.74 18.2373 15.723 -k6_frac_N10_frac_chain_mem32K_40nm.xml mcml.v common 6909.26 vpr 2.34 GiB -1 -1 290.87 1239900 25 4350.45 -1 -1 371452 -1 -1 6438 36 159 27 success f0f2ad5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T02:06:25 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 2451808 36 356 184794 159441 1 63873 7016 95 95 9025 clb auto 1305.0 MiB 151.02 759894 9607464 3664288 5746086 197090 1804.9 MiB 633.64 3.79 43.1973 -293373 -43.1973 43.1973 112.26 0.240815 0.207537 39.1572 32.1741 152 984555 25 5.4965e+08 4.44764e+08 8.78148e+07 9730.17 1108.58 154.017 126.285 1608426 19471936 -1 957945 22 214560 488113 107294273 26019685 0 0 107294273 26019685 428419 245683 0 0 1501699 1372581 0 0 1862230 1509040 0 0 439720 264705 0 0 51410076 11234945 0 0 51652129 11392731 0 0 428419 0 0 216875 1106259 1067558 3809376 67943 246526 45.7578 45.7578 -384786 -45.7578 0 0 1.11224e+08 12324.0 59.37 53.12 19.47 -1 -1 59.37 16.7718 14.644 -k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 126.79 vpr 316.96 MiB -1 -1 15.39 120184 5 4.83 -1 -1 47292 -1 -1 464 506 44 0 success f0f2ad5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T02:06:25 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 324568 506 553 3236 3734 1 2873 1567 50 50 2500 memory auto 60.0 MiB 5.84 16535 1120621 524938 418099 177584 317.0 MiB 6.24 0.07 6.2106 -2113.5 -6.2106 6.2106 39.67 0.0230701 0.021012 2.90067 2.63037 38 25302 16 1.47946e+08 4.91194e+07 6.86579e+06 2746.32 26.75 8.41289 7.75774 258216 1426232 -1 24296 16 4346 5518 4596791 1178788 0 0 4596791 1178788 5223 5115 0 0 107346 106105 0 0 110685 107981 0 0 5567 5288 0 0 2173701 469905 0 0 2194269 484394 0 0 5223 0 0 880 7517 4542 11190 300 1122 6.98529 6.98529 -2527.42 -6.98529 0 0 8.69102e+06 3476.41 5.15 2.31 1.58 -1 -1 5.15 0.979462 0.919925 -k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 25.13 vpr 72.91 MiB -1 -1 1.36 28004 2 0.15 -1 -1 36988 -1 -1 30 311 15 0 success f0f2ad5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T02:06:25 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74656 311 156 1015 1158 1 965 512 28 28 784 memory auto 35.0 MiB 0.95 8275 203165 72588 120470 10107 72.9 MiB 1.37 0.02 4.20059 -4098.85 -4.20059 4.20059 3.68 0.00599598 0.00530973 0.635437 0.55687 36 15033 26 4.25198e+07 9.83682e+06 1.94918e+06 2486.20 9.71 2.26962 2.02635 76314 389223 -1 13725 16 2876 3222 2410976 705944 0 0 2410976 705944 3222 3038 0 0 76800 75920 0 0 78413 77050 0 0 3237 3087 0 0 1130269 270540 0 0 1119035 276309 0 0 3222 0 0 346 2316 2325 10639 0 0 4.39753 4.39753 -4844.41 -4.39753 -0.00135869 -0.00135869 2.40571e+06 3068.51 1.26 1.04 0.46 -1 -1 1.26 0.284562 0.260933 -k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 40.06 vpr 85.11 MiB -1 -1 7.19 54544 5 2.59 -1 -1 40296 -1 -1 175 193 5 0 success f0f2ad5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T02:06:25 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87156 193 205 2771 2705 1 1368 578 20 20 400 memory auto 47.9 MiB 4.30 10901 248396 85321 136093 26982 85.1 MiB 2.45 0.03 5.23435 -2567.54 -5.23435 5.23435 1.63 0.00968721 0.00861775 1.00975 0.880622 52 18605 23 2.07112e+07 1.21714e+07 1.31074e+06 3276.84 15.28 4.23251 3.74731 42580 268535 -1 16970 13 4378 10863 1001721 230098 0 0 1001721 230098 10394 5473 0 0 36036 31697 0 0 41304 36161 0 0 10811 5969 0 0 457998 75918 0 0 445178 74880 0 0 10394 0 0 6305 33223 35948 243692 488 56 6.21476 6.21476 -3025.7 -6.21476 -0.00271738 -0.00135869 1.72518e+06 4312.96 0.75 0.72 0.31 -1 -1 0.75 0.419585 0.387491 -k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 68.50 vpr 103.54 MiB -1 -1 6.05 63948 8 5.15 -1 -1 43868 -1 -1 246 385 2 1 success f0f2ad5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T02:06:25 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 106024 385 362 4434 4322 1 2384 996 26 26 676 io auto 62.1 MiB 9.56 28983 562832 214284 325113 23435 99.0 MiB 6.34 0.07 8.37172 -9112.86 -8.37172 8.37172 3.28 0.0136175 0.0122986 1.79813 1.57702 94 45290 25 3.69863e+07 1.47499e+07 3.99964e+06 5916.62 24.67 6.43151 5.70521 92412 832514 -1 42363 21 10243 33387 3946046 862639 0 0 3946046 862639 32212 14699 0 0 82299 72851 0 0 106077 82414 0 0 33832 16916 0 0 1883676 328579 0 0 1807950 347180 0 0 32212 0 0 22588 105310 113456 658980 1333 135 9.1711 9.1711 -10675.2 -9.1711 0 0 5.03706e+06 7451.27 2.36 2.28 1.10 -1 -1 2.36 0.928647 0.848515 -k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 41.17 vpr 86.06 MiB -1 -1 4.26 44448 3 1.03 -1 -1 39872 -1 -1 120 236 1 6 success f0f2ad5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T02:06:25 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 88124 236 305 3195 3007 1 1534 668 19 19 361 io auto 49.0 MiB 3.31 12474 307163 103546 188228 15389 86.1 MiB 2.59 0.03 4.74865 -2646.7 -4.74865 4.74865 1.47 0.00856408 0.00782682 0.960333 0.86685 62 24568 35 1.72706e+07 9.39128e+06 1.42198e+06 3939.00 21.66 3.3274 2.99175 40483 281719 -1 21006 17 6202 15986 2641506 594566 0 0 2641506 594566 15986 9612 0 0 105493 101768 0 0 112950 105579 0 0 17266 10559 0 0 1205055 182492 0 0 1184756 184556 0 0 15986 0 0 9966 34500 34926 232920 0 0 4.9391 4.9391 -3109.3 -4.9391 0 0 1.76637e+06 4892.99 0.79 1.24 0.38 -1 -1 0.79 0.490069 0.458621 -k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 25.46 vpr 83.45 MiB -1 -1 2.78 46252 4 2.27 -1 -1 40660 -1 -1 132 38 0 0 success f0f2ad5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T02:06:25 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 85452 38 36 2744 2493 1 1037 206 16 16 256 clb auto 46.4 MiB 2.55 9094 35470 8431 24282 2757 83.4 MiB 1.03 0.02 9.21792 -2353.81 -9.21792 9.21792 0.97 0.00703916 0.00632108 0.490059 0.423797 70 13556 22 1.21132e+07 7.11401e+06 1.08607e+06 4242.47 10.84 3.26485 2.83319 29612 216119 -1 12471 17 3698 8935 335097 56115 0 0 335097 56115 8397 4245 0 0 11808 9171 0 0 16135 11809 0 0 8681 4574 0 0 145828 13163 0 0 144248 13153 0 0 8397 0 0 4902 28487 28142 197384 719 170 10.9584 10.9584 -2769.6 -10.9584 0 0 1.36713e+06 5340.37 0.56 0.49 0.30 -1 -1 0.56 0.377829 0.344326 -k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 20.56 vpr 74.61 MiB -1 -1 3.43 34252 16 0.78 -1 -1 37672 -1 -1 61 45 3 1 success f0f2ad5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T02:06:25 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 76404 45 32 1193 1152 1 791 142 14 14 196 memory auto 36.9 MiB 2.95 6701 31222 8618 19667 2937 74.6 MiB 0.76 0.01 9.99115 -6263.09 -9.99115 9.99115 0.70 0.00400411 0.00353876 0.398255 0.347107 68 13704 33 9.20055e+06 5.32753e+06 806220. 4113.37 8.14 1.58016 1.39392 22432 157909 -1 11068 13 3341 9036 1477132 354668 0 0 1477132 354668 9036 4711 0 0 52891 50650 0 0 58484 53356 0 0 9465 5304 0 0 680818 122374 0 0 666438 118273 0 0 9036 0 0 5835 18021 18729 137127 0 0 11.9185 11.9185 -7484.35 -11.9185 0 0 1.00082e+06 5106.22 0.36 0.60 0.20 -1 -1 0.36 0.20169 0.187461 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 116.32 vpr 235.82 MiB -1 -1 12.10 101816 5 11.35 -1 -1 69036 -1 -1 710 169 0 0 success f0f2ad5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T02:06:25 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 241480 169 197 23321 21461 1 6583 1076 33 33 1089 clb auto 176.9 MiB 15.11 40276 563198 187838 353389 21971 210.7 MiB 11.76 0.12 3.01195 -12887.4 -3.01195 3.01195 5.81 0.0462242 0.0364246 5.17001 4.16054 52 61266 48 6.0475e+07 3.82649e+07 3.78249e+06 3473.36 35.17 21.4575 17.5431 119479 787594 -1 56858 14 16331 25954 1090179 212298 0 0 1090179 212298 24081 18002 0 0 40349 27909 0 0 49998 40362 0 0 24738 18810 0 0 490494 54157 0 0 460519 53058 0 0 24081 0 0 7928 36731 35516 203315 2194 1565 3.68983 3.68983 -14802.2 -3.68983 0 0 4.97914e+06 4572.21 2.44 2.78 0.89 -1 -1 2.44 2.61769 2.30003 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 257.03 vpr 255.08 MiB -1 -1 10.95 123244 3 18.01 -1 -1 77124 -1 -1 680 115 0 40 success f0f2ad5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T02:06:25 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 261200 115 145 22868 19305 1 9678 980 40 40 1600 mult_36 auto 172.3 MiB 13.60 77004 521535 166159 328473 26903 206.0 MiB 15.27 0.13 5.19755 -22073.5 -5.19755 5.19755 8.27 0.0434768 0.0349463 6.23639 5.16045 78 130798 49 9.16046e+07 5.24886e+07 8.23220e+06 5145.12 153.43 23.6065 19.6701 204032 1723206 -1 113582 17 33817 50858 19369779 4027860 0 0 19369779 4027860 46014 37950 0 0 538189 525191 0 0 567468 539030 0 0 47269 39192 0 0 9174017 1419409 0 0 8996822 1467088 0 0 46014 0 0 12828 156571 165873 628601 5240 3520 5.43847 5.43847 -26381.3 -5.43847 0 0 1.04203e+07 6512.68 5.10 8.01 2.32 -1 -1 5.10 2.42921 2.17269 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 1016.90 vpr 953.05 MiB -1 -1 14.98 197048 3 9.02 -1 -1 154980 -1 -1 1498 149 0 179 success f0f2ad5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T02:06:25 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 975920 149 182 55416 37075 1 28615 2008 80 80 6400 mult_36 auto 356.8 MiB 28.10 293386 1711513 583343 1064171 63999 923.1 MiB 82.15 0.61 12.6347 -48866.8 -12.6347 12.6347 121.08 0.10496 0.0926263 15.5454 13.1262 110 394399 20 3.90281e+08 1.51617e+08 4.62462e+07 7225.96 611.02 71.6742 59.7456 965872 10051040 -1 378796 19 92460 109437 38454265 7903630 0 0 38454265 7903630 107401 95506 0 0 861422 827828 0 0 983698 863698 0 0 108290 96850 0 0 18228968 2979731 0 0 18164486 3040017 0 0 107401 0 0 15020 93351 86587 347844 2385 3121 14.0202 14.0202 -56587.5 -14.0202 0 0 5.90184e+07 9221.63 46.89 22.95 14.52 -1 -1 46.89 7.18949 6.21525 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 2.60 vpr 67.06 MiB -1 -1 0.66 24968 4 0.17 -1 -1 35580 -1 -1 15 11 0 0 success f0f2ad5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11T02:06:25 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68672 11 2 303 283 2 80 28 7 7 49 clb auto 28.6 MiB 0.25 270 1708 420 1122 166 67.1 MiB 0.05 0.00 1.87789 -148.64 -1.87789 1.77818 0.08 0.000570424 0.000495341 0.029369 0.0260188 26 374 9 1.07788e+06 808410 68696.0 1401.96 0.17 0.101465 0.0879536 3516 12294 -1 307 9 141 212 3276 1221 0 0 3276 1221 212 188 0 0 289 212 0 0 320 289 0 0 247 190 0 0 1188 153 0 0 1020 189 0 0 212 0 0 71 72 62 663 0 0 2.09646 1.95353 -166.28 -2.09646 0 0 84249.8 1719.38 0.02 0.03 0.01 -1 -1 0.02 0.0251139 0.0233527 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 441.81 vpr 246.12 MiB -1 -1 60.18 124640 20 103.60 -1 -1 72624 -1 -1 845 133 25 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 252032 133 179 14228 14085 1 7103 1182 36 36 1296 clb memory auto 151.9 MiB 66.79 118924 594647 194976 378111 21560 183.7 MiB 18.70 0.21 22.9084 -204192 -22.9084 22.9084 6.52 0.040446 0.0376686 3.26268 2.75196 110 178335 36 7.21828e+07 5.92414e+07 8.93497e+06 6894.27 152.90 13.2287 11.3737 190984 1913024 -1 161823 15 30054 117753 9419873 1670055 24.2109 24.2109 -215085 -24.2109 0 0 1.14064e+07 8801.20 4.45 3.92 1.78 -1 -1 4.45 1.78942 1.66279 +k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 655.75 vpr 675.60 MiB -1 -1 113.25 637280 14 140.05 -1 -1 123864 -1 -1 2709 257 0 11 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 691816 257 32 36080 33722 1 19523 3009 63 63 3969 clb auto 374.5 MiB 112.62 245016 2196123 784924 1379682 31517 675.6 MiB 60.56 0.52 20.3938 -25436.9 -20.3938 20.3938 49.43 0.0480246 0.0421418 5.98976 5.15123 76 385516 49 2.36641e+08 1.50357e+08 2.05973e+07 5189.55 98.90 23.8416 20.8749 506266 4280222 -1 367033 20 91970 420346 18607055 2752931 20.356 20.356 -25872.9 -20.356 0 0 2.57532e+07 6488.59 9.66 8.10 3.29 -1 -1 9.66 4.27224 4.00002 +k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 214.47 parmys 258.88 MiB -1 -1 34.49 265092 5 13.42 -1 -1 58832 -1 -1 495 36 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 143784 36 100 10178 7632 1 2757 631 29 29 841 clb auto 105.1 MiB 41.66 41815 227851 66553 146878 14420 138.9 MiB 8.22 0.09 15.4276 -2482.62 -15.4276 15.4276 5.75 0.00883094 0.00764747 2.03704 1.76139 70 70652 35 4.4999e+07 2.66775e+07 3.87716e+06 4610.18 80.82 8.06895 6.99536 101140 791177 -1 61302 14 12424 63518 2535193 364441 15.7375 15.7375 -2759.66 -15.7375 0 0 4.87732e+06 5799.43 3.57 2.37 1.19 -1 -1 3.57 1.51455 1.47325 +k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 61.09 vpr 71.91 MiB -1 -1 38.53 48640 3 2.36 -1 -1 39372 -1 -1 45 196 1 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 73640 196 193 1201 1346 1 603 435 15 15 225 io auto 34.0 MiB 2.13 2906 143724 39989 91049 12686 71.9 MiB 1.66 0.01 2.23678 -1083.88 -2.23678 2.23678 1.70 0.00181406 0.00164697 0.544581 0.53014 36 6414 25 1.03862e+07 2.97323e+06 520410. 2312.93 6.26 1.96779 1.8761 21110 102306 -1 5630 14 1931 2862 228911 59108 2.77547 2.77547 -1223.72 -2.77547 0 0 643451. 2859.78 0.94 0.37 0.20 -1 -1 0.94 0.232963 0.229076 +k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 11.33 vpr 66.88 MiB -1 -1 1.25 21888 3 0.20 -1 -1 37068 -1 -1 68 99 1 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 68480 99 130 344 474 1 227 298 12 12 144 clb auto 28.5 MiB 0.74 552 74923 20922 40083 13918 66.9 MiB 0.65 0.00 1.839 -120.424 -1.839 1.839 0.94 0.000434168 0.000386242 0.305889 0.0259251 40 1366 19 5.66058e+06 4.21279e+06 333335. 2314.82 2.41 0.731611 0.443883 12946 64812 -1 1197 11 406 615 31856 9598 1.98484 1.98484 -138.688 -1.98484 0 0 419432. 2912.72 0.36 0.08 0.15 -1 -1 0.36 0.0688819 0.0679694 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 31.34 vpr 69.97 MiB -1 -1 1.36 25080 5 0.50 -1 -1 38040 -1 -1 32 162 0 5 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 71648 162 96 1075 892 1 666 295 16 16 256 mult_36 auto 32.1 MiB 1.35 5055 92509 33442 52071 6996 70.0 MiB 1.54 0.08 15.9193 -1240.37 -15.9193 15.9193 2.20 0.00115195 0.00103926 0.511273 0.499883 52 11221 44 1.21132e+07 3.70461e+06 805949. 3148.24 15.34 1.52513 1.488 26552 162987 -1 9285 21 2899 4869 996144 262436 17.1487 17.1487 -1335.43 -17.1487 0 0 1.06067e+06 4143.25 1.05 0.72 0.31 -1 -1 1.05 0.251949 0.24803 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 33.55 vpr 68.45 MiB -1 -1 0.92 24624 5 0.36 -1 -1 37504 -1 -1 22 66 0 5 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70092 66 96 778 595 1 467 189 16 16 256 mult_36 auto 30.3 MiB 1.18 3573 45175 14938 25152 5085 68.4 MiB 0.59 0.00 12.2285 -757.263 -12.2285 12.2285 2.64 0.000829089 0.000741288 0.296001 0.207582 50 8196 32 1.21132e+07 3.16567e+06 780532. 3048.95 17.54 0.91882 0.801916 26044 153858 -1 7038 20 2831 5567 1083476 276961 12.8517 12.8517 -827.298 -12.8517 0 0 1.00276e+06 3917.05 1.20 1.24 0.26 -1 -1 1.20 0.55112 0.547864 +k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 634.49 vpr 583.27 MiB -1 -1 134.94 457728 97 140.08 -1 -1 116436 -1 -1 2135 114 45 8 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 597272 114 102 35834 31925 1 17063 2404 56 56 3136 clb auto 346.8 MiB 94.88 223999 1805268 668923 1105538 30807 556.0 MiB 52.78 0.42 74.8526 -53067.9 -74.8526 74.8526 37.99 0.0426053 0.036302 6.15283 5.16283 98 328098 28 1.8697e+08 1.42894e+08 2.01848e+07 6436.49 102.99 24.6827 21.1736 445422 4317135 -1 306424 22 66707 259251 13340453 2269989 73.9663 73.9663 -62346.4 -73.9663 0 0 2.55970e+07 8162.30 11.96 6.08 3.50 -1 -1 11.96 3.57722 3.28859 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 214.25 vpr 316.48 MiB -1 -1 35.79 122444 5 12.90 -1 -1 48632 -1 -1 476 506 44 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 324076 506 553 3236 3734 1 2873 1579 50 50 2500 memory auto 59.4 MiB 12.14 15208 1187218 574336 423866 189016 316.5 MiB 10.41 0.15 7.88836 -2144.82 -7.88836 7.88836 62.81 0.0598338 0.0589533 4.17334 3.8936 38 23209 14 1.47946e+08 4.97661e+07 6.86579e+06 2746.32 34.36 10.6284 10.0642 258216 1426232 -1 22350 14 3839 5032 1037208 241380 8.26327 8.26327 -2426.39 -8.26327 0 0 8.69102e+06 3476.41 8.30 1.38 2.20 -1 -1 8.30 1.08952 1.03144 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 48.99 vpr 72.51 MiB -1 -1 3.14 28880 2 0.61 -1 -1 38076 -1 -1 30 311 15 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 74248 311 156 1015 1158 1 965 512 28 28 784 memory auto 34.6 MiB 1.99 8123 209306 77878 121727 9701 72.5 MiB 2.04 0.01 4.24034 -4312.49 -4.24034 4.24034 7.44 0.00230164 0.00200065 0.537309 0.377233 46 13506 14 4.25198e+07 9.83682e+06 2.40571e+06 3068.51 16.14 2.52678 2.31141 81794 492802 -1 13124 16 2811 3175 701350 185699 4.25987 4.25987 -4818.17 -4.25987 0 0 3.09729e+06 3950.62 3.48 0.92 0.82 -1 -1 3.48 0.640298 0.493211 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 69.07 vpr 83.67 MiB -1 -1 16.30 55624 5 6.10 -1 -1 43028 -1 -1 167 193 5 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 85676 193 205 2718 2652 1 1363 570 20 20 400 memory auto 46.2 MiB 8.35 10499 243856 86287 132432 25137 83.7 MiB 4.30 0.09 5.50153 -2864.86 -5.50153 5.50153 3.29 0.00291676 0.00248969 1.43876 1.31624 52 18796 27 2.07112e+07 1.17403e+07 1.31074e+06 3276.84 16.23 4.38953 4.10974 42580 268535 -1 16714 13 4494 11079 636879 128985 5.67199 5.67199 -3033.25 -5.67199 -0.00271738 -0.00135869 1.72518e+06 4312.96 1.59 0.82 0.50 -1 -1 1.59 0.60969 0.60135 +k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 379.24 vpr 105.15 MiB -1 -1 15.57 66120 8 11.75 -1 -1 44468 -1 -1 246 385 2 1 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 107676 385 362 4415 4299 1 2357 996 26 26 676 io auto 61.4 MiB 19.78 28726 547916 210036 314446 23434 98.4 MiB 10.73 0.07 9.08512 -9570.09 -9.08512 9.08512 5.96 0.00329531 0.00296933 2.17123 2.02972 102 41255 49 3.69863e+07 1.47499e+07 4.28034e+06 6331.86 297.81 8.74784 8.27578 95788 898762 -1 39972 16 9447 31588 1763573 297369 9.08065 9.08065 -9902.11 -9.08065 0 0 5.37165e+06 7946.23 2.37 0.94 0.92 -1 -1 2.37 0.548402 0.527779 +k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 77.40 vpr 84.96 MiB -1 -1 10.65 44824 3 1.95 -1 -1 40840 -1 -1 122 236 1 6 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 87004 236 305 3199 3011 1 1513 670 19 19 361 io auto 48.0 MiB 7.01 12400 264370 86759 164165 13446 85.0 MiB 4.47 0.02 4.73305 -2853.54 -4.73305 4.73305 2.93 0.00348242 0.0031267 0.749665 0.713428 62 26338 47 1.72706e+07 9.49907e+06 1.42198e+06 3939.00 36.48 4.8707 4.51469 40483 281719 -1 21312 17 7193 19188 2027773 455475 4.85695 4.85695 -3063.38 -4.85695 0 0 1.76637e+06 4892.99 1.34 1.46 0.49 -1 -1 1.34 0.600206 0.587981 +k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 41.21 vpr 82.93 MiB -1 -1 6.27 47796 3 4.75 -1 -1 43312 -1 -1 139 38 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 84924 38 36 2739 2488 1 1037 213 16 16 256 clb auto 45.7 MiB 5.08 9128 40218 10132 27089 2997 82.9 MiB 2.28 0.01 10.3799 -2787.19 -10.3799 10.3799 1.52 0.00206601 0.0016792 0.648359 0.576821 70 13785 27 1.21132e+07 7.49127e+06 1.08607e+06 4242.47 8.72 3.33834 2.93252 29612 216119 -1 12472 19 3746 8710 316144 53238 10.4324 10.4324 -3279.89 -10.4324 0 0 1.36713e+06 5340.37 1.37 0.74 0.32 -1 -1 1.37 0.718388 0.469764 +k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 40.32 vpr 73.88 MiB -1 -1 7.81 35564 16 1.73 -1 -1 38720 -1 -1 60 45 3 1 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 75656 45 32 1192 1151 1 782 141 14 14 196 memory auto 36.2 MiB 6.89 6359 25029 7172 15872 1985 73.9 MiB 0.88 0.01 10.5514 -6933.99 -10.5514 10.5514 1.76 0.00147002 0.00119631 0.424451 0.316307 70 12362 27 9.20055e+06 5.27364e+06 825316. 4210.80 12.19 2.10407 1.84446 22820 164109 -1 10157 16 3115 8010 611716 149589 10.6548 10.6548 -7166.09 -10.6548 0 0 1.03831e+06 5297.50 0.97 0.75 0.46 -1 -1 0.97 0.188719 0.181711 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 181.05 vpr 229.26 MiB -1 -1 27.74 102924 5 20.21 -1 -1 69852 -1 -1 707 169 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 234760 169 197 23225 21365 1 6482 1073 33 33 1089 clb auto 174.7 MiB 25.95 40507 561155 178846 355353 26956 208.5 MiB 13.25 0.12 3.5747 -13857.8 -3.5747 3.5747 8.08 0.0148748 0.0122654 4.09005 3.48051 56 60901 39 6.0475e+07 3.81032e+07 4.09277e+06 3758.28 39.60 16.1655 14.0507 121655 832457 -1 55874 14 16410 25120 1046349 197808 4.09433 4.09433 -15090.6 -4.09433 0 0 5.21984e+06 4793.24 4.23 3.32 1.26 -1 -1 4.23 3.36427 3.04225 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 372.31 vpr 255.63 MiB -1 -1 25.80 124968 3 27.12 -1 -1 78048 -1 -1 679 115 0 40 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 261768 115 145 22864 19301 1 9652 979 40 40 1600 mult_36 auto 171.8 MiB 23.53 84166 520892 166892 327998 26002 206.7 MiB 16.90 0.17 5.43112 -22815.3 -5.43112 5.43112 11.32 0.0623107 0.0599798 4.35297 3.45995 86 139376 46 9.16046e+07 5.24347e+07 8.98461e+06 5615.38 223.57 16.813 14.4233 212028 1885476 -1 121351 16 33519 51273 8827849 1814939 5.65594 5.65594 -25361.9 -5.65594 0 0 1.13675e+07 7104.67 6.10 3.89 2.27 -1 -1 6.10 1.83823 1.72266 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 624.84 vpr 932.79 MiB -1 -1 32.45 197976 3 16.94 -1 -1 155956 -1 -1 1503 149 0 179 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 955172 149 182 55415 37074 1 28618 2013 80 80 6400 mult_36 auto 355.5 MiB 48.89 286321 1679073 589581 1030407 59085 932.8 MiB 55.20 0.46 13.8384 -50424.9 -13.8384 13.8384 134.07 0.0681612 0.0631521 9.11899 7.87535 94 399646 42 3.90281e+08 1.51886e+08 4.03658e+07 6307.16 212.00 27.7631 24.2749 895480 8566334 -1 382155 20 103319 121546 18426157 3595010 14.2574 14.2574 -56221.1 -14.2574 0 0 5.08546e+07 7946.02 20.15 6.70 7.09 -1 -1 20.15 3.34157 3.08291 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 8.75 vpr 66.19 MiB -1 -1 1.74 26448 4 0.60 -1 -1 36452 -1 -1 15 11 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67776 11 2 303 283 2 80 28 7 7 49 clb auto 27.9 MiB 0.65 257 1330 280 924 126 66.2 MiB 0.02 0.00 2.03512 -164.27 -2.03512 1.89824 0.16 0.000217992 0.000162024 0.0106359 0.00877054 26 382 19 1.07788e+06 808410 68696.0 1401.96 0.57 0.204554 0.196831 3516 12294 -1 333 13 168 291 4761 1638 2.05049 1.95817 -175.115 -2.05049 0 0 84249.8 1719.38 0.13 0.11 0.01 -1 -1 0.13 0.0172823 0.0159874 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3_odin/vtr_reg_qor/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3_odin/vtr_reg_qor/config/golden_results.txt index d245ed79bf2..75973eec4cc 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3_odin/vtr_reg_qor/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3_odin/vtr_reg_qor/config/golden_results.txt @@ -1,21 +1,21 @@ -arch circuit script_params vtr_flow_elapsed_time error odin_synth_time max_odin_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_time placed_wirelength_est place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length -k6_frac_N10_mem32K_40nm.xml arm_core.v common 356.83 4.53 128480 25 94.21 -1 -1 70116 -1 -1 979 133 24 0 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 247996 133 179 17305 17484 1 8665 1315 39 39 1521 clb auto 17.18 141361 23.52 0.18 16.6835 -152417 -16.6835 16.6835 5.58 0.0524786 0.0465874 7.33731 6.20856 106 203023 32 8.65315e+07 6.59154e+07 1.02796e+07 6758.45 140.17 25.4972 22.0345 183893 17 36068 136455 30169818 7067245 18.9861 18.9861 -166921 -18.9861 0 0 1.30216e+07 8561.22 4.73 10.76 2.98048 2.69302 9206 12062 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml bgm.v common 907.48 54.14 380336 22 487.77 -1 -1 156164 -1 -1 2624 257 0 11 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 613860 257 32 32168 31683 1 18612 2924 62 62 3844 clb auto 45.68 246219 75.84 0.59 15.0101 -22015.9 -15.0101 15.0101 39.91 0.114265 0.0979551 13.843 12.0233 76 389448 28 2.30929e+08 1.45776e+08 1.99380e+07 5186.80 128.31 41.5613 36.4763 368061 19 98103 447192 25878852 4108900 17.6559 17.6559 -25160.6 -17.6559 0 0 2.49294e+07 6485.27 8.99 13.49 6.78003 6.1553 23841 26295 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml blob_merge.v common 170.45 1.14 63304 18 106.96 -1 -1 71428 -1 -1 572 36 0 0 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 115488 36 100 6600 6700 1 2804 708 30 30 900 clb auto 6.56 45694 7.85 0.06 8.87513 -2477.07 -8.87513 8.87513 2.93 0.0224755 0.0205609 2.88822 2.58236 64 70823 35 4.8774e+07 3.08274e+07 3.87092e+06 4301.02 29.65 8.29354 7.44156 65611 14 12583 64672 2970985 387175 10.3373 10.3373 -2797.46 -10.3373 0 0 4.83441e+06 5371.56 1.65 1.80 1.10667 1.02713 4999 5961 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml boundtop.v common 6.80 1.92 47636 2 0.50 -1 -1 41416 -1 -1 82 114 0 0 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 51536 114 193 455 648 1 312 389 13 13 169 clb auto 0.16 754 0.54 0.00 1.67684 -203.787 -1.67684 1.67684 0.37 0.00122649 0.00113807 0.185488 0.172297 34 2309 32 6.63067e+06 4.41931e+06 352978. 2088.63 0.91 0.40893 0.382567 1895 14 796 1080 88394 27968 2.35173 2.35173 -263.176 -2.35173 0 0 434699. 2572.18 0.13 0.07 0.0431658 0.0409262 181 175 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 2.86 0.09 9844 3 0.29 -1 -1 37572 -1 -1 65 99 1 0 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 38472 99 130 363 493 1 251 295 12 12 144 clb auto 0.12 605 0.35 0.00 2.08915 -200.578 -2.08915 2.08915 0.29 0.000613685 0.000558259 0.107587 0.0981945 40 1472 11 5.66058e+06 4.05111e+06 333335. 2314.82 0.67 0.254211 0.23421 1328 8 606 783 65360 21967 2.65439 2.65439 -236.142 -2.65439 0 0 419432. 2912.72 0.11 0.04 0.0219569 0.020869 132 124 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml diffeq1.v common 10.20 0.07 9964 15 0.42 -1 -1 39788 -1 -1 36 162 0 5 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 57700 162 96 999 932 1 693 299 16 16 256 mult_36 auto 0.38 5304 0.93 0.01 19.7038 -1798.95 -19.7038 19.7038 0.66 0.00333179 0.00311154 0.481119 0.452465 50 11871 38 1.21132e+07 3.92018e+06 780512. 3048.87 5.37 1.46677 1.38886 9626 16 2981 5809 1451038 374154 22.7334 22.7334 -2024.41 -22.7334 0 0 1.00276e+06 3917.05 0.28 0.43 0.151544 0.145403 342 474 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml diffeq2.v common 10.80 0.05 8800 14 0.31 -1 -1 38436 -1 -1 29 66 0 7 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 45112 66 96 719 590 1 525 198 18 18 324 mult_36 auto 0.31 4790 0.76 0.01 15.3213 -871.24 -15.3213 15.3213 0.87 0.00294721 0.00281999 0.444336 0.423821 38 11682 25 1.57076e+07 4.33493e+06 803540. 2480.06 5.84 1.28812 1.23303 9918 19 2890 6341 2431166 578423 18.1641 18.1641 -1024.59 -18.1641 0 0 1.01953e+06 3146.70 0.33 0.62 0.160831 0.155289 246 323 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml mkDelayWorker32B.v common 85.42 2.29 71680 5 9.46 -1 -1 56108 -1 -1 456 506 47 0 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 296628 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 4.26 13844 7.27 0.05 5.95267 -1737.1 -5.95267 5.95267 24.59 0.0179712 0.016073 3.73709 3.39129 38 21834 15 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 18.12 8.18616 7.55802 20620 16 4027 5047 3622996 886535 6.85724 6.85724 -2206.18 -6.85724 -7.78106 -0.293253 8.69095e+06 3476.38 3.35 1.60 0.869681 0.825424 1053 407 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml mkPktMerge.v common 16.94 0.28 16912 2 0.12 -1 -1 38892 -1 -1 27 311 15 0 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 56156 311 156 972 1128 1 953 509 28 28 784 memory auto 0.58 7827 1.35 0.01 3.90797 -4026.08 -3.90797 3.90797 2.58 0.00443703 0.00397258 0.641984 0.568996 36 14479 14 4.25198e+07 9.67514e+06 1.94918e+06 2486.20 6.65 1.79069 1.62622 13472 13 2891 3230 2215365 647096 4.52093 4.52093 -4789.05 -4.52093 -25.8456 -0.339827 2.40571e+06 3068.51 0.84 0.66 0.172252 0.160874 109 172 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml mkSMAdapter4B.v common 21.43 0.70 30616 7 3.86 -1 -1 42932 -1 -1 170 193 5 0 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 68484 193 205 2232 2437 1 1192 573 20 20 400 memory auto 1.71 8897 2.71 0.02 4.45635 -2582.59 -4.45635 4.45635 1.19 0.00575493 0.00507686 1.12145 1.00627 50 16509 33 2.07112e+07 1.1902e+07 1.26944e+06 3173.59 6.63 2.95641 2.6932 14652 14 4258 10254 923060 226299 5.19652 5.19652 -3027.67 -5.19652 -5.64945 -0.341744 1.63222e+06 4080.54 0.60 0.50 0.302451 0.28578 992 1183 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml or1200.v common 68.80 1.15 41372 27 7.32 -1 -1 47644 -1 -1 254 385 2 1 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 85664 385 394 3979 4310 1 2380 1036 27 27 729 io auto 4.16 32239 6.23 0.05 13.0151 -11494.2 -13.0151 13.0151 2.48 0.0139512 0.0129079 2.10596 1.94083 76 53278 33 3.93038e+07 1.51811e+07 3.58343e+06 4915.54 37.21 6.40964 5.93114 47028 16 10623 38195 3911075 744236 14.7237 14.7237 -13187.9 -14.7237 0 0 4.48127e+06 6147.14 1.58 1.69 0.76117 0.719716 2290 2782 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml raygentop.v common 30.15 0.97 33244 8 1.98 -1 -1 41556 -1 -1 104 214 0 9 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 72012 214 305 2625 2741 1 1440 632 22 22 484 mult_36 auto 2.39 11858 2.26 0.02 4.2149 -2326.88 -4.2149 4.2149 1.51 0.00738184 0.00691764 0.953749 0.884076 50 27613 37 2.50602e+07 9.16898e+06 1.56759e+06 3238.82 15.26 3.10507 2.9031 21526 18 6421 14585 3598061 779432 4.73537 4.73537 -3011.83 -4.73537 0 0 2.01671e+06 4166.75 0.64 1.05 0.379925 0.361558 907 1153 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml sha.v common 1045.54 1.76 39224 20 1013.95 -1 -1 100324 -1 -1 208 38 0 0 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 71576 38 36 3404 3440 1 1290 282 19 19 361 clb auto 2.55 13833 2.21 0.02 11.3756 -4060.62 -11.3756 11.3756 1.00 0.00772605 0.00693281 1.00266 0.893237 56 23225 39 1.72706e+07 1.121e+07 1.27879e+06 3542.35 12.79 3.41097 3.0541 20487 17 5327 19874 693200 118538 13.9599 13.9599 -4596.68 -13.9599 0 0 1.63234e+06 4521.70 0.45 0.59 0.434657 0.40348 2026 2480 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml stereovision0.v common 200.24 5.04 126968 5 123.12 -1 -1 78852 -1 -1 744 157 0 0 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 188068 157 197 21024 21221 1 6987 1098 34 34 1156 clb auto 9.94 46419 11.25 0.09 2.82568 -12604 -2.82568 2.82568 3.93 0.0359157 0.0323 5.00958 4.36027 52 73212 43 6.50233e+07 4.00974e+07 4.04437e+06 3498.59 26.08 14.975 13.239 65366 14 19246 32302 1362296 259411 3.20194 3.20194 -14793.7 -3.20194 0 0 5.32397e+06 4605.51 1.77 2.09 1.93927 1.79987 6997 9532 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml stereovision1.v common 253.38 5.97 113348 6 65.13 -1 -1 82460 -1 -1 761 113 0 44 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 228140 113 145 21818 19683 1 9787 1063 40 40 1600 mult_36 auto 11.85 85270 16.97 0.14 5.22041 -22246.3 -5.22041 5.22041 5.96 0.0439101 0.0381828 6.44025 5.64155 80 133607 44 9.16046e+07 5.84383e+07 8.41679e+06 5260.49 116.08 22.9748 20.5071 121434 14 30149 50085 21046263 4281969 5.57068 5.57068 -25174.1 -5.57068 0 0 1.06125e+07 6632.80 3.39 6.55 2.12998 1.98707 7407 9170 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml stereovision2.v common 1140.00 8.25 173304 17 409.45 -1 -1 191912 -1 -1 2285 149 0 324 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 1443728 149 182 57159 46739 1 35655 2940 104 104 10816 mult_36 auto 42.20 451074 88.37 0.52 17.6426 -61785.4 -17.6426 17.6426 123.96 0.178836 0.158806 24.6857 22.0895 70 613267 31 6.67561e+08 2.51439e+08 5.35869e+07 4954.41 329.67 65.7059 59.3661 571390 14 120311 203530 42045578 8585896 19.4369 19.4369 -72495.7 -19.4369 0 0 6.74310e+07 6234.38 29.09 17.24 7.8477 7.30142 21927 28492 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml stereovision3.v common 1.58 0.11 10312 4 0.14 -1 -1 36968 -1 -1 13 11 0 0 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 38000 11 30 262 292 2 110 54 7 7 49 clb auto 0.13 348 0.09 0.00 2.24517 -154.275 -2.24517 2.08568 0.06 0.000443774 0.000379 0.0511289 0.0431404 30 985 35 1.07788e+06 700622 77118.5 1573.85 0.23 0.135204 0.116472 718 11 379 582 25764 8842 2.56549 2.31105 -184.613 -2.56549 0 0 95414.1 1947.23 0.02 0.03 0.0206663 0.0190706 100 149 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml LU8PEEng.v common 983.62 59.33 219908 129 336.03 -1 -1 100224 -1 -1 2010 114 44 8 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 491412 114 102 29578 29304 1 15347 2278 54 54 2916 clb auto 41.63 221461 60.72 0.41 71.8736 -53930.2 -71.8736 71.8736 29.91 0.102008 0.0921139 13.6923 11.7851 92 336935 48 1.70873e+08 1.35611e+08 1.77525e+07 6087.96 388.93 50.0433 43.4045 303826 18 61022 244114 36691481 7210279 81.5132 81.5132 -67282.9 -81.5132 -13.076 -0.172573 2.25674e+07 7739.16 8.53 14.90 5.76102 5.17594 18822 21469 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml LU32PEEng.v common 8261.45 448.15 736700 128 1525.66 -1 -1 345032 -1 -1 7148 114 167 32 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 1821492 114 102 102506 101104 1 53933 7563 100 100 10000 clb auto 164.09 1071446 532.16 3.11 70.431 -335083 -70.431 70.431 118.46 0.451281 0.407586 63.5451 55.0881 130 1413041 49 6.13558e+08 4.89384e+08 8.42269e+07 8422.69 5136.10 199.176 173.187 1339131 17 201056 864744 264365622 66736099 80.9022 80.9022 -471894 -80.9022 -18.7674 -0.174787 1.06720e+08 10672.0 48.41 118.69 21.8496 19.6586 67544 75921 -1 -1 -1 -1 -k6_frac_N10_mem32K_40nm.xml mcml.v common 8853.80 155.92 926496 76 7380.31 -1 -1 453340 -1 -1 5494 36 159 27 success v8.0.0-4442-g4cb3b2f11e Release VTR_ASSERT_LEVEL=2 GNU 8.4.1 on Linux-4.18.0-193.el8.x86_64 x86_64 2021-08-19T16:17:54 node3 /root/mntssd/sdamghan 1717016 36 356 134771 133552 1 39984 6072 92 92 8464 memory auto 85.06 480881 227.08 1.45 62.1424 -304109 -62.1424 62.1424 95.39 0.301798 0.268738 46.8079 40.4527 88 677655 26 5.19428e+08 3.9389e+08 5.06236e+07 5981.05 680.92 178.329 155.451 638523 21 146069 445993 93322071 22865752 68.3048 68.3048 -386433 -68.3048 -0.0372486 -0.0372486 6.34899e+07 7501.17 24.37 44.52 19.4919 17.6965 53220 83081 -1 -1 -1 -1 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +k6_frac_N10_mem32K_40nm.xml arm_core.v common 331.03 vpr 352.79 MiB 3.43 127948 -1 -1 25 78.58 -1 -1 67016 -1 -1 988 133 24 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 361256 133 179 17481 17660 1 8826 1324 39 39 1521 clb auto 160.6 MiB 14.98 140724 706223 235986 453985 16252 217.7 MiB 15.98 0.16 18.2294 -157339 -18.2294 18.2294 4.31 0.0518175 0.0450103 5.48347 4.5904 110 202350 37 8.65315e+07 6.64005e+07 1.06449e+07 6998.62 154.54 29.2861 24.3174 222560 2289922 -1 184414 17 36765 135743 9204794 1475613 18.3923 18.3923 -165829 -18.3923 0 0 1.35876e+07 8933.31 4.13 5.35 2.21 -1 -1 4.13 2.69475 2.35321 9278 12238 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml bgm.v common 834.05 vpr 642.73 MiB 23.14 379732 -1 -1 22 502.09 -1 -1 153948 -1 -1 2620 257 0 11 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 658156 257 32 32041 31556 1 18456 2920 62 62 3844 clb auto 318.0 MiB 41.01 237680 2068258 732418 1306840 29000 642.7 MiB 52.35 0.51 16.8851 -24027.9 -16.8851 16.8851 30.42 0.115204 0.102624 10.9878 9.29095 76 374916 33 2.30929e+08 1.45561e+08 1.99380e+07 5186.80 105.35 34.5012 28.95 479924 4133688 -1 358354 22 104865 494561 21718506 3219817 17.2566 17.2566 -24604.3 -17.2566 0 0 2.49294e+07 6485.27 7.37 12.59 3.80 -1 -1 7.37 5.77228 5.01962 23873 26169 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml blob_merge.v common 149.69 vpr 160.30 MiB 0.45 62840 -1 -1 18 81.57 -1 -1 65724 -1 -1 572 36 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 164148 36 100 6600 6700 1 2804 708 30 30 900 clb auto 85.7 MiB 5.72 45721 268798 80554 171964 16280 124.6 MiB 4.99 0.05 10.4727 -2786.41 -10.4727 10.4727 2.75 0.0200331 0.0180885 1.99302 1.75483 70 68828 17 4.8774e+07 3.08274e+07 4.18297e+06 4647.75 38.18 9.47628 8.14735 106732 854442 -1 63223 13 11344 57272 2422333 307988 10.6677 10.6677 -2866.66 -10.6677 0 0 5.26086e+06 5845.40 1.45 1.65 0.78 -1 -1 1.45 0.939592 0.842842 4998 5998 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml boundtop.v common 8.26 vpr 65.03 MiB 0.87 47140 -1 -1 2 0.48 -1 -1 36316 -1 -1 82 114 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 66588 114 193 455 648 1 312 389 13 13 169 clb auto 26.7 MiB 0.17 802 108233 33568 56261 18404 65.0 MiB 0.37 0.01 1.88794 -246.251 -1.88794 1.88794 0.33 0.00186092 0.00175937 0.151895 0.144031 38 2149 23 6.63067e+06 4.41931e+06 384612. 2275.81 2.35 0.759072 0.705262 14836 75665 -1 1790 9 702 874 53242 16399 2.21419 2.21419 -266.429 -2.21419 0 0 489150. 2894.38 0.11 0.07 0.05 -1 -1 0.11 0.0449638 0.0422049 181 244 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 3.24 vpr 64.18 MiB 0.08 9412 -1 -1 3 0.26 -1 -1 34484 -1 -1 65 99 1 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65720 99 130 363 493 1 251 295 12 12 144 clb auto 25.7 MiB 0.14 615 70927 24796 34921 11210 64.2 MiB 0.27 0.00 2.43858 -230.023 -2.43858 2.43858 0.28 0.00133288 0.00126041 0.10648 0.100689 38 1593 12 5.66058e+06 4.05111e+06 319130. 2216.18 0.75 0.28798 0.266074 12522 62564 -1 1357 10 588 758 45873 15482 2.77005 2.77005 -247.51 -2.77005 0 0 406292. 2821.48 0.09 0.06 0.07 -1 -1 0.09 0.0352687 0.0327216 132 185 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml diffeq1.v common 12.61 vpr 67.94 MiB 0.04 9420 -1 -1 15 0.36 -1 -1 34508 -1 -1 36 162 0 5 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 69568 162 96 999 932 1 693 299 16 16 256 mult_36 auto 29.7 MiB 0.32 5381 78221 22147 49025 7049 67.9 MiB 0.60 0.01 21.4844 -2025.35 -21.4844 21.4844 0.53 0.00353138 0.0033285 0.301629 0.284379 44 12717 48 1.21132e+07 3.92018e+06 694168. 2711.59 8.17 1.49032 1.3807 24716 140770 -1 9997 17 3154 6105 1107735 286105 23.0758 23.0758 -2167.57 -23.0758 0 0 904549. 3533.39 0.21 0.42 0.15 -1 -1 0.21 0.161785 0.151298 342 476 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml diffeq2.v common 10.98 vpr 66.47 MiB 0.05 8452 -1 -1 14 0.26 -1 -1 34060 -1 -1 29 66 0 7 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 68068 66 96 719 590 1 525 198 18 18 324 mult_36 auto 28.1 MiB 0.29 5003 39366 11098 23162 5106 66.5 MiB 0.41 0.01 16.8905 -942.556 -16.8905 16.8905 0.73 0.00301361 0.00286023 0.22651 0.214985 38 12494 26 1.57076e+07 4.33493e+06 803540. 2480.06 6.42 0.981565 0.914309 30672 162320 -1 10651 21 3296 7276 1937647 456823 18.2599 18.2599 -1031.83 -18.2599 0 0 1.01953e+06 3146.70 0.24 0.52 0.14 -1 -1 0.24 0.144996 0.1356 246 325 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml mkDelayWorker32B.v common 80.02 vpr 338.64 MiB 1.61 71288 -1 -1 5 7.54 -1 -1 52624 -1 -1 456 506 47 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 346764 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 54.8 MiB 4.49 16772 1188291 579108 420547 188636 338.6 MiB 5.69 0.06 7.52336 -2007.99 -7.52336 7.52336 23.49 0.0247799 0.021684 3.03556 2.72709 38 24770 15 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 17.69 8.44692 7.67987 251304 1421084 -1 23797 13 3936 5034 1179459 257068 7.60219 7.60219 -2349.3 -7.60219 -1.49842 -0.293253 8.69095e+06 3476.38 2.81 1.06 1.31 -1 -1 2.81 0.802173 0.741757 1053 1437 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml mkPktMerge.v common 14.00 vpr 70.31 MiB 0.20 16576 -1 -1 2 0.14 -1 -1 33656 -1 -1 27 311 15 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 71996 311 156 972 1128 1 953 509 28 28 784 memory auto 31.5 MiB 0.54 8998 209702 77254 122184 10264 70.0 MiB 1.20 0.01 4.23256 -4357.58 -4.23256 4.23256 1.74 0.00578529 0.00514134 0.613363 0.542316 34 15374 23 4.25198e+07 9.67514e+06 1.87146e+06 2387.06 5.14 1.67421 1.48375 73554 370855 -1 14843 14 2937 3374 932174 243500 4.54085 4.54085 -4981.61 -4.54085 -15.5516 -0.360359 2.30233e+06 2936.64 0.67 0.41 0.33 -1 -1 0.67 0.199913 0.180477 109 186 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml mkSMAdapter4B.v common 18.14 vpr 77.63 MiB 0.50 30084 -1 -1 7 2.85 -1 -1 37852 -1 -1 170 193 5 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 79492 193 205 2232 2437 1 1192 573 20 20 400 memory auto 39.9 MiB 1.49 8958 236094 85720 123986 26388 77.6 MiB 1.67 0.02 5.12011 -2815.76 -5.12011 5.12011 0.89 0.00726935 0.00659979 0.763734 0.688995 50 16307 23 2.07112e+07 1.1902e+07 1.26944e+06 3173.59 5.90 2.5021 2.24176 40848 252947 -1 14634 15 4267 10491 604217 130042 5.25995 5.25995 -2915.81 -5.25995 -12.1755 -0.298787 1.63222e+06 4080.54 0.46 0.53 0.25 -1 -1 0.46 0.337866 0.309025 992 1253 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml or1200.v common 55.31 vpr 101.43 MiB 1.03 40752 -1 -1 27 5.19 -1 -1 44020 -1 -1 254 385 2 1 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 103864 385 394 3979 4310 1 2380 1036 27 27 729 io auto 56.5 MiB 3.53 31438 582676 229985 327813 24878 93.6 MiB 5.87 0.06 14.464 -12679.1 -14.464 14.464 1.81 0.0168583 0.0157323 2.41927 2.20794 76 50667 30 3.93038e+07 1.51811e+07 3.58343e+06 4915.54 27.31 7.08075 6.47591 88945 732515 -1 45674 16 10220 36828 2287037 394282 15.3034 15.3034 -13648.9 -15.3034 0 0 4.48127e+06 6147.14 1.24 1.53 0.70 -1 -1 1.24 0.858044 0.791872 2290 2795 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml raygentop.v common 26.16 vpr 79.11 MiB 0.41 32740 -1 -1 8 1.64 -1 -1 40644 -1 -1 106 214 0 9 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 81004 214 305 2625 2741 1 1441 634 22 22 484 mult_36 auto 41.6 MiB 2.15 11423 248336 87263 147895 13178 79.1 MiB 1.73 0.02 4.73175 -2658.82 -4.73175 4.73175 1.10 0.00794985 0.00736927 0.772393 0.712671 50 25512 37 2.50602e+07 9.27676e+06 1.56759e+06 3238.82 12.94 2.89412 2.64456 49974 314245 -1 20927 16 6119 13113 1697035 381019 5.14527 5.14527 -2949.57 -5.14527 0 0 2.01671e+06 4166.75 0.48 0.74 0.29 -1 -1 0.48 0.346163 0.322829 907 1165 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml sha.v common 503.69 abc 94.04 MiB 2.12 38616 -1 -1 20 475.54 -1 -1 96296 -1 -1 208 38 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 88068 38 36 3404 3440 1 1290 282 19 19 361 clb auto 49.4 MiB 2.07 14108 53874 12313 38848 2713 86.0 MiB 1.09 0.02 13.6658 -4518.29 -13.6658 13.6658 0.78 0.00784088 0.00699127 0.534724 0.472223 54 26186 50 1.72706e+07 1.121e+07 1.22727e+06 3399.63 11.93 3.64687 3.17142 37799 249493 -1 20591 17 5434 21477 772432 128368 13.843 13.843 -4808.41 -13.843 0 0 1.59430e+06 4416.33 0.35 0.62 0.22 -1 -1 0.35 0.390672 0.351272 2026 2480 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml stereovision0.v common 167.05 vpr 212.49 MiB 2.58 126412 -1 -1 5 96.83 -1 -1 75356 -1 -1 745 157 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 217592 157 197 21024 21221 1 6988 1099 34 34 1156 clb auto 152.1 MiB 8.79 44807 573668 187887 362143 23638 185.6 MiB 8.73 0.08 3.23016 -13484 -3.23016 3.23016 3.21 0.0340955 0.0289256 3.89227 3.2895 52 68288 43 6.50233e+07 4.01513e+07 4.04437e+06 3498.59 24.26 13.3846 11.3252 124812 842136 -1 62712 12 17963 29385 1158999 226567 3.50178 3.50178 -14418.4 -3.50178 0 0 5.32397e+06 4605.51 1.49 1.74 0.73 -1 -1 1.49 1.4827 1.34125 6997 9547 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml stereovision1.v common 210.63 vpr 317.78 MiB 2.93 112856 -1 -1 6 62.33 -1 -1 78984 -1 -1 761 113 0 44 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 325404 113 145 21818 19683 1 9787 1063 40 40 1600 mult_36 auto 161.4 MiB 10.10 88063 554209 177104 351669 25436 210.4 MiB 10.02 0.10 5.43112 -23845.9 -5.43112 5.43112 5.06 0.0361759 0.03004 3.96947 3.37221 82 138977 49 9.16046e+07 5.84383e+07 8.58300e+06 5364.38 89.59 21.9537 18.6322 202972 1784604 -1 122592 14 30969 51692 7983992 1662976 5.75048 5.75048 -25861.9 -5.75048 0 0 1.07704e+07 6731.50 2.85 3.19 1.54 -1 -1 2.85 1.56655 1.40595 7407 9174 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml stereovision2.v common 907.49 vpr 1.54 GiB 3.51 172816 -1 -1 17 351.09 -1 -1 189172 -1 -1 2313 149 0 324 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1613372 149 182 57159 46739 1 35593 2968 104 104 10816 mult_36 auto 417.4 MiB 35.97 429468 2454768 901752 1499417 53599 1575.6 MiB 59.06 0.47 18.4982 -66644.4 -18.4982 18.4982 102.94 0.138497 0.125166 17.3486 15.198 66 594816 32 6.67561e+08 2.52948e+08 5.11340e+07 4727.63 224.31 57.7495 50.3396 1292806 10479811 -1 558221 15 131684 222571 24603768 4821645 18.6952 18.6952 -73343.6 -18.6952 0 0 6.34291e+07 5864.38 22.13 13.17 9.60 -1 -1 22.13 6.61541 5.94981 21954 28576 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml stereovision3.v common 2.21 vpr 63.22 MiB 0.10 9832 -1 -1 4 0.18 -1 -1 33236 -1 -1 13 11 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 11 30 262 292 2 110 54 7 7 49 clb auto 24.6 MiB 0.11 415 1686 329 1303 54 63.2 MiB 0.03 0.00 2.61498 -172.487 -2.61498 2.34958 0.06 0.000815855 0.000737685 0.017643 0.0161388 36 796 16 1.07788e+06 700622 87745.0 1790.71 0.49 0.189632 0.159803 3724 16032 -1 661 10 255 405 14233 4546 2.6932 2.39824 -186.99 -2.6932 0 0 109473. 2234.15 0.02 0.05 0.02 -1 -1 0.02 0.0340739 0.0310888 100 151 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml LU8PEEng.v common 652.58 vpr 611.60 MiB 19.67 218920 -1 -1 127 257.00 -1 -1 94148 -1 -1 2021 114 44 8 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 626276 114 102 29627 29353 1 15280 2289 54 54 2916 clb auto 286.1 MiB 36.81 219911 1645900 603513 1020506 21881 549.8 MiB 42.36 0.33 79.3023 -53583.5 -79.3023 79.3023 24.27 0.0930451 0.0822899 11.3695 9.58971 94 330134 40 1.70873e+08 1.36203e+08 1.81141e+07 6211.98 208.99 52.6328 43.6476 396616 3818630 -1 300574 22 57657 233002 14871100 2514239 79.0561 79.0561 -64418.9 -79.0561 -22.9917 -0.198467 2.28201e+07 7825.81 6.73 9.62 3.89 -1 -1 6.73 5.44106 4.69858 18928 21550 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml LU32PEEng.v common 4766.16 vpr 2.03 GiB 168.74 735880 -1 -1 127 1188.15 -1 -1 344076 -1 -1 7136 114 167 32 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 2124148 114 102 102417 101015 1 54033 7551 100 100 10000 clb auto 959.4 MiB 136.75 1051249 9115455 3831817 5243233 40405 1844.7 MiB 256.46 1.66 79.8219 -338294 -79.8219 79.8219 83.37 0.314738 0.27168 42.4324 35.1761 124 1436425 49 6.13558e+08 4.88737e+08 8.09642e+07 8096.42 2691.86 145.792 120.522 1572434 17705466 -1 1328979 19 203193 875531 61282535 9700369 81.6665 81.6665 -468839 -81.6665 -18.163 -0.29436 1.02582e+08 10258.2 33.34 35.28 17.51 -1 -1 33.34 17.9159 15.4581 67393 75912 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml mcml.v common 7696.51 vpr 1.65 GiB 86.67 923648 -1 -1 75 6858.10 -1 -1 447884 -1 -1 5521 36 159 27 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 1730316 36 356 135102 133883 1 40236 6099 92 92 8464 memory auto 954.5 MiB 72.43 477761 6968599 2734837 4155159 78603 1680.8 MiB 141.80 1.03 66.039 -311122 -66.039 66.039 71.33 0.264088 0.227664 36.9566 30.8752 82 693411 36 5.19428e+08 3.95345e+08 4.72968e+07 5588.00 277.89 116.952 97.4142 1093962 9944682 -1 639996 18 157403 482541 31373602 5767095 67.4547 67.4547 -366508 -67.4547 -0.130468 -0.0326169 5.93075e+07 7007.03 18.95 21.58 8.77 -1 -1 18.95 14.3408 12.5047 53404 83427 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test4/koios_medium/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test4/koios_medium/config/golden_results.txt index f5fb0192fb8..9e8e6d93e99 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test4/koios_medium/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test4/koios_medium/config/golden_results.txt @@ -1,13 +1,13 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml tpu_like.small.os.v common 677.72 vpr 2.29 GiB -1 -1 19.40 195276 5 99.61 -1 -1 109760 -1 -1 492 355 32 -1 success 327aa1d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T16:01:10 gh-actions-runner-vtr-auto-spawned87 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 2400616 355 289 25429 18444 2 12313 1433 136 136 18496 dsp_top auto 208.3 MiB 14.61 359754 2344.4 MiB 16.75 0.18 5.12303 -82671.4 -5.12303 2.1842 6.09 0.0412666 0.0368158 6.35102 5.65512 -1 394367 16 5.92627e+08 8.53857e+07 4.08527e+08 22087.3 4.50 8.69097 7.85207 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml tpu_like.small.ws.v common 722.22 vpr 2.30 GiB -1 -1 23.09 242848 5 72.60 -1 -1 117236 -1 -1 686 357 58 -1 success 327aa1d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T16:01:10 gh-actions-runner-vtr-auto-spawned87 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 2415672 357 289 25686 20353 2 12799 1656 136 136 18496 dsp_top auto 233.3 MiB 98.40 226648 2359.1 MiB 20.07 0.17 8.31923 -74283.8 -8.31923 2.78336 6.05 0.0420585 0.0356747 6.53862 5.54952 -1 293644 13 5.92627e+08 9.4632e+07 4.08527e+08 22087.3 4.58 8.69976 7.55132 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml dla_like.small.v common 2800.18 vpr 1.75 GiB -1 -1 94.38 736748 6 754.09 -1 -1 389988 -1 -1 3895 206 132 -1 success 327aa1d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T16:01:10 gh-actions-runner-vtr-auto-spawned87 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1840088 206 13 165036 139551 1 69732 4358 88 88 7744 dsp_top auto 1052.4 MiB 1692.76 601396 1606.1 MiB 88.48 0.64 5.30279 -150931 -5.30279 5.30279 1.96 0.131322 0.104184 16.7561 13.7761 -1 876475 15 2.4541e+08 1.55281e+08 1.69370e+08 21871.2 14.42 24.7943 21.0377 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml bnn.v common 797.74 vpr 2.01 GiB -1 -1 84.28 729308 3 56.57 -1 -1 411036 -1 -1 6190 260 0 -1 success 327aa1d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T16:01:10 gh-actions-runner-vtr-auto-spawned87 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 2106860 260 122 206251 154342 1 87361 6635 87 87 7569 clb auto 1300.8 MiB 202.79 910701 1723.3 MiB 174.17 1.12 6.77966 -140235 -6.77966 6.77966 1.97 0.198989 0.175034 29.926 24.7241 -1 1199797 17 2.37162e+08 1.88714e+08 1.65965e+08 21927.0 20.72 41.872 35.326 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml attention_layer.v common 778.08 vpr 1002.21 MiB -1 -1 34.70 314612 5 16.29 -1 -1 135008 -1 -1 1000 1052 194 -1 success 327aa1d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T16:01:10 gh-actions-runner-vtr-auto-spawned87 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1026264 1052 32 45971 36479 1 23765 2376 82 82 6724 dsp_top auto 311.2 MiB 549.16 240205 1002.2 MiB 29.44 0.19 5.44091 -87140.2 -5.44091 5.44091 1.55 0.049896 0.0424754 8.68648 7.24743 -1 380516 19 2.09174e+08 7.94825e+07 1.47429e+08 21925.8 7.09 11.8806 10.0846 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml conv_layer_hls.v common 494.69 vpr 1.34 GiB -1 -1 19.54 264520 3 15.16 -1 -1 56460 -1 -1 1739 1016 21 -1 success 327aa1d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T16:01:10 gh-actions-runner-vtr-auto-spawned87 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1406888 1016 2244 12841 14383 1 7131 5032 104 104 10816 io auto 138.0 MiB 74.83 73655 1373.9 MiB 27.72 0.28 4.66975 -16444.1 -4.66975 4.66975 5.72 0.0687639 0.0660952 9.48152 9.00606 -1 100883 14 3.44415e+08 5.44618e+07 2.37404e+08 21949.3 3.58 12.2466 11.6618 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml conv_layer.v common 261.70 vpr 539.64 MiB -1 -1 14.31 148624 4 106.09 -1 -1 82672 -1 -1 821 91 56 -1 success 327aa1d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T16:01:10 gh-actions-runner-vtr-auto-spawned87 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 552588 91 65 33178 28065 2 12714 1075 56 56 3136 dsp_top auto 245.3 MiB 15.16 162218 539.6 MiB 20.95 0.16 4.63337 -55301.2 -4.63337 1.84791 1.03 0.064784 0.0563394 8.11436 6.88378 -1 232737 13 9.76016e+07 4.12774e+07 6.79229e+07 21659.1 6.42 11.3034 9.78771 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml eltwise_layer.v common 134.01 vpr 471.62 MiB -1 -1 5.54 84604 4 10.22 -1 -1 57240 -1 -1 358 152 72 -1 success 327aa1d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T16:01:10 gh-actions-runner-vtr-auto-spawned87 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 482936 152 97 14484 12274 2 6814 726 56 56 3136 dsp_top auto 139.0 MiB 7.49 128840 471.6 MiB 10.79 0.08 3.7231 -22257.6 -3.7231 1.56771 1.07 0.0418396 0.0359169 5.57189 4.76335 -1 188991 14 9.76016e+07 3.18294e+07 6.79229e+07 21659.1 5.32 7.49194 6.52592 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml robot_rl.v common 161.71 vpr 468.34 MiB -1 -1 16.70 243012 5 9.37 -1 -1 77484 -1 -1 874 3 84 -1 success 327aa1d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T16:01:10 gh-actions-runner-vtr-auto-spawned87 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 479580 3 384 24598 22966 1 12280 1363 52 52 2704 memory auto 216.5 MiB 18.36 105021 468.3 MiB 24.33 0.18 5.54985 -36353.1 -5.54985 5.54985 0.84 0.0529336 0.0457202 6.49893 5.4558 -1 173035 17 8.30642e+07 4.05203e+07 5.85728e+07 21661.5 5.88 9.68277 8.27364 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml reduction_layer.v common 112.24 vpr 312.18 MiB -1 -1 18.23 305628 6 11.33 -1 -1 74884 -1 -1 659 37 52 -1 success 327aa1d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T16:01:10 gh-actions-runner-vtr-auto-spawned87 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 319672 37 17 16436 14191 1 8837 765 38 38 1444 memory auto 166.0 MiB 19.17 99898 301.3 MiB 12.00 0.15 5.43701 -40617.4 -5.43701 5.43701 0.38 0.0444985 0.0353751 3.86054 3.15721 -1 163885 16 4.31434e+07 2.55478e+07 3.09543e+07 21436.5 5.73 6.27904 5.31913 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml spmv.v common 281.23 vpr 940.78 MiB -1 -1 9.42 191424 6 15.99 -1 -1 69580 -1 -1 649 82 232 -1 success 327aa1d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T16:01:10 gh-actions-runner-vtr-auto-spawned87 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 963360 82 17 16267 14363 1 9085 1012 84 84 7056 memory auto 154.7 MiB 20.89 173262 940.8 MiB 9.92 0.09 4.77582 -40195.5 -4.77582 4.77582 2.76 0.0348339 0.0273197 3.85139 3.13376 -1 231971 14 2.2198e+08 5.81696e+07 1.54484e+08 21894.0 5.04 5.62118 4.72078 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml softmax.v common 143.67 vpr 438.25 MiB -1 -1 12.83 292752 10 10.84 -1 -1 58644 -1 -1 517 402 0 -1 success 327aa1d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T16:01:10 gh-actions-runner-vtr-auto-spawned87 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 448768 402 150 12953 11777 1 7813 1106 54 54 2916 dsp_top auto 131.0 MiB 14.38 80909 438.2 MiB 12.89 0.09 8.74709 -12940.5 -8.74709 8.74709 1.02 0.0242371 0.0213375 3.69252 3.20705 -1 130144 17 8.95105e+07 2.38165e+07 6.32721e+07 21698.2 3.46 5.30986 4.69795 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml tpu_like.small.os.v common 619.60 vpr 2.33 GiB -1 -1 13.39 196968 5 72.67 -1 -1 109604 -1 -1 496 355 32 -1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 2439252 355 289 25456 18471 2 12404 1437 136 136 18496 dsp_top auto 214.0 MiB 12.23 355505 1152489 467663 489673 195153 2382.1 MiB 22.48 0.22 5.68333 -83747.3 -5.68333 2.1842 6.98 0.0505978 0.046175 7.84344 7.09719 -1 385939 15 5.92627e+08 8.54973e+07 4.08527e+08 22087.3 4.41 10.6032 9.72523 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml tpu_like.small.ws.v common 662.30 vpr 2.34 GiB -1 -1 16.28 242356 5 50.41 -1 -1 116980 -1 -1 687 357 58 -1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 2456672 357 289 25618 20285 2 12726 1657 136 136 18496 dsp_top auto 238.1 MiB 62.99 206081 1520812 537522 740750 242540 2399.1 MiB 28.10 0.22 7.3529 -70878.9 -7.3529 2.61672 7.11 0.0472105 0.03978 7.5815 6.64026 -1 271791 19 5.92627e+08 9.46599e+07 4.08527e+08 22087.3 5.60 10.7015 9.55688 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml dla_like.small.v common 3228.09 vpr 1.77 GiB -1 -1 67.41 743692 6 615.96 -1 -1 389608 -1 -1 3908 206 132 -1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 1850844 206 13 164958 139473 1 69650 4371 88 88 7744 dsp_top auto 1055.2 MiB 2190.38 594831 4326854 1606621 2631635 88598 1624.7 MiB 126.05 0.96 5.30279 -153323 -5.30279 5.30279 2.46 0.132724 0.110532 18.0376 15.1327 -1 866956 15 2.4541e+08 1.55644e+08 1.69370e+08 21871.2 16.81 27.5426 23.9585 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml bnn.v common 673.61 vpr 2.02 GiB -1 -1 59.67 728992 3 36.85 -1 -1 417368 -1 -1 6187 260 0 -1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 2123212 260 122 206293 154384 1 87347 6632 87 87 7569 clb auto 1305.4 MiB 169.50 922485 7854164 3058750 4303825 491589 1741.7 MiB 173.10 1.21 6.93854 -143778 -6.93854 6.93854 2.22 0.1974 0.178302 23.7686 20.3 -1 1211007 17 2.37162e+08 1.88631e+08 1.65965e+08 21927.0 22.70 35.8566 31.4249 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml attention_layer.v common 769.78 vpr 1019.14 MiB -1 -1 25.31 316344 5 9.16 -1 -1 134712 -1 -1 995 1052 194 -1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 1043600 1052 32 45949 36457 1 23713 2371 82 82 6724 dsp_top auto 316.2 MiB 535.35 235206 2499245 888437 1481261 129547 1019.1 MiB 30.47 0.19 5.64881 -88843.7 -5.64881 5.64881 1.81 0.0461721 0.0396534 7.82698 6.6403 -1 373961 16 2.09174e+08 7.9343e+07 1.47429e+08 21925.8 6.61 10.7458 9.30974 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml conv_layer_hls.v common 386.70 vpr 1.36 GiB -1 -1 18.23 255132 3 10.00 -1 -1 61072 -1 -1 1742 1016 21 -1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 1430828 1016 2244 12839 14381 1 7127 5035 104 104 10816 io auto 140.6 MiB 67.37 74682 5871531 3028982 2055644 786905 1397.3 MiB 21.15 0.19 5.72079 -17485.3 -5.72079 5.72079 3.75 0.053385 0.0516384 7.65676 7.41028 -1 101137 17 3.44415e+08 5.45455e+07 2.37404e+08 21949.3 3.04 10.2052 9.90229 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml conv_layer.v common 167.72 vpr 548.32 MiB -1 -1 10.12 149124 4 57.67 -1 -1 82592 -1 -1 821 91 56 -1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 561480 91 65 33180 28067 2 12775 1075 56 56 3136 dsp_top auto 248.0 MiB 12.48 161649 617523 203048 388674 25801 548.3 MiB 12.44 0.10 4.71204 -49256.5 -4.71204 1.93601 0.74 0.0351018 0.0300777 4.47165 3.80648 -1 233134 14 9.76016e+07 4.12774e+07 6.79229e+07 21659.1 4.19 6.67861 5.86711 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml eltwise_layer.v common 96.94 vpr 480.44 MiB -1 -1 4.01 85204 4 6.23 -1 -1 56968 -1 -1 347 152 72 -1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 491968 152 97 14409 12199 2 6828 715 56 56 3136 dsp_top auto 141.6 MiB 8.20 133480 377843 120228 230660 26955 480.4 MiB 6.46 0.05 3.95733 -22810.1 -3.95733 1.56771 0.73 0.0220286 0.0187682 2.65044 2.28617 -1 195459 14 9.76016e+07 3.15225e+07 6.79229e+07 21659.1 3.44 3.88511 3.43833 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml robot_rl.v common 115.41 vpr 478.52 MiB -1 -1 12.99 239476 5 7.81 -1 -1 77052 -1 -1 876 3 84 -1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 490004 3 384 24647 23015 1 12352 1365 52 52 2704 memory auto 221.8 MiB 13.92 110684 818817 266813 480208 71796 478.5 MiB 14.39 0.12 5.75775 -36197.2 -5.75775 5.75775 0.58 0.0235431 0.0188135 2.93359 2.43328 -1 180370 18 8.30642e+07 4.05761e+07 5.85728e+07 21661.5 3.82 4.89173 4.24908 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml reduction_layer.v common 76.71 vpr 318.11 MiB -1 -1 13.06 307408 6 6.97 -1 -1 74924 -1 -1 735 37 52 -1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 325740 37 17 16391 14146 1 8955 841 38 38 1444 memory auto 169.5 MiB 12.70 101987 306377 77320 220137 8920 306.7 MiB 8.23 0.09 5.54334 -34945.2 -5.54334 5.54334 0.25 0.0173344 0.0141754 1.70924 1.42776 -1 167887 16 4.31434e+07 2.76685e+07 3.09543e+07 21436.5 3.61 3.17188 2.78308 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml spmv.v common 216.67 vpr 956.60 MiB -1 -1 7.64 195504 6 12.41 -1 -1 69980 -1 -1 643 82 232 -1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 979556 82 17 16311 14407 1 9023 1006 84 84 7056 memory auto 158.1 MiB 17.56 160557 509844 165549 329315 14980 956.6 MiB 6.62 0.06 4.90582 -39742 -4.90582 4.90582 1.96 0.0182862 0.0156519 2.06248 1.70904 -1 218320 13 2.2198e+08 5.80022e+07 1.54484e+08 21894.0 3.17 3.29314 2.85784 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +k6FracN10LB_mem20K_complexDSP_customSB_22nm.xml softmax.v common 105.95 vpr 447.11 MiB -1 -1 9.76 285876 10 8.07 -1 -1 57872 -1 -1 504 402 0 -1 success v8.0.0-10476-g8192a19e5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-06-20T15:31:36 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 457844 402 150 12958 11781 1 7836 1093 54 54 2916 dsp_top auto 134.6 MiB 11.32 80267 772129 261682 467759 42688 447.1 MiB 8.77 0.07 7.40003 -12898.4 -7.40003 7.40003 0.69 0.0144036 0.0128586 1.97847 1.71617 -1 130877 17 8.95105e+07 2.34537e+07 6.32721e+07 21698.2 2.33 3.04257 2.72326 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_tight_floorplan_3d/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_tight_floorplan_3d/config/config.txt index 6259b6d82ad..f536515b9ef 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_tight_floorplan_3d/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_tight_floorplan_3d/config/config.txt @@ -21,7 +21,7 @@ parse_file=vpr_standard.txt qor_parse_file=qor_standard.txt # Pass requirements -#pass_requirements_file=pass_requirements.txt +pass_requirements_file=pass_requirements.txt # Script parameters script_params_common =-starting_stage vpr --route_chan_width 300 --max_router_iterations 400 --router_lookahead map --initial_pres_fac 1.0 --router_profiler_astar_fac 1.5 --seed 3 --device neuron3d diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_tight_floorplan_3d/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_tight_floorplan_3d/config/golden_results.txt new file mode 100644 index 00000000000..7b7954f2f05 --- /dev/null +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_tight_floorplan_3d/config/golden_results.txt @@ -0,0 +1,4 @@ +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml neuron_stratixiv_arch_timing.blif common_-sdc_file_sdc/samples/neuron_stratixiv_arch_timing.sdc_-read_vpr_constraints_tasks/regression_tests/vtr_reg_nightly_test5/vpr_tight_floorplan_3d/one_big_partition.xml 835.38 vpr 2.86 GiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 42 -1 -1 success 16adbfa-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-15T00:59:58 gh-actions-runner-vtr-auto-spawned49 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 2998168 42 35 119888 86875 1 50931 3418 92 68 12512 -1 neuron3d 1871.5 MiB 125.92 471295 2911586 1070954 1811088 29544 2883.9 MiB 225.67 2.10 7.73071 -71900.2 -6.73071 5.03261 0.22 0.369023 0.308324 43.731 35.9598 -1 672628 24 0 0 2.71622e+08 21708.9 79.02 68.1319 57.7539 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml neuron_stratixiv_arch_timing.blif common_-sdc_file_sdc/samples/neuron_stratixiv_arch_timing.sdc_-read_vpr_constraints_tasks/regression_tests/vtr_reg_nightly_test5/vpr_tight_floorplan_3d/half_blocks_right_left.xml 820.30 vpr 2.86 GiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 42 -1 -1 success 16adbfa-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-15T00:59:58 gh-actions-runner-vtr-auto-spawned49 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 2995656 42 35 119888 86875 1 50982 3427 92 68 12512 -1 neuron3d 1869.5 MiB 127.02 455014 2973417 1101001 1762977 109439 2881.6 MiB 223.03 1.76 7.42684 -70436.4 -6.42684 5.75387 0.23 0.367143 0.304401 44.7203 37.4852 -1 654498 28 0 0 2.71622e+08 21708.9 78.86 71.0006 61.0273 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +3d_full_OPIN_inter_die_stratixiv_arch.timing.xml neuron_stratixiv_arch_timing.blif common_-sdc_file_sdc/samples/neuron_stratixiv_arch_timing.sdc_-read_vpr_constraints_tasks/regression_tests/vtr_reg_nightly_test5/vpr_tight_floorplan_3d/half_blocks_up_down.xml 812.45 vpr 2.86 GiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 42 -1 -1 success 16adbfa-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-15T00:59:58 gh-actions-runner-vtr-auto-spawned49 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 2995760 42 35 119888 86875 1 50982 3427 92 68 12512 -1 neuron3d 1869.6 MiB 125.77 465634 3050895 1119051 1501125 430719 2881.9 MiB 206.05 1.47 7.58328 -72552.7 -6.58328 5.5951 0.22 0.365879 0.300546 45.7365 37.5853 -1 663695 23 0 0 2.71622e+08 21708.9 79.71 69.6049 58.853 -1 -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_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 67112161c11..2c43b56eb77 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 place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - k6_frac_N10_4add_2chains_tie_off_depop50_mem20K_22nm.xml mult_4x4.v common 1.20 vpr 62.24 MiB -1 -1 0.07 20964 1 0.00 -1 -1 33108 -1 -1 3 9 0 -1 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63732 9 8 75 70 1 35 20 5 5 25 clb auto 23.6 MiB 0.53 86 62.2 MiB 0.00 0.00 2.25119 -23.8925 -2.25119 2.25119 0.02 4.1023e-05 3.1539e-05 0.00122774 0.00111409 34 203 14 151211 75605.7 45067.1 1802.68 0.10 0.0179246 0.0149981 167 11 115 154 5391 2823 2.41865 2.41865 -33.4427 -2.41865 0 0 54748.7 2189.95 0.00 0.01 0.00322286 0.00301138 14 16 -1 -1 -1 -1 - k6_frac_N10_4add_2chains_tie_off_depop50_mem20K_22nm.xml mult_9x9.v common 3.61 vpr 63.33 MiB -1 -1 0.09 21268 1 0.01 -1 -1 33200 -1 -1 9 19 0 -1 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64852 19 18 308 249 1 147 46 6 6 36 clb auto 25.1 MiB 2.32 488 63.3 MiB 0.03 0.00 3.72642 -71.3132 -3.72642 3.72642 0.03 0.000152812 0.000121271 0.0114902 0.00973617 54 1211 26 403230 226817 113905. 3164.04 0.46 0.0908276 0.0791763 883 22 949 1423 57002 21423 5.96246 5.96246 -123.664 -5.96246 0 0 146644. 4073.44 0.01 0.03 0.0171281 0.0157138 63 81 -1 -1 -1 -1 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +k6_frac_N10_4add_2chains_tie_off_depop50_mem20K_22nm.xml mult_4x4.v common 3.59 vpr 61.01 MiB -1 -1 0.11 16896 1 0.63 -1 -1 29740 -1 -1 3 9 0 -1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62476 9 8 75 70 1 37 20 5 5 25 clb auto 22.4 MiB 0.47 82 533 165 363 5 61.0 MiB 0.01 0.00 2.68643 -29.137 -2.68643 2.68643 0.02 0.000188348 0.000174205 0.00474572 0.0044363 26 182 18 151211 75605.7 37105.9 1484.24 0.15 0.0423228 0.0352957 1908 5841 -1 155 11 111 124 5133 2870 2.88739 2.88739 -34.0156 -2.88739 0 0 45067.1 1802.68 0.00 0.01 0.01 -1 -1 0.00 0.00698364 0.00619778 14 18 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_tie_off_depop50_mem20K_22nm.xml mult_9x9.v common 6.04 vpr 62.27 MiB -1 -1 0.19 17208 1 0.64 -1 -1 30124 -1 -1 9 19 0 -1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63760 19 18 308 249 1 147 46 6 6 36 clb auto 23.8 MiB 2.01 502 2916 768 2087 61 62.3 MiB 0.05 0.00 4.80297 -98.0082 -4.80297 4.80297 0.05 0.000629548 0.000584294 0.0259583 0.0242455 48 1077 40 403230 226817 104013. 2889.24 0.79 0.275306 0.234615 3910 18599 -1 770 17 746 1059 42320 17076 4.66916 4.66916 -105.494 -4.66916 0 0 131137. 3642.71 0.01 0.04 0.02 -1 -1 0.01 0.026422 0.0235947 63 83 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_diff_mux_for_inc_dec_wires/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_diff_mux_for_inc_dec_wires/config/config.txt new file mode 100644 index 00000000000..6aa68196bfc --- /dev/null +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_diff_mux_for_inc_dec_wires/config/config.txt @@ -0,0 +1,28 @@ +############################################## +# Configuration file for running experiments +############################################## + +# Path to directory of circuits to use +circuits_dir=benchmarks/verilog + +# Path to directory of architectures to use +archs_dir=arch/timing + +# Add circuits to list to sweep +circuit_list_add=stereovision0.v + +# Add architectures to list to sweep +arch_list_add=k6_N10_40nm.xml +arch_list_add=k6_N10_40nm_diff_switch_for_inc_dec_wires.xml + +# Parse info and how to parse +parse_file=vpr_standard.txt + +# How to parse QoR info +qor_parse_file=qor_standard.txt + +# Pass requirements +pass_requirements_file=pass_requirements.txt + +# Script parameters +script_params = -crit_path_router_iterations 150 \ No newline at end of file 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 new file mode 100644 index 00000000000..aeff2922e33 --- /dev/null +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_diff_mux_for_inc_dec_wires/config/golden_results.txt @@ -0,0 +1,3 @@ +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_40nm.xml stereovision0.v common 140.15 vpr 272.04 MiB -1 -1 12.85 119508 5 37.98 -1 -1 65828 -1 -1 1307 169 -1 -1 success v8.0.0-10642-gf11aaea3f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-18T10:51:58 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 278564 169 197 21166 21363 1 7566 1673 39 39 1521 clb auto 140.8 MiB 3.95 53142 974519 347458 607168 19893 272.0 MiB 10.23 0.10 3.63366 -15348.4 -3.63366 3.63366 9.71 0.0315035 0.026913 3.45179 2.89228 44 69063 46 7.37824e+07 7.04408e+07 4.68145e+06 3077.88 43.27 19.1637 16.0718 125110 968779 -1 63965 24 33902 65662 2813140 489196 3.57565 3.57565 -16119.5 -3.57565 0 0 6.05227e+06 3979.14 1.97 2.96 0.84 -1 -1 1.97 2.09287 1.80452 +k6_N10_40nm_diff_switch_for_inc_dec_wires.xml stereovision0.v common 138.68 vpr 271.91 MiB -1 -1 12.57 119440 5 36.46 -1 -1 65388 -1 -1 1307 169 -1 -1 success v8.0.0-10642-gf11aaea3f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-18T10:51:58 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 278432 169 197 21166 21363 1 7566 1673 39 39 1521 clb auto 140.7 MiB 3.96 53142 974519 347458 607168 19893 271.9 MiB 11.12 0.11 3.63366 -15348.4 -3.63366 3.63366 9.48 0.037164 0.0323029 4.04546 3.42407 44 69063 46 7.37824e+07 7.04408e+07 4.68145e+06 3077.88 43.94 19.9593 16.7643 125110 968779 -1 63965 24 33902 65662 2813140 489196 3.57565 3.57565 -16119.5 -3.57565 0 0 6.05227e+06 3979.14 2.02 2.80 0.83 -1 -1 2.02 1.87812 1.62699 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 e90dc4ebc2a..c6e28cffde3 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 place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time total_power routing_power_perc clock_power_perc tile_power_perc - k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 2.56 vpr 68.86 MiB -1 -1 0.16 21164 3 0.04 -1 -1 36732 -1 -1 68 99 1 0 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev vtr-verilog-to-routing 70512 99 130 343 473 1 225 298 12 12 144 clb auto 30.0 MiB 0.09 599 68.9 MiB 0.14 0.00 1.62851 -108.153 -1.62851 1.62851 0.24 0.000299717 0.000270177 0.0273918 0.0247539 36 1433 28 5.66058e+06 4.21279e+06 305235. 2119.69 0.89 0.154527 0.142184 12238 58442 -1 1268 11 415 652 36110 11199 0 0 36110 11199 652 509 0 0 1962 1778 0 0 2299 1962 0 0 702 569 0 0 14627 3510 0 0 15868 2871 0 0 652 0 0 237 348 302 2469 0 0 1.99752 1.99752 -139.864 -1.99752 -0.305022 -0.0771249 378970. 2631.74 0.08 0.02 0.03 -1 -1 0.08 0.0122486 0.0116483 0.01106 0.2164 0.06499 0.7186 - k6_frac_N10_mem32K_40nm.xml diffeq1.v common 11.60 vpr 71.82 MiB -1 -1 0.27 26032 15 0.29 -1 -1 39268 -1 -1 36 162 0 5 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev vtr-verilog-to-routing 73548 162 96 994 935 1 694 299 16 16 256 mult_36 auto 33.9 MiB 0.18 5116 71.8 MiB 0.31 0.00 20.0144 -1558.29 -20.0144 20.0144 0.52 0.000865507 0.000778261 0.0906443 0.0820495 58 11189 29 1.21132e+07 3.92018e+06 904549. 3533.39 6.75 0.600626 0.551765 27012 180273 -1 8988 16 2806 5411 1373904 390089 0 0 1373904 390089 5411 3482 0 0 66539 65294 0 0 69304 66706 0 0 5863 3940 0 0 620903 124434 0 0 605884 126233 0 0 5411 0 0 2632 7125 7046 41280 0 0 22.5339 22.5339 -1730.29 -22.5339 0 0 1.15318e+06 4504.63 0.26 0.22 0.11 -1 -1 0.26 0.0593905 0.0563493 0.007993 0.3665 0.01796 0.6156 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time total_power routing_power_perc clock_power_perc tile_power_perc +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 3.81 vpr 66.11 MiB -1 -1 0.26 21888 3 0.09 -1 -1 36764 -1 -1 68 99 1 0 success v8.0.0-10480-gb00638420 release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-07-09T01:24:04 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67692 99 130 344 474 1 223 298 12 12 144 clb auto 27.3 MiB 0.12 585 71938 22630 36940 12368 66.1 MiB 0.14 0.00 1.6034 -105.161 -1.6034 1.6034 0.29 0.00139437 0.00135258 0.0351572 0.0316889 50 1281 9 5.66058e+06 4.21279e+06 406292. 2821.48 1.38 0.208431 0.191734 13526 77840 -1 1197 13 384 639 38731 12079 1.94763 1.94763 -135.636 -1.94763 -0.246888 -0.0618635 520805. 3616.70 0.14 0.03 0.06 -1 -1 0.14 0.0186428 0.0176628 0.01175 0.2358 0.07065 0.6936 +k6_frac_N10_mem32K_40nm.xml diffeq1.v common 11.53 vpr 69.39 MiB -1 -1 0.37 26692 15 0.34 -1 -1 38048 -1 -1 36 162 0 5 success v8.0.0-10480-gb00638420 release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-07-09T01:24:04 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 71060 162 96 1009 950 1 702 299 16 16 256 mult_36 auto 31.3 MiB 0.25 5482 83216 24145 51990 7081 69.4 MiB 0.33 0.01 19.9021 -1505.63 -19.9021 19.9021 0.55 0.00116941 0.00106566 0.107758 0.0971761 48 12516 28 1.21132e+07 3.92018e+06 756778. 2956.16 6.27 0.595579 0.54881 25228 149258 -1 9859 18 3192 6328 1764441 435058 22.1605 22.1605 -1742.59 -22.1605 0 0 968034. 3781.38 0.29 0.35 0.10 -1 -1 0.29 0.0780723 0.07404 0.007937 0.3531 0.01667 0.6303 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 3fd4fe85b17..0d6c15dbf02 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 place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_4x4.v common 0.80 vpr 65.64 MiB -1 -1 0.05 20132 1 0.01 -1 -1 35492 -1 -1 3 9 0 -1 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 67216 9 8 75 70 1 37 20 5 5 25 clb auto 27.2 MiB 0.37 87 65.6 MiB 0.00 0.00 2.25879 -24.067 -2.25879 2.25879 0.02 2.8365e-05 2.1278e-05 0.000793206 0.000721571 38 184 14 151211 75605.7 48493.3 1939.73 0.09 0.0133335 0.0110025 2100 8065 -1 153 12 112 136 3959 2021 0 0 3959 2021 136 129 0 0 442 412 0 0 631 559 0 0 137 135 0 0 1357 328 0 0 1256 458 0 0 136 0 0 24 4 23 235 0 0 2.68643 2.68643 -33.1966 -2.68643 0 0 61632.8 2465.31 0.00 0.00 0.00 -1 -1 0.00 0.0023005 0.00214713 14 16 -1 -1 -1 -1 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_5x5.v common 4.54 vpr 66.09 MiB -1 -1 0.06 20148 1 0.00 -1 -1 33308 -1 -1 2 11 0 -1 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 67672 11 10 108 97 1 45 23 4 4 16 clb auto 27.6 MiB 4.13 99 66.1 MiB 0.00 0.00 2.99513 -33.5297 -2.99513 2.99513 0.01 3.8376e-05 2.9951e-05 0.0015057 0.00132617 34 211 26 50403.8 50403.8 21558.4 1347.40 0.05 0.0140163 0.0118251 1020 3049 -1 144 16 139 172 4520 2686 0 0 4520 2686 172 149 0 0 611 547 0 0 873 782 0 0 172 151 0 0 1369 541 0 0 1323 516 0 0 172 0 0 33 30 26 349 0 0 3.42277 3.42277 -45.1479 -3.42277 0 0 26343.3 1646.46 0.00 0.01 0.00 -1 -1 0.00 0.00351111 0.00325521 14 25 -1 -1 -1 -1 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_6x6.v common 2.64 vpr 66.34 MiB -1 -1 0.09 20360 1 0.01 -1 -1 33116 -1 -1 4 13 0 -1 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 67928 13 12 149 129 1 73 29 5 5 25 clb auto 27.9 MiB 1.80 186 66.3 MiB 0.01 0.00 3.20662 -44.3706 -3.20662 3.20662 0.02 5.3265e-05 4.2042e-05 0.00192146 0.00172037 38 359 21 151211 100808 48493.3 1939.73 0.14 0.0261909 0.0222783 2100 8065 -1 355 20 405 583 20015 9844 0 0 20015 9844 583 498 0 0 1879 1764 0 0 3204 2650 0 0 593 545 0 0 6920 2328 0 0 6836 2059 0 0 583 0 0 178 271 163 1783 0 0 4.37604 4.37604 -67.2741 -4.37604 0 0 61632.8 2465.31 0.00 0.01 0.00 -1 -1 0.00 0.0052765 0.00487745 25 36 -1 -1 -1 -1 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_7x7.v common 1.95 vpr 66.48 MiB -1 -1 0.06 20280 1 0.00 -1 -1 33480 -1 -1 6 15 0 -1 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 68080 15 14 196 165 1 95 35 5 5 25 clb auto 28.1 MiB 1.37 279 66.5 MiB 0.01 0.00 3.11103 -51.0846 -3.11103 3.11103 0.02 6.8979e-05 5.5751e-05 0.00344116 0.003024 52 453 15 151211 151211 63348.9 2533.96 0.16 0.0352304 0.0299382 2316 10503 -1 364 17 347 499 18306 8355 0 0 18306 8355 499 399 0 0 1652 1557 0 0 2365 2079 0 0 523 405 0 0 6237 1995 0 0 7030 1920 0 0 499 0 0 152 172 182 1475 0 0 3.91996 3.91996 -70.391 -3.91996 0 0 82390.3 3295.61 0.01 0.01 0.01 -1 -1 0.01 0.00675161 0.0063223 37 49 -1 -1 -1 -1 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_8x8.v common 2.38 vpr 66.80 MiB -1 -1 0.06 20404 1 0.00 -1 -1 35664 -1 -1 6 17 0 -1 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 68404 17 16 251 206 1 122 39 5 5 25 clb auto 28.3 MiB 1.73 403 66.8 MiB 0.01 0.00 3.26818 -62.072 -3.26818 3.26818 0.02 8.7435e-05 7.1081e-05 0.00506313 0.00441863 52 751 31 151211 151211 63348.9 2533.96 0.19 0.0431888 0.0369288 2316 10503 -1 602 18 571 922 30990 13669 0 0 30990 13669 922 668 0 0 2952 2755 0 0 4594 3827 0 0 962 740 0 0 9964 2681 0 0 11596 2998 0 0 922 0 0 351 350 549 3622 0 0 4.58466 4.58466 -97.1505 -4.58466 0 0 82390.3 3295.61 0.01 0.01 0.01 -1 -1 0.01 0.0087006 0.00814138 50 64 -1 -1 -1 -1 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_9x9.v common 3.94 vpr 66.96 MiB -1 -1 0.11 20608 1 0.02 -1 -1 33432 -1 -1 9 19 0 -1 success v8.0.0-8313-gbd73e8384d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.1.1 on Linux-6.1.31-2-MANJARO x86_64 2023-07-20T13:36:56 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 68564 19 18 308 249 1 148 46 6 6 36 clb auto 28.9 MiB 1.40 467 67.0 MiB 0.02 0.00 3.86024 -72.0568 -3.86024 3.86024 0.03 0.000105412 8.6704e-05 0.00551129 0.00484581 48 1117 46 403230 226817 104013. 2889.24 0.16 0.0416688 0.0360682 3910 18599 -1 762 20 817 1362 47477 18799 0 0 47477 18799 1362 963 0 0 4283 3912 0 0 6634 5668 0 0 1421 1022 0 0 17522 3558 0 0 16255 3676 0 0 1362 0 0 545 619 734 5532 0 0 5.49372 5.49372 -116.089 -5.49372 0 0 131137. 3642.71 0.01 0.02 0.01 -1 -1 0.01 0.0117573 0.0109032 63 81 -1 -1 -1 -1 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_4x4.v common 1.62 vpr 61.70 MiB -1 -1 0.13 16668 1 0.02 -1 -1 29972 -1 -1 3 9 0 -1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63180 9 8 75 70 1 37 20 5 5 25 clb auto 23.2 MiB 0.48 95 74 32 40 2 61.7 MiB 0.01 0.00 2.68643 -29.5771 -2.68643 2.68643 0.02 0.000193898 0.000179351 0.00152641 0.00145955 28 196 12 151211 75605.7 38887.3 1555.49 0.15 0.0378608 0.0313115 1932 6055 -1 209 18 175 225 9837 5105 3.11407 3.11407 -40.4298 -3.11407 0 0 46719.2 1868.77 0.00 0.02 0.01 -1 -1 0.00 0.00868436 0.00758208 14 18 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_5x5.v common 6.30 vpr 62.16 MiB -1 -1 0.14 17008 1 0.03 -1 -1 30152 -1 -1 2 11 0 -1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 11 10 108 97 1 45 23 4 4 16 clb auto 23.7 MiB 5.18 99 407 139 221 47 62.2 MiB 0.01 0.00 3.44595 -41.9644 -3.44595 3.44595 0.01 0.000258109 0.000239425 0.00468244 0.00440828 34 245 29 50403.8 50403.8 21558.4 1347.40 0.14 0.0594086 0.0498622 1020 3049 -1 142 12 173 207 5475 3281 3.42277 3.42277 -45.8589 -3.42277 0 0 26343.3 1646.46 0.00 0.01 0.00 -1 -1 0.00 0.00898942 0.00801169 14 27 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_6x6.v common 4.11 vpr 62.27 MiB -1 -1 0.12 17080 1 0.02 -1 -1 30020 -1 -1 4 13 0 -1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63768 13 12 149 129 1 73 29 5 5 25 clb auto 23.7 MiB 2.65 192 381 127 251 3 62.3 MiB 0.01 0.00 3.48998 -53.0292 -3.48998 3.48998 0.02 0.000338674 0.000314303 0.00490093 0.0046428 34 503 31 151211 100808 45067.1 1802.68 0.38 0.116405 0.0970984 2028 7167 -1 407 20 431 625 24178 11392 5.07146 5.07146 -74.1695 -5.07146 0 0 54748.7 2189.95 0.00 0.03 0.01 -1 -1 0.00 0.0158522 0.0139123 25 38 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_7x7.v common 3.47 vpr 62.56 MiB -1 -1 0.13 17224 1 0.02 -1 -1 29968 -1 -1 6 15 0 -1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 15 14 196 165 1 95 35 5 5 25 clb auto 24.0 MiB 1.88 286 2714 768 1894 52 62.6 MiB 0.04 0.00 3.87456 -65.1837 -3.87456 3.87456 0.02 0.000509721 0.000473947 0.025612 0.0239231 44 581 22 151211 151211 54748.7 2189.95 0.40 0.154659 0.132163 2196 9177 -1 434 20 573 829 28510 12964 3.86328 3.86328 -73.8872 -3.86328 0 0 71025.7 2841.03 0.01 0.03 0.01 -1 -1 0.01 0.0199185 0.0175684 37 51 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_8x8.v common 4.20 vpr 62.68 MiB -1 -1 0.15 17364 1 0.03 -1 -1 30268 -1 -1 6 17 0 -1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 17 16 251 206 1 122 39 5 5 25 clb auto 24.6 MiB 2.39 416 1887 582 1291 14 62.7 MiB 0.03 0.00 4.05904 -79.8186 -4.05904 4.05904 0.02 0.000532613 0.000494824 0.0181598 0.017006 46 735 41 151211 151211 57775.2 2311.01 0.60 0.221478 0.187165 2220 9391 -1 643 20 796 1230 51124 23938 4.73925 4.73925 -98.8727 -4.73925 0 0 73020.3 2920.81 0.01 0.05 0.01 -1 -1 0.01 0.0244756 0.0215782 50 66 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_9x9.v common 3.77 vpr 63.00 MiB -1 -1 0.15 17580 1 0.03 -1 -1 30304 -1 -1 9 19 0 -1 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64516 19 18 308 249 1 148 46 6 6 36 clb auto 24.8 MiB 2.03 445 2342 523 1770 49 63.0 MiB 0.04 0.00 4.80297 -97.7905 -4.80297 4.80297 0.05 0.000635601 0.000590543 0.021547 0.020168 48 1100 30 403230 226817 104013. 2889.24 0.40 0.154133 0.13247 3910 18599 -1 788 22 950 1415 49803 19805 6.26666 6.26666 -116.462 -6.26666 0 0 131137. 3642.71 0.01 0.05 0.02 -1 -1 0.01 0.0310375 0.0274329 63 83 -1 -1 -1 -1 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 c9364e30733..af6f4da43ad 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 place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml diffeq2.v common 15.33 vpr 67.04 MiB -1 -1 0.22 25508 5 0.13 -1 -1 37112 -1 -1 20 66 0 -1 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 68652 66 96 979 693 1 573 194 16 16 256 mult_27 auto 29.0 MiB 0.44 4603 67.0 MiB 0.41 0.01 14.521 -875.561 -14.521 14.521 0.69 0.00114902 0.00103798 0.120695 0.109525 60 12753 30 4.83877e+06 1.10888e+06 1.27241e+06 4970.35 11.04 0.678618 0.621526 10670 21 3983 8885 2811513 745110 17.1299 17.1299 -1141.38 -17.1299 0 0 1.57401e+06 6148.46 0.34 0.46 0.0715366 0.0672789 184 196 -1 -1 -1 -1 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time 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 14.42 vpr 67.74 MiB -1 -1 0.22 25248 5 0.14 -1 -1 37884 -1 -1 16 66 0 -1 success v8.0.0-10947-g0222054f4-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-41-generic x86_64 2024-08-02T07:25:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong 69368 66 96 983 697 1 554 190 16 16 256 mult_27 auto 29.8 MiB 0.86 4414 48238 17023 25695 5520 67.7 MiB 0.38 0.01 17.8642 -987.177 -17.8642 17.8642 0.74 0.000855849 0.000743555 0.0943972 0.0830861 64 10764 25 4.83877e+06 1.00808e+06 1.35562e+06 5295.38 9.28 0.507301 0.459906 40360 280887 -1 9902 21 3569 7097 2047268 538057 17.7619 17.7619 -1087.06 -17.7619 0 0 1.67258e+06 6533.53 0.46 0.38 0.19 -1 -1 0.46 0.0706231 0.0666912 139 200 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/task_list.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/task_list.txt index 73bee9f7c4d..73f97a8867b 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/task_list.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/task_list.txt @@ -21,6 +21,7 @@ regression_tests/vtr_reg_strong/strong_dedicated_clock regression_tests/vtr_reg_strong/strong_default_fc_pinlocs regression_tests/vtr_reg_strong/strong_depop regression_tests/vtr_reg_strong/strong_detailed_timing +regression_tests/vtr_reg_strong/strong_diff_mux_for_inc_dec_wires regression_tests/vtr_reg_strong/strong_eblif_vpr regression_tests/vtr_reg_strong/strong_eblif_vpr_write regression_tests/vtr_reg_strong/strong_echo_files @@ -85,4 +86,4 @@ regression_tests/vtr_reg_strong/strong_timing_fail regression_tests/vtr_reg_strong/strong_timing_no_fail regression_tests/vtr_reg_strong/strong_noc regression_tests/vtr_reg_strong/strong_flat_router -regression_tests/vtr_reg_strong/strong_routing_constraints \ No newline at end of file +regression_tests/vtr_reg_strong/strong_routing_constraints diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_diff_mux_for_inc_dec_wires/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_diff_mux_for_inc_dec_wires/config/config.txt new file mode 100644 index 00000000000..5836533b276 --- /dev/null +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_diff_mux_for_inc_dec_wires/config/config.txt @@ -0,0 +1,28 @@ +############################################## +# Configuration file for running experiments +############################################## + +# Path to directory of circuits to use +circuits_dir=benchmarks/verilog + +# Path to directory of architectures to use +archs_dir=arch/timing + +# Add circuits to list to sweep +circuit_list_add=stereovision0.v + +# Add architectures to list to sweep +arch_list_add=k6_N10_40nm.xml +arch_list_add=k6_N10_40nm_diff_switch_for_inc_dec_wires.xml + +# Parse info and how to parse +parse_file=vpr_standard.txt + +# How to parse QoR info +qor_parse_file=qor_standard.txt + +# Pass requirements +pass_requirements_file=pass_requirements.txt + +# Script parameters +script_params = -start odin -crit_path_router_iterations 150 \ No newline at end of file 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 new file mode 100644 index 00000000000..873a4df06d4 --- /dev/null +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_diff_mux_for_inc_dec_wires/config/golden_results.txt @@ -0,0 +1,3 @@ +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_40nm.xml stereovision0.v common 170.85 vpr 277.04 MiB 2.40 125884 -1 -1 5 83.06 -1 -1 75508 -1 -1 1297 157 -1 -1 success v8.0.0-10644-gbada3f40f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-18T12:52:25 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 283692 157 197 21024 21221 1 7547 1651 39 39 1521 clb auto 144.7 MiB 3.96 51912 967297 355681 587577 24039 277.0 MiB 10.10 0.10 3.27987 -14557.4 -3.27987 3.27987 9.63 0.0317477 0.0266474 3.48443 2.90114 46 64729 31 7.37824e+07 6.99019e+07 4.88195e+06 3209.70 35.95 15.7549 13.2195 126630 998267 -1 62442 28 35421 67860 2863040 490307 3.17524 3.17524 -15310.6 -3.17524 0 0 6.27360e+06 4124.65 1.97 3.27 0.83 -1 -1 1.97 2.34241 2.01697 +k6_N10_40nm_diff_switch_for_inc_dec_wires.xml stereovision0.v common 170.38 vpr 277.10 MiB 2.43 126080 -1 -1 5 82.80 -1 -1 75404 -1 -1 1297 157 -1 -1 success v8.0.0-10644-gbada3f40f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-18T12:52:25 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 283748 157 197 21024 21221 1 7547 1651 39 39 1521 clb auto 144.6 MiB 4.05 51912 967297 355681 587577 24039 277.1 MiB 10.27 0.10 3.27987 -14557.4 -3.27987 3.27987 9.61 0.0323462 0.0271905 3.52052 2.92391 46 64729 31 7.37824e+07 6.99019e+07 4.88195e+06 3209.70 34.80 15.1519 12.6486 126630 998267 -1 62442 28 35421 67860 2863040 490307 3.17524 3.17524 -15310.6 -3.17524 0 0 6.27360e+06 4124.65 1.87 3.85 0.81 -1 -1 1.87 2.71824 2.34292 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 a07c4a29029..26460c5f0f9 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_soft_multipliers/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_soft_multipliers/config/golden_results.txt @@ -1,7 +1,7 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_4x4.v common 0.79 vpr 63.87 MiB 0.01 6016 -1 -1 1 0.01 -1 -1 33636 -1 -1 3 9 0 -1 success 8f82416 Release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-1022-azure x86_64 2024-07-02T00:42:56 fv-az891-246 /home/runner/work/vtr-verilog-to-routing/vtr-verilog-to-routing 65400 9 8 75 70 1 35 20 5 5 25 clb auto 25.5 MiB 0.36 85 209 62 145 2 63.9 MiB 0.00 0.00 2.68643 -28.8499 -2.68643 2.68643 0.02 6.8808e-05 5.9561e-05 0.00139175 0.00130199 36 204 9 151211 75605.7 46719.2 1868.77 0.06 0.0153054 0.0131064 2052 7582 -1 141 12 90 118 3703 1842 2.89265 2.89265 -32.9265 -2.89265 0 0 57775.2 2311.01 0.00 0.01 0.01 -1 -1 0.00 0.00425888 0.00398285 14 16 19 7 0 0 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_5x5.v common 4.57 vpr 64.08 MiB 0.01 5888 -1 -1 1 0.01 -1 -1 33796 -1 -1 2 11 0 -1 success 8f82416 Release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-1022-azure x86_64 2024-07-02T00:42:56 fv-az891-246 /home/runner/work/vtr-verilog-to-routing/vtr-verilog-to-routing 65620 11 10 108 97 1 46 23 4 4 16 clb auto 25.6 MiB 4.14 105 151 48 85 18 64.1 MiB 0.00 0.00 3.44069 -41.5938 -3.44069 3.44069 0.01 9.1e-05 7.9949e-05 0.00156829 0.00149277 34 215 23 50403.8 50403.8 21558.4 1347.40 0.06 0.0226398 0.0194476 1020 3049 -1 163 17 241 316 10449 6378 3.44069 3.44069 -46.5708 -3.44069 0 0 26343.3 1646.46 0.00 0.01 0.00 -1 -1 0.00 0.00617236 0.00569328 14 25 29 8 0 0 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_6x6.v common 2.22 vpr 64.41 MiB 0.01 6144 -1 -1 1 0.01 -1 -1 33776 -1 -1 4 13 0 -1 success 8f82416 Release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-1022-azure x86_64 2024-07-02T00:42:56 fv-az891-246 /home/runner/work/vtr-verilog-to-routing/vtr-verilog-to-routing 65960 13 12 149 129 1 75 29 5 5 25 clb auto 26.0 MiB 1.72 195 645 192 444 9 64.4 MiB 0.01 0.00 3.48998 -52.589 -3.48998 3.48998 0.02 0.000131256 0.000115837 0.003329 0.00308647 52 403 19 151211 100808 63348.9 2533.96 0.10 0.0299639 0.026074 2316 10503 -1 307 14 341 420 14028 6216 3.72698 3.72698 -59.3943 -3.72698 0 0 82390.3 3295.61 0.01 0.01 0.01 -1 -1 0.01 0.00739793 0.00691058 25 36 42 9 0 0 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_7x7.v common 1.94 vpr 64.58 MiB 0.01 6016 -1 -1 1 0.01 -1 -1 35964 -1 -1 6 15 0 -1 success 8f82416 Release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-1022-azure x86_64 2024-07-02T00:42:56 fv-az891-246 /home/runner/work/vtr-verilog-to-routing/vtr-verilog-to-routing 66132 15 14 196 165 1 95 35 5 5 25 clb auto 26.1 MiB 1.37 286 3056 860 2105 91 64.6 MiB 0.02 0.00 3.69424 -64.7847 -3.69424 3.69424 0.02 0.000142126 0.000125485 0.0096674 0.00873232 40 595 29 151211 151211 50368.7 2014.75 0.12 0.0454702 0.0396536 2124 8279 -1 437 17 562 789 28085 13148 4.36345 4.36345 -80.333 -4.36345 0 0 63348.9 2533.96 0.01 0.02 0.01 -1 -1 0.01 0.00982301 0.00911877 37 49 57 11 0 0 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_8x8.v common 1.98 vpr 64.78 MiB 0.01 6144 -1 -1 1 0.01 -1 -1 35872 -1 -1 5 17 0 -1 success 8f82416 Release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-1022-azure x86_64 2024-07-02T00:42:56 fv-az891-246 /home/runner/work/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 17 16 251 206 1 119 38 5 5 25 clb auto 26.6 MiB 1.29 402 668 227 439 2 64.8 MiB 0.01 0.00 4.0643 -79.9796 -4.0643 4.0643 0.02 0.000191408 0.000170559 0.00453449 0.00427077 52 683 22 151211 126010 63348.9 2533.96 0.23 0.0597829 0.0521103 2316 10503 -1 560 15 525 822 26107 11638 4.75212 4.75212 -93.5848 -4.75212 0 0 82390.3 3295.61 0.01 0.02 0.01 -1 -1 0.01 0.0115027 0.0107458 50 64 75 13 0 0 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_9x9.v common 2.41 vpr 65.02 MiB 0.01 6144 -1 -1 1 0.01 -1 -1 34232 -1 -1 9 19 0 -1 success 8f82416 Release IPO VTR_ASSERT_LEVEL=3 GNU 11.4.0 on Linux-6.5.0-1022-azure x86_64 2024-07-02T00:42:56 fv-az891-246 /home/runner/work/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 19 18 308 249 1 148 46 6 6 36 clb auto 26.9 MiB 1.43 468 4802 1503 3198 101 65.0 MiB 0.04 0.00 4.80297 -98.1146 -4.80297 4.80297 0.04 0.000209582 0.000186198 0.0150798 0.0136287 50 1242 41 403230 226817 107229. 2978.57 0.43 0.105385 0.0918853 3946 19047 -1 875 23 853 1439 55414 21296 6.32056 6.32056 -123.176 -6.32056 0 0 134937. 3748.26 0.01 0.03 0.01 -1 -1 0.01 0.0163553 0.0151088 63 81 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 placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_4x4.v common 2.41 vpr 61.02 MiB 0.02 5812 -1 -1 1 0.58 -1 -1 29656 -1 -1 3 9 0 -1 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62488 9 8 75 70 1 35 20 5 5 25 clb auto 22.4 MiB 0.48 85 209 62 145 2 61.0 MiB 0.01 0.00 2.68643 -28.8499 -2.68643 2.68643 0.02 0.000193577 0.000179067 0.00247745 0.00233845 36 204 9 151211 75605.7 46719.2 1868.77 0.12 0.037883 0.0315939 2052 7582 -1 141 12 90 118 3703 1842 2.89265 2.89265 -32.9265 -2.89265 0 0 57775.2 2311.01 0.00 0.01 0.01 -1 -1 0.00 0.00689513 0.00614229 14 18 19 7 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_5x5.v common 7.00 vpr 61.54 MiB 0.03 5872 -1 -1 1 0.58 -1 -1 29736 -1 -1 2 11 0 -1 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63016 11 10 108 97 1 46 23 4 4 16 clb auto 22.9 MiB 4.99 105 151 48 85 18 61.5 MiB 0.01 0.00 3.44069 -41.5938 -3.44069 3.44069 0.01 0.000258982 0.000240047 0.00274971 0.00262487 34 215 23 50403.8 50403.8 21558.4 1347.40 0.14 0.0590883 0.0493231 1020 3049 -1 163 17 241 316 10449 6378 3.44069 3.44069 -46.5708 -3.44069 0 0 26343.3 1646.46 0.00 0.02 0.01 -1 -1 0.00 0.0108366 0.00950526 14 27 29 8 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_6x6.v common 4.49 vpr 61.69 MiB 0.03 6024 -1 -1 1 0.58 -1 -1 30148 -1 -1 4 13 0 -1 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63168 13 12 149 129 1 75 29 5 5 25 clb auto 22.8 MiB 2.40 195 645 192 444 9 61.7 MiB 0.02 0.00 3.48998 -52.589 -3.48998 3.48998 0.02 0.000342117 0.000318284 0.00707487 0.00666916 52 403 19 151211 100808 63348.9 2533.96 0.18 0.0737677 0.0625561 2316 10503 -1 307 14 341 420 14028 6216 3.72698 3.72698 -59.3943 -3.72698 0 0 82390.3 3295.61 0.01 0.02 0.01 -1 -1 0.01 0.0127566 0.0113516 25 38 42 9 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_7x7.v common 4.09 vpr 62.02 MiB 0.03 5956 -1 -1 1 0.58 -1 -1 29964 -1 -1 6 15 0 -1 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63512 15 14 196 165 1 95 35 5 5 25 clb auto 23.2 MiB 1.90 286 3056 860 2105 91 62.0 MiB 0.04 0.00 3.69424 -64.7847 -3.69424 3.69424 0.02 0.000424866 0.000394444 0.0252096 0.0235149 40 595 29 151211 151211 50368.7 2014.75 0.23 0.114222 0.0984262 2124 8279 -1 437 17 562 789 28085 13148 4.36345 4.36345 -80.333 -4.36345 0 0 63348.9 2533.96 0.00 0.03 0.01 -1 -1 0.00 0.0176338 0.0156167 37 51 57 11 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_8x8.v common 4.09 vpr 61.86 MiB 0.03 6212 -1 -1 1 0.59 -1 -1 29860 -1 -1 5 17 0 -1 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63340 17 16 251 206 1 119 38 5 5 25 clb auto 23.5 MiB 1.86 402 668 227 439 2 61.9 MiB 0.02 0.00 4.0643 -79.9796 -4.0643 4.0643 0.02 0.000534075 0.000496147 0.00859971 0.00813109 52 683 22 151211 126010 63348.9 2533.96 0.26 0.114134 0.0972372 2316 10503 -1 560 15 525 822 26107 11638 4.75212 4.75212 -93.5848 -4.75212 0 0 82390.3 3295.61 0.01 0.03 0.01 -1 -1 0.01 0.0206421 0.0184345 50 66 75 13 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_9x9.v common 4.58 vpr 62.37 MiB 0.03 6232 -1 -1 1 0.59 -1 -1 30264 -1 -1 9 19 0 -1 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 19 18 308 249 1 148 46 6 6 36 clb auto 24.0 MiB 2.03 468 4802 1503 3198 101 62.4 MiB 0.07 0.00 4.80297 -98.1146 -4.80297 4.80297 0.05 0.00063379 0.00058871 0.0407857 0.0380453 50 1242 41 403230 226817 107229. 2978.57 0.43 0.179858 0.155995 3946 19047 -1 875 23 853 1439 55414 21296 6.32056 6.32056 -123.176 -6.32056 0 0 134937. 3748.26 0.01 0.05 0.02 -1 -1 0.01 0.0316187 0.02788 63 83 93 14 0 0 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/task_list.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/task_list.txt index ab44aee0cf4..37eedf040f0 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/task_list.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/task_list.txt @@ -20,6 +20,7 @@ regression_tests/vtr_reg_strong_odin/strong_dedicated_clock regression_tests/vtr_reg_strong_odin/strong_default_fc_pinlocs regression_tests/vtr_reg_strong_odin/strong_depop regression_tests/vtr_reg_strong_odin/strong_detailed_timing +regression_tests/vtr_reg_strong_odin/strong_diff_mux_for_inc_dec_wires regression_tests/vtr_reg_strong_odin/strong_eblif_vpr regression_tests/vtr_reg_strong_odin/strong_eblif_vpr_write regression_tests/vtr_reg_strong_odin/strong_echo_files diff --git a/yosys/.gitcommit b/yosys/.gitcommit index 46b7856fbc8..6c5826ed776 100644 --- a/yosys/.gitcommit +++ b/yosys/.gitcommit @@ -1 +1 @@ -$Format:%h$ +dac5bd1983a diff --git a/yosys/.github/ISSUE_TEMPLATE/bug_report.yml b/yosys/.github/ISSUE_TEMPLATE/bug_report.yml index 27cfd09b7de..e4c776ed914 100644 --- a/yosys/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/yosys/.github/ISSUE_TEMPLATE/bug_report.yml @@ -34,6 +34,7 @@ body: - macOS - Windows - BSD + - WebAssembly multiple: true validations: required: true @@ -42,7 +43,7 @@ body: attributes: value: > When providing steps to reproduce the issue, please ensure that the issue - is reproducible in the current git master of Yosys. Also ensure to + is reproducible in the current git main of Yosys. Also ensure to provide all necessary source files needed. diff --git a/yosys/.github/ISSUE_TEMPLATE/docs_report.yml b/yosys/.github/ISSUE_TEMPLATE/docs_report.yml new file mode 100644 index 00000000000..aa65c63b9c9 --- /dev/null +++ b/yosys/.github/ISSUE_TEMPLATE/docs_report.yml @@ -0,0 +1,55 @@ +name: Documentation Report +description: Report a problem with the Yosys documentation +labels: ["pending-verification"] +body: + - type: markdown + attributes: + value: > + + If you have a general question, please ask it in the [Discussions](https://github.com/YosysHQ/yosys/discussions) area + or join our [IRC Channel](https://web.libera.chat/#yosys) or [Community Slack](https://join.slack.com/t/yosyshq/shared_invite/zt-1aopkns2q-EiQ97BeQDt_pwvE41sGSuA). + + + If you have found a bug in Yosys, or in building the documentation, + please fill out the Bug Report issue form, this form is for problems + with the live documentation on [Read the + Docs](https://yosyshq.readthedocs.io/projects/yosys/). Please only + report problems that appear on the latest version of the documentation. + + + Please contact [YosysHQ GmbH](https://www.yosyshq.com/) if you need + commercial support for Yosys. + + - type: input + id: docs_url + attributes: + label: Link to page + description: "Please provide a link to the page where the problem was found." + placeholder: "e.g. https://yosyshq.readthedocs.io/projects/yosys/" + validations: + required: true + + - type: input + id: build_number + attributes: + label: Build number + description: "If possible, please provide the latest build number from https://readthedocs.org/projects/yosys/builds/." + placeholder: "e.g. Build #24078236" + validations: + required: false + + - type: textarea + id: problem + attributes: + label: Issue + description: "Please describe what is incorrect, invalid, or missing." + validations: + required: true + + - type: textarea + id: expected + attributes: + label: Expected + description: "If applicable, please describe what should appear instead." + validations: + required: false diff --git a/yosys/.github/PULL_REQUEST_TEMPLATE.md b/yosys/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000000..82daf609d36 --- /dev/null +++ b/yosys/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,5 @@ +_What are the reasons/motivation for this change?_ + +_Explain how this is achieved._ + +_If applicable, please suggest to reviewers how they can test the change._ diff --git a/yosys/.github/actions/setup-build-env/action.yml b/yosys/.github/actions/setup-build-env/action.yml new file mode 100644 index 00000000000..345b6db8ada --- /dev/null +++ b/yosys/.github/actions/setup-build-env/action.yml @@ -0,0 +1,33 @@ +name: Build environment setup +description: Configure build env for Yosys builds +runs: + using: composite + steps: + - name: Install Linux Dependencies + if: runner.os == 'Linux' + shell: bash + run: | + sudo apt-get update + sudo apt-get install gperf build-essential bison flex libreadline-dev gawk tcl-dev libffi-dev git graphviz xdot pkg-config python3 libboost-system-dev libboost-python-dev libboost-filesystem-dev zlib1g-dev + + - name: Install macOS Dependencies + if: runner.os == 'macOS' + shell: bash + run: | + HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew install bison flex gawk libffi pkg-config bash autoconf + + - name: Linux runtime environment + if: runner.os == 'Linux' + shell: bash + run: | + echo "${{ github.workspace }}/.local/bin" >> $GITHUB_PATH + echo "procs=$(nproc)" >> $GITHUB_ENV + + - name: macOS runtime environment + if: runner.os == 'macOS' + shell: bash + run: | + echo "${{ github.workspace }}/.local/bin" >> $GITHUB_PATH + echo "$(brew --prefix bison)/bin" >> $GITHUB_PATH + echo "$(brew --prefix flex)/bin" >> $GITHUB_PATH + echo "procs=$(sysctl -n hw.ncpu)" >> $GITHUB_ENV diff --git a/yosys/.github/workflows/codeql.yml b/yosys/.github/workflows/codeql.yml index 2a046703bc0..24ae7c89883 100644 --- a/yosys/.github/workflows/codeql.yml +++ b/yosys/.github/workflows/codeql.yml @@ -14,10 +14,11 @@ jobs: run: sudo apt-get install bison flex libreadline-dev tcl-dev libffi-dev - name: Checkout repository - uses: actions/checkout@v3 - + uses: actions/checkout@v4 + with: + submodules: true - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: cpp queries: security-extended,security-and-quality @@ -26,4 +27,4 @@ jobs: run: make yosys -j6 - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 diff --git a/yosys/.github/workflows/emcc.yml b/yosys/.github/workflows/emcc.yml deleted file mode 100644 index 295d9554b81..00000000000 --- a/yosys/.github/workflows/emcc.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Emscripten Build - -on: [push, pull_request] - -jobs: - emcc: - runs-on: ubuntu-latest - steps: - - uses: mymindstorm/setup-emsdk@v11 - - uses: actions/checkout@v3 - - name: Build - run: | - make config-emcc - make YOSYS_VER=latest - - uses: actions/upload-artifact@v3 - with: - name: yosysjs - path: yosysjs-latest.zip diff --git a/yosys/.github/workflows/extra-builds.yml b/yosys/.github/workflows/extra-builds.yml new file mode 100644 index 00000000000..d7c6e13ff06 --- /dev/null +++ b/yosys/.github/workflows/extra-builds.yml @@ -0,0 +1,97 @@ +name: Test extra build flows + +on: [push, pull_request] + +jobs: + pre_job: + runs-on: ubuntu-latest + outputs: + should_skip: ${{ steps.skip_check.outputs.should_skip }} + steps: + - id: skip_check + uses: fkirc/skip-duplicate-actions@v5 + with: + paths_ignore: '["**/README.md", "docs/**", "guidelines/**"]' + # cancel previous builds if a new commit is pushed + cancel_others: 'true' + # only run on push *or* pull_request, not both + concurrent_skipping: 'same_content_newer' + + vs-prep: + name: Prepare Visual Studio build + runs-on: ubuntu-latest + needs: [pre_job] + if: needs.pre_job.outputs.should_skip != 'true' + steps: + - uses: actions/checkout@v4 + with: + submodules: true + - name: Build + run: make vcxsrc YOSYS_VER=latest + - uses: actions/upload-artifact@v4 + with: + name: vcxsrc + path: yosys-win32-vcxsrc-latest.zip + + vs-build: + name: Visual Studio build + runs-on: windows-2019 + needs: [vs-prep, pre_job] + if: needs.pre_job.outputs.should_skip != 'true' + steps: + - uses: actions/download-artifact@v4 + with: + name: vcxsrc + path: . + - name: unzip + run: unzip yosys-win32-vcxsrc-latest.zip + - name: setup-msbuild + uses: microsoft/setup-msbuild@v2 + - name: MSBuild + working-directory: yosys-win32-vcxsrc-latest + run: msbuild YosysVS.sln /p:PlatformToolset=v142 /p:Configuration=Release /p:WindowsTargetPlatformVersion=10.0.17763.0 + + wasi-build: + name: WASI build + needs: pre_job + if: needs.pre_job.outputs.should_skip != 'true' + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + submodules: true + - name: Build + run: | + WASI_SDK=wasi-sdk-19.0 + WASI_SDK_URL=https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-19/wasi-sdk-19.0-linux.tar.gz + if ! [ -d ${WASI_SDK} ]; then curl -L ${WASI_SDK_URL} | tar xzf -; fi + + mkdir -p build + cat > build/Makefile.conf <> $GITHUB_ENV + + - name: Cache iverilog + id: cache-iverilog + uses: actions/cache@v4 + with: + path: .local/ + key: ${{ matrix.os }}-${{ env.IVERILOG_GIT }} + + - name: Build iverilog + if: steps.cache-iverilog.outputs.cache-hit != 'true' + shell: bash + run: | + mkdir -p ${{ github.workspace }}/.local/ + cd iverilog + autoconf + CC=gcc CXX=g++ ./configure --prefix=${{ github.workspace }}/.local + make -j$procs + make install + + - name: Download build artifact + uses: actions/download-artifact@v4 + with: + name: build-${{ matrix.os }} + + - name: Uncompress build + shell: bash + run: + tar -xvf build.tar + + - name: Log yosys-config output + run: | + ./yosys-config || true + + - name: Run tests + shell: bash + run: | + make -j$procs test TARGETS= EXTRA_TARGETS= CONFIG=$CC + + - name: Report errors + if: ${{ failure() }} + shell: bash + run: | + find tests/**/*.err -print -exec cat {} \; + + test-docs: + name: Run docs tests + runs-on: ${{ matrix.os }} + needs: [build-yosys, pre_docs_job] + if: needs.pre_docs_job.outputs.should_skip != 'true' + env: + CC: clang + strategy: + matrix: + os: [ubuntu-latest] + fail-fast: false + steps: + - name: Checkout Yosys + uses: actions/checkout@v4 + + - name: Setup environment + uses: ./.github/actions/setup-build-env + + - name: Download build artifact + uses: actions/download-artifact@v4 + with: + name: build-${{ matrix.os }} + + - name: Uncompress build + shell: bash + run: + tar -xvf build.tar + + - name: Log yosys-config output + run: | + ./yosys-config || true + + - name: Run tests + shell: bash + run: | + make -C docs test -j${{ env.procs }} diff --git a/yosys/.github/workflows/test-compile.yml b/yosys/.github/workflows/test-compile.yml new file mode 100644 index 00000000000..a892c91ceca --- /dev/null +++ b/yosys/.github/workflows/test-compile.yml @@ -0,0 +1,79 @@ +name: Compiler testing + +on: [push, pull_request] + +jobs: + pre_job: + runs-on: ubuntu-latest + outputs: + should_skip: ${{ steps.skip_check.outputs.should_skip }} + steps: + - id: skip_check + uses: fkirc/skip-duplicate-actions@v5 + with: + paths_ignore: '["**/README.md", "docs/**", "guidelines/**"]' + # cancel previous builds if a new commit is pushed + cancel_others: 'true' + # only run on push *or* pull_request, not both + concurrent_skipping: 'same_content_newer' + + test-compile: + runs-on: ${{ matrix.os }} + needs: pre_job + if: needs.pre_job.outputs.should_skip != 'true' + env: + CXXFLAGS: ${{ startsWith(matrix.compiler, 'gcc') && '-Wp,-D_GLIBCXX_ASSERTIONS' || ''}} + CC_SHORT: ${{ startsWith(matrix.compiler, 'gcc') && 'gcc' || 'clang' }} + strategy: + matrix: + os: + - ubuntu-latest + compiler: + # oldest supported + - 'clang-14' + - 'gcc-10' + # newest + - 'clang' + - 'gcc' + include: + # macOS + - os: macos-13 + compiler: 'clang' + # oldest clang not available on ubuntu-latest + - os: ubuntu-22.04 + compiler: 'clang-11' + fail-fast: false + steps: + - name: Checkout Yosys + uses: actions/checkout@v4 + with: + submodules: true + + - name: Setup environment + uses: ./.github/actions/setup-build-env + + - name: Setup Cpp + uses: aminya/setup-cpp@v1 + with: + compiler: ${{ matrix.compiler }} + + - name: Tool versions + shell: bash + run: | + $CC --version + $CXX --version + + # minimum standard + - name: Build C++17 + shell: bash + run: | + make config-$CC_SHORT + make -j$procs CXXSTD=c++17 compile-only + + # maximum standard, only on newest compilers + - name: Build C++20 + if: ${{ matrix.compiler == 'clang' || matrix.compiler == 'gcc'}} + shell: bash + run: | + make config-$CC_SHORT + make -j$procs CXXSTD=c++20 compile-only diff --git a/yosys/.github/workflows/test-linux.yml b/yosys/.github/workflows/test-linux.yml deleted file mode 100644 index eee556794af..00000000000 --- a/yosys/.github/workflows/test-linux.yml +++ /dev/null @@ -1,116 +0,0 @@ -name: Build and run tests (Linux) - -on: [push, pull_request] - -jobs: - test-linux: - runs-on: ${{ matrix.os.id }} - strategy: - matrix: - os: - - { id: ubuntu-20.04, name: focal } - compiler: - - 'clang-12' - - 'gcc-11' - cpp_std: - - 'c++11' - - 'c++14' - - 'c++17' - - 'c++20' - include: - # Limit the older compilers to C++11 mode - - os: { id: ubuntu-20.04, name: focal } - compiler: 'clang-11' - cpp_std: 'c++11' - - os: { id: ubuntu-20.04, name: focal } - compiler: 'gcc-10' - cpp_std: 'c++11' - fail-fast: false - steps: - - name: Install Dependencies - shell: bash - run: | - sudo apt-get update - sudo apt-get install gperf build-essential bison flex libreadline-dev gawk tcl-dev libffi-dev git graphviz xdot pkg-config python python3 libboost-system-dev libboost-python-dev libboost-filesystem-dev zlib1g-dev - - - name: Setup GCC - if: startsWith(matrix.compiler, 'gcc') - shell: bash - run: | - CXX=${CC/#gcc/g++} - sudo apt-add-repository ppa:ubuntu-toolchain-r/test - sudo apt-get update - sudo apt-get install $CC $CXX - echo "CC=$CC" >> $GITHUB_ENV - echo "CXX=$CXX" >> $GITHUB_ENV - env: - CC: ${{ matrix.compiler }} - - - name: Setup Clang - if: startsWith(matrix.compiler, 'clang') - shell: bash - run: | - wget https://apt.llvm.org/llvm-snapshot.gpg.key - sudo apt-key add llvm-snapshot.gpg.key - rm llvm-snapshot.gpg.key - sudo apt-add-repository "deb https://apt.llvm.org/${{ matrix.os.name }}/ llvm-toolchain-${{ matrix.os.name }} main" - sudo apt-get update - CXX=${CC/#clang/clang++} - sudo apt-get install $CC $CXX - echo "CC=$CC" >> $GITHUB_ENV - echo "CXX=$CXX" >> $GITHUB_ENV - env: - CC: ${{ matrix.compiler }} - - - name: Runtime environment - shell: bash - env: - WORKSPACE: ${{ github.workspace }} - run: | - echo "GITHUB_WORKSPACE=`pwd`" >> $GITHUB_ENV - echo "$GITHUB_WORKSPACE/.local/bin" >> $GITHUB_PATH - echo "procs=$(nproc)" >> $GITHUB_ENV - - - name: Tool versions - shell: bash - run: | - $CC --version - $CXX --version - - - name: Checkout Yosys - uses: actions/checkout@v3 - - - name: Get iverilog - shell: bash - run: | - git clone https://github.com/steveicarus/iverilog.git - - - name: Cache iverilog - id: cache-iverilog - uses: actions/cache@v3 - with: - path: .local/ - key: ${{ matrix.os.id }}-${{ hashFiles('iverilog/.git/refs/heads/master') }} - - - name: Build iverilog - if: steps.cache-iverilog.outputs.cache-hit != 'true' - shell: bash - run: | - mkdir -p $GITHUB_WORKSPACE/.local/ - cd iverilog - autoconf - CC=gcc CXX=g++ ./configure --prefix=$GITHUB_WORKSPACE/.local - make -j${{ env.procs }} - make install - - - name: Build yosys - shell: bash - run: | - make config-${CC%%-*} - make -j${{ env.procs }} CCXXSTD=${{ matrix.cpp_std }} CC=$CC CXX=$CC LD=$CC - - - name: Run tests - if: (matrix.cpp_std == 'c++11') && (matrix.compiler == 'gcc-11') - shell: bash - run: | - make -j${{ env.procs }} test CXXSTD=${{ matrix.cpp_std }} CC=$CC CXX=$CC LD=$CC diff --git a/yosys/.github/workflows/test-macos.yml b/yosys/.github/workflows/test-macos.yml deleted file mode 100644 index 04845723467..00000000000 --- a/yosys/.github/workflows/test-macos.yml +++ /dev/null @@ -1,73 +0,0 @@ -name: Build and run tests (macOS) - -on: [push, pull_request] - -jobs: - test-macos: - runs-on: ${{ matrix.os.id }} - strategy: - matrix: - os: - - { id: macos-11, name: 'Big Sur' } - cpp_std: - - 'c++11' - - 'c++17' - fail-fast: false - steps: - - name: Install Dependencies - run: | - brew install bison flex gawk libffi pkg-config bash - - - name: Runtime environment - shell: bash - env: - WORKSPACE: ${{ github.workspace }} - run: | - echo "GITHUB_WORKSPACE=`pwd`" >> $GITHUB_ENV - echo "$GITHUB_WORKSPACE/.local/bin" >> $GITHUB_PATH - echo "$(brew --prefix bison)/bin" >> $GITHUB_PATH - echo "$(brew --prefix flex)/bin" >> $GITHUB_PATH - echo "procs=$(sysctl -n hw.ncpu)" >> $GITHUB_ENV - - - name: Tool versions - shell: bash - run: | - cc --version - - - name: Checkout Yosys - uses: actions/checkout@v3 - - - name: Get iverilog - shell: bash - run: | - git clone https://github.com/steveicarus/iverilog.git - - - name: Cache iverilog - id: cache-iverilog - uses: actions/cache@v3 - with: - path: .local/ - key: ${{ matrix.os.id }}-${{ hashFiles('iverilog/.git/refs/heads/master') }} - - - name: Build iverilog - if: steps.cache-iverilog.outputs.cache-hit != 'true' - shell: bash - run: | - mkdir -p $GITHUB_WORKSPACE/.local/ - cd iverilog - autoconf - CC=gcc CXX=g++ ./configure --prefix=$GITHUB_WORKSPACE/.local/ - make -j${{ env.procs }} - make install - - - name: Build yosys - shell: bash - run: | - make config-clang - make -j${{ env.procs }} CXXSTD=${{ matrix.cpp_std }} CC=cc CXX=cc LD=cc - - - name: Run tests - if: matrix.cpp_std == 'c++11' - shell: bash - run: | - make -j${{ env.procs }} test CXXSTD=${{ matrix.cpp_std }} CC=cc CXX=cc LD=cc diff --git a/yosys/.github/workflows/test-verific.yml b/yosys/.github/workflows/test-verific.yml new file mode 100644 index 00000000000..54d9487acfb --- /dev/null +++ b/yosys/.github/workflows/test-verific.yml @@ -0,0 +1,95 @@ +name: Build and run tests with Verific (Linux) + +on: [push, pull_request] + +jobs: + pre_job: + runs-on: ubuntu-latest + outputs: + should_skip: ${{ steps.skip_check.outputs.should_skip }} + steps: + - id: skip_check + uses: fkirc/skip-duplicate-actions@v5 + with: + paths_ignore: '["**/README.md"]' + # don't cancel previous builds + cancel_others: 'true' + # only run on push *or* pull_request, not both + concurrent_skipping: 'same_content_newer' + # we have special actions when running on main, so this should be off + skip_after_successful_duplicate: 'false' + + test-verific: + needs: pre_job + if: needs.pre_job.outputs.should_skip != 'true' + runs-on: [self-hosted, linux, x64] + steps: + - name: Checkout Yosys + uses: actions/checkout@v4 + with: + persist-credentials: false + submodules: true + - name: Runtime environment + run: | + echo "procs=$(nproc)" >> $GITHUB_ENV + + - name: Build Yosys + run: | + make config-clang + echo "ENABLE_VERIFIC := 1" >> Makefile.conf + echo "ENABLE_VERIFIC_EDIF := 1" >> Makefile.conf + echo "ENABLE_VERIFIC_LIBERTY := 1" >> Makefile.conf + echo "ENABLE_CCACHE := 1" >> Makefile.conf + make -j${{ env.procs }} + + - name: Install Yosys + run: | + make install DESTDIR=${GITHUB_WORKSPACE}/.local PREFIX= + + - name: Checkout Documentation + if: ${{ github.ref == 'refs/heads/main' }} + uses: actions/checkout@v4 + with: + path: 'yosys-cmd-ref' + repository: 'YosysHQ-Docs/yosys-cmd-ref' + fetch-depth: 0 + token: ${{ secrets.CI_DOCS_UPDATE_PAT }} + persist-credentials: true + + - name: Update documentation + if: ${{ github.ref == 'refs/heads/main' }} + run: | + make docs + rm -rf docs/build + cd yosys-cmd-ref + rm -rf * + git checkout README.md + cp -R ../docs/* . + rm -rf util/__pycache__ + git add -A . + git diff-index --quiet HEAD || git commit -m "Update" + git push + + - name: Checkout SBY + uses: actions/checkout@v4 + with: + repository: 'YosysHQ/sby' + path: 'sby' + + - name: Build SBY + run: | + make -C sby install DESTDIR=${GITHUB_WORKSPACE}/.local PREFIX= + + - name: Run Yosys tests + run: | + make -j${{ env.procs }} test + + - name: Run Verific specific Yosys tests + run: | + make -C tests/sva + cd tests/svtypes && bash run-test.sh + + - name: Run SBY tests + if: ${{ github.ref == 'refs/heads/main' }} + run: | + make -C sby run_ci diff --git a/yosys/.github/workflows/update-flake-lock.yml b/yosys/.github/workflows/update-flake-lock.yml new file mode 100644 index 00000000000..c7aa6ecab70 --- /dev/null +++ b/yosys/.github/workflows/update-flake-lock.yml @@ -0,0 +1,22 @@ +name: update-flake-lock +on: + workflow_dispatch: # allows manual triggering + schedule: + - cron: '0 0 * * 0' # runs weekly on Sunday at 00:00 + +jobs: + lockfile: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Install Nix + uses: DeterminateSystems/nix-installer-action@main + - name: Update flake.lock + uses: DeterminateSystems/update-flake-lock@main + with: + token: ${{CI_CREATE_PR_TOKEN}} + pr-title: "Update flake.lock" # Title of PR to be created + pr-labels: | # Labels to be set on the PR + dependencies + automated diff --git a/yosys/.github/workflows/version.yml b/yosys/.github/workflows/version.yml index c2a1756e9c6..f73c68bdf12 100644 --- a/yosys/.github/workflows/version.yml +++ b/yosys/.github/workflows/version.yml @@ -10,9 +10,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 + submodules: true - name: Take last commit id: log run: echo "message=$(git log --no-merges -1 --oneline)" >> $GITHUB_OUTPUT diff --git a/yosys/.github/workflows/vs.yml b/yosys/.github/workflows/vs.yml deleted file mode 100644 index 428770e7200..00000000000 --- a/yosys/.github/workflows/vs.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Visual Studio Build - -on: [push, pull_request] - -jobs: - yosys-vcxsrc: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Build - run: make vcxsrc YOSYS_VER=latest - - uses: actions/upload-artifact@v3 - with: - name: vcxsrc - path: yosys-win32-vcxsrc-latest.zip - - build: - runs-on: windows-2019 - needs: yosys-vcxsrc - steps: - - uses: actions/download-artifact@v3 - with: - name: vcxsrc - path: . - - name: unzip - run: unzip yosys-win32-vcxsrc-latest.zip - - name: setup-msbuild - uses: microsoft/setup-msbuild@v1 - - name: MSBuild - working-directory: yosys-win32-vcxsrc-latest - run: msbuild YosysVS.sln /p:PlatformToolset=v142 /p:Configuration=Release /p:WindowsTargetPlatformVersion=10.0.17763.0 diff --git a/yosys/.gitignore b/yosys/.gitignore index 49b886e7e43..e82343e8947 100644 --- a/yosys/.gitignore +++ b/yosys/.gitignore @@ -1,9 +1,11 @@ *.o *.d +*.dwo .*.swp *.gch *.gcda *.gcno +*~ __pycache__ /.cproject /.project @@ -16,7 +18,6 @@ __pycache__ /coverage.info /coverage_html /Makefile.conf -/abc /viz.js /yosys /yosys.exe @@ -44,3 +45,4 @@ __pycache__ /tests/unit/bintest/ /tests/unit/objtest/ /tests/ystests +/result \ No newline at end of file diff --git a/yosys/.gitmodules b/yosys/.gitmodules new file mode 100644 index 00000000000..d88d4b1e5e9 --- /dev/null +++ b/yosys/.gitmodules @@ -0,0 +1,3 @@ +[submodule "abc"] + path = abc + url = https://github.com/YosysHQ/abc diff --git a/yosys/CHANGELOG b/yosys/CHANGELOG index 585605abcdd..d8e13b041e5 100644 --- a/yosys/CHANGELOG +++ b/yosys/CHANGELOG @@ -2,6 +2,177 @@ List of major changes and improvements between releases ======================================================= +Yosys 0.42 .. Yosys 0.43-dev +-------------------------- + +Yosys 0.41 .. Yosys 0.42 +-------------------------- + * New commands and options + - Added "box_derive" pass to derive box modules. + - Added option "assert-mod-count" to "select" pass. + - Added option "-header","-push" and "-pop" to "log" pass. + * Intel support + - Dropped Quartus support in "synth_intel_alm" pass. + +Yosys 0.40 .. Yosys 0.41 +-------------------------- + * New commands and options + - Added "cellmatch" pass for picking out standard cells automatically. + + * Various + - Extended the experimental incremental JSON API to allow arbitrary + smtlib subexpressions. + - Added support for using ABCs library merging when providing multiple + liberty files. + + * Verific support + - Expose library name as module attribute. + +Yosys 0.39 .. Yosys 0.40 +-------------------------- + * New commands and options + - Added option "-vhdl2019" to "read" and "verific" pass. + + * Various + - Major documentation overhaul. + - Added port statistics to "stat" command. + - Added new formatting features to cxxrtl backend. + + * Verific support + - Added better support for VHDL constants import. + - Added support for VHDL 2009. + +Yosys 0.38 .. Yosys 0.39 +-------------------------- + * New commands and options + - Added option "-extra-map" to "synth" pass. + - Added option "-dont_use" to "dfflibmap" pass. + - Added option "-href" to "show" command. + - Added option "-noscopeinfo" to "flatten" pass. + - Added option "-scopename" to "flatten" pass. + + * SystemVerilog + - Added support for packed multidimensional arrays. + + * Various + - Added "$scopeinfo" cells to preserve information about + the hierarchy during flattening. + - Added sequential area output to "stat -liberty". + - Added ability to record/replay diagnostics in cxxrtl backend. + + * Verific support + - Added attributes to module instantiation. + +Yosys 0.37 .. Yosys 0.38 +-------------------------- + * New commands and options + - Added option "-tech" to "opt_lut" pass. + - Added option "-nokeep_prints" to "hierarchy" pass. + - Added option "-nolower" to "async2sync" and "clk2fflogic" pass. + - Added option "-lower" to "chformal" pass. + + * Various + - Added $check cell to represent assertions with messages. + - Allow capturing $print cell output in CXXRTL. + - Added API to overwrite existing pass from plugin. + - Follow the XDG Base Directory Specification for storing history files. + - Without a known top module, derive all deferred modules (hierarchy pass). + - Detect and error out on combinational loops in write_aiger. + + * Verific support + - Added option "-no-split-complex-ports" to "verific -import". + +Yosys 0.36 .. Yosys 0.37 +-------------------------- + * New commands and options + - Added option "-nodisplay" to read_verilog. + + * SystemVerilog + - Correct hierarchical path names for structs and unions. + + * Various + - Print hierarchy for failed assertions in "sim" pass. + - Add "--present-only" option to "yosys-witness" to omit unused signals. + - Implement a generic record/replay interface for CXXRTL. + - Improved readability of emitted code with "write_verilog". + +Yosys 0.35 .. Yosys 0.36 +-------------------------- + * New commands and options + - Added option "--" to pass arguments down to tcl when using -c option. + - Added ability on MacOS and Windows to pass options after arguments on cli. + - Added option "-cmp2softlogic" to synth_lattice. + - Added option "-lowpower" to "booth" pass. + + * QuickLogic support + - Added "K6N10f" support. + - Added "-nodsp", "-nocarry", "-nobram" and "-bramtypes" options to + "synth_quicklogic" pass. + - Added "ql_bram_merge" pass to merge 18K BRAM cells into TDP36K. + - Added "ql_bram_types" pass to change TDP36K depending on configuration. + - Added "ql_dsp_io_regs" pass to update QL_DSP2 depending on configuration. + - Added "ql_dsp_macc" pass to infer multiplier-accumulator DSP cells. + - Added "ql_dsp_simd" pass to merge DSP pairs to operate in SIMD mode. + + * ECP5,iCE40 and Gowin support + - Enabled abc9 by default, added "-noabc9" option to disable. + + * MachXO3 support + - Quality of results improvements. + - Enabled "booth" pass by default for it in "synth_lattice". + + * Various + - Improved "peepopt" by adding shiftadd pattern support. + - Added "--incremental" mode to smtbmc. + +Yosys 0.34 .. Yosys 0.35 +-------------------------- + * Various + - Improvements on "peepopt" shiftmul matcher. + - Improvements on "ram_style" attributes handling. + + * Verific support + - Improved static elaboration for VHDL and mixed HDL designs. + - Expose "hdlname" attribute with original module name. + - Expose "architecture" attribute with VHDL architecture name. + +Yosys 0.33 .. Yosys 0.34 +-------------------------- + * New commands and options + - Added option "-assert" to "sim" pass. + - Added option "-noinitstate" to "sim" pass. + - Added option "-dont_use" to "abc" pass. + - Added "dft_tag" pass to create tagging logic for data flow tracking. + - Added "future" pass to resolve future sampled value functions. + - Added "booth" pass to map $mul cells to Booth multipliers. + - Added option "-booth" to "synth" pass. + + * SystemVerilog + - Added support for assignments within expressions, e.g., `x[y++] = z;` or + `x = (y *= 2) - 1;`. + + * Verific support + - "src" attribute contain full location info. + - module parameters are kept after import. + - accurate access order semantics in memory inference. + - better "bind" support for mixed language projects. + + * Various + - "show" command displays dot instead of box for wire aliases. + +Yosys 0.32 .. Yosys 0.33 +-------------------------- + * Various + - Added "$print" cell, produced by "$display" and "$write" + Verilog tasks. + - Added "$print" cell handling in CXXRTL. + + * Lattice FPGA support + - Added generic "synth_lattice" pass (for now MachXO2/XO3/XO3D) + - Removed "synth_machxo2" pass + - Pass "ecp5_gsr" renamed to "lattice_gsr" + - "synth_machxo2" equivalent is "synth_lattice -family xo2" + Yosys 0.31 .. Yosys 0.32 -------------------------- * Verific support diff --git a/yosys/CODEOWNERS b/yosys/CODEOWNERS index a33a9a68ccb..879bb8dee21 100644 --- a/yosys/CODEOWNERS +++ b/yosys/CODEOWNERS @@ -10,6 +10,7 @@ # PATH (can use glob) USERNAME(S) +CODEOWNERS @nakengelhardt passes/cmds/scratchpad.cc @nakengelhardt frontends/rpc/ @whitequark backends/cxxrtl/ @whitequark @@ -18,7 +19,8 @@ passes/techmap/flowmap.cc @whitequark passes/opt/opt_lut.cc @whitequark passes/techmap/abc9*.cc @eddiehung @Ravenslofty backends/aiger/xaiger.cc @eddiehung - +docs/ @KrystalDelusion +.github/workflows/*.yml @mmicko ## External Contributors # Only users with write permission to the repository get review diff --git a/yosys/Makefile b/yosys/Makefile index 630d65367b9..313de44d56d 100644 --- a/yosys/Makefile +++ b/yosys/Makefile @@ -1,8 +1,8 @@ -CONFIG := clang +CONFIG := none +# CONFIG := clang # CONFIG := gcc # CONFIG := afl-gcc -# CONFIG := emcc # CONFIG := wasi # CONFIG := mxe # CONFIG := msys2-32 @@ -17,10 +17,12 @@ ENABLE_READLINE := 1 ENABLE_EDITLINE := 0 ENABLE_GHDL := 0 ENABLE_VERIFIC := 0 +ENABLE_VERIFIC_SYSTEMVERILOG := 1 +ENABLE_VERIFIC_VHDL := 1 +ENABLE_VERIFIC_HIER_TREE := 1 +ENABLE_VERIFIC_YOSYSHQ_EXTENSIONS := 1 ENABLE_VERIFIC_EDIF := 0 ENABLE_VERIFIC_LIBERTY := 0 -DISABLE_VERIFIC_EXTENSIONS := 0 -DISABLE_VERIFIC_VHDL := 0 ENABLE_COVER := 1 ENABLE_LIBYOSYS := 0 ENABLE_ZLIB := 1 @@ -90,16 +92,16 @@ all: top-all YOSYS_SRC := $(dir $(firstword $(MAKEFILE_LIST))) VPATH := $(YOSYS_SRC) -CXXSTD ?= c++11 +CXXSTD ?= c++17 CXXFLAGS := $(CXXFLAGS) -Wall -Wextra -ggdb -I. -I"$(YOSYS_SRC)" -MD -MP -D_YOSYS_ -fPIC -I$(PREFIX)/include -LDLIBS := $(LDLIBS) -lstdc++ -lm -PLUGIN_LDFLAGS := -PLUGIN_LDLIBS := -EXE_LDFLAGS := +LIBS := $(LIBS) -lstdc++ -lm +PLUGIN_LINKFLAGS := +PLUGIN_LIBS := +EXE_LINKFLAGS := ifeq ($(OS), MINGW) -EXE_LDFLAGS := -Wl,--export-all-symbols -Wl,--out-implib,libyosys_exe.a -PLUGIN_LDFLAGS += -L"$(LIBDIR)" -PLUGIN_LDLIBS := -lyosys_exe +EXE_LINKFLAGS := -Wl,--export-all-symbols -Wl,--out-implib,libyosys_exe.a +PLUGIN_LINKFLAGS += -L"$(LIBDIR)" +PLUGIN_LIBS := -lyosys_exe endif PKG_CONFIG ?= pkg-config @@ -109,7 +111,7 @@ STRIP ?= strip AWK ?= awk ifeq ($(OS), Darwin) -PLUGIN_LDFLAGS += -undefined dynamic_lookup +PLUGIN_LINKFLAGS += -undefined dynamic_lookup # homebrew search paths ifneq ($(shell :; command -v brew),) @@ -117,10 +119,10 @@ BREW_PREFIX := $(shell brew --prefix)/opt $(info $$BREW_PREFIX is [${BREW_PREFIX}]) ifeq ($(ENABLE_PYOSYS),1) CXXFLAGS += -I$(BREW_PREFIX)/boost/include/boost -LDFLAGS += -L$(BREW_PREFIX)/boost/lib +LINKFLAGS += -L$(BREW_PREFIX)/boost/lib endif CXXFLAGS += -I$(BREW_PREFIX)/readline/include -LDFLAGS += -L$(BREW_PREFIX)/readline/lib +LINKFLAGS += -L$(BREW_PREFIX)/readline/lib PKG_CONFIG_PATH := $(BREW_PREFIX)/libffi/lib/pkgconfig:$(PKG_CONFIG_PATH) PKG_CONFIG_PATH := $(BREW_PREFIX)/tcl-tk/lib/pkgconfig:$(PKG_CONFIG_PATH) export PATH := $(BREW_PREFIX)/bison/bin:$(BREW_PREFIX)/gettext/bin:$(BREW_PREFIX)/flex/bin:$(PATH) @@ -129,19 +131,19 @@ export PATH := $(BREW_PREFIX)/bison/bin:$(BREW_PREFIX)/gettext/bin:$(BREW_PREFIX else ifneq ($(shell :; command -v port),) PORT_PREFIX := $(patsubst %/bin/port,%,$(shell :; command -v port)) CXXFLAGS += -I$(PORT_PREFIX)/include -LDFLAGS += -L$(PORT_PREFIX)/lib +LINKFLAGS += -L$(PORT_PREFIX)/lib PKG_CONFIG_PATH := $(PORT_PREFIX)/lib/pkgconfig:$(PKG_CONFIG_PATH) export PATH := $(PORT_PREFIX)/bin:$(PATH) endif else -LDFLAGS += -rdynamic +LINKFLAGS += -rdynamic ifneq ($(OS), OpenBSD) -LDLIBS += -lrt +LIBS += -lrt endif endif -YOSYS_VER := 0.32 +YOSYS_VER := 0.42+40 # Note: We arrange for .gitcommit to contain the (short) commit hash in # tarballs generated with git-archive(1) using .gitattributes. The git repo @@ -149,8 +151,7 @@ YOSYS_VER := 0.32 # back to calling git directly. TARBALL_GIT_REV := $(shell cat $(YOSYS_SRC)/.gitcommit) ifeq ($(TARBALL_GIT_REV),$$Format:%h$$) -#GIT_REV := $(shell GIT_DIR=$(YOSYS_SRC)/.git git rev-parse --short=9 HEAD || echo UNKNOWN) -GIT_REV := $(shell echo UNKNOWN) +GIT_REV := $(shell GIT_DIR=$(YOSYS_SRC)/.git git rev-parse --short=9 HEAD || echo UNKNOWN) else GIT_REV := $(TARBALL_GIT_REV) endif @@ -158,17 +159,8 @@ endif OBJS = kernel/version_$(GIT_REV).o bumpversion: -# sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline f3c6b41.. | wc -l`/;" Makefile - -# set 'ABCREV = default' to use abc/ as it is -# -# Note: If you do ABC development, make sure that 'abc' in this directory -# is just a symlink to your actual ABC working directory, as 'make mrproper' -# will remove the 'abc' directory and you do not want to accidentally -# delete your work on ABC.. -ABCREV = bb64142 -ABCPULL = 1 -ABCURL ?= https://github.com/YosysHQ/abc + sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline 9b6afcf.. | wc -l`/;" Makefile + ABCMKARGS = CC="$(CXX)" CXX="$(CXX)" ABC_USE_LIBSTDCXX=1 ABC_USE_NAMESPACE=abc VERBOSE=$(Q) # set ABCEXTERNAL = to use an external ABC instance @@ -216,41 +208,38 @@ ABC_ARCHFLAGS += "-DABC_NO_RLIMIT" endif ifeq ($(CONFIG),clang) -CXX = clang -LD = clang++ +CXX = clang++ CXXFLAGS += -std=$(CXXSTD) -Os -ABCMKARGS += ARCHFLAGS="-DABC_USE_STDINT_H -Wno-c++11-narrowing $(ABC_ARCHFLAGS)" +ABCMKARGS += ARCHFLAGS="-DABC_USE_STDINT_H $(ABC_ARCHFLAGS)" ifneq ($(SANITIZER),) $(info [Clang Sanitizer] $(SANITIZER)) CXXFLAGS += -g -O1 -fno-omit-frame-pointer -fno-optimize-sibling-calls -fsanitize=$(SANITIZER) -LDFLAGS += -g -fsanitize=$(SANITIZER) +LINKFLAGS += -g -fsanitize=$(SANITIZER) ifneq ($(findstring address,$(SANITIZER)),) ENABLE_COVER := 0 endif ifneq ($(findstring memory,$(SANITIZER)),) CXXFLAGS += -fPIE -fsanitize-memory-track-origins -LDFLAGS += -fPIE -fsanitize-memory-track-origins +LINKFLAGS += -fPIE -fsanitize-memory-track-origins endif ifneq ($(findstring cfi,$(SANITIZER)),) CXXFLAGS += -flto -LDFLAGS += -flto +LINKFLAGS += -flto endif endif else ifeq ($(CONFIG),gcc) -CXX = gcc -LD = gcc +CXX = g++ CXXFLAGS += -std=$(CXXSTD) -Os ABCMKARGS += ARCHFLAGS="-DABC_USE_STDINT_H $(ABC_ARCHFLAGS)" else ifeq ($(CONFIG),gcc-static) -LD = $(CXX) -LDFLAGS := $(filter-out -rdynamic,$(LDFLAGS)) -static -LDLIBS := $(filter-out -lrt,$(LDLIBS)) +LINKFLAGS := $(filter-out -rdynamic,$(LINKFLAGS)) -static +LIBS := $(filter-out -lrt,$(LIBS)) CXXFLAGS := $(filter-out -fPIC,$(CXXFLAGS)) CXXFLAGS += -std=$(CXXSTD) -Os -ABCMKARGS = CC="$(CC)" CXX="$(CXX)" LD="$(LD)" ABC_USE_LIBSTDCXX=1 LIBS="-lm -lpthread -static" OPTFLAGS="-O" \ +ABCMKARGS = CC="$(CC)" CXX="$(CXX)" LD="$(CXX)" ABC_USE_LIBSTDCXX=1 LIBS="-lm -lpthread -static" OPTFLAGS="-O" \ ARCHFLAGS="-DABC_USE_STDINT_H -DABC_NO_DYNAMIC_LINKING=1 -Wno-unused-but-set-variable $(ARCHFLAGS)" ABC_USE_NO_READLINE=1 ifeq ($(DISABLE_ABC_THREADS),1) ABCMKARGS += "ABC_USE_NO_PTHREADS=1" @@ -258,75 +247,31 @@ endif else ifeq ($(CONFIG),afl-gcc) CXX = AFL_QUIET=1 AFL_HARDEN=1 afl-gcc -LD = AFL_QUIET=1 AFL_HARDEN=1 afl-gcc CXXFLAGS += -std=$(CXXSTD) -Os ABCMKARGS += ARCHFLAGS="-DABC_USE_STDINT_H" else ifeq ($(CONFIG),cygwin) -CXX = gcc -LD = gcc +CXX = g++ CXXFLAGS += -std=gnu++11 -Os ABCMKARGS += ARCHFLAGS="-DABC_USE_STDINT_H" -else ifeq ($(CONFIG),emcc) -CXX = emcc -LD = emcc -CXXFLAGS := -std=$(CXXSTD) $(filter-out -fPIC -ggdb,$(CXXFLAGS)) -ABCMKARGS += ARCHFLAGS="-DABC_USE_STDINT_H -DABC_MEMALIGN=8 -Wno-c++11-narrowing" -EMCC_CXXFLAGS := -Os -Wno-warn-absolute-paths -EMCC_LDFLAGS := --memory-init-file 0 --embed-file share -EMCC_LDFLAGS += -s NO_EXIT_RUNTIME=1 -EMCC_LDFLAGS += -s EXPORTED_FUNCTIONS="['_main','_run','_prompt','_errmsg','_memset']" -EMCC_LDFLAGS += -s TOTAL_MEMORY=134217728 -EMCC_LDFLAGS += -s EXPORTED_RUNTIME_METHODS='["ccall", "cwrap"]' -# https://github.com/kripken/emscripten/blob/master/src/settings.js -CXXFLAGS += $(EMCC_CXXFLAGS) -LDFLAGS += $(EMCC_LDFLAGS) -LDLIBS = -EXE = .js - -DISABLE_SPAWN := 1 - -TARGETS := $(filter-out $(PROGRAM_PREFIX)yosys-config,$(TARGETS)) -EXTRA_TARGETS += yosysjs-$(YOSYS_VER).zip - -ifeq ($(ENABLE_ABC),1) -LINK_ABC := 1 -DISABLE_ABC_THREADS := 1 -endif - -viz.js: - wget -O viz.js.part https://github.com/mdaines/viz.js/releases/download/0.0.3/viz.js - mv viz.js.part viz.js - -yosysjs-$(YOSYS_VER).zip: yosys.js viz.js misc/yosysjs/* - rm -rf yosysjs-$(YOSYS_VER) yosysjs-$(YOSYS_VER).zip - mkdir -p yosysjs-$(YOSYS_VER) - cp viz.js misc/yosysjs/* yosys.js yosys.wasm yosysjs-$(YOSYS_VER)/ - zip -r yosysjs-$(YOSYS_VER).zip yosysjs-$(YOSYS_VER) - -yosys.html: misc/yosys.html - $(P) cp misc/yosys.html yosys.html - else ifeq ($(CONFIG),wasi) ifeq ($(WASI_SDK),) -CXX = clang -LD = clang++ +CXX = clang++ AR = llvm-ar RANLIB = llvm-ranlib WASIFLAGS := -target wasm32-wasi --sysroot $(WASI_SYSROOT) $(WASIFLAGS) else -CXX = $(WASI_SDK)/bin/clang -LD = $(WASI_SDK)/bin/clang++ +CXX = $(WASI_SDK)/bin/clang++ AR = $(WASI_SDK)/bin/ar RANLIB = $(WASI_SDK)/bin/ranlib WASIFLAGS := --sysroot $(WASI_SDK)/share/wasi-sysroot $(WASIFLAGS) endif -CXXFLAGS := $(WASIFLAGS) -std=$(CXXSTD) -Os $(filter-out -fPIC,$(CXXFLAGS)) -LDFLAGS := $(WASIFLAGS) -Wl,-z,stack-size=1048576 $(filter-out -rdynamic,$(LDFLAGS)) -LDLIBS := $(filter-out -lrt,$(LDLIBS)) +CXXFLAGS := $(WASIFLAGS) -std=$(CXXSTD) -Os -D_WASI_EMULATED_PROCESS_CLOCKS $(filter-out -fPIC,$(CXXFLAGS)) +LINKFLAGS := $(WASIFLAGS) -Wl,-z,stack-size=1048576 $(filter-out -rdynamic,$(LINKFLAGS)) +LIBS := -lwasi-emulated-process-clocks $(filter-out -lrt,$(LIBS)) ABCMKARGS += AR="$(AR)" RANLIB="$(RANLIB)" -ABCMKARGS += ARCHFLAGS="$(WASIFLAGS) -DABC_USE_STDINT_H -DABC_NO_DYNAMIC_LINKING -DABC_NO_RLIMIT -Wno-c++11-narrowing" +ABCMKARGS += ARCHFLAGS="$(WASIFLAGS) -D_WASI_EMULATED_PROCESS_CLOCKS -DABC_USE_STDINT_H -DABC_NO_DYNAMIC_LINKING -DABC_NO_RLIMIT" ABCMKARGS += OPTFLAGS="-Os" EXE = .wasm @@ -340,40 +285,41 @@ endif else ifeq ($(CONFIG),mxe) PKG_CONFIG = /usr/local/src/mxe/usr/bin/i686-w64-mingw32.static-pkg-config CXX = /usr/local/src/mxe/usr/bin/i686-w64-mingw32.static-g++ -LD = /usr/local/src/mxe/usr/bin/i686-w64-mingw32.static-g++ CXXFLAGS += -std=$(CXXSTD) -Os -D_POSIX_SOURCE -DYOSYS_MXE_HACKS -Wno-attributes CXXFLAGS := $(filter-out -fPIC,$(CXXFLAGS)) -LDFLAGS := $(filter-out -rdynamic,$(LDFLAGS)) -s -LDLIBS := $(filter-out -lrt,$(LDLIBS)) +LINKFLAGS := $(filter-out -rdynamic,$(LINKFLAGS)) -s +LIBS := $(filter-out -lrt,$(LIBS)) ABCMKARGS += ARCHFLAGS="-DWIN32_NO_DLL -DHAVE_STRUCT_TIMESPEC -fpermissive -w" # TODO: Try to solve pthread linking issue in more appropriate way -ABCMKARGS += LIBS="lib/x86/pthreadVC2.lib -s" LDFLAGS="-Wl,--allow-multiple-definition" ABC_USE_NO_READLINE=1 CC="/usr/local/src/mxe/usr/bin/i686-w64-mingw32.static-gcc" +ABCMKARGS += LIBS="lib/x86/pthreadVC2.lib -s" LINKFLAGS="-Wl,--allow-multiple-definition" ABC_USE_NO_READLINE=1 CC="/usr/local/src/mxe/usr/bin/i686-w64-mingw32.static-gcc" EXE = .exe else ifeq ($(CONFIG),msys2-32) CXX = i686-w64-mingw32-g++ -LD = i686-w64-mingw32-g++ CXXFLAGS += -std=$(CXXSTD) -Os -D_POSIX_SOURCE -DYOSYS_WIN32_UNIX_DIR CXXFLAGS := $(filter-out -fPIC,$(CXXFLAGS)) -LDFLAGS := $(filter-out -rdynamic,$(LDFLAGS)) -s -LDLIBS := $(filter-out -lrt,$(LDLIBS)) +LINKFLAGS := $(filter-out -rdynamic,$(LINKFLAGS)) -s +LIBS := $(filter-out -lrt,$(LIBS)) ABCMKARGS += ARCHFLAGS="-DABC_USE_STDINT_H -DWIN32_NO_DLL -DHAVE_STRUCT_TIMESPEC -fpermissive -w" -ABCMKARGS += LIBS="-lpthread -s" ABC_USE_NO_READLINE=0 CC="i686-w64-mingw32-gcc" CXX="$(CXX)" +ABCMKARGS += LIBS="-lpthread -lshlwapi -s" ABC_USE_NO_READLINE=0 CC="i686-w64-mingw32-gcc" CXX="$(CXX)" EXE = .exe else ifeq ($(CONFIG),msys2-64) CXX = x86_64-w64-mingw32-g++ -LD = x86_64-w64-mingw32-g++ CXXFLAGS += -std=$(CXXSTD) -Os -D_POSIX_SOURCE -DYOSYS_WIN32_UNIX_DIR CXXFLAGS := $(filter-out -fPIC,$(CXXFLAGS)) -LDFLAGS := $(filter-out -rdynamic,$(LDFLAGS)) -s -LDLIBS := $(filter-out -lrt,$(LDLIBS)) +LINKFLAGS := $(filter-out -rdynamic,$(LINKFLAGS)) -s +LIBS := $(filter-out -lrt,$(LIBS)) ABCMKARGS += ARCHFLAGS="-DABC_USE_STDINT_H -DWIN32_NO_DLL -DHAVE_STRUCT_TIMESPEC -fpermissive -w" -ABCMKARGS += LIBS="-lpthread -s" ABC_USE_NO_READLINE=0 CC="x86_64-w64-mingw32-gcc" CXX="$(CXX)" +ABCMKARGS += LIBS="-lpthread -lshlwapi -s" ABC_USE_NO_READLINE=0 CC="x86_64-w64-mingw32-gcc" CXX="$(CXX)" EXE = .exe -else ifneq ($(CONFIG),none) -$(error Invalid CONFIG setting '$(CONFIG)'. Valid values: clang, gcc, emcc, mxe, msys2-32, msys2-64) +else ifeq ($(CONFIG),none) +CXXFLAGS += -std=$(CXXSTD) -Os +ABCMKARGS += ARCHFLAGS="-DABC_USE_STDINT_H $(ABC_ARCHFLAGS)" + +else +$(error Invalid CONFIG setting '$(CONFIG)'. Valid values: clang, gcc, mxe, msys2-32, msys2-64, none) endif ifeq ($(ENABLE_LIBYOSYS),1) @@ -394,9 +340,9 @@ ifeq ($(BOOST_PYTHON_LIB),) $(error BOOST_PYTHON_LIB could not be detected. Please define manually) endif -LDLIBS += $(shell $(PYTHON_CONFIG) --libs) $(BOOST_PYTHON_LIB) -lboost_system -lboost_filesystem -# python-config --ldflags includes LDLIBS for some reason -LDFLAGS += $(filter-out -l%,$(shell $(PYTHON_CONFIG) --ldflags)) +LIBS += $(shell $(PYTHON_CONFIG) --libs) $(BOOST_PYTHON_LIB) -lboost_system -lboost_filesystem +# python-config --ldflags includes LIBS for some reason +LINKFLAGS += $(filter-out -l%,$(shell $(PYTHON_CONFIG) --ldflags)) CXXFLAGS += $(shell $(PYTHON_CONFIG) --includes) -DWITH_PYTHON PY_WRAPPER_FILE = kernel/python_wrappers @@ -410,22 +356,22 @@ CXXFLAGS += -DYOSYS_ENABLE_READLINE ifeq ($(OS), $(filter $(OS),FreeBSD OpenBSD NetBSD)) CXXFLAGS += -I/usr/local/include endif -LDLIBS += -lreadline +LIBS += -lreadline ifeq ($(LINK_CURSES),1) -LDLIBS += -lcurses +LIBS += -lcurses ABCMKARGS += "ABC_READLINE_LIBRARIES=-lcurses -lreadline" endif ifeq ($(LINK_TERMCAP),1) -LDLIBS += -ltermcap +LIBS += -ltermcap ABCMKARGS += "ABC_READLINE_LIBRARIES=-lreadline -ltermcap" endif ifeq ($(CONFIG),mxe) -LDLIBS += -ltermcap +LIBS += -ltermcap endif else ifeq ($(ENABLE_EDITLINE),1) CXXFLAGS += -DYOSYS_ENABLE_EDITLINE -LDLIBS += -ledit -ltinfo -lbsd +LIBS += -ledit -ltinfo -lbsd else ABCMKARGS += "ABC_USE_NO_READLINE=1" endif @@ -444,9 +390,9 @@ CXXFLAGS += $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKG_CONFIG) --silence-e ifeq ($(OS), MINGW) CXXFLAGS += -Ilibs/dlfcn-win32 endif -LDLIBS += $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKG_CONFIG) --silence-errors --libs libffi || echo -lffi) +LIBS += $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKG_CONFIG) --silence-errors --libs libffi || echo -lffi) ifneq ($(OS), $(filter $(OS),FreeBSD OpenBSD NetBSD MINGW)) -LDLIBS += -ldl +LIBS += -ldl endif endif @@ -456,7 +402,7 @@ endif ifeq ($(ENABLE_ZLIB),1) CXXFLAGS += -DYOSYS_ENABLE_ZLIB -LDLIBS += -lz +LIBS += -lz endif @@ -473,21 +419,21 @@ endif ifeq ($(CONFIG),mxe) CXXFLAGS += -DYOSYS_ENABLE_TCL -LDLIBS += -ltcl86 -lwsock32 -lws2_32 -lnetapi32 -lz -luserenv +LIBS += -ltcl86 -lwsock32 -lws2_32 -lnetapi32 -lz -luserenv else CXXFLAGS += $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKG_CONFIG) --silence-errors --cflags tcl || echo -I$(TCL_INCLUDE)) -DYOSYS_ENABLE_TCL -LDLIBS += $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKG_CONFIG) --silence-errors --libs tcl || echo $(TCL_LIBS)) +LIBS += $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKG_CONFIG) --silence-errors --libs tcl || echo $(TCL_LIBS)) endif endif ifeq ($(ENABLE_GCOV),1) CXXFLAGS += --coverage -LDFLAGS += --coverage +LINKFLAGS += --coverage endif ifeq ($(ENABLE_GPROF),1) CXXFLAGS += -pg -LDFLAGS += -pg +LINKFLAGS += -pg endif ifeq ($(ENABLE_NDEBUG),1) @@ -507,11 +453,11 @@ CXXFLAGS += -DYOSYS_ENABLE_ABC ifeq ($(LINK_ABC),1) CXXFLAGS += -DYOSYS_LINK_ABC ifeq ($(DISABLE_ABC_THREADS),0) -LDLIBS += -lpthread +LIBS += -lpthread endif else ifeq ($(ABCEXTERNAL),) -TARGETS += $(PROGRAM_PREFIX)yosys-abc$(EXE) +TARGETS := $(PROGRAM_PREFIX)yosys-abc$(EXE) $(TARGETS) endif endif endif @@ -521,14 +467,30 @@ GHDL_PREFIX ?= $(PREFIX) GHDL_INCLUDE_DIR ?= $(GHDL_PREFIX)/include GHDL_LIB_DIR ?= $(GHDL_PREFIX)/lib CXXFLAGS += -I$(GHDL_INCLUDE_DIR) -DYOSYS_ENABLE_GHDL -LDLIBS += $(GHDL_LIB_DIR)/libghdl.a $(file <$(GHDL_LIB_DIR)/libghdl.link) +LIBS += $(GHDL_LIB_DIR)/libghdl.a $(file <$(GHDL_LIB_DIR)/libghdl.link) endif -LDLIBS_VERIFIC = +LIBS_VERIFIC = ifeq ($(ENABLE_VERIFIC),1) VERIFIC_DIR ?= /usr/local/src/verific_lib -VERIFIC_COMPONENTS ?= verilog database util containers hier_tree -ifneq ($(DISABLE_VERIFIC_VHDL),1) +VERIFIC_COMPONENTS ?= database util containers +ifeq ($(ENABLE_VERIFIC_HIER_TREE),1) +VERIFIC_COMPONENTS += hier_tree +CXXFLAGS += -DVERIFIC_HIER_TREE_SUPPORT +else +ifneq ($(wildcard $(VERIFIC_DIR)/hier_tree),) +VERIFIC_COMPONENTS += hier_tree +endif +endif +ifeq ($(ENABLE_VERIFIC_SYSTEMVERILOG),1) +VERIFIC_COMPONENTS += verilog +CXXFLAGS += -DVERIFIC_SYSTEMVERILOG_SUPPORT +else +ifneq ($(wildcard $(VERIFIC_DIR)/verilog),) +VERIFIC_COMPONENTS += verilog +endif +endif +ifeq ($(ENABLE_VERIFIC_VHDL),1) VERIFIC_COMPONENTS += vhdl CXXFLAGS += -DVERIFIC_VHDL_SUPPORT else @@ -544,15 +506,19 @@ ifeq ($(ENABLE_VERIFIC_LIBERTY),1) VERIFIC_COMPONENTS += synlib CXXFLAGS += -DVERIFIC_LIBERTY_SUPPORT endif -ifneq ($(DISABLE_VERIFIC_EXTENSIONS),1) +ifeq ($(ENABLE_VERIFIC_YOSYSHQ_EXTENSIONS),1) VERIFIC_COMPONENTS += extensions CXXFLAGS += -DYOSYSHQ_VERIFIC_EXTENSIONS +else +ifneq ($(wildcard $(VERIFIC_DIR)/extensions),) +VERIFIC_COMPONENTS += extensions +endif endif CXXFLAGS += $(patsubst %,-I$(VERIFIC_DIR)/%,$(VERIFIC_COMPONENTS)) -DYOSYS_ENABLE_VERIFIC ifeq ($(OS), Darwin) -LDLIBS_VERIFIC += $(foreach comp,$(patsubst %,$(VERIFIC_DIR)/%/*-mac.a,$(VERIFIC_COMPONENTS)),-Wl,-force_load $(comp)) -lz +LIBS_VERIFIC += $(foreach comp,$(patsubst %,$(VERIFIC_DIR)/%/*-mac.a,$(VERIFIC_COMPONENTS)),-Wl,-force_load $(comp)) -lz else -LDLIBS_VERIFIC += -Wl,--whole-archive $(patsubst %,$(VERIFIC_DIR)/%/*-linux.a,$(VERIFIC_COMPONENTS)) -Wl,--no-whole-archive -lz +LIBS_VERIFIC += -Wl,--whole-archive $(patsubst %,$(VERIFIC_DIR)/%/*-linux.a,$(VERIFIC_COMPONENTS)) -Wl,--no-whole-archive -lz endif endif @@ -607,31 +573,37 @@ Q = S = endif -$(eval $(call add_include_file,kernel/yosys.h)) -$(eval $(call add_include_file,kernel/hashlib.h)) -$(eval $(call add_include_file,kernel/log.h)) -$(eval $(call add_include_file,kernel/rtlil.h)) $(eval $(call add_include_file,kernel/binding.h)) -$(eval $(call add_include_file,kernel/register.h)) $(eval $(call add_include_file,kernel/cellaigs.h)) -$(eval $(call add_include_file,kernel/celltypes.h)) $(eval $(call add_include_file,kernel/celledges.h)) +$(eval $(call add_include_file,kernel/celltypes.h)) $(eval $(call add_include_file,kernel/consteval.h)) $(eval $(call add_include_file,kernel/constids.inc)) -$(eval $(call add_include_file,kernel/sigtools.h)) -$(eval $(call add_include_file,kernel/modtools.h)) -$(eval $(call add_include_file,kernel/macc.h)) -$(eval $(call add_include_file,kernel/utils.h)) -$(eval $(call add_include_file,kernel/satgen.h)) -$(eval $(call add_include_file,kernel/qcsat.h)) +$(eval $(call add_include_file,kernel/cost.h)) $(eval $(call add_include_file,kernel/ff.h)) $(eval $(call add_include_file,kernel/ffinit.h)) +$(eval $(call add_include_file,kernel/ffmerge.h)) +$(eval $(call add_include_file,kernel/fmt.h)) ifeq ($(ENABLE_ZLIB),1) $(eval $(call add_include_file,kernel/fstdata.h)) endif +$(eval $(call add_include_file,kernel/hashlib.h)) +$(eval $(call add_include_file,kernel/json.h)) +$(eval $(call add_include_file,kernel/log.h)) +$(eval $(call add_include_file,kernel/macc.h)) +$(eval $(call add_include_file,kernel/modtools.h)) $(eval $(call add_include_file,kernel/mem.h)) +$(eval $(call add_include_file,kernel/qcsat.h)) +$(eval $(call add_include_file,kernel/register.h)) +$(eval $(call add_include_file,kernel/rtlil.h)) +$(eval $(call add_include_file,kernel/satgen.h)) +$(eval $(call add_include_file,kernel/scopeinfo.h)) +$(eval $(call add_include_file,kernel/sigtools.h)) +$(eval $(call add_include_file,kernel/timinginfo.h)) +$(eval $(call add_include_file,kernel/utils.h)) +$(eval $(call add_include_file,kernel/yosys.h)) +$(eval $(call add_include_file,kernel/yosys_common.h)) $(eval $(call add_include_file,kernel/yw.h)) -$(eval $(call add_include_file,kernel/json.h)) $(eval $(call add_include_file,libs/ezsat/ezsat.h)) $(eval $(call add_include_file,libs/ezsat/ezminisat.h)) ifeq ($(ENABLE_ZLIB),1) @@ -644,21 +616,10 @@ $(eval $(call add_include_file,frontends/ast/ast.h)) $(eval $(call add_include_file,frontends/ast/ast_binding.h)) $(eval $(call add_include_file,frontends/blif/blifparse.h)) $(eval $(call add_include_file,backends/rtlil/rtlil_backend.h)) -$(eval $(call add_include_file,backends/cxxrtl/cxxrtl.h)) -$(eval $(call add_include_file,backends/cxxrtl/cxxrtl_vcd.h)) -$(eval $(call add_include_file,backends/cxxrtl/cxxrtl_capi.cc)) -$(eval $(call add_include_file,backends/cxxrtl/cxxrtl_capi.h)) -$(eval $(call add_include_file,backends/cxxrtl/cxxrtl_vcd_capi.cc)) -$(eval $(call add_include_file,backends/cxxrtl/cxxrtl_vcd_capi.h)) OBJS += kernel/driver.o kernel/register.o kernel/rtlil.o kernel/log.o kernel/calc.o kernel/yosys.o OBJS += kernel/binding.o -ifeq ($(ENABLE_ABC),1) -ifneq ($(ABCEXTERNAL),) -kernel/yosys.o: CXXFLAGS += -DABCEXTERNAL='"$(ABCEXTERNAL)"' -endif -endif -OBJS += kernel/cellaigs.o kernel/celledges.o kernel/satgen.o kernel/qcsat.o kernel/mem.o kernel/ffmerge.o kernel/ff.o kernel/yw.o kernel/json.o +OBJS += kernel/cellaigs.o kernel/celledges.o kernel/satgen.o kernel/scopeinfo.o kernel/qcsat.o kernel/mem.o kernel/ffmerge.o kernel/ff.o kernel/yw.o kernel/json.o kernel/fmt.o ifeq ($(ENABLE_ZLIB),1) OBJS += kernel/fstdata.o endif @@ -670,18 +631,19 @@ endif kernel/log.o: CXXFLAGS += -DYOSYS_SRC='"$(YOSYS_SRC)"' kernel/yosys.o: CXXFLAGS += -DYOSYS_DATDIR='"$(DATDIR)"' -DYOSYS_PROGRAM_PREFIX='"$(PROGRAM_PREFIX)"' +ifeq ($(ENABLE_ABC),1) +ifneq ($(ABCEXTERNAL),) +kernel/yosys.o: CXXFLAGS += -DABCEXTERNAL='"$(ABCEXTERNAL)"' +endif +endif OBJS += libs/bigint/BigIntegerAlgorithms.o libs/bigint/BigInteger.o libs/bigint/BigIntegerUtils.o OBJS += libs/bigint/BigUnsigned.o libs/bigint/BigUnsignedInABase.o OBJS += libs/sha1/sha1.o -ifneq ($(SMALL),1) - OBJS += libs/json11/json11.o -OBJS += libs/subcircuit/subcircuit.o - OBJS += libs/ezsat/ezsat.o OBJS += libs/ezsat/ezminisat.o @@ -696,6 +658,10 @@ OBJS += libs/fst/fastlz.o OBJS += libs/fst/lz4.o endif +ifneq ($(SMALL),1) + +OBJS += libs/subcircuit/subcircuit.o + include $(YOSYS_SRC)/frontends/*/Makefile.inc include $(YOSYS_SRC)/passes/*/Makefile.inc include $(YOSYS_SRC)/backends/*/Makefile.inc @@ -704,6 +670,9 @@ include $(YOSYS_SRC)/techlibs/*/Makefile.inc else include $(YOSYS_SRC)/frontends/verilog/Makefile.inc +ifeq ($(ENABLE_VERIFIC),1) +include $(YOSYS_SRC)/frontends/verific/Makefile.inc +endif include $(YOSYS_SRC)/frontends/rtlil/Makefile.inc include $(YOSYS_SRC)/frontends/ast/Makefile.inc include $(YOSYS_SRC)/frontends/blif/Makefile.inc @@ -740,18 +709,20 @@ top-all: $(TARGETS) $(EXTRA_TARGETS) @echo " Build successful." @echo "" -ifeq ($(CONFIG),emcc) -yosys.js: $(filter-out yosysjs-$(YOSYS_VER).zip,$(EXTRA_TARGETS)) -endif +.PHONY: compile-only +compile-only: $(OBJS) $(GENFILES) $(EXTRA_TARGETS) + @echo "" + @echo " Compile successful." + @echo "" $(PROGRAM_PREFIX)yosys$(EXE): $(OBJS) - $(P) $(LD) -o $(PROGRAM_PREFIX)yosys$(EXE) $(EXE_LDFLAGS) $(LDFLAGS) $(OBJS) $(LDLIBS) $(LDLIBS_VERIFIC) + $(P) $(CXX) -o $(PROGRAM_PREFIX)yosys$(EXE) $(EXE_LINKFLAGS) $(LINKFLAGS) $(OBJS) $(LIBS) $(LIBS_VERIFIC) libyosys.so: $(filter-out kernel/driver.o,$(OBJS)) ifeq ($(OS), Darwin) - $(P) $(LD) -o libyosys.so -shared -Wl,-install_name,$(LIBDIR)/libyosys.so $(LDFLAGS) $^ $(LDLIBS) $(LDLIBS_VERIFIC) + $(P) $(CXX) -o libyosys.so -shared -Wl,-install_name,$(LIBDIR)/libyosys.so $(LINKFLAGS) $^ $(LIBS) $(LIBS_VERIFIC) else - $(P) $(LD) -o libyosys.so -shared -Wl,-soname,$(LIBDIR)/libyosys.so $(LDFLAGS) $^ $(LDLIBS) $(LDLIBS_VERIFIC) + $(P) $(CXX) -o libyosys.so -shared -Wl,-soname,$(LIBDIR)/libyosys.so $(LINKFLAGS) $^ $(LIBS) $(LIBS_VERIFIC) endif %.o: %.cc @@ -760,7 +731,7 @@ endif %.pyh: %.h $(Q) mkdir -p $(dir $@) - $(P) cat $< | grep -E -v "#[ ]*(include|error)" | $(LD) $(CXXFLAGS) -x c++ -o $@ -E -P - + $(P) cat $< | grep -E -v "#[ ]*(include|error)" | $(CXX) $(CXXFLAGS) -x c++ -o $@ -E -P - ifeq ($(ENABLE_PYOSYS),1) $(PY_WRAPPER_FILE).cc: misc/$(PY_GEN_SCRIPT).py $(PY_WRAP_INCLUDES) @@ -781,53 +752,52 @@ kernel/version_$(GIT_REV).cc: $(YOSYS_SRC)/Makefile ifeq ($(ENABLE_VERIFIC),1) CXXFLAGS_NOVERIFIC = $(foreach v,$(CXXFLAGS),$(if $(findstring $(VERIFIC_DIR),$(v)),,$(v))) -LDLIBS_NOVERIFIC = $(foreach v,$(LDLIBS),$(if $(findstring $(VERIFIC_DIR),$(v)),,$(v))) +LIBS_NOVERIFIC = $(foreach v,$(LIBS),$(if $(findstring $(VERIFIC_DIR),$(v)),,$(v))) else CXXFLAGS_NOVERIFIC = $(CXXFLAGS) -LDLIBS_NOVERIFIC = $(LDLIBS) +LIBS_NOVERIFIC = $(LIBS) endif -$(PROGRAM_PREFIX)yosys-config: misc/yosys-config.in +$(PROGRAM_PREFIX)yosys-config: misc/yosys-config.in $(YOSYS_SRC)/Makefile $(P) $(SED) -e 's#@CXXFLAGS@#$(subst -Ilibs/dlfcn-win32,,$(subst -I. -I"$(YOSYS_SRC)",-I"$(DATDIR)/include",$(strip $(CXXFLAGS_NOVERIFIC))))#;' \ - -e 's#@CXX@#$(strip $(CXX))#;' -e 's#@LDFLAGS@#$(strip $(LDFLAGS) $(PLUGIN_LDFLAGS))#;' -e 's#@LDLIBS@#$(strip $(LDLIBS_NOVERIFIC) $(PLUGIN_LDLIBS))#;' \ + -e 's#@CXX@#$(strip $(CXX))#;' -e 's#@LINKFLAGS@#$(strip $(LINKFLAGS) $(PLUGIN_LINKFLAGS))#;' -e 's#@LIBS@#$(strip $(LIBS_NOVERIFIC) $(PLUGIN_LIBS))#;' \ -e 's#@BINDIR@#$(strip $(BINDIR))#;' -e 's#@DATDIR@#$(strip $(DATDIR))#;' < $< > $(PROGRAM_PREFIX)yosys-config $(Q) chmod +x $(PROGRAM_PREFIX)yosys-config -abc/abc-$(ABCREV)$(EXE) abc/libabc-$(ABCREV).a: - $(P) -ifneq ($(ABCREV),default) - $(Q) if test -d abc/.hg; then \ - echo 'REEBE: NOP qverpgbel vf n ut jbexvat pbcl! Erzbir nop/ naq er-eha "znxr".' | tr 'A-Za-z' 'N-ZA-Mn-za-m'; false; \ - fi - $(Q) if test -d abc && test -d abc/.git && ! git -C abc diff-index --quiet HEAD; then \ - echo 'REEBE: NOP pbagnvaf ybpny zbqvsvpngvbaf! Frg NOPERI=qrsnhyg va Lbflf Znxrsvyr!' | tr 'A-Za-z' 'N-ZA-Mn-za-m'; false; \ +.PHONY: check-git-abc + +check-git-abc: + @if [ ! -d "$(YOSYS_SRC)/abc" ]; then \ + echo "Error: The 'abc' directory does not exist."; \ + echo "Initialize the submodule: Run 'git submodule update --init' to set up 'abc' as a submodule."; \ + exit 1; \ + elif git -C "$(YOSYS_SRC)" submodule status abc 2>/dev/null | grep -q '^ '; then \ + exit 0; \ + elif [ -f "$(YOSYS_SRC)/abc/.gitcommit" ] && ! grep -q '\$$Format:%h\$$' "$(YOSYS_SRC)/abc/.gitcommit"; then \ + echo "'abc' comes from a tarball. Continuing."; \ + exit 0; \ + elif [ -f "$(YOSYS_SRC)/abc/.gitcommit" ] && grep -q '\$$Format:%h\$$' "$(YOSYS_SRC)/abc/.gitcommit"; then \ + echo "Error: 'abc' is not configured as a git submodule."; \ + echo "To resolve this:"; \ + echo "1. Back up your changes: Save any modifications from the 'abc' directory to another location."; \ + echo "2. Remove the existing 'abc' directory: Delete the 'abc' directory and all its contents."; \ + echo "3. Initialize the submodule: Run 'git submodule update --init' to set up 'abc' as a submodule."; \ + echo "4. Reapply your changes: Move your saved changes back to the 'abc' directory, if necessary."; \ + exit 1; \ + else \ + echo "Initialize the submodule: Run 'git submodule update --init' to set up 'abc' as a submodule."; \ + exit 1; \ fi - $(Q) if test -d abc && ! test -d abc/.git && ! test "`cat abc/.gitcommit | cut -c1-7`" = "$(ABCREV)"; then \ - echo 'REEBE: Qbjaybnqrq NOP irefvbaf qbrf abg zngpu! Qbjaybnq sebz:' | tr 'A-Za-z' 'N-ZA-Mn-za-m'; echo $(ABCURL)/archive/$(ABCREV).tar.gz; false; \ - fi -# set a variable so the test fails if git fails to run - when comparing outputs directly, empty string would match empty string - $(Q) if test -d abc && ! test -d abc/.git && test "`cat abc/.gitcommit | cut -c1-7`" = "$(ABCREV)"; then \ - echo "Compiling local copy of ABC"; \ - elif ! (cd abc 2> /dev/null && rev="`git rev-parse $(ABCREV)`" && test "`git rev-parse HEAD`" = "$$rev"); then \ - test $(ABCPULL) -ne 0 || { echo 'REEBE: NOP abg hc gb qngr naq NOPCHYY frg gb 0 va Znxrsvyr!' | tr 'A-Za-z' 'N-ZA-Mn-za-m'; exit 1; }; \ - echo "Pulling ABC from $(ABCURL):"; set -x; \ - test -d abc || git clone $(ABCURL) abc; \ - cd abc && $(MAKE) DEP= clean && git fetch $(ABCURL) && git checkout $(ABCREV); \ - fi -endif - $(Q) rm -f abc/abc-[0-9a-f]* - $(Q) $(MAKE) -C abc $(S) $(ABCMKARGS) $(if $(filter %.a,$@),PROG="abc-$(ABCREV)",PROG="abc-$(ABCREV)$(EXE)") MSG_PREFIX="$(eval P_OFFSET = 5)$(call P_SHOW)$(eval P_OFFSET = 10) ABC: " $(if $(filter %.a,$@),libabc-$(ABCREV).a) -ifeq ($(ABCREV),default) -.PHONY: abc/abc-$(ABCREV)$(EXE) -.PHONY: abc/libabc-$(ABCREV).a -endif +abc/abc$(EXE) abc/libabc.a: check-git-abc + $(P) + $(Q) mkdir -p abc && $(MAKE) -C $(PROGRAM_PREFIX)abc -f "$(realpath $(YOSYS_SRC)/abc/Makefile)" ABCSRC="$(realpath $(YOSYS_SRC)/abc/)" $(S) $(ABCMKARGS) $(if $(filter %.a,$@),PROG="abc",PROG="abc$(EXE)") MSG_PREFIX="$(eval P_OFFSET = 5)$(call P_SHOW)$(eval P_OFFSET = 10) ABC: " $(if $(filter %.a,$@),libabc.a) -$(PROGRAM_PREFIX)yosys-abc$(EXE): abc/abc-$(ABCREV)$(EXE) - $(P) cp abc/abc-$(ABCREV)$(EXE) $(PROGRAM_PREFIX)yosys-abc$(EXE) +$(PROGRAM_PREFIX)yosys-abc$(EXE): abc/abc$(EXE) + $(P) cp $< $(PROGRAM_PREFIX)yosys-abc$(EXE) -$(PROGRAM_PREFIX)yosys-libabc.a: abc/libabc-$(ABCREV).a - $(P) cp abc/libabc-$(ABCREV).a $(PROGRAM_PREFIX)yosys-libabc.a +$(PROGRAM_PREFIX)yosys-libabc.a: abc/libabc.a + $(P) cp $< $(PROGRAM_PREFIX)yosys-libabc.a ifneq ($(SEED),) SEEDOPT="-S $(SEED)" @@ -841,9 +811,22 @@ else ABCOPT="" endif +# When YOSYS_NOVERIFIC is set as a make variable, also export it to the +# enviornment, so that `YOSYS_NOVERIFIC=1 make test` _and_ +# `make test YOSYS_NOVERIFIC=1` will run with verific disabled. +ifeq ($(YOSYS_NOVERIFIC),1) +export YOSYS_NOVERIFIC +endif + test: $(TARGETS) $(EXTRA_TARGETS) ifeq ($(ENABLE_VERIFIC),1) +ifeq ($(YOSYS_NOVERIFIC),1) + @echo + @echo "Running tests without verific support due to YOSYS_NOVERIFIC=1" + @echo +else +cd tests/verific && bash run-test.sh $(SEEDOPT) +endif endif +cd tests/simple && bash run-test.sh $(SEEDOPT) +cd tests/simple_abc9 && bash run-test.sh $(SEEDOPT) @@ -877,12 +860,15 @@ endif +cd tests/arch/gowin && bash run-test.sh $(SEEDOPT) +cd tests/arch/intel_alm && bash run-test.sh $(SEEDOPT) +cd tests/arch/nexus && bash run-test.sh $(SEEDOPT) - +cd tests/arch/quicklogic && bash run-test.sh $(SEEDOPT) + +cd tests/arch/quicklogic/pp3 && bash run-test.sh $(SEEDOPT) + +cd tests/arch/quicklogic/qlf_k6n10f && bash run-test.sh $(SEEDOPT) +cd tests/arch/gatemate && bash run-test.sh $(SEEDOPT) +cd tests/rpc && bash run-test.sh +cd tests/memfile && bash run-test.sh +cd tests/verilog && bash run-test.sh +cd tests/xprop && bash run-test.sh $(SEEDOPT) + +cd tests/fmt && bash run-test.sh + +cd tests/cxxrtl && bash run-test.sh @echo "" @echo " Passed \"make test\"." @echo "" @@ -912,7 +898,7 @@ ystests: $(TARGETS) $(EXTRA_TARGETS) # Unit test unit-test: libyosys.so @$(MAKE) -C $(UNITESTPATH) CXX="$(CXX)" CPPFLAGS="$(CPPFLAGS)" \ - CXXFLAGS="$(CXXFLAGS)" LDLIBS="$(LDLIBS)" ROOTPATH="$(CURDIR)" + CXXFLAGS="$(CXXFLAGS)" LIBS="$(LIBS)" ROOTPATH="$(CURDIR)" clean-unit-test: @$(MAKE) -C $(UNITESTPATH) clean @@ -965,17 +951,47 @@ docs/source/cmd/abc.rst: $(TARGETS) $(EXTRA_TARGETS) mkdir -p docs/source/cmd ./$(PROGRAM_PREFIX)yosys -p 'help -write-rst-command-reference-manual' -PHONY: docs/gen_images docs/guidelines +PHONY: docs/gen_examples docs/gen_images docs/guidelines docs/usage docs/reqs +docs/gen_examples: + $(Q) $(MAKE) -C docs examples + docs/gen_images: - $(Q) $(MAKE) -C docs/images all + $(Q) $(MAKE) -C docs images DOCS_GUIDELINE_FILES := GettingStarted CodingStyle -docs/guidelines: - $(Q) mkdir -p docs/source/temp - $(Q) cp -f $(addprefix guidelines/,$(DOCS_GUIDELINE_FILES)) docs/source/temp +docs/guidelines docs/source/generated: + $(Q) mkdir -p docs/source/generated + $(Q) cp -f $(addprefix guidelines/,$(DOCS_GUIDELINE_FILES)) docs/source/generated + +# some commands return an error and print the usage text to stderr +define DOC_USAGE_STDERR +docs/source/generated/$(1): $(PROGRAM_PREFIX)$(1) docs/source/generated + -$(Q) ./$$< --help 2> $$@ +endef +DOCS_USAGE_STDERR := yosys-config yosys-filterlib + +# The in-tree ABC (yosys-abc) is only built when ABCEXTERNAL is not set. +ifeq ($(ABCEXTERNAL),) +DOCS_USAGE_STDERR += yosys-abc +endif + +$(foreach usage,$(DOCS_USAGE_STDERR),$(eval $(call DOC_USAGE_STDERR,$(usage)))) + +# others print to stdout +define DOC_USAGE_STDOUT +docs/source/generated/$(1): $(PROGRAM_PREFIX)$(1) docs/source/generated + $(Q) ./$$< --help > $$@ +endef +DOCS_USAGE_STDOUT := yosys yosys-smtbmc yosys-witness +$(foreach usage,$(DOCS_USAGE_STDOUT),$(eval $(call DOC_USAGE_STDOUT,$(usage)))) + +docs/usage: $(addprefix docs/source/generated/,$(DOCS_USAGE_STDOUT) $(DOCS_USAGE_STDERR)) + +docs/reqs: + $(Q) $(MAKE) -C docs reqs DOC_TARGET ?= html -docs: docs/source/cmd/abc.rst docs/gen_images docs/guidelines +docs: docs/source/cmd/abc.rst docs/gen_examples docs/gen_images docs/guidelines docs/usage docs/reqs $(Q) $(MAKE) -C docs $(DOC_TARGET) clean: @@ -993,8 +1009,8 @@ clean: rm -rf vloghtb/Makefile vloghtb/refdat vloghtb/rtl vloghtb/scripts vloghtb/spec vloghtb/check_yosys vloghtb/vloghammer_tb.tar.bz2 vloghtb/temp vloghtb/log_test_* rm -f tests/svinterfaces/*.log_stdout tests/svinterfaces/*.log_stderr tests/svinterfaces/dut_result.txt tests/svinterfaces/reference_result.txt tests/svinterfaces/a.out tests/svinterfaces/*_syn.v tests/svinterfaces/*.diff rm -f tests/tools/cmp_tbdata - $(MAKE) -C docs clean - $(MAKE) -C docs/images clean + -$(MAKE) -C docs clean + -$(MAKE) -C docs/images clean rm -rf docs/source/cmd docs/util/__pycache__ clean-abc: @@ -1011,16 +1027,17 @@ coverage: genhtml coverage.info --output-directory coverage_html qtcreator: + echo "$(CXXFLAGS)" | grep -o '\-D[^ ]*' | tr ' ' '\n' | sed 's/-D/#define /' | sed 's/=/ /'> qtcreator.config { for file in $(basename $(OBJS)); do \ for prefix in cc y l; do if [ -f $${file}.$${prefix} ]; then echo $$file.$${prefix}; fi; done \ done; find backends frontends kernel libs passes -type f \( -name '*.h' -o -name '*.hh' \); } > qtcreator.files { echo .; find backends frontends kernel libs passes -type f \( -name '*.h' -o -name '*.hh' \) -printf '%h\n' | sort -u; } > qtcreator.includes - touch qtcreator.config qtcreator.creator + touch qtcreator.creator vcxsrc: $(GENFILES) $(EXTRA_TARGETS) rm -rf yosys-win32-vcxsrc-$(YOSYS_VER){,.zip} set -e; for f in `ls $(filter %.cc %.cpp,$(GENFILES)) $(addsuffix .cc,$(basename $(OBJS))) $(addsuffix .cpp,$(basename $(OBJS))) 2> /dev/null`; do \ - echo "Analyse: $$f" >&2; cpp -std=c++11 -MM -I. -D_YOSYS_ $$f; done | sed 's,.*:,,; s,//*,/,g; s,/[^/]*/\.\./,/,g; y, \\,\n\n,;' | grep '^[^/]' | sort -u | grep -v kernel/version_ > srcfiles.txt + echo "Analyse: $$f" >&2; cpp -std=c++17 -MM -I. -D_YOSYS_ $$f; done | sed 's,.*:,,; s,//*,/,g; s,/[^/]*/\.\./,/,g; y, \\,\n\n,;' | grep '^[^/]' | sort -u | grep -v kernel/version_ > srcfiles.txt bash misc/create_vcxsrc.sh yosys-win32-vcxsrc $(YOSYS_VER) $(GIT_REV) echo "namespace Yosys { extern const char *yosys_version_str; const char *yosys_version_str=\"Yosys (Version Information Unavailable)\"; }" > kernel/version.cc zip yosys-win32-vcxsrc-$(YOSYS_VER)/genfiles.zip $(GENFILES) kernel/version.cc @@ -1058,14 +1075,6 @@ config-gcc-static: clean config-afl-gcc: clean echo 'CONFIG := afl-gcc' > Makefile.conf -config-emcc: clean - echo 'CONFIG := emcc' > Makefile.conf - echo 'ENABLE_TCL := 0' >> Makefile.conf - echo 'ENABLE_ABC := 0' >> Makefile.conf - echo 'ENABLE_PLUGINS := 0' >> Makefile.conf - echo 'ENABLE_READLINE := 0' >> Makefile.conf - echo 'ENABLE_ZLIB := 0' >> Makefile.conf - config-wasi: clean echo 'CONFIG := wasi' > Makefile.conf echo 'ENABLE_TCL := 0' >> Makefile.conf @@ -1107,8 +1116,8 @@ echo-yosys-ver: echo-git-rev: @echo "$(GIT_REV)" -echo-abc-rev: - @echo "$(ABCREV)" +echo-cxx: + @echo "$(CXX)" -include libs/*/*.d -include frontends/*/*.d diff --git a/yosys/README.md b/yosys/README.md index 5e5a8ec3e12..bb1c4d443e4 100644 --- a/yosys/README.md +++ b/yosys/README.md @@ -1,7 +1,7 @@ ``` yosys -- Yosys Open SYnthesis Suite -Copyright (C) 2012 - 2020 Claire Xenia Wolf +Copyright (C) 2012 - 2024 Claire Xenia Wolf Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -71,7 +71,7 @@ Many Linux distributions also provide Yosys binaries, some more up to date than Building from Source ==================== -You need a C++ compiler with C++11 support (up-to-date CLANG or GCC is +You need a C++ compiler with C++17 support (up-to-date CLANG or GCC is recommended) and some standard tools such as GNU Flex, GNU Bison, and GNU Make. TCL, readline and libffi are optional (see ``ENABLE_*`` settings in Makefile). Xdot (graphviz) is used by the ``show`` command in yosys to display schematics. @@ -105,11 +105,17 @@ For Cygwin use the following command to install all prerequisites, or select the setup-x86_64.exe -q --packages=bison,flex,gcc-core,gcc-g++,git,libffi-devel,libreadline-devel,make,pkg-config,python3,tcl-devel,boost-build,zlib-devel -To configure the build system to use a specific compiler, use one of +The environment variable `CXX` can be used to control the C++ compiler used, or +run one of the following: $ make config-clang $ make config-gcc +Note that these will result in `make` ignoring the `CXX` environment variable, +unless `CXX` is assigned in the call to make, e.g. + + $ make CXX=$CXX + For other compilers and build configurations it might be necessary to make some changes to the config section of the Makefile. @@ -587,11 +593,19 @@ from SystemVerilog: - enums are supported (including inside packages) - but are currently not strongly typed -- packed structs and unions are supported. +- packed structs and unions are supported + - arrays of packed structs/unions are currently not supported + - structure literals are currently not supported + +- multidimensional arrays are supported + - array assignment of unpacked arrays is currently not supported + - array literals are currently not supported - SystemVerilog interfaces (SVIs) are supported. Modports for specifying whether ports are inputs or outputs are supported. +- Assignments within expressions are supported. + Building the documentation ========================== @@ -602,10 +616,12 @@ Simply visit https://yosys.readthedocs.io/en/latest/ instead. In addition to those packages listed above for building Yosys from source, the following are used for building the website: - $ sudo apt-get install pdf2svg faketime + $ sudo apt install pdf2svg faketime PDFLaTeX, included with most LaTeX distributions, is also needed during the -build process for the website. +build process for the website. Or, run the following: + + $ sudo apt install texlive-latex-base texlive-latex-extra latexmk The Python package, Sphinx, is needed along with those listed in `docs/source/requirements.txt`: diff --git a/yosys/backends/aiger/aiger.cc b/yosys/backends/aiger/aiger.cc index bb804f230fb..f2cb5d9bcc7 100644 --- a/yosys/backends/aiger/aiger.cc +++ b/yosys/backends/aiger/aiger.cc @@ -54,6 +54,8 @@ struct AigerWriter vector> aig_gates; vector aig_latchin, aig_latchinit, aig_outputs; + vector bit2aig_stack; + size_t next_loop_check = 1024; int aig_m = 0, aig_i = 0, aig_l = 0, aig_o = 0, aig_a = 0; int aig_b = 0, aig_c = 0, aig_j = 0, aig_f = 0; @@ -65,6 +67,8 @@ struct AigerWriter int initstate_ff = 0; dict ywmap_clocks; + vector ywmap_asserts; + vector ywmap_assumes; int mkgate(int a0, int a1) { @@ -81,6 +85,23 @@ struct AigerWriter return it->second; } + if (bit2aig_stack.size() == next_loop_check) { + for (size_t i = 0; i < next_loop_check; ++i) + { + SigBit report_bit = bit2aig_stack[i]; + if (report_bit != bit) + continue; + for (size_t j = i; j < next_loop_check; ++j) { + report_bit = bit2aig_stack[j]; + if (report_bit.is_wire() && report_bit.wire->name.isPublic()) + break; + } + log_error("Found combinational logic loop while processing signal %s.\n", log_signal(report_bit)); + } + next_loop_check *= 2; + } + bit2aig_stack.push_back(bit); + // NB: Cannot use iterator returned from aig_map.insert() // since this function is called recursively @@ -101,6 +122,8 @@ struct AigerWriter a = initstate_ff; } + bit2aig_stack.pop_back(); + if (bit == State::Sx || bit == State::Sz) log_error("Design contains 'x' or 'z' bits. Use 'setundef' to replace those constants.\n"); @@ -248,6 +271,7 @@ struct AigerWriter unused_bits.erase(A); unused_bits.erase(EN); asserts.push_back(make_pair(A, EN)); + ywmap_asserts.push_back(cell); continue; } @@ -258,6 +282,7 @@ struct AigerWriter unused_bits.erase(A); unused_bits.erase(EN); assumes.push_back(make_pair(A, EN)); + ywmap_assumes.push_back(cell); continue; } @@ -299,6 +324,9 @@ struct AigerWriter continue; } + if (cell->type == ID($scopeinfo)) + continue; + log_error("Unsupported cell type: %s (%s)\n", log_id(cell->type), log_id(cell)); } @@ -828,6 +856,19 @@ struct AigerWriter for (auto &it : init_lines) json.value(it.second); json.end_array(); + + json.name("asserts"); + json.begin_array(); + for (Cell *cell : ywmap_asserts) + json.value(witness_path(cell)); + json.end_array(); + + json.name("assumes"); + json.begin_array(); + for (Cell *cell : ywmap_assumes) + json.value(witness_path(cell)); + json.end_array(); + json.end_object(); } diff --git a/yosys/backends/blif/blif.cc b/yosys/backends/blif/blif.cc index 8e2c088c484..788b7f951f2 100644 --- a/yosys/backends/blif/blif.cc +++ b/yosys/backends/blif/blif.cc @@ -226,6 +226,9 @@ struct BlifDumper for (auto cell : module->cells()) { + if (cell->type == ID($scopeinfo)) + continue; + if (config->unbuf_types.count(cell->type)) { auto portnames = config->unbuf_types.at(cell->type); f << stringf(".names %s %s\n1 1\n", diff --git a/yosys/backends/btor/test_cells.sh b/yosys/backends/btor/test_cells.sh index 0a011932d22..f8bd797825e 100755 --- a/yosys/backends/btor/test_cells.sh +++ b/yosys/backends/btor/test_cells.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -ex diff --git a/yosys/backends/cxxrtl/Makefile.inc b/yosys/backends/cxxrtl/Makefile.inc index aaa304502e0..dd77d2ad360 100644 --- a/yosys/backends/cxxrtl/Makefile.inc +++ b/yosys/backends/cxxrtl/Makefile.inc @@ -1,2 +1,11 @@ OBJS += backends/cxxrtl/cxxrtl_backend.o + +$(eval $(call add_include_file,backends/cxxrtl/runtime/cxxrtl/cxxrtl.h)) +$(eval $(call add_include_file,backends/cxxrtl/runtime/cxxrtl/cxxrtl_vcd.h)) +$(eval $(call add_include_file,backends/cxxrtl/runtime/cxxrtl/cxxrtl_time.h)) +$(eval $(call add_include_file,backends/cxxrtl/runtime/cxxrtl/cxxrtl_replay.h)) +$(eval $(call add_include_file,backends/cxxrtl/runtime/cxxrtl/capi/cxxrtl_capi.cc)) +$(eval $(call add_include_file,backends/cxxrtl/runtime/cxxrtl/capi/cxxrtl_capi.h)) +$(eval $(call add_include_file,backends/cxxrtl/runtime/cxxrtl/capi/cxxrtl_capi_vcd.cc)) +$(eval $(call add_include_file,backends/cxxrtl/runtime/cxxrtl/capi/cxxrtl_capi_vcd.h)) diff --git a/yosys/backends/cxxrtl/cxxrtl_backend.cc b/yosys/backends/cxxrtl/cxxrtl_backend.cc index 1b13985ab4e..8dc14863d60 100644 --- a/yosys/backends/cxxrtl/cxxrtl_backend.cc +++ b/yosys/backends/cxxrtl/cxxrtl_backend.cc @@ -24,6 +24,8 @@ #include "kernel/celltypes.h" #include "kernel/mem.h" #include "kernel/log.h" +#include "kernel/fmt.h" +#include "kernel/scopeinfo.h" USING_YOSYS_NAMESPACE PRIVATE_NAMESPACE_BEGIN @@ -217,7 +219,7 @@ bool is_internal_cell(RTLIL::IdString type) bool is_effectful_cell(RTLIL::IdString type) { - return type.isPublic(); + return type.in(ID($print), ID($check)); } bool is_cxxrtl_blackbox_cell(const RTLIL::Cell *cell) @@ -281,6 +283,7 @@ struct FlowGraph { CONNECT, CELL_SYNC, CELL_EVAL, + EFFECT_SYNC, PROCESS_SYNC, PROCESS_CASE, MEM_RDPORT, @@ -290,6 +293,7 @@ struct FlowGraph { Type type; RTLIL::SigSig connect = {}; const RTLIL::Cell *cell = nullptr; + std::vector cells; const RTLIL::Process *process = nullptr; const Mem *mem = nullptr; int portidx; @@ -477,6 +481,15 @@ struct FlowGraph { return node; } + Node *add_effect_sync_node(std::vector cells) + { + Node *node = new Node; + node->type = Node::Type::EFFECT_SYNC; + node->cells = cells; + nodes.push_back(node); + return node; + } + // Processes void add_case_rule_defs_uses(Node *node, const RTLIL::CaseRule *case_) { @@ -593,22 +606,30 @@ std::vector split_by(const std::string &str, const std::string &sep return result; } -std::string escape_cxx_string(const std::string &input) +std::string escape_c_string(const std::string &input) { - std::string output = "\""; + std::string output; + output.push_back('"'); for (auto c : input) { if (::isprint(c)) { if (c == '\\') output.push_back('\\'); output.push_back(c); } else { - char l = c & 0xf, h = (c >> 4) & 0xf; - output.append("\\x"); - output.push_back((h < 10 ? '0' + h : 'a' + h - 10)); - output.push_back((l < 10 ? '0' + l : 'a' + l - 10)); + char l = c & 0x3, m = (c >> 3) & 0x3, h = (c >> 6) & 0x3; + output.append("\\"); + output.push_back('0' + h); + output.push_back('0' + m); + output.push_back('0' + l); } } output.push_back('"'); + return output; +} + +std::string escape_cxx_string(const std::string &input) +{ + std::string output = escape_c_string(input); if (output.find('\0') != std::string::npos) { output.insert(0, "std::string {"); output.append(stringf(", %zu}", input.size())); @@ -616,6 +637,20 @@ std::string escape_cxx_string(const std::string &input) return output; } +std::string basename(const std::string &filepath) +{ +#ifdef _WIN32 + const std::string dir_seps = "\\/"; +#else + const std::string dir_seps = "/"; +#endif + size_t sep_pos = filepath.find_last_of(dir_seps); + if (sep_pos != std::string::npos) + return filepath.substr(sep_pos + 1); + else + return filepath; +} + template std::string get_hdl_name(T *object) { @@ -681,6 +716,7 @@ struct CxxrtlWorker { bool split_intf = false; std::string intf_filename; std::string design_ns = "cxxrtl_design"; + std::string print_output = "std::cout"; std::ostream *impl_f = nullptr; std::ostream *intf_f = nullptr; @@ -1102,7 +1138,7 @@ struct CxxrtlWorker { f << indent << "// cell " << cell->name.str() << " syncs\n"; for (auto conn : cell->connections()) if (cell->output(conn.first)) - if (is_cxxrtl_sync_port(cell, conn.first)) { + if (is_cxxrtl_sync_port(cell, conn.first) && !conn.second.empty()) { f << indent; dump_sigspec_lhs(conn.second, for_debug); f << " = " << mangle(cell) << access << mangle_wire_name(conn.first) << ".curr;\n"; @@ -1189,6 +1225,144 @@ struct CxxrtlWorker { } } + void dump_print(const RTLIL::Cell *cell) + { + Fmt fmt; + fmt.parse_rtlil(cell); + + f << indent << "if ("; + dump_sigspec_rhs(cell->getPort(ID::EN)); + f << " == value<1>{1u}) {\n"; + inc_indent(); + dict fmt_args; + f << indent << "struct : public lazy_fmt {\n"; + inc_indent(); + f << indent << "std::string operator() () const override {\n"; + inc_indent(); + fmt.emit_cxxrtl(f, indent, [&](const RTLIL::SigSpec &sig) { + if (sig.size() == 0) + f << "value<0>()"; + else { + std::string arg_name = "arg" + std::to_string(fmt_args.size()); + fmt_args[arg_name] = sig; + f << arg_name; + } + }, "performer"); + dec_indent(); + f << indent << "}\n"; + f << indent << "struct performer *performer;\n"; + for (auto arg : fmt_args) + f << indent << "value<" << arg.second.size() << "> " << arg.first << ";\n"; + dec_indent(); + f << indent << "} formatter;\n"; + f << indent << "formatter.performer = performer;\n"; + for (auto arg : fmt_args) { + f << indent << "formatter." << arg.first << " = "; + dump_sigspec_rhs(arg.second); + f << ";\n"; + } + f << indent << "if (performer) {\n"; + inc_indent(); + f << indent << "static const metadata_map attributes = "; + dump_metadata_map(cell->attributes); + f << ";\n"; + f << indent << "performer->on_print(formatter, attributes);\n"; + dec_indent(); + f << indent << "} else {\n"; + inc_indent(); + f << indent << print_output << " << formatter();\n"; + dec_indent(); + f << indent << "}\n"; + dec_indent(); + f << indent << "}\n"; + } + + void dump_effect(const RTLIL::Cell *cell) + { + Fmt fmt; + fmt.parse_rtlil(cell); + + f << indent << "if ("; + dump_sigspec_rhs(cell->getPort(ID::EN)); + f << ") {\n"; + inc_indent(); + dict fmt_args; + f << indent << "struct : public lazy_fmt {\n"; + inc_indent(); + f << indent << "std::string operator() () const override {\n"; + inc_indent(); + fmt.emit_cxxrtl(f, indent, [&](const RTLIL::SigSpec &sig) { + if (sig.size() == 0) + f << "value<0>()"; + else { + std::string arg_name = "arg" + std::to_string(fmt_args.size()); + fmt_args[arg_name] = sig; + f << arg_name; + } + }, "performer"); + dec_indent(); + f << indent << "}\n"; + f << indent << "struct performer *performer;\n"; + for (auto arg : fmt_args) + f << indent << "value<" << arg.second.size() << "> " << arg.first << ";\n"; + dec_indent(); + f << indent << "} formatter;\n"; + f << indent << "formatter.performer = performer;\n"; + for (auto arg : fmt_args) { + f << indent << "formatter." << arg.first << " = "; + dump_sigspec_rhs(arg.second); + f << ";\n"; + } + if (cell->hasPort(ID::A)) { + f << indent << "bool condition = (bool)"; + dump_sigspec_rhs(cell->getPort(ID::A)); + f << ";\n"; + } + f << indent << "if (performer) {\n"; + inc_indent(); + f << indent << "static const metadata_map attributes = "; + dump_metadata_map(cell->attributes); + f << ";\n"; + if (cell->type == ID($print)) { + f << indent << "performer->on_print(formatter, attributes);\n"; + } else if (cell->type == ID($check)) { + std::string flavor = cell->getParam(ID::FLAVOR).decode_string(); + f << indent << "performer->on_check("; + if (flavor == "assert") + f << "flavor::ASSERT"; + else if (flavor == "assume") + f << "flavor::ASSUME"; + else if (flavor == "live") + f << "flavor::ASSERT_EVENTUALLY"; + else if (flavor == "fair") + f << "flavor::ASSUME_EVENTUALLY"; + else if (flavor == "cover") + f << "flavor::COVER"; + else log_assert(false); + f << ", condition, formatter, attributes);\n"; + } else log_assert(false); + dec_indent(); + f << indent << "} else {\n"; + inc_indent(); + if (cell->type == ID($print)) { + f << indent << print_output << " << formatter();\n"; + } else if (cell->type == ID($check)) { + std::string flavor = cell->getParam(ID::FLAVOR).decode_string(); + if (flavor == "assert" || flavor == "assume") { + f << indent << "if (!condition) {\n"; + inc_indent(); + f << indent << "std::cerr << formatter();\n"; + dec_indent(); + f << indent << "}\n"; + f << indent << "CXXRTL_ASSERT(condition && \"Check failed\");\n"; + } + } else log_assert(false); + dec_indent(); + f << indent << "}\n"; + dec_indent(); + f << indent << "}\n"; + } + void dump_cell_eval(const RTLIL::Cell *cell, bool for_debug = false) { std::vector inlined_cells; @@ -1202,6 +1376,38 @@ struct CxxrtlWorker { f << " = "; dump_cell_expr(cell, for_debug); f << ";\n"; + // Effectful cells + } else if (is_effectful_cell(cell->type)) { + log_assert(!for_debug); + + // Sync effectful cells are grouped into EFFECT_SYNC nodes in the FlowGraph. + log_assert(!cell->getParam(ID::TRG_ENABLE).as_bool() || (cell->getParam(ID::TRG_ENABLE).as_bool() && cell->getParam(ID::TRG_WIDTH).as_int() == 0)); + + if (!cell->getParam(ID::TRG_ENABLE).as_bool()) { // async effectful cell + f << indent << "auto " << mangle(cell) << "_next = "; + dump_sigspec_rhs(cell->getPort(ID::EN)); + f << ".concat("; + if (cell->type == ID($print)) + dump_sigspec_rhs(cell->getPort(ID::ARGS)); + else if (cell->type == ID($check)) + dump_sigspec_rhs(cell->getPort(ID::A)); + else log_assert(false); + f << ").val();\n"; + + f << indent << "if (" << mangle(cell) << " != " << mangle(cell) << "_next) {\n"; + inc_indent(); + dump_effect(cell); + f << indent << mangle(cell) << " = " << mangle(cell) << "_next;\n"; + dec_indent(); + f << indent << "}\n"; + } else { // initial effectful cell + f << indent << "if (!" << mangle(cell) << ") {\n"; + inc_indent(); + dump_effect(cell); + f << indent << mangle(cell) << " = value<1>{1u};\n"; + dec_indent(); + f << indent << "}\n"; + } // Flip-flops } else if (is_ff_cell(cell->type)) { log_assert(!for_debug); @@ -1298,7 +1504,7 @@ struct CxxrtlWorker { f << indent; dump_sigspec_lhs(cell->getPort(ID::Q)); f << " = "; - dump_sigspec_lhs(cell->getPort(ID::Q)); + dump_sigspec_rhs(cell->getPort(ID::Q)); f << ".update("; dump_const(RTLIL::Const(RTLIL::S1, cell->getParam(ID::WIDTH).as_int())); f << ", "; @@ -1310,7 +1516,7 @@ struct CxxrtlWorker { f << indent; dump_sigspec_lhs(cell->getPort(ID::Q)); f << " = "; - dump_sigspec_lhs(cell->getPort(ID::Q)); + dump_sigspec_rhs(cell->getPort(ID::Q)); f << ".update("; dump_const(RTLIL::Const(RTLIL::S0, cell->getParam(ID::WIDTH).as_int())); f << ", "; @@ -1321,8 +1527,9 @@ struct CxxrtlWorker { } else if (is_internal_cell(cell->type)) { log_cmd_error("Unsupported internal cell `%s'.\n", cell->type.c_str()); // User cells + } else if (for_debug) { + // Outlines are called on demand when computing the value of a debug item. Nothing to do here. } else { - log_assert(!for_debug); log_assert(cell->known()); bool buffered_inputs = false; const char *access = is_cxxrtl_blackbox_cell(cell) ? "->" : "."; @@ -1382,11 +1589,11 @@ struct CxxrtlWorker { }; if (buffered_inputs) { // If we have any buffered inputs, there's no chance of converging immediately. - f << indent << mangle(cell) << access << "eval();\n"; + f << indent << mangle(cell) << access << "eval(performer);\n"; f << indent << "converged = false;\n"; assign_from_outputs(/*cell_converged=*/false); } else { - f << indent << "if (" << mangle(cell) << access << "eval()) {\n"; + f << indent << "if (" << mangle(cell) << access << "eval(performer)) {\n"; inc_indent(); assign_from_outputs(/*cell_converged=*/true); dec_indent(); @@ -1580,6 +1787,47 @@ struct CxxrtlWorker { } } + void dump_cell_effect_sync(std::vector &cells) + { + log_assert(!cells.empty()); + const auto &trg = cells[0]->getPort(ID::TRG); + const auto &trg_polarity = cells[0]->getParam(ID::TRG_POLARITY); + + f << indent << "if ("; + for (int i = 0; i < trg.size(); i++) { + RTLIL::SigBit trg_bit = trg[i]; + trg_bit = sigmaps[trg_bit.wire->module](trg_bit); + log_assert(trg_bit.wire); + + if (i != 0) + f << " || "; + + if (trg_polarity[i] == State::S1) + f << "posedge_"; + else + f << "negedge_"; + f << mangle(trg_bit); + } + f << ") {\n"; + inc_indent(); + std::sort(cells.begin(), cells.end(), [](const RTLIL::Cell *a, const RTLIL::Cell *b) { + return a->getParam(ID::PRIORITY).as_int() > b->getParam(ID::PRIORITY).as_int(); + }); + for (auto cell : cells) { + log_assert(cell->getParam(ID::TRG_ENABLE).as_bool()); + log_assert(cell->getPort(ID::TRG) == trg); + log_assert(cell->getParam(ID::TRG_POLARITY) == trg_polarity); + + std::vector inlined_cells; + collect_cell_eval(cell, /*for_debug=*/false, inlined_cells); + dump_inlined_cells(inlined_cells); + dump_effect(cell); + } + dec_indent(); + + f << indent << "}\n"; + } + void dump_mem_rdport(const Mem *mem, int portidx, bool for_debug = false) { auto &port = mem->rd_ports[portidx]; @@ -1899,6 +2147,10 @@ struct CxxrtlWorker { } } for (auto cell : module->cells()) { + // Async and initial effectful cells have additional state, which must be reset as well. + if (is_effectful_cell(cell->type)) + if (!cell->getParam(ID::TRG_ENABLE).as_bool() || cell->getParam(ID::TRG_WIDTH).as_int() == 0) + f << indent << mangle(cell) << " = {};\n"; if (is_internal_cell(cell->type)) continue; f << indent << mangle(cell); @@ -1946,6 +2198,9 @@ struct CxxrtlWorker { case FlowGraph::Node::Type::CELL_EVAL: dump_cell_eval(node.cell); break; + case FlowGraph::Node::Type::EFFECT_SYNC: + dump_cell_effect_sync(node.cells); + break; case FlowGraph::Node::Type::PROCESS_CASE: dump_process_case(node.process); break; @@ -2009,27 +2264,116 @@ struct CxxrtlWorker { if (wire_type.type == WireType::MEMBER && edge_wires[wire]) f << indent << "prev_" << mangle(wire) << " = " << mangle(wire) << ";\n"; if (wire_type.is_buffered()) - f << indent << "if (" << mangle(wire) << ".commit()) changed = true;\n"; + f << indent << "if (" << mangle(wire) << ".commit(observer)) changed = true;\n"; } if (!module->get_bool_attribute(ID(cxxrtl_blackbox))) { for (auto &mem : mod_memories[module]) { if (!writable_memories.count({module, mem.memid})) continue; - f << indent << "if (" << mangle(&mem) << ".commit()) changed = true;\n"; + f << indent << "if (" << mangle(&mem) << ".commit(observer)) changed = true;\n"; } for (auto cell : module->cells()) { if (is_internal_cell(cell->type)) continue; const char *access = is_cxxrtl_blackbox_cell(cell) ? "->" : "."; - f << indent << "if (" << mangle(cell) << access << "commit()) changed = true;\n"; + f << indent << "if (" << mangle(cell) << access << "commit(observer)) changed = true;\n"; } } f << indent << "return changed;\n"; dec_indent(); } + void dump_serialized_metadata(const dict &metadata_map) { + // Creating thousands metadata_map objects using initializer lists in a single function results in one of: + // 1. Megabytes of stack usage (with __attribute__((optnone))). + // 2. Minutes of compile time (without __attribute__((optnone))). + // So, don't create them. + std::string data; + auto put_u64 = [&](uint64_t value) { + for (size_t count = 0; count < 8; count++) { + data += (char)(value >> 56); + value <<= 8; + } + }; + for (auto metadata_item : metadata_map) { + if (!metadata_item.first.isPublic()) + continue; + if (metadata_item.second.size() > 64 && (metadata_item.second.flags & RTLIL::CONST_FLAG_STRING) == 0) { + f << indent << "/* attribute " << metadata_item.first.str().substr(1) << " is over 64 bits wide */\n"; + continue; + } + data += metadata_item.first.str().substr(1) + '\0'; + // In Yosys, a real is a type of string. + if (metadata_item.second.flags & RTLIL::CONST_FLAG_REAL) { + double dvalue = std::stod(metadata_item.second.decode_string()); + uint64_t uvalue; + static_assert(sizeof(dvalue) == sizeof(uvalue), "double must be 64 bits in size"); + memcpy(&uvalue, &dvalue, sizeof(uvalue)); + data += 'd'; + put_u64(uvalue); + } else if (metadata_item.second.flags & RTLIL::CONST_FLAG_STRING) { + data += 's'; + data += metadata_item.second.decode_string(); + data += '\0'; + } else if (metadata_item.second.flags & RTLIL::CONST_FLAG_SIGNED) { + data += 'i'; + put_u64((uint64_t)metadata_item.second.as_int(/*is_signed=*/true)); + } else { + data += 'u'; + put_u64(metadata_item.second.as_int(/*is_signed=*/false)); + } + } + f << escape_c_string(data); + } + + void dump_metadata_map(const dict &metadata_map) { + if (metadata_map.empty()) { + f << "metadata_map()"; + } else { + f << "metadata_map({\n"; + inc_indent(); + for (auto metadata_item : metadata_map) { + if (!metadata_item.first.isPublic()) + continue; + if (metadata_item.second.size() > 64 && (metadata_item.second.flags & RTLIL::CONST_FLAG_STRING) == 0) { + f << indent << "/* attribute " << metadata_item.first.str().substr(1) << " is over 64 bits wide */\n"; + continue; + } + f << indent << "{ " << escape_cxx_string(metadata_item.first.str().substr(1)) << ", "; + // In Yosys, a real is a type of string. + if (metadata_item.second.flags & RTLIL::CONST_FLAG_REAL) { + f << std::showpoint << std::stod(metadata_item.second.decode_string()) << std::noshowpoint; + } else if (metadata_item.second.flags & RTLIL::CONST_FLAG_STRING) { + f << escape_cxx_string(metadata_item.second.decode_string()); + } else if (metadata_item.second.flags & RTLIL::CONST_FLAG_SIGNED) { + f << "INT64_C(" << metadata_item.second.as_int(/*is_signed=*/true) << ")"; + } else { + f << "UINT64_C(" << metadata_item.second.as_int(/*is_signed=*/false) << ")"; + } + f << " },\n"; + } + dec_indent(); + f << indent << "})"; + } + } + + void dump_debug_attrs(const RTLIL::AttrObject *object, bool serialize = true) + { + dict attributes = object->attributes; + // Inherently necessary to get access to the object, so a waste of space to emit. + attributes.erase(ID::hdlname); + // Internal Yosys attribute that should be removed but isn't. + attributes.erase(ID::module_not_derived); + if (serialize) { + dump_serialized_metadata(attributes); + } else { + dump_metadata_map(attributes); + } + } + void dump_debug_info_method(RTLIL::Module *module) { + size_t count_scopes = 0; size_t count_public_wires = 0; size_t count_member_wires = 0; size_t count_undriven = 0; @@ -2042,139 +2386,195 @@ struct CxxrtlWorker { size_t count_skipped_wires = 0; inc_indent(); f << indent << "assert(path.empty() || path[path.size() - 1] == ' ');\n"; - for (auto wire : module->wires()) { - const auto &debug_wire_type = debug_wire_types[wire]; - if (!wire->name.isPublic()) - continue; - count_public_wires++; - switch (debug_wire_type.type) { - case WireType::BUFFERED: - case WireType::MEMBER: { - // Member wire - std::vector flags; - - if (wire->port_input && wire->port_output) - flags.push_back("INOUT"); - else if (wire->port_output) - flags.push_back("OUTPUT"); - else if (wire->port_input) - flags.push_back("INPUT"); - - bool has_driven_sync = false; - bool has_driven_comb = false; - bool has_undriven = false; - if (!module->get_bool_attribute(ID(cxxrtl_blackbox))) { - for (auto bit : SigSpec(wire)) - if (!bit_has_state.count(bit)) - has_undriven = true; - else if (bit_has_state[bit]) - has_driven_sync = true; - else - has_driven_comb = true; - } else if (wire->port_output) { - switch (cxxrtl_port_type(module, wire->name)) { - case CxxrtlPortType::SYNC: - has_driven_sync = true; - break; - case CxxrtlPortType::COMB: - has_driven_comb = true; - break; - case CxxrtlPortType::UNKNOWN: - has_driven_sync = has_driven_comb = true; - break; - } - } else { - has_undriven = true; - } - if (has_undriven) - flags.push_back("UNDRIVEN"); - if (!has_driven_sync && !has_driven_comb && has_undriven) - count_undriven++; - if (has_driven_sync) - flags.push_back("DRIVEN_SYNC"); - if (has_driven_sync && !has_driven_comb && !has_undriven) - count_driven_sync++; - if (has_driven_comb) - flags.push_back("DRIVEN_COMB"); - if (!has_driven_sync && has_driven_comb && !has_undriven) - count_driven_comb++; - if (has_driven_sync + has_driven_comb + has_undriven > 1) - count_mixed_driver++; - - f << indent << "items.add(path + " << escape_cxx_string(get_hdl_name(wire)); - f << ", debug_item(" << mangle(wire) << ", " << wire->start_offset; - bool first = true; - for (auto flag : flags) { - if (first) { - first = false; - f << ", "; + f << indent << "if (scopes) {\n"; + inc_indent(); + // The module is responsible for adding its own scope. + f << indent << "scopes->add(path.empty() ? path : path.substr(0, path.size() - 1), "; + f << escape_cxx_string(get_hdl_name(module)) << ", "; + dump_debug_attrs(module, /*serialize=*/false); + f << ", std::move(cell_attrs));\n"; + count_scopes++; + // If there were any submodules that were flattened, the module is also responsible for adding them. + for (auto cell : module->cells()) { + if (cell->type != ID($scopeinfo)) continue; + if (cell->getParam(ID::TYPE).decode_string() == "module") { + auto module_attrs = scopeinfo_attributes(cell, ScopeinfoAttrs::Module); + auto cell_attrs = scopeinfo_attributes(cell, ScopeinfoAttrs::Cell); + cell_attrs.erase(ID::module_not_derived); + f << indent << "scopes->add(path, " << escape_cxx_string(get_hdl_name(cell)) << ", "; + f << escape_cxx_string(cell->get_string_attribute(ID(module))) << ", "; + dump_serialized_metadata(module_attrs); + f << ", "; + dump_serialized_metadata(cell_attrs); + f << ");\n"; + } else log_assert(false && "Unknown $scopeinfo type"); + count_scopes++; + } + dec_indent(); + f << indent << "}\n"; + f << indent << "if (items) {\n"; + inc_indent(); + for (auto wire : module->wires()) { + const auto &debug_wire_type = debug_wire_types[wire]; + if (!wire->name.isPublic()) + continue; + count_public_wires++; + switch (debug_wire_type.type) { + case WireType::BUFFERED: + case WireType::MEMBER: { + // Member wire + std::vector flags; + + if (wire->port_input && wire->port_output) + flags.push_back("INOUT"); + else if (wire->port_output) + flags.push_back("OUTPUT"); + else if (wire->port_input) + flags.push_back("INPUT"); + + bool has_driven_sync = false; + bool has_driven_comb = false; + bool has_undriven = false; + if (!module->get_bool_attribute(ID(cxxrtl_blackbox))) { + for (auto bit : SigSpec(wire)) + if (!bit_has_state.count(bit)) + has_undriven = true; + else if (bit_has_state[bit]) + has_driven_sync = true; + else + has_driven_comb = true; + } else if (wire->port_output) { + switch (cxxrtl_port_type(module, wire->name)) { + case CxxrtlPortType::SYNC: + has_driven_sync = true; + break; + case CxxrtlPortType::COMB: + has_driven_comb = true; + break; + case CxxrtlPortType::UNKNOWN: + has_driven_sync = has_driven_comb = true; + break; + } } else { - f << "|"; + has_undriven = true; + } + if (has_undriven) + flags.push_back("UNDRIVEN"); + if (!has_driven_sync && !has_driven_comb && has_undriven) + count_undriven++; + if (has_driven_sync) + flags.push_back("DRIVEN_SYNC"); + if (has_driven_sync && !has_driven_comb && !has_undriven) + count_driven_sync++; + if (has_driven_comb) + flags.push_back("DRIVEN_COMB"); + if (!has_driven_sync && has_driven_comb && !has_undriven) + count_driven_comb++; + if (has_driven_sync + has_driven_comb + has_undriven > 1) + count_mixed_driver++; + + f << indent << "items->add(path, " << escape_cxx_string(get_hdl_name(wire)) << ", "; + dump_debug_attrs(wire); + f << ", " << mangle(wire); + if (wire->start_offset != 0 || !flags.empty()) { + f << ", " << wire->start_offset; + bool first = true; + for (auto flag : flags) { + if (first) { + first = false; + f << ", "; + } else { + f << "|"; + } + f << "debug_item::" << flag; + } } - f << "debug_item::" << flag; + f << ");\n"; + count_member_wires++; + break; + } + case WireType::ALIAS: { + // Alias of a member wire + const RTLIL::Wire *aliasee = debug_wire_type.sig_subst.as_wire(); + f << indent << "items->add(path, " << escape_cxx_string(get_hdl_name(wire)) << ", "; + dump_debug_attrs(aliasee); + f << ", "; + // If the aliasee is an outline, then the alias must be an outline, too; otherwise downstream + // tooling has no way to find out about the outline. + if (debug_wire_types[aliasee].is_outline()) + f << "debug_eval_outline"; + else + f << "debug_alias()"; + f << ", " << mangle(aliasee); + if (wire->start_offset != 0) + f << ", " << wire->start_offset; + f << ");\n"; + count_alias_wires++; + break; + } + case WireType::CONST: { + // Wire tied to a constant + f << indent << "static const value<" << wire->width << "> const_" << mangle(wire) << " = "; + dump_const(debug_wire_type.sig_subst.as_const()); + f << ";\n"; + f << indent << "items->add(path, " << escape_cxx_string(get_hdl_name(wire)) << ", "; + dump_debug_attrs(wire); + f << ", const_" << mangle(wire); + if (wire->start_offset != 0) + f << ", " << wire->start_offset; + f << ");\n"; + count_const_wires++; + break; + } + case WireType::OUTLINE: { + // Localized or inlined, but rematerializable wire + f << indent << "items->add(path, " << escape_cxx_string(get_hdl_name(wire)) << ", "; + dump_debug_attrs(wire); + f << ", debug_eval_outline, " << mangle(wire); + if (wire->start_offset != 0) + f << ", " << wire->start_offset; + f << ");\n"; + count_inline_wires++; + break; + } + default: { + // Localized or inlined wire with no debug information + count_skipped_wires++; + break; } - f << "));\n"; - count_member_wires++; - break; - } - case WireType::ALIAS: { - // Alias of a member wire - const RTLIL::Wire *aliasee = debug_wire_type.sig_subst.as_wire(); - f << indent << "items.add(path + " << escape_cxx_string(get_hdl_name(wire)); - f << ", debug_item("; - // If the aliasee is an outline, then the alias must be an outline, too; otherwise downstream - // tooling has no way to find out about the outline. - if (debug_wire_types[aliasee].is_outline()) - f << "debug_eval_outline"; - else - f << "debug_alias()"; - f << ", " << mangle(aliasee) << ", " << wire->start_offset << "));\n"; - count_alias_wires++; - break; - } - case WireType::CONST: { - // Wire tied to a constant - f << indent << "static const value<" << wire->width << "> const_" << mangle(wire) << " = "; - dump_const(debug_wire_type.sig_subst.as_const()); - f << ";\n"; - f << indent << "items.add(path + " << escape_cxx_string(get_hdl_name(wire)); - f << ", debug_item(const_" << mangle(wire) << ", " << wire->start_offset << "));\n"; - count_const_wires++; - break; - } - case WireType::OUTLINE: { - // Localized or inlined, but rematerializable wire - f << indent << "items.add(path + " << escape_cxx_string(get_hdl_name(wire)); - f << ", debug_item(debug_eval_outline, " << mangle(wire) << ", " << wire->start_offset << "));\n"; - count_inline_wires++; - break; } - default: { - // Localized or inlined wire with no debug information - count_skipped_wires++; - break; + } + if (!module->get_bool_attribute(ID(cxxrtl_blackbox))) { + for (auto &mem : mod_memories[module]) { + if (!mem.memid.isPublic()) + continue; + f << indent << "items->add(path, " << escape_cxx_string(mem.packed ? get_hdl_name(mem.cell) : get_hdl_name(mem.mem)) << ", "; + if (mem.packed) { + dump_debug_attrs(mem.cell); + } else { + dump_debug_attrs(mem.mem); + } + f << ", " << mangle(&mem) << ", "; + f << mem.start_offset << ");\n"; } } - } + dec_indent(); + f << indent << "}\n"; if (!module->get_bool_attribute(ID(cxxrtl_blackbox))) { - for (auto &mem : mod_memories[module]) { - if (!mem.memid.isPublic()) - continue; - f << indent << "items.add(path + " << escape_cxx_string(mem.packed ? get_hdl_name(mem.cell) : get_hdl_name(mem.mem)); - f << ", debug_item(" << mangle(&mem) << ", "; - f << mem.start_offset << "));\n"; - } for (auto cell : module->cells()) { if (is_internal_cell(cell->type)) continue; const char *access = is_cxxrtl_blackbox_cell(cell) ? "->" : "."; - f << indent << mangle(cell) << access << "debug_info(items, "; - f << "path + " << escape_cxx_string(get_hdl_name(cell) + ' ') << ");\n"; + f << indent << mangle(cell) << access; + f << "debug_info(items, scopes, path + " << escape_cxx_string(get_hdl_name(cell) + ' ') << ", "; + dump_debug_attrs(cell, /*serialize=*/false); + f << ");\n"; } } dec_indent(); log_debug("Debug information statistics for module `%s':\n", log_id(module)); + log_debug(" Scopes: %zu", count_scopes); log_debug(" Public wires: %zu, of which:\n", count_public_wires); log_debug(" Member wires: %zu, of which:\n", count_member_wires); log_debug(" Undriven: %zu (incl. inputs)\n", count_undriven); @@ -2190,33 +2590,6 @@ struct CxxrtlWorker { } } - void dump_metadata_map(const dict &metadata_map) - { - if (metadata_map.empty()) { - f << "metadata_map()"; - return; - } - f << "metadata_map({\n"; - inc_indent(); - for (auto metadata_item : metadata_map) { - if (!metadata_item.first.begins_with("\\")) - continue; - f << indent << "{ " << escape_cxx_string(metadata_item.first.str().substr(1)) << ", "; - if (metadata_item.second.flags & RTLIL::CONST_FLAG_REAL) { - f << std::showpoint << std::stod(metadata_item.second.decode_string()) << std::noshowpoint; - } else if (metadata_item.second.flags & RTLIL::CONST_FLAG_STRING) { - f << escape_cxx_string(metadata_item.second.decode_string()); - } else { - f << metadata_item.second.as_int(/*is_signed=*/metadata_item.second.flags & RTLIL::CONST_FLAG_SIGNED); - if (!(metadata_item.second.flags & RTLIL::CONST_FLAG_SIGNED)) - f << "u"; - } - f << " },\n"; - } - dec_indent(); - f << indent << "})"; - } - void dump_module_intf(RTLIL::Module *module) { dump_attrs(module); @@ -2234,20 +2607,27 @@ struct CxxrtlWorker { dump_reset_method(module); f << indent << "}\n"; f << "\n"; - f << indent << "bool eval() override {\n"; + // No default argument, to prevent unintentional `return bb_foo::eval();` calls that drop performer. + f << indent << "bool eval(performer *performer) override {\n"; dump_eval_method(module); f << indent << "}\n"; f << "\n"; - f << indent << "bool commit() override {\n"; + f << indent << "virtual bool commit(observer &observer) {\n"; dump_commit_method(module); f << indent << "}\n"; f << "\n"; + f << indent << "bool commit() override {\n"; + f << indent << indent << "observer observer;\n"; + f << indent << indent << "return commit(observer);\n"; + f << indent << "}\n"; if (debug_info) { - f << indent << "void debug_info(debug_items &items, std::string path = \"\") override {\n"; + f << "\n"; + f << indent << "void debug_info(debug_items *items, debug_scopes *scopes, " + << "std::string path, metadata_map &&cell_attrs = {}) override {\n"; dump_debug_info_method(module); f << indent << "}\n"; - f << "\n"; } + f << "\n"; f << indent << "static std::unique_ptr<" << mangle(module); f << template_params(module, /*is_decl=*/false) << "> "; f << "create(std::string name, metadata_map parameters, metadata_map attributes);\n"; @@ -2291,6 +2671,15 @@ struct CxxrtlWorker { f << "\n"; bool has_cells = false; for (auto cell : module->cells()) { + // Async and initial effectful cells have additional state, which requires storage. + if (is_effectful_cell(cell->type)) { + if (cell->getParam(ID::TRG_ENABLE).as_bool() && cell->getParam(ID::TRG_WIDTH).as_int() == 0) + f << indent << "value<1> " << mangle(cell) << ";\n"; // async initial cell + if (!cell->getParam(ID::TRG_ENABLE).as_bool() && cell->type == ID($print)) + f << indent << "value<" << (1 + cell->getParam(ID::ARGS_WIDTH).as_int()) << "> " << mangle(cell) << ";\n"; // {EN, ARGS} + if (!cell->getParam(ID::TRG_ENABLE).as_bool() && cell->type == ID($check)) + f << indent << "value<2> " << mangle(cell) << ";\n"; // {EN, A} + } if (is_internal_cell(cell->type)) continue; dump_attrs(cell); @@ -2319,8 +2708,18 @@ struct CxxrtlWorker { f << indent << "};\n"; f << "\n"; f << indent << "void reset() override;\n"; - f << indent << "bool eval() override;\n"; - f << indent << "bool commit() override;\n"; + f << "\n"; + f << indent << "bool eval(performer *performer = nullptr) override;\n"; + f << "\n"; + f << indent << "template\n"; + f << indent << "bool commit(ObserverT &observer) {\n"; + dump_commit_method(module); + f << indent << "}\n"; + f << "\n"; + f << indent << "bool commit() override {\n"; + f << indent << indent << "observer observer;\n"; + f << indent << indent << "return commit<>(observer);\n"; + f << indent << "}\n"; if (debug_info) { if (debug_eval) { f << "\n"; @@ -2333,7 +2732,8 @@ struct CxxrtlWorker { } } f << "\n"; - f << indent << "void debug_info(debug_items &items, std::string path = \"\") override;\n"; + f << indent << "void debug_info(debug_items *items, debug_scopes *scopes, " + << "std::string path, metadata_map &&cell_attrs = {}) override;\n"; } dec_indent(); f << indent << "}; // struct " << mangle(module) << "\n"; @@ -2349,27 +2749,24 @@ struct CxxrtlWorker { dump_reset_method(module); f << indent << "}\n"; f << "\n"; - f << indent << "bool " << mangle(module) << "::eval() {\n"; + f << indent << "bool " << mangle(module) << "::eval(performer *performer) {\n"; dump_eval_method(module); f << indent << "}\n"; - f << "\n"; - f << indent << "bool " << mangle(module) << "::commit() {\n"; - dump_commit_method(module); - f << indent << "}\n"; - f << "\n"; if (debug_info) { if (debug_eval) { + f << "\n"; f << indent << "void " << mangle(module) << "::debug_eval() {\n"; dump_debug_eval_method(module); f << indent << "}\n"; - f << "\n"; } + f << "\n"; f << indent << "CXXRTL_EXTREMELY_COLD\n"; - f << indent << "void " << mangle(module) << "::debug_info(debug_items &items, std::string path) {\n"; + f << indent << "void " << mangle(module) << "::debug_info(debug_items *items, debug_scopes *scopes, " + << "std::string path, metadata_map &&cell_attrs) {\n"; dump_debug_info_method(module); f << indent << "}\n"; - f << "\n"; } + f << "\n"; } void dump_design(RTLIL::Design *design) @@ -2409,7 +2806,7 @@ struct CxxrtlWorker { f << "#define " << include_guard << "\n"; f << "\n"; if (top_module != nullptr && debug_info) { - f << "#include \n"; + f << "#include \n"; f << "\n"; f << "#ifdef __cplusplus\n"; f << "extern \"C\" {\n"; @@ -2427,7 +2824,7 @@ struct CxxrtlWorker { } f << "#ifdef __cplusplus\n"; f << "\n"; - f << "#include \n"; + f << "#include \n"; f << "\n"; f << "using namespace cxxrtl;\n"; f << "\n"; @@ -2444,17 +2841,17 @@ struct CxxrtlWorker { } if (split_intf) - f << "#include \"" << intf_filename << "\"\n"; + f << "#include \"" << basename(intf_filename) << "\"\n"; else - f << "#include \n"; + f << "#include \n"; f << "\n"; f << "#if defined(CXXRTL_INCLUDE_CAPI_IMPL) || \\\n"; f << " defined(CXXRTL_INCLUDE_VCD_CAPI_IMPL)\n"; - f << "#include \n"; + f << "#include \n"; f << "#endif\n"; f << "\n"; f << "#if defined(CXXRTL_INCLUDE_VCD_CAPI_IMPL)\n"; - f << "#include \n"; + f << "#include \n"; f << "#endif\n"; f << "\n"; f << "using namespace cxxrtl_yosys;\n"; @@ -2601,6 +2998,16 @@ struct CxxrtlWorker { register_edge_signal(sigmap, cell->getPort(ID::CLK), cell->parameters[ID::CLK_POLARITY].as_bool() ? RTLIL::STp : RTLIL::STn); } + + // Effectful cells may be triggered on posedge/negedge events. + if (is_effectful_cell(cell->type) && cell->getParam(ID::TRG_ENABLE).as_bool()) { + for (size_t i = 0; i < (size_t)cell->getParam(ID::TRG_WIDTH).as_int(); i++) { + RTLIL::SigBit trg = cell->getPort(ID::TRG).extract(i, 1); + if (is_valid_clock(trg)) + register_edge_signal(sigmap, trg, + cell->parameters[ID::TRG_POLARITY][i] == RTLIL::S1 ? RTLIL::STp : RTLIL::STn); + } + } } for (auto &mem : memories) { @@ -2734,8 +3141,12 @@ struct CxxrtlWorker { // Discover nodes reachable from primary outputs (i.e. members) and collect reachable wire users. pool worklist; for (auto node : flow.nodes) { - if (node->type == FlowGraph::Node::Type::CELL_EVAL && is_effectful_cell(node->cell->type)) - worklist.insert(node); // node has effects + if (node->type == FlowGraph::Node::Type::CELL_EVAL && !is_internal_cell(node->cell->type)) + worklist.insert(node); // node evaluates a submodule + else if (node->type == FlowGraph::Node::Type::CELL_EVAL && is_effectful_cell(node->cell->type)) + worklist.insert(node); // node has async effects + else if (node->type == FlowGraph::Node::Type::EFFECT_SYNC) + worklist.insert(node); // node has sync effects else if (node->type == FlowGraph::Node::Type::MEM_WRPORTS) worklist.insert(node); // node is memory write else if (node->type == FlowGraph::Node::Type::PROCESS_SYNC && is_memwr_process(node->process)) @@ -2792,9 +3203,23 @@ struct CxxrtlWorker { } // Emit reachable nodes in eval(). + // Accumulate sync effectful cells per trigger condition. + dict, std::vector> effect_sync_cells; for (auto node : node_order) - if (live_nodes[node]) - schedule[module].push_back(*node); + if (live_nodes[node]) { + if (node->type == FlowGraph::Node::Type::CELL_EVAL && + is_effectful_cell(node->cell->type) && + node->cell->getParam(ID::TRG_ENABLE).as_bool() && + node->cell->getParam(ID::TRG_WIDTH).as_int() != 0) + effect_sync_cells[make_pair(node->cell->getPort(ID::TRG), node->cell->getParam(ID::TRG_POLARITY))].push_back(node->cell); + else + schedule[module].push_back(*node); + } + + for (auto &it : effect_sync_cells) { + auto node = flow.add_effect_sync_node(it.second); + schedule[module].push_back(*node); + } // For maximum performance, the state of the simulation (which is the same as the set of its double buffered // wires, since using a singly buffered wire for any kind of state introduces a race condition) should contain @@ -2838,6 +3263,7 @@ struct CxxrtlWorker { debug_wire_type = wire_type; // wire is a member if (!debug_alias) continue; + if (wire->port_input || wire->port_output) continue; // preserve input/output metadata in flags const RTLIL::Wire *it = wire; while (flow.is_inlinable(it)) { log_assert(flow.wire_comb_defs[it].size() == 1); @@ -3098,7 +3524,8 @@ struct CxxrtlBackend : public Backend { log(" value<8> p_i_data;\n"); log(" wire<8> p_o_data;\n"); log("\n"); - log(" bool eval() override;\n"); + log(" bool eval(performer *performer) override;\n"); + log(" virtual bool commit(observer &observer);\n"); log(" bool commit() override;\n"); log("\n"); log(" static std::unique_ptr\n"); @@ -3111,11 +3538,11 @@ struct CxxrtlBackend : public Backend { log(" namespace cxxrtl_design {\n"); log("\n"); log(" struct stderr_debug : public bb_p_debug {\n"); - log(" bool eval() override {\n"); + log(" bool eval(performer *performer) override {\n"); log(" if (posedge_p_clk() && p_en)\n"); log(" fprintf(stderr, \"debug: %%02x\\n\", p_i_data.data[0]);\n"); log(" p_o_data.next = p_i_data;\n"); - log(" return bb_p_debug::eval();\n"); + log(" return bb_p_debug::eval(performer);\n"); log(" }\n"); log(" };\n"); log("\n"); @@ -3213,6 +3640,11 @@ struct CxxrtlBackend : public Backend { log(" place the generated code into namespace . if not specified,\n"); log(" \"cxxrtl_design\" is used.\n"); log("\n"); + log(" -print-output \n"); + log(" $print cells in the generated code direct their output to .\n"); + log(" must be one of \"std::cout\", \"std::cerr\". if not specified,\n"); + log(" \"std::cout\" is used. explicitly provided performer overrides this.\n"); + log("\n"); log(" -nohierarchy\n"); log(" use design hierarchy as-is. in most designs, a top module should be\n"); log(" present as it is exposed through the C API and has unbuffered outputs\n"); @@ -3351,6 +3783,14 @@ struct CxxrtlBackend : public Backend { worker.design_ns = args[++argidx]; continue; } + if (args[argidx] == "-print-output" && argidx+1 < args.size()) { + worker.print_output = args[++argidx]; + if (!(worker.print_output == "std::cout" || worker.print_output == "std::cerr")) { + log_cmd_error("Invalid output stream \"%s\".\n", worker.print_output.c_str()); + worker.print_output = "std::cout"; + } + continue; + } break; } extra_args(f, filename, args, argidx); diff --git a/yosys/backends/cxxrtl/runtime/README.txt b/yosys/backends/cxxrtl/runtime/README.txt new file mode 100644 index 00000000000..9ae7051cdcc --- /dev/null +++ b/yosys/backends/cxxrtl/runtime/README.txt @@ -0,0 +1,18 @@ +This directory contains the runtime components of CXXRTL and should be placed on the include path +when building the simulation using the `-I${YOSYS}/backends/cxxrtl/runtime` option. These components +are not used in the Yosys binary; they are only built as a part of the simulation binary. + +The interfaces declared in `cxxrtl_capi*.h` contain the stable C API. These interfaces will not be +changed in backward-incompatible ways unless no other option is available, and any breaking changes +will be made in a way that causes the downstream code to fail in a visible way. The ABI of these +interfaces is considered stable as well, and it will not use features complicating its use via +libraries such as libffi or ctypes. + +The implementations in `cxxrtl_capi*.cc` are considered private; they are still placed in the include +path to enable build-system-less builds (where the CXXRTL runtime component is included in the C++ +file of the simulation toplevel). + +The interfaces declared in `cxxrtl*.h` (without `capi`) are unstable and may change without notice. + +For clarity, all of the files in this directory and its subdirectories have unique names regardless +of the directory where they are placed. \ No newline at end of file diff --git a/yosys/backends/cxxrtl/cxxrtl_capi.cc b/yosys/backends/cxxrtl/runtime/cxxrtl/capi/cxxrtl_capi.cc similarity index 58% rename from yosys/backends/cxxrtl/cxxrtl_capi.cc rename to yosys/backends/cxxrtl/runtime/cxxrtl/capi/cxxrtl_capi.cc index 227173ba87f..34801c2d118 100644 --- a/yosys/backends/cxxrtl/cxxrtl_capi.cc +++ b/yosys/backends/cxxrtl/runtime/cxxrtl/capi/cxxrtl_capi.cc @@ -16,10 +16,10 @@ * */ -// This file is a part of the CXXRTL C API. It should be used together with `cxxrtl_capi.h`. +// This file is a part of the CXXRTL C API. It should be used together with `cxxrtl/capi/cxxrtl_capi.h`. -#include -#include +#include +#include struct _cxxrtl_handle { std::unique_ptr module; @@ -35,19 +35,19 @@ cxxrtl_handle cxxrtl_create(cxxrtl_toplevel design) { return cxxrtl_create_at(design, ""); } -cxxrtl_handle cxxrtl_create_at(cxxrtl_toplevel design, const char *root) { - std::string path = root; - if (!path.empty()) { +cxxrtl_handle cxxrtl_create_at(cxxrtl_toplevel design, const char *top_path_) { + std::string top_path = top_path_; + if (!top_path.empty()) { // module::debug_info() accepts either an empty path, or a path ending in space to simplify // the logic in generated code. While this is sketchy at best to expose in the C++ API, this // would be a lot worse in the C API, so don't expose it here. - assert(path.back() != ' '); - path += ' '; + assert(top_path.back() != ' '); + top_path += ' '; } cxxrtl_handle handle = new _cxxrtl_handle; handle->module = std::move(design->module); - handle->module->debug_info(handle->objects, path); + handle->module->debug_info(&handle->objects, nullptr, top_path); delete design; return handle; } @@ -90,3 +90,46 @@ void cxxrtl_enum(cxxrtl_handle handle, void *data, void cxxrtl_outline_eval(cxxrtl_outline outline) { outline->eval(); } + +int cxxrtl_attr_type(cxxrtl_attr_set attrs_, const char *name) { + auto attrs = (cxxrtl::metadata_map*)attrs_; + if (!attrs->count(name)) + return CXXRTL_ATTR_NONE; + switch (attrs->at(name).value_type) { + case cxxrtl::metadata::UINT: + return CXXRTL_ATTR_UNSIGNED_INT; + case cxxrtl::metadata::SINT: + return CXXRTL_ATTR_SIGNED_INT; + case cxxrtl::metadata::STRING: + return CXXRTL_ATTR_STRING; + case cxxrtl::metadata::DOUBLE: + return CXXRTL_ATTR_DOUBLE; + default: + // Present unsupported attribute type the same way as no attribute at all. + return CXXRTL_ATTR_NONE; + } +} + +uint64_t cxxrtl_attr_get_unsigned_int(cxxrtl_attr_set attrs_, const char *name) { + auto &attrs = *(cxxrtl::metadata_map*)attrs_; + assert(attrs.count(name) && attrs.at(name).value_type == cxxrtl::metadata::UINT); + return attrs[name].as_uint(); +} + +int64_t cxxrtl_attr_get_signed_int(cxxrtl_attr_set attrs_, const char *name) { + auto &attrs = *(cxxrtl::metadata_map*)attrs_; + assert(attrs.count(name) && attrs.at(name).value_type == cxxrtl::metadata::SINT); + return attrs[name].as_sint(); +} + +const char *cxxrtl_attr_get_string(cxxrtl_attr_set attrs_, const char *name) { + auto &attrs = *(cxxrtl::metadata_map*)attrs_; + assert(attrs.count(name) && attrs.at(name).value_type == cxxrtl::metadata::STRING); + return attrs[name].as_string().c_str(); +} + +double cxxrtl_attr_get_double(cxxrtl_attr_set attrs_, const char *name) { + auto &attrs = *(cxxrtl::metadata_map*)attrs_; + assert(attrs.count(name) && attrs.at(name).value_type == cxxrtl::metadata::DOUBLE); + return attrs[name].as_double(); +} diff --git a/yosys/backends/cxxrtl/cxxrtl_capi.h b/yosys/backends/cxxrtl/runtime/cxxrtl/capi/cxxrtl_capi.h similarity index 80% rename from yosys/backends/cxxrtl/cxxrtl_capi.h rename to yosys/backends/cxxrtl/runtime/cxxrtl/capi/cxxrtl_capi.h index 2df2b7287f4..ae42733ad7f 100644 --- a/yosys/backends/cxxrtl/cxxrtl_capi.h +++ b/yosys/backends/cxxrtl/runtime/cxxrtl/capi/cxxrtl_capi.h @@ -55,8 +55,8 @@ cxxrtl_handle cxxrtl_create(cxxrtl_toplevel design); // Create a design handle at a given hierarchy position from a design toplevel. // // This operation is similar to `cxxrtl_create`, except the full hierarchical name of every object -// is prepended with `root`. -cxxrtl_handle cxxrtl_create_at(cxxrtl_toplevel design, const char *root); +// is prepended with `top_path`. +cxxrtl_handle cxxrtl_create_at(cxxrtl_toplevel design, const char *top_path); // Release all resources used by a design and its handle. void cxxrtl_destroy(cxxrtl_handle handle); @@ -240,6 +240,11 @@ struct cxxrtl_object { // through wires, the bits are double buffered. To avoid race conditions, user code should // always read from `curr` and write to `next`. The `curr` pointer is always valid; for objects // that cannot be modified, or cannot be modified in a race-free way, `next` is NULL. + // + // In case where `width == 0`, `curr` is a non-NULL pointer unique for the wire. That is, + // there is a 1-to-1 correspondence between simulation objects and `curr` pointers, regardless + // of whether they have storage or not. (Aliases' `curr` pointer equals that of some other + // simulated object.) uint32_t *curr; uint32_t *next; @@ -249,6 +254,15 @@ struct cxxrtl_object { // this field to NULL. struct _cxxrtl_outline *outline; + // Opaque reference to an attribute set. + // + // See the documentation of `cxxrtl_attr_set` for details. When creating a `cxxrtl_object`, set + // this field to NULL. + // + // The lifetime of the pointers returned by `cxxrtl_attr_*` family of functions is the same as + // the lifetime of this structure. + struct _cxxrtl_attr_set *attrs; + // More description fields may be added in the future, but the existing ones will never change. }; @@ -304,6 +318,62 @@ typedef struct _cxxrtl_outline *cxxrtl_outline; // re-evaluated, otherwise the bits read from that object are meaningless. void cxxrtl_outline_eval(cxxrtl_outline outline); +// Opaque reference to an attribute set. +// +// An attribute set is a map between attribute names (always strings) and values (which may have +// several different types). To find out the type of an attribute, use `cxxrtl_attr_type`, and +// to retrieve the value of an attribute, use `cxxrtl_attr_as_string`. +typedef struct _cxxrtl_attr_set *cxxrtl_attr_set; + +// Type of an attribute. +enum cxxrtl_attr_type { + // Attribute is not present. + CXXRTL_ATTR_NONE = 0, + + // Attribute has an unsigned integer value. + CXXRTL_ATTR_UNSIGNED_INT = 1, + + // Attribute has an unsigned integer value. + CXXRTL_ATTR_SIGNED_INT = 2, + + // Attribute has a string value. + CXXRTL_ATTR_STRING = 3, + + // Attribute has a double precision floating point value. + CXXRTL_ATTR_DOUBLE = 4, + + // More attribute types may be defined in the future, but the existing values will never change. +}; + +// Determine the presence and type of an attribute in an attribute set. +// +// This function returns one of the possible `cxxrtl_attr_type` values. +int cxxrtl_attr_type(cxxrtl_attr_set attrs, const char *name); + +// Retrieve an unsigned integer valued attribute from an attribute set. +// +// This function asserts that `cxxrtl_attr_type(attrs, name) == CXXRTL_ATTR_UNSIGNED_INT`. +// If assertions are disabled, returns 0 if the attribute is missing or has an incorrect type. +uint64_t cxxrtl_attr_get_unsigned_int(cxxrtl_attr_set attrs, const char *name); + +// Retrieve a signed integer valued attribute from an attribute set. +// +// This function asserts that `cxxrtl_attr_type(attrs, name) == CXXRTL_ATTR_SIGNED_INT`. +// If assertions are disabled, returns 0 if the attribute is missing or has an incorrect type. +int64_t cxxrtl_attr_get_signed_int(cxxrtl_attr_set attrs, const char *name); + +// Retrieve a string valued attribute from an attribute set. The returned string is zero-terminated. +// +// This function asserts that `cxxrtl_attr_type(attrs, name) == CXXRTL_ATTR_STRING`. If assertions +// are disabled, returns NULL if the attribute is missing or has an incorrect type. +const char *cxxrtl_attr_get_string(cxxrtl_attr_set attrs, const char *name); + +// Retrieve a double precision floating point valued attribute from an attribute set. +// +// This function asserts that `cxxrtl_attr_type(attrs, name) == CXXRTL_ATTR_DOUBLE`. If assertions +// are disabled, returns NULL if the attribute is missing or has an incorrect type. +double cxxrtl_attr_get_double(cxxrtl_attr_set attrs, const char *name); + #ifdef __cplusplus } #endif diff --git a/yosys/backends/cxxrtl/cxxrtl_vcd_capi.cc b/yosys/backends/cxxrtl/runtime/cxxrtl/capi/cxxrtl_capi_vcd.cc similarity index 95% rename from yosys/backends/cxxrtl/cxxrtl_vcd_capi.cc rename to yosys/backends/cxxrtl/runtime/cxxrtl/capi/cxxrtl_capi_vcd.cc index 52a9198b869..0949a9363eb 100644 --- a/yosys/backends/cxxrtl/cxxrtl_vcd_capi.cc +++ b/yosys/backends/cxxrtl/runtime/cxxrtl/capi/cxxrtl_capi_vcd.cc @@ -16,10 +16,10 @@ * */ -// This file is a part of the CXXRTL C API. It should be used together with `cxxrtl_vcd_capi.h`. +// This file is a part of the CXXRTL C API. It should be used together with `cxxrtl/capi/cxxrtl_capi_vcd.h`. -#include -#include +#include +#include extern const cxxrtl::debug_items &cxxrtl_debug_items_from_handle(cxxrtl_handle handle); diff --git a/yosys/backends/cxxrtl/cxxrtl_vcd_capi.h b/yosys/backends/cxxrtl/runtime/cxxrtl/capi/cxxrtl_capi_vcd.h similarity index 97% rename from yosys/backends/cxxrtl/cxxrtl_vcd_capi.h rename to yosys/backends/cxxrtl/runtime/cxxrtl/capi/cxxrtl_capi_vcd.h index d55afe2230e..844f3cb8c83 100644 --- a/yosys/backends/cxxrtl/cxxrtl_vcd_capi.h +++ b/yosys/backends/cxxrtl/runtime/cxxrtl/capi/cxxrtl_capi_vcd.h @@ -16,8 +16,8 @@ * */ -#ifndef CXXRTL_VCD_CAPI_H -#define CXXRTL_VCD_CAPI_H +#ifndef CXXRTL_CAPI_VCD_H +#define CXXRTL_CAPI_VCD_H // This file is a part of the CXXRTL C API. It should be used together with `cxxrtl_vcd_capi.cc`. // @@ -27,7 +27,7 @@ #include #include -#include +#include #ifdef __cplusplus extern "C" { diff --git a/yosys/backends/cxxrtl/cxxrtl.h b/yosys/backends/cxxrtl/runtime/cxxrtl/cxxrtl.h similarity index 71% rename from yosys/backends/cxxrtl/cxxrtl.h rename to yosys/backends/cxxrtl/runtime/cxxrtl/cxxrtl.h index 5d0596f0d61..d1d6bd8dc68 100644 --- a/yosys/backends/cxxrtl/cxxrtl.h +++ b/yosys/backends/cxxrtl/runtime/cxxrtl/cxxrtl.h @@ -28,6 +28,7 @@ #include #include +#include #include #include #include @@ -38,8 +39,10 @@ #include #include #include +#include -#include +// `cxxrtl::debug_item` has to inherit from `cxxrtl_object` to satisfy strict aliasing requirements. +#include #ifndef __has_attribute # define __has_attribute(x) 0 @@ -144,7 +147,7 @@ struct value : public expr_base> { // These functions ensure that a conversion is never out of range, and should be always used, if at all // possible, instead of direct manipulation of the `data` member. For very large types, .slice() and // .concat() can be used to split them into more manageable parts. - template + template::value, int>::type = 0> CXXRTL_ALWAYS_INLINE IntegerT get() const { static_assert(std::numeric_limits::is_integer && !std::numeric_limits::is_signed, @@ -157,15 +160,32 @@ struct value : public expr_base> { return result; } - template + template::value, int>::type = 0> CXXRTL_ALWAYS_INLINE - void set(IntegerT other) { + IntegerT get() const { + auto unsigned_result = get::type>(); + IntegerT result; + memcpy(&result, &unsigned_result, sizeof(IntegerT)); + return result; + } + + template::value, int>::type = 0> + CXXRTL_ALWAYS_INLINE + void set(IntegerT value) { static_assert(std::numeric_limits::is_integer && !std::numeric_limits::is_signed, "set() requires T to be an unsigned integral type"); static_assert(std::numeric_limits::digits >= Bits, "set() requires the value to be at least as wide as T is"); for (size_t n = 0; n < chunks; n++) - data[n] = (other >> (n * chunk::bits)) & chunk::mask; + data[n] = (value >> (n * chunk::bits)) & chunk::mask; + } + + template::value, int>::type = 0> + CXXRTL_ALWAYS_INLINE + void set(IntegerT value) { + typename std::make_unsigned::type unsigned_value; + memcpy(&unsigned_value, &value, sizeof(IntegerT)); + set(unsigned_value); } // Operations with compile-time parameters. @@ -418,6 +438,7 @@ struct value : public expr_base> { carry = (shift_bits == 0) ? 0 : data[n] >> (chunk::bits - shift_bits); } + result.data[result.chunks - 1] &= result.msb_mask; return result; } @@ -428,12 +449,12 @@ struct value : public expr_base> { // Detect shifts definitely large than Bits early. for (size_t n = 1; n < amount.chunks; n++) if (amount.data[n] != 0) - return {}; + return (Signed && is_neg()) ? value().bit_not() : value(); // Past this point we can use the least significant chunk as the shift size. size_t shift_chunks = amount.data[0] / chunk::bits; size_t shift_bits = amount.data[0] % chunk::bits; if (shift_chunks >= chunks) - return {}; + return (Signed && is_neg()) ? value().bit_not() : value(); value result; chunk::type carry = 0; for (size_t n = 0; n < chunks - shift_chunks; n++) { @@ -442,12 +463,13 @@ struct value : public expr_base> { : data[chunks - 1 - n] << (chunk::bits - shift_bits); } if (Signed && is_neg()) { - size_t top_chunk_idx = (Bits - shift_bits) / chunk::bits; - size_t top_chunk_bits = (Bits - shift_bits) % chunk::bits; + size_t top_chunk_idx = amount.data[0] > Bits ? 0 : (Bits - amount.data[0]) / chunk::bits; + size_t top_chunk_bits = amount.data[0] > Bits ? 0 : (Bits - amount.data[0]) % chunk::bits; for (size_t n = top_chunk_idx + 1; n < chunks; n++) result.data[n] = chunk::mask; - if (shift_bits != 0) + if (amount.data[0] != 0) result.data[top_chunk_idx] |= chunk::mask << top_chunk_bits; + result.data[result.chunks - 1] &= result.msb_mask; } return result; } @@ -472,6 +494,7 @@ struct value : public expr_base> { carry = (shift_bits == 0) ? 0 : data[result.chunks + shift_chunks - 1 - n] << (chunk::bits - shift_bits); } + result.data[result.chunks - 1] &= result.msb_mask; return result; } @@ -507,12 +530,14 @@ struct value : public expr_base> { size_t count = 0; for (size_t n = 0; n < chunks; n++) { chunk::type x = data[chunks - 1 - n]; - if (x == 0) { - count += (n == 0 ? Bits % chunk::bits : chunk::bits); - } else { - // This loop implements the find first set idiom as recognized by LLVM. - for (; x != 0; count++) + // First add to `count` as if the chunk is zero + constexpr size_t msb_chunk_bits = Bits % chunk::bits != 0 ? Bits % chunk::bits : chunk::bits; + count += (n == 0 ? msb_chunk_bits : chunk::bits); + // If the chunk isn't zero, correct the `count` value and return + if (x != 0) { + for (; x != 0; count--) x >>= 1; + break; } } return count; @@ -541,7 +566,7 @@ struct value : public expr_base> { } value neg() const { - return value { 0u }.sub(*this); + return value().sub(*this); } bool ucmp(const value &other) const { @@ -575,6 +600,38 @@ struct value : public expr_base> { result.data[result.chunks - 1] &= result.msb_mask; return result; } + + std::pair, value> udivmod(value divisor) const { + value quotient; + value dividend = *this; + if (dividend.ucmp(divisor)) + return {/*quotient=*/value{0u}, /*remainder=*/dividend}; + int64_t divisor_shift = divisor.ctlz() - dividend.ctlz(); + assert(divisor_shift >= 0); + divisor = divisor.shl(value{(chunk::type) divisor_shift}); + for (size_t step = 0; step <= divisor_shift; step++) { + quotient = quotient.shl(value{1u}); + if (!dividend.ucmp(divisor)) { + dividend = dividend.sub(divisor); + quotient.set_bit(0, true); + } + divisor = divisor.shr(value{1u}); + } + return {quotient, /*remainder=*/dividend}; + } + + std::pair, value> sdivmod(const value &other) const { + value quotient; + value remainder; + value dividend = sext(); + value divisor = other.template sext(); + if (is_neg()) dividend = dividend.neg(); + if (other.is_neg()) divisor = divisor.neg(); + std::tie(quotient, remainder) = dividend.udivmod(divisor); + if (is_neg() != other.is_neg()) quotient = quotient.neg(); + if (is_neg()) remainder = remainder.neg(); + return {quotient.template trunc(), remainder.template trunc()}; + } }; // Expression template for a slice, usable as lvalue or rvalue, and composable with other expression templates here. @@ -741,8 +798,13 @@ struct wire { next.template set(other); } - bool commit() { + // This method intentionally takes a mandatory argument (to make it more difficult to misuse in + // black box implementations, leading to missed observer events). It is generic over its argument + // to allow the `on_update` method to be non-virtual. + template + bool commit(ObserverT &observer) { if (curr != next) { + observer.on_update(curr.chunks, curr.data, next.data); curr = next; return true; } @@ -816,12 +878,17 @@ struct memory { write { index, val, mask, priority }); } - bool commit() { + // See the note for `wire::commit()`. + template + bool commit(ObserverT &observer) { bool changed = false; for (const write &entry : write_queue) { value elem = data[entry.index]; elem = elem.update(entry.val, entry.mask); - changed |= (data[entry.index] != elem); + if (data[entry.index] != elem) { + observer.on_update(value::chunks, data[0].data, elem.data, entry.index); + changed |= true; + } data[entry.index] = elem; } write_queue.clear(); @@ -840,14 +907,14 @@ struct metadata { // In debug mode, using the wrong .as_*() function will assert. // In release mode, using the wrong .as_*() function will safely return a default value. - const unsigned uint_value = 0; - const signed sint_value = 0; + const uint64_t uint_value = 0; + const int64_t sint_value = 0; const std::string string_value = ""; const double double_value = 0.0; metadata() : value_type(MISSING) {} - metadata(unsigned value) : value_type(UINT), uint_value(value) {} - metadata(signed value) : value_type(SINT), sint_value(value) {} + metadata(uint64_t value) : value_type(UINT), uint_value(value) {} + metadata(int64_t value) : value_type(SINT), sint_value(value) {} metadata(const std::string &value) : value_type(STRING), string_value(value) {} metadata(const char *value) : value_type(STRING), string_value(value) {} metadata(double value) : value_type(DOUBLE), double_value(value) {} @@ -855,12 +922,12 @@ struct metadata { metadata(const metadata &) = default; metadata &operator=(const metadata &) = delete; - unsigned as_uint() const { + uint64_t as_uint() const { assert(value_type == UINT); return uint_value; } - signed as_sint() const { + int64_t as_sint() const { assert(value_type == SINT); return sint_value; } @@ -874,10 +941,322 @@ struct metadata { assert(value_type == DOUBLE); return double_value; } + + // Internal CXXRTL use only. + static std::map deserialize(const char *ptr) { + std::map result; + std::string name; + // Grammar: + // string ::= [^\0]+ \0 + // metadata ::= [uid] .{8} | s + // map ::= ( )* \0 + for (;;) { + if (*ptr) { + name += *ptr++; + } else if (!name.empty()) { + ptr++; + auto get_u64 = [&]() { + uint64_t result = 0; + for (size_t count = 0; count < 8; count++) + result = (result << 8) | *ptr++; + return result; + }; + char type = *ptr++; + if (type == 'u') { + uint64_t value = get_u64(); + result.emplace(name, value); + } else if (type == 'i') { + int64_t value = (int64_t)get_u64(); + result.emplace(name, value); + } else if (type == 'd') { + double dvalue; + uint64_t uvalue = get_u64(); + static_assert(sizeof(dvalue) == sizeof(uvalue), "double must be 64 bits in size"); + memcpy(&dvalue, &uvalue, sizeof(dvalue)); + result.emplace(name, dvalue); + } else if (type == 's') { + std::string value; + while (*ptr) + value += *ptr++; + ptr++; + result.emplace(name, value); + } else { + assert(false && "Unknown type specifier"); + return result; + } + name.clear(); + } else { + return result; + } + } + } }; typedef std::map metadata_map; +struct performer; + +// An object that allows formatting a string lazily. +struct lazy_fmt { + virtual std::string operator() () const = 0; +}; + +// Flavor of a `$check` cell. +enum class flavor { + // Corresponds to a `$assert` cell in other flows, and a Verilog `assert ()` statement. + ASSERT, + // Corresponds to a `$assume` cell in other flows, and a Verilog `assume ()` statement. + ASSUME, + // Corresponds to a `$live` cell in other flows, and a Verilog `assert (eventually)` statement. + ASSERT_EVENTUALLY, + // Corresponds to a `$fair` cell in other flows, and a Verilog `assume (eventually)` statement. + ASSUME_EVENTUALLY, + // Corresponds to a `$cover` cell in other flows, and a Verilog `cover ()` statement. + COVER, +}; + +// An object that can be passed to a `eval()` method in order to act on side effects. The default behavior implemented +// below is the same as the behavior of `eval(nullptr)`, except that `-print-output` option of `write_cxxrtl` is not +// taken into account. +struct performer { + // Called by generated formatting code to evaluate a Verilog `$time` expression. + virtual int64_t vlog_time() const { return 0; } + + // Called by generated formatting code to evaluate a Verilog `$realtime` expression. + virtual double vlog_realtime() const { return vlog_time(); } + + // Called when a `$print` cell is triggered. + virtual void on_print(const lazy_fmt &formatter, const metadata_map &attributes) { + std::cout << formatter(); + } + + // Called when a `$check` cell is triggered. + virtual void on_check(flavor type, bool condition, const lazy_fmt &formatter, const metadata_map &attributes) { + if (type == flavor::ASSERT || type == flavor::ASSUME) { + if (!condition) + std::cerr << formatter(); + CXXRTL_ASSERT(condition && "Check failed"); + } + } +}; + +// An object that can be passed to a `commit()` method in order to produce a replay log of every state change in +// the simulation. Unlike `performer`, `observer` does not use virtual calls as their overhead is unacceptable, and +// a comparatively heavyweight template-based solution is justified. +struct observer { + // Called when the `commit()` method for a wire is about to update the `chunks` chunks at `base` with `chunks` chunks + // at `value` that have a different bit pattern. It is guaranteed that `chunks` is equal to the wire chunk count and + // `base` points to the first chunk. + void on_update(size_t chunks, const chunk_t *base, const chunk_t *value) {} + + // Called when the `commit()` method for a memory is about to update the `chunks` chunks at `&base[chunks * index]` + // with `chunks` chunks at `value` that have a different bit pattern. It is guaranteed that `chunks` is equal to + // the memory element chunk count and `base` points to the first chunk of the first element of the memory. + void on_update(size_t chunks, const chunk_t *base, const chunk_t *value, size_t index) {} +}; + +// Must be kept in sync with `struct FmtPart` in kernel/fmt.h! +// Default member initializers would make this a non-aggregate-type in C++11, so they are commented out. +struct fmt_part { + enum { + LITERAL = 0, + INTEGER = 1, + STRING = 2, + UNICHAR = 3, + VLOG_TIME = 4, + } type; + + // LITERAL type + std::string str; + + // INTEGER/STRING/UNICHAR types + // + value val; + + // INTEGER/STRING/VLOG_TIME types + enum { + RIGHT = 0, + LEFT = 1, + NUMERIC = 2, + } justify; // = RIGHT; + char padding; // = '\0'; + size_t width; // = 0; + + // INTEGER type + unsigned base; // = 10; + bool signed_; // = false; + enum { + MINUS = 0, + PLUS_MINUS = 1, + SPACE_MINUS = 2, + } sign; // = MINUS; + bool hex_upper; // = false; + bool show_base; // = false; + bool group; // = false; + + // VLOG_TIME type + bool realtime; // = false; + // + int64_t itime; + // + double ftime; + + // Format the part as a string. + // + // The values of `vlog_time` and `vlog_realtime` are used for Verilog `$time` and `$realtime`, correspondingly. + template + std::string render(value val, performer *performer = nullptr) + { + // We might want to replace some of these bit() calls with direct + // chunk access if it turns out to be slow enough to matter. + std::string buf; + std::string prefix; + switch (type) { + case LITERAL: + return str; + + case STRING: { + buf.reserve(Bits/8); + for (int i = 0; i < Bits; i += 8) { + char ch = 0; + for (int j = 0; j < 8 && i + j < int(Bits); j++) + if (val.bit(i + j)) + ch |= 1 << j; + if (ch != 0) + buf.append({ch}); + } + std::reverse(buf.begin(), buf.end()); + break; + } + + case UNICHAR: { + uint32_t codepoint = val.template get(); + if (codepoint >= 0x10000) + buf += (char)(0xf0 | (codepoint >> 18)); + else if (codepoint >= 0x800) + buf += (char)(0xe0 | (codepoint >> 12)); + else if (codepoint >= 0x80) + buf += (char)(0xc0 | (codepoint >> 6)); + else + buf += (char)codepoint; + if (codepoint >= 0x10000) + buf += (char)(0x80 | ((codepoint >> 12) & 0x3f)); + if (codepoint >= 0x800) + buf += (char)(0x80 | ((codepoint >> 6) & 0x3f)); + if (codepoint >= 0x80) + buf += (char)(0x80 | ((codepoint >> 0) & 0x3f)); + break; + } + + case INTEGER: { + bool negative = signed_ && val.is_neg(); + if (negative) { + prefix = "-"; + val = val.neg(); + } else { + switch (sign) { + case MINUS: break; + case PLUS_MINUS: prefix = "+"; break; + case SPACE_MINUS: prefix = " "; break; + } + } + + size_t val_width = Bits; + if (base != 10) { + val_width = 1; + for (size_t index = 0; index < Bits; index++) + if (val.bit(index)) + val_width = index + 1; + } + + if (base == 2) { + if (show_base) + prefix += "0b"; + for (size_t index = 0; index < val_width; index++) { + if (group && index > 0 && index % 4 == 0) + buf += '_'; + buf += (val.bit(index) ? '1' : '0'); + } + } else if (base == 8 || base == 16) { + if (show_base) + prefix += (base == 16) ? (hex_upper ? "0X" : "0x") : "0o"; + size_t step = (base == 16) ? 4 : 3; + for (size_t index = 0; index < val_width; index += step) { + if (group && index > 0 && index % (4 * step) == 0) + buf += '_'; + uint8_t value = val.bit(index) | (val.bit(index + 1) << 1) | (val.bit(index + 2) << 2); + if (step == 4) + value |= val.bit(index + 3) << 3; + buf += (hex_upper ? "0123456789ABCDEF" : "0123456789abcdef")[value]; + } + } else if (base == 10) { + if (show_base) + prefix += "0d"; + if (val.is_zero()) + buf += '0'; + value<(Bits > 4 ? Bits : 4)> xval = val.template zext<(Bits > 4 ? Bits : 4)>(); + size_t index = 0; + while (!xval.is_zero()) { + if (group && index > 0 && index % 3 == 0) + buf += '_'; + value<(Bits > 4 ? Bits : 4)> quotient, remainder; + if (Bits >= 4) + std::tie(quotient, remainder) = xval.udivmod(value<(Bits > 4 ? Bits : 4)>{10u}); + else + std::tie(quotient, remainder) = std::make_pair(value<(Bits > 4 ? Bits : 4)>{0u}, xval); + buf += '0' + remainder.template trunc<4>().template get(); + xval = quotient; + index++; + } + } else assert(false && "Unsupported base for fmt_part"); + if (justify == NUMERIC && group && padding == '0') { + int group_size = base == 10 ? 3 : 4; + while (prefix.size() + buf.size() < width) { + if (buf.size() % (group_size + 1) == group_size) + buf += '_'; + buf += '0'; + } + } + std::reverse(buf.begin(), buf.end()); + break; + } + + case VLOG_TIME: { + if (performer) { + buf = realtime ? std::to_string(performer->vlog_realtime()) : std::to_string(performer->vlog_time()); + } else { + buf = realtime ? std::to_string(0.0) : std::to_string(0); + } + break; + } + } + + std::string str; + assert(width == 0 || padding != '\0'); + if (prefix.size() + buf.size() < width) { + size_t pad_width = width - prefix.size() - buf.size(); + switch (justify) { + case LEFT: + str += prefix; + str += buf; + str += std::string(pad_width, padding); + break; + case RIGHT: + str += std::string(pad_width, padding); + str += prefix; + str += buf; + break; + case NUMERIC: + str += prefix; + str += std::string(pad_width, padding); + str += buf; + break; + } + } else { + str += prefix; + str += buf; + } + return str; + } +}; + // Tag class to disambiguate values/wires and their aliases. struct debug_alias {}; @@ -889,6 +1268,9 @@ using debug_outline = ::_cxxrtl_outline; // // To avoid violating strict aliasing rules, this structure has to be a subclass of the one used // in the C API, or it would not be possible to cast between the pointers to these. +// +// The `attrs` member cannot be owned by this structure because a `cxxrtl_object` can be created +// from external C code. struct debug_item : ::cxxrtl_object { // Object types. enum : uint32_t { @@ -913,7 +1295,7 @@ struct debug_item : ::cxxrtl_object { template debug_item(value &item, size_t lsb_offset = 0, uint32_t flags_ = 0) { - static_assert(sizeof(item) == value::chunks * sizeof(chunk_t), + static_assert(Bits == 0 || sizeof(item) == value::chunks * sizeof(chunk_t), "value is not compatible with C layout"); type = VALUE; flags = flags_; @@ -924,11 +1306,12 @@ struct debug_item : ::cxxrtl_object { curr = item.data; next = item.data; outline = nullptr; + attrs = nullptr; } template debug_item(const value &item, size_t lsb_offset = 0) { - static_assert(sizeof(item) == value::chunks * sizeof(chunk_t), + static_assert(Bits == 0 || sizeof(item) == value::chunks * sizeof(chunk_t), "value is not compatible with C layout"); type = VALUE; flags = DRIVEN_COMB; @@ -939,12 +1322,14 @@ struct debug_item : ::cxxrtl_object { curr = const_cast(item.data); next = nullptr; outline = nullptr; + attrs = nullptr; } template debug_item(wire &item, size_t lsb_offset = 0, uint32_t flags_ = 0) { - static_assert(sizeof(item.curr) == value::chunks * sizeof(chunk_t) && - sizeof(item.next) == value::chunks * sizeof(chunk_t), + static_assert(Bits == 0 || + (sizeof(item.curr) == value::chunks * sizeof(chunk_t) && + sizeof(item.next) == value::chunks * sizeof(chunk_t)), "wire is not compatible with C layout"); type = WIRE; flags = flags_; @@ -955,11 +1340,12 @@ struct debug_item : ::cxxrtl_object { curr = item.curr.data; next = item.next.data; outline = nullptr; + attrs = nullptr; } template debug_item(memory &item, size_t zero_offset = 0) { - static_assert(sizeof(item.data[0]) == value::chunks * sizeof(chunk_t), + static_assert(Width == 0 || sizeof(item.data[0]) == value::chunks * sizeof(chunk_t), "memory is not compatible with C layout"); type = MEMORY; flags = 0; @@ -970,11 +1356,12 @@ struct debug_item : ::cxxrtl_object { curr = item.data ? item.data[0].data : nullptr; next = nullptr; outline = nullptr; + attrs = nullptr; } template debug_item(debug_alias, const value &item, size_t lsb_offset = 0) { - static_assert(sizeof(item) == value::chunks * sizeof(chunk_t), + static_assert(Bits == 0 || sizeof(item) == value::chunks * sizeof(chunk_t), "value is not compatible with C layout"); type = ALIAS; flags = DRIVEN_COMB; @@ -985,12 +1372,14 @@ struct debug_item : ::cxxrtl_object { curr = const_cast(item.data); next = nullptr; outline = nullptr; + attrs = nullptr; } template debug_item(debug_alias, const wire &item, size_t lsb_offset = 0) { - static_assert(sizeof(item.curr) == value::chunks * sizeof(chunk_t) && - sizeof(item.next) == value::chunks * sizeof(chunk_t), + static_assert(Bits == 0 || + (sizeof(item.curr) == value::chunks * sizeof(chunk_t) && + sizeof(item.next) == value::chunks * sizeof(chunk_t)), "wire is not compatible with C layout"); type = ALIAS; flags = DRIVEN_COMB; @@ -1001,11 +1390,12 @@ struct debug_item : ::cxxrtl_object { curr = const_cast(item.curr.data); next = nullptr; outline = nullptr; + attrs = nullptr; } template debug_item(debug_outline &group, const value &item, size_t lsb_offset = 0) { - static_assert(sizeof(item) == value::chunks * sizeof(chunk_t), + static_assert(Bits == 0 || sizeof(item) == value::chunks * sizeof(chunk_t), "value is not compatible with C layout"); type = OUTLINE; flags = DRIVEN_COMB; @@ -1016,6 +1406,7 @@ struct debug_item : ::cxxrtl_object { curr = const_cast(item.data); next = nullptr; outline = &group; + attrs = nullptr; } template @@ -1036,11 +1427,38 @@ struct debug_item : ::cxxrtl_object { }; static_assert(std::is_standard_layout::value, "debug_item is not compatible with C layout"); +} // namespace cxxrtl + +typedef struct _cxxrtl_attr_set { + cxxrtl::metadata_map map; +} *cxxrtl_attr_set; + +namespace cxxrtl { + +// Representation of an attribute set in the C++ interface. +using debug_attrs = ::_cxxrtl_attr_set; + struct debug_items { + // Debug items may be composed of multiple parts, but the attributes are shared between all of them. + // There are additional invariants, not all of which are not checked by this code: + // - Memories and non-memories cannot be mixed together. + // - Bit indices (considering `lsb_at` and `width`) must not overlap. + // - Row indices (considering `depth` and `zero_at`) must be the same. + // - The `INPUT` and `OUTPUT` flags must be the same for all parts. + // Other than that, the parts can be quite different, e.g. it is OK to mix a value, a wire, an alias, + // and an outline, in the debug information for a single name in four parts. std::map> table; - - void add(const std::string &name, debug_item &&item) { - std::vector &parts = table[name]; + std::map> attrs_table; + + void add(const std::string &path, debug_item &&item, metadata_map &&item_attrs = {}) { + assert((path.empty() || path[path.size() - 1] != ' ') && path.find(" ") == std::string::npos); + std::unique_ptr &attrs = attrs_table[path]; + if (attrs.get() == nullptr) + attrs = std::unique_ptr(new debug_attrs); + for (auto attr : item_attrs) + attrs->map.insert(attr); + item.attrs = attrs.get(); + std::vector &parts = table[path]; parts.emplace_back(item); std::sort(parts.begin(), parts.end(), [](const debug_item &a, const debug_item &b) { @@ -1048,31 +1466,82 @@ struct debug_items { }); } - size_t count(const std::string &name) const { - if (table.count(name) == 0) + // This overload exists to reduce excessive stack slot allocation in `CXXRTL_EXTREMELY_COLD void debug_info()`. + template + void add(const std::string &base_path, const char *path, const char *serialized_item_attrs, T&&... args) { + add(base_path + path, debug_item(std::forward(args)...), metadata::deserialize(serialized_item_attrs)); + } + + size_t count(const std::string &path) const { + if (table.count(path) == 0) return 0; - return table.at(name).size(); + return table.at(path).size(); } - const std::vector &parts_at(const std::string &name) const { - return table.at(name); + const std::vector &at(const std::string &path) const { + return table.at(path); } - const debug_item &at(const std::string &name) const { - const std::vector &parts = table.at(name); + // Like `at()`, but operates only on single-part debug items. + const debug_item &operator [](const std::string &path) const { + const std::vector &parts = table.at(path); assert(parts.size() == 1); return parts.at(0); } - const debug_item &operator [](const std::string &name) const { - return at(name); + bool is_memory(const std::string &path) const { + return at(path).at(0).type == debug_item::MEMORY; + } + + const metadata_map &attrs(const std::string &path) const { + return attrs_table.at(path)->map; } }; -// Tag class to disambiguate the default constructor used by the toplevel module that calls reset(), +// Only `module` scopes are defined. The type is implicit, since Yosys does not currently support +// any other scope types. +struct debug_scope { + std::string module_name; + std::unique_ptr module_attrs; + std::unique_ptr cell_attrs; +}; + +struct debug_scopes { + std::map table; + + void add(const std::string &path, const std::string &module_name, metadata_map &&module_attrs, metadata_map &&cell_attrs) { + assert((path.empty() || path[path.size() - 1] != ' ') && path.find(" ") == std::string::npos); + assert(table.count(path) == 0); + debug_scope &scope = table[path]; + scope.module_name = module_name; + scope.module_attrs = std::unique_ptr(new debug_attrs { module_attrs }); + scope.cell_attrs = std::unique_ptr(new debug_attrs { cell_attrs }); + } + + // This overload exists to reduce excessive stack slot allocation in `CXXRTL_EXTREMELY_COLD void debug_info()`. + void add(const std::string &base_path, const char *path, const char *module_name, const char *serialized_module_attrs, const char *serialized_cell_attrs) { + add(base_path + path, module_name, metadata::deserialize(serialized_module_attrs), metadata::deserialize(serialized_cell_attrs)); + } + + size_t contains(const std::string &path) const { + return table.count(path); + } + + const debug_scope &operator [](const std::string &path) const { + return table.at(path); + } +}; + +// Tag class to disambiguate the default constructor used by the toplevel module that calls `reset()`, // and the constructor of interior modules that should not call it. struct interior {}; +// The core API of the `module` class consists of only four virtual methods: `reset()`, `eval()`, +// `commit`, and `debug_info()`. (The virtual destructor is made necessary by C++.) Every other method +// is a convenience method, and exists solely to simplify some common pattern for C++ API consumers. +// No behavior may be added to such convenience methods that other parts of CXXRTL can rely on, since +// there is no guarantee they will be called (and, for example, other CXXRTL libraries will often call +// the `eval()` and `commit()` directly instead, as well as being exposed in the C API). struct module { module() {} virtual ~module() {} @@ -1088,21 +1557,35 @@ struct module { virtual void reset() = 0; - virtual bool eval() = 0; + // The `eval()` callback object, `performer`, is included in the virtual call signature since + // the generated code has broadly identical performance properties. + virtual bool eval(performer *performer = nullptr) = 0; + + // The `commit()` callback object, `observer`, is not included in the virtual call signature since + // the generated code is severely pessimized by it. To observe commit events, the non-virtual + // `commit(observer *)` overload must be called directly on a `module` subclass. virtual bool commit() = 0; - size_t step() { + size_t step(performer *performer = nullptr) { size_t deltas = 0; bool converged = false; do { - converged = eval(); + converged = eval(performer); deltas++; } while (commit() && !converged); return deltas; } - virtual void debug_info(debug_items &items, std::string path = "") { - (void)items, (void)path; + virtual void debug_info(debug_items *items, debug_scopes *scopes, std::string path, metadata_map &&cell_attrs = {}) { + (void)items, (void)scopes, (void)path, (void)cell_attrs; + } + + // Compatibility method. +#if __has_attribute(deprecated) + __attribute__((deprecated("Use `debug_info(&items, /*scopes=*/nullptr, path);` instead."))) +#endif + void debug_info(debug_items &items, std::string path) { + debug_info(&items, /*scopes=*/nullptr, path); } }; @@ -1520,35 +2003,23 @@ CXXRTL_ALWAYS_INLINE std::pair, value> divmod_uu(const value &a, const value &b) { constexpr size_t Bits = max(BitsY, max(BitsA, BitsB)); value quotient; + value remainder; value dividend = a.template zext(); value divisor = b.template zext(); - if (dividend.ucmp(divisor)) - return {/*quotient=*/value { 0u }, /*remainder=*/dividend.template trunc()}; - uint32_t divisor_shift = dividend.ctlz() - divisor.ctlz(); - divisor = divisor.shl(value<32> { divisor_shift }); - for (size_t step = 0; step <= divisor_shift; step++) { - quotient = quotient.shl(value<1> { 1u }); - if (!dividend.ucmp(divisor)) { - dividend = dividend.sub(divisor); - quotient.set_bit(0, true); - } - divisor = divisor.shr(value<1> { 1u }); - } - return {quotient.template trunc(), /*remainder=*/dividend.template trunc()}; + std::tie(quotient, remainder) = dividend.udivmod(divisor); + return {quotient.template trunc(), remainder.template trunc()}; } template CXXRTL_ALWAYS_INLINE std::pair, value> divmod_ss(const value &a, const value &b) { - value ua = a.template sext(); - value ub = b.template sext(); - if (ua.is_neg()) ua = ua.neg(); - if (ub.is_neg()) ub = ub.neg(); - value y, r; - std::tie(y, r) = divmod_uu(ua, ub); - if (a.is_neg() != b.is_neg()) y = y.neg(); - if (a.is_neg()) r = r.neg(); - return {y, r}; + constexpr size_t Bits = max(BitsY, max(BitsA, BitsB)); + value quotient; + value remainder; + value dividend = a.template sext(); + value divisor = b.template sext(); + std::tie(quotient, remainder) = dividend.sdivmod(divisor); + return {quotient.template trunc(), remainder.template trunc()}; } template diff --git a/yosys/backends/cxxrtl/runtime/cxxrtl/cxxrtl_replay.h b/yosys/backends/cxxrtl/runtime/cxxrtl/cxxrtl_replay.h new file mode 100644 index 00000000000..9aa3e105d2c --- /dev/null +++ b/yosys/backends/cxxrtl/runtime/cxxrtl/cxxrtl_replay.h @@ -0,0 +1,873 @@ +/* + * yosys -- Yosys Open SYnthesis Suite + * + * Copyright (C) 2023 Catherine + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + */ + +#ifndef CXXRTL_REPLAY_H +#define CXXRTL_REPLAY_H + +#if !defined(WIN32) +#include +#define O_BINARY 0 +#else +#include +#endif + +#include +#include +#include +#include +#include + +#include +#include + +// Theory of operation +// =================== +// +// Log format +// ---------- +// +// The replay log is a simple data format based on a sequence of 32-bit words. The following BNF-like grammar describes +// enough detail to understand the overall structure of the log data and be able to read hex dumps. For a greater +// degree of detail see the source code. The format is considered fully internal to CXXRTL and is subject to change +// without notice. +// +// ::= + +// ::= 0x52585843 0x00004c54 +// ::= * +// ::= ( | )* +// ::= 0xc0000000 ... +// ::= 0xc0000001 ... +// ::= 0x0??????? + | 0x1??????? + | 0x2??????? | 0x3??????? +// , ::= 0x???????? +// ::= | | | +// ::= 0xc0000010 +// ::= 0xc0000011 +// ::= 0xc0000012 +// ::= 0xc0000013 +// ::= 0xFFFFFFFF +// +// The replay log contains sample data, however, it does not cover the entire design. Rather, it only contains sample +// data for the subset of debug items containing _design state_: inputs and registers/latches. This keeps its size to +// a minimum, and recording speed to a maximum. The player samples any missing data by setting the design state items +// to the same values they had during recording, and re-evaluating the design. +// +// Packets for diagnostics (prints, breakpoints, assertions, and assumptions) are used solely for diagnostics emitted +// by the C++ testbench driving the simulation, and are not recorded while evaluating the design. (Diagnostics emitted +// by the RTL can be reconstructed at replay time, so recording them would be a waste of space.) +// +// Limits +// ------ +// +// The log may contain: +// +// * Up to 2**28-1 debug items containing design state. +// * Up to 2**32 chunks per debug item. +// * Up to 2**32 rows per memory. +// * Up to 2**32 samples. +// +// Of these limits, the last two are most likely to be eventually exceeded by practical recordings. However, other +// performance considerations will likely limit the size of such practical recordings first, so the log data format +// will undergo a breaking change at that point. +// +// Operations +// ---------- +// +// As suggested by the name "replay log", this format is designed for recording (writing) once and playing (reading) +// many times afterwards, such that reading the format can be done linearly and quickly. The log format is designed to +// support three primary read operations: +// +// 1. Initialization +// 2. Rewinding (to time T) +// 3. Replaying (for N samples) +// +// During initialization, the player establishes the mapping between debug item names and their 28-bit identifiers in +// the log. It is done once. +// +// During rewinding, the player begins reading at the latest non-incremental sample that still lies before the requested +// sample time. It continues reading incremental samples after that point until it reaches the requested sample time. +// This process is very cheap as the design is not evaluated; it is essentially a (convoluted) memory copy operation. +// +// During replaying, the player evaluates the design at the current time, which causes all debug items to assume +// the values they had before recording. This process is expensive. Once done, the player advances to the next state +// by reading the next (complete or incremental) sample, as above. Since a range of samples is replayed, this process +// is repeated several times in a row. +// +// In principle, when replaying, the player could only read the state of the inputs and the time delta and use a normal +// eval/commit loop to progress the simulation, which is fully deterministic so its calculated design state should be +// exactly the same as the recorded design state. In practice, it is both faster and more reliable (in presence of e.g. +// user-defined black boxes) to read the recorded values instead of calculating them. +// +// Note: The operations described above are conceptual and do not correspond exactly to methods on `cxxrtl::player`. +// The `cxxrtl::player::replay()` method does not evaluate the design. This is so that delta cycles could be ignored +// if they are not of interest while replaying. + +namespace cxxrtl { + +// A single diagnostic that can be manipulated as an object (including being written to and read from a file). +// This differs from the base CXXRTL interface, where diagnostics can only be emitted via a procedure call, and are +// not materialized as objects. +struct diagnostic { + // The `BREAK` flavor corresponds to a breakpoint, which is a diagnostic type that can currently only be emitted + // by the C++ testbench code. + enum flavor { + BREAK = 0, + PRINT = 1, + ASSERT = 2, + ASSUME = 3, + }; + + flavor type; + std::string message; + std::string location; // same format as the `src` attribute of `$print` or `$check` cell + + diagnostic() + : type(BREAK) {} + + diagnostic(flavor type, const std::string &message, const std::string &location) + : type(type), message(message), location(location) {} + + diagnostic(flavor type, const std::string &message, const char *file, unsigned line) + : type(type), message(message), location(std::string(file) + ':' + std::to_string(line)) {} +}; + +// A spool stores CXXRTL design state changes in a file. +class spool { +public: + // Unique pointer to a specific sample within a replay log. (Timestamps are not unique.) + typedef uint32_t pointer_t; + + // Numeric identifier assigned to a debug item within a replay log. Range limited to [1, MAXIMUM_IDENT]. + typedef uint32_t ident_t; + + static constexpr uint16_t VERSION = 0x0400; + + static constexpr uint64_t HEADER_MAGIC = 0x00004c5452585843; + static constexpr uint64_t VERSION_MASK = 0xffff000000000000; + + static constexpr uint32_t PACKET_DEFINE = 0xc0000000; + + static constexpr uint32_t PACKET_SAMPLE = 0xc0000001; + enum sample_flag : uint32_t { + EMPTY = 0, + INCREMENTAL = 1, + }; + + static constexpr uint32_t MAXIMUM_IDENT = 0x0fffffff; + static constexpr uint32_t CHANGE_MASK = 0x30000000; + + static constexpr uint32_t PACKET_CHANGE = 0x00000000/* | ident */; + static constexpr uint32_t PACKET_CHANGEI = 0x10000000/* | ident */; + static constexpr uint32_t PACKET_CHANGEL = 0x20000000/* | ident */; + static constexpr uint32_t PACKET_CHANGEH = 0x30000000/* | ident */; + + static constexpr uint32_t PACKET_DIAGNOSTIC = 0xc0000010/* | diagnostic::flavor */; + static constexpr uint32_t DIAGNOSTIC_MASK = 0x0000000f; + + static constexpr uint32_t PACKET_END = 0xffffffff; + + // Writing spools. + + class writer { + int fd; + size_t position; + std::vector buffer; + + // These functions aren't overloaded because of implicit numeric conversions. + + void emit_word(uint32_t word) { + if (position + 1 == buffer.size()) + flush(); + buffer[position++] = word; + } + + void emit_dword(uint64_t dword) { + emit_word(dword >> 0); + emit_word(dword >> 32); + } + + void emit_ident(ident_t ident) { + assert(ident <= MAXIMUM_IDENT); + emit_word(ident); + } + + void emit_size(size_t size) { + assert(size <= std::numeric_limits::max()); + emit_word(size); + } + + // Same implementation as `emit_size()`, different declared intent. + void emit_index(size_t index) { + assert(index <= std::numeric_limits::max()); + emit_word(index); + } + + void emit_string(std::string str) { + // Align to a word boundary, and add at least one terminating \0. + str.resize(str.size() + (sizeof(uint32_t) - (str.size() + sizeof(uint32_t)) % sizeof(uint32_t))); + for (size_t index = 0; index < str.size(); index += sizeof(uint32_t)) { + uint32_t word; + memcpy(&word, &str[index], sizeof(uint32_t)); + emit_word(word); + } + } + + void emit_time(const time ×tamp) { + const value &raw_timestamp(timestamp); + emit_word(raw_timestamp.data[0]); + emit_word(raw_timestamp.data[1]); + emit_word(raw_timestamp.data[2]); + } + + public: + // Creates a writer, and transfers ownership of `fd`, which must be open for appending. + // + // The buffer size is currently fixed to a "reasonably large" size, determined empirically by measuring writer + // performance on a representative design; large but not so large it would e.g. cause address space exhaustion + // on 32-bit platforms. + writer(spool &spool) : fd(spool.take_write()), position(0), buffer(32 * 1024 * 1024) { + assert(fd != -1); +#if !defined(WIN32) + int result = ftruncate(fd, 0); +#else + int result = _chsize_s(fd, 0); +#endif + assert(result == 0); + } + + writer(writer &&moved) : fd(moved.fd), position(moved.position), buffer(moved.buffer) { + moved.fd = -1; + moved.position = 0; + } + + writer(const writer &) = delete; + writer &operator=(const writer &) = delete; + + // Both write() calls and fwrite() calls are too expensive to perform implicitly. The API consumer must determine + // the optimal time to flush the writer and do that explicitly for best performance. + void flush() { + assert(fd != -1); + size_t data_size = position * sizeof(uint32_t); + size_t data_written = write(fd, buffer.data(), data_size); + assert(data_size == data_written); + position = 0; + } + + ~writer() { + if (fd != -1) { + flush(); + close(fd); + } + } + + void write_magic() { + // `CXXRTL` followed by version in binary. This header will read backwards on big-endian machines, which allows + // detection of this case, both visually and programmatically. + emit_dword(((uint64_t)VERSION << 48) | HEADER_MAGIC); + } + + void write_define(ident_t ident, const std::string &name, size_t part_index, size_t chunks, size_t depth) { + emit_word(PACKET_DEFINE); + emit_ident(ident); + emit_string(name); + emit_index(part_index); + emit_size(chunks); + emit_size(depth); + } + + void write_sample(bool incremental, pointer_t pointer, const time ×tamp) { + uint32_t flags = (incremental ? sample_flag::INCREMENTAL : 0); + emit_word(PACKET_SAMPLE); + emit_word(flags); + emit_word(pointer); + emit_time(timestamp); + } + + void write_change(ident_t ident, size_t chunks, const chunk_t *data) { + assert(ident <= MAXIMUM_IDENT); + + if (chunks == 1 && *data == 0) { + emit_word(PACKET_CHANGEL | ident); + } else if (chunks == 1 && *data == 1) { + emit_word(PACKET_CHANGEH | ident); + } else { + emit_word(PACKET_CHANGE | ident); + for (size_t offset = 0; offset < chunks; offset++) + emit_word(data[offset]); + } + } + + void write_change(ident_t ident, size_t chunks, const chunk_t *data, size_t index) { + assert(ident <= MAXIMUM_IDENT); + + emit_word(PACKET_CHANGEI | ident); + emit_index(index); + for (size_t offset = 0; offset < chunks; offset++) + emit_word(data[offset]); + } + + void write_diagnostic(const diagnostic &diagnostic) { + emit_word(PACKET_DIAGNOSTIC | diagnostic.type); + emit_string(diagnostic.message); + emit_string(diagnostic.location); + } + + void write_end() { + emit_word(PACKET_END); + } + }; + + // Reading spools. + + class reader { + FILE *f; + + uint32_t absorb_word() { + // If we're at end of file, `fread` will not write to `word`, and `PACKET_END` will be returned. + uint32_t word = PACKET_END; + fread(&word, sizeof(word), 1, f); + return word; + } + + uint64_t absorb_dword() { + uint32_t lo = absorb_word(); + uint32_t hi = absorb_word(); + return ((uint64_t)hi << 32) | lo; + } + + ident_t absorb_ident() { + ident_t ident = absorb_word(); + assert(ident <= MAXIMUM_IDENT); + return ident; + } + + size_t absorb_size() { + return absorb_word(); + } + + size_t absorb_index() { + return absorb_word(); + } + + std::string absorb_string() { + std::string str; + do { + size_t end = str.size(); + str.resize(end + 4); + uint32_t word = absorb_word(); + memcpy(&str[end], &word, sizeof(uint32_t)); + } while (str.back() != '\0'); + // Strings have no embedded zeroes besides the terminating one(s). + return str.substr(0, str.find('\0')); + } + + time absorb_time() { + value raw_timestamp; + raw_timestamp.data[0] = absorb_word(); + raw_timestamp.data[1] = absorb_word(); + raw_timestamp.data[2] = absorb_word(); + return time(raw_timestamp); + } + + public: + typedef uint64_t pos_t; + + // Creates a reader, and transfers ownership of `fd`, which must be open for reading. + reader(spool &spool) : f(fdopen(spool.take_read(), "r")) { + assert(f != nullptr); + } + + reader(reader &&moved) : f(moved.f) { + moved.f = nullptr; + } + + reader(const reader &) = delete; + reader &operator=(const reader &) = delete; + + ~reader() { + if (f != nullptr) + fclose(f); + } + + pos_t position() { + return ftell(f); + } + + void rewind(pos_t position) { + fseek(f, position, SEEK_SET); + } + + void read_magic() { + uint64_t magic = absorb_dword(); + assert((magic & ~VERSION_MASK) == HEADER_MAGIC); + assert((magic >> 48) == VERSION); + } + + bool read_define(ident_t &ident, std::string &name, size_t &part_index, size_t &chunks, size_t &depth) { + uint32_t header = absorb_word(); + if (header == PACKET_END) + return false; + assert(header == PACKET_DEFINE); + ident = absorb_ident(); + name = absorb_string(); + part_index = absorb_index(); + chunks = absorb_size(); + depth = absorb_size(); + return true; + } + + bool read_sample(bool &incremental, pointer_t &pointer, time ×tamp) { + uint32_t header = absorb_word(); + if (header == PACKET_END) + return false; + assert(header == PACKET_SAMPLE); + uint32_t flags = absorb_word(); + incremental = (flags & sample_flag::INCREMENTAL); + pointer = absorb_word(); + timestamp = absorb_time(); + return true; + } + + bool read_header(uint32_t &header) { + header = absorb_word(); + return header != PACKET_END; + } + + // This method must be separate from `read_change_data` because `chunks` and `depth` can only be looked up + // if `ident` is known. + bool read_change_ident(uint32_t header, ident_t &ident) { + if ((header & ~(CHANGE_MASK | MAXIMUM_IDENT)) != 0) + return false; // some other packet + ident = header & MAXIMUM_IDENT; + return true; + } + + void read_change_data(uint32_t header, size_t chunks, size_t depth, chunk_t *data) { + uint32_t index = 0; + switch (header & CHANGE_MASK) { + case PACKET_CHANGEL: + *data = 0; + return; + case PACKET_CHANGEH: + *data = 1; + return; + case PACKET_CHANGE: + break; + case PACKET_CHANGEI: + index = absorb_word(); + assert(index < depth); + break; + default: + assert(false && "Unrecognized change packet"); + } + for (size_t offset = 0; offset < chunks; offset++) + data[chunks * index + offset] = absorb_word(); + } + + bool read_diagnostic(uint32_t header, diagnostic &diagnostic) { + if ((header & ~DIAGNOSTIC_MASK) != PACKET_DIAGNOSTIC) + return false; // some other packet + uint32_t type = header & DIAGNOSTIC_MASK; + assert(type == diagnostic::BREAK || type == diagnostic::PRINT || + type == diagnostic::ASSERT || type == diagnostic::ASSUME); + diagnostic.type = (diagnostic::flavor)type; + diagnostic.message = absorb_string(); + diagnostic.location = absorb_string(); + return true; + } + }; + + // Opening spools. For certain uses of the record/replay mechanism, two distinct open files (two open files, i.e. + // two distinct file pointers, and not just file descriptors, which share the file pointer if duplicated) are used, + // for a reader and writer thread. This class manages the lifetime of the descriptors for these files. When only + // one of them is used, the other is closed harmlessly when the spool is destroyed. +private: + std::atomic writefd; + std::atomic readfd; + +public: + spool(const std::string &filename) + : writefd(open(filename.c_str(), O_CREAT|O_BINARY|O_WRONLY|O_APPEND, 0644)), + readfd(open(filename.c_str(), O_BINARY|O_RDONLY)) { + assert(writefd.load() != -1 && readfd.load() != -1); + } + + spool(spool &&moved) : writefd(moved.writefd.exchange(-1)), readfd(moved.readfd.exchange(-1)) {} + + spool(const spool &) = delete; + spool &operator=(const spool &) = delete; + + ~spool() { + int fd; + if ((fd = writefd.exchange(-1)) != -1) + close(fd); + if ((fd = readfd.exchange(-1)) != -1) + close(fd); + } + + // Atomically acquire a write file descriptor for the spool. Can be called once, and will return -1 the next time + // it is called. Thread-safe. + int take_write() { + return writefd.exchange(-1); + } + + // Atomically acquire a read file descriptor for the spool. Can be called once, and will return -1 the next time + // it is called. Thread-safe. + int take_read() { + return readfd.exchange(-1); + } +}; + +// A CXXRTL recorder samples design state, producing complete or incremental updates, and writes them to a spool. +class recorder { + struct variable { + spool::ident_t ident; /* <= spool::MAXIMUM_IDENT */ + size_t chunks; + size_t depth; /* == 1 for wires */ + chunk_t *curr; + bool memory; + }; + + spool::writer writer; + std::vector variables; + std::vector inputs; // values of inputs must be recorded explicitly, as their changes are not observed + std::unordered_map ident_lookup; + bool streaming = false; // whether variable definitions have been written + spool::pointer_t pointer = 0; + time timestamp; + +public: + template + recorder(Args &&...args) : writer(std::forward(args)...) {} + + void start(module &module, std::string top_path = "") { + debug_items items; + module.debug_info(&items, /*scopes=*/nullptr, top_path); + start(items); + } + + void start(const debug_items &items) { + assert(!streaming); + + writer.write_magic(); + for (auto item : items.table) + for (size_t part_index = 0; part_index < item.second.size(); part_index++) { + auto &part = item.second[part_index]; + if ((part.flags & debug_item::INPUT) || (part.flags & debug_item::DRIVEN_SYNC) || + (part.type == debug_item::MEMORY)) { + variable var; + var.ident = variables.size() + 1; + var.chunks = (part.width + sizeof(chunk_t) * 8 - 1) / (sizeof(chunk_t) * 8); + var.depth = part.depth; + var.curr = part.curr; + var.memory = (part.type == debug_item::MEMORY); + ident_lookup[var.curr] = var.ident; + + assert(variables.size() < spool::MAXIMUM_IDENT); + if (part.flags & debug_item::INPUT) + inputs.push_back(variables.size()); + variables.push_back(var); + + writer.write_define(var.ident, item.first, part_index, var.chunks, var.depth); + } + } + writer.write_end(); + streaming = true; + } + + const time &latest_time() { + return timestamp; + } + + const time &advance_time(const time &delta) { + assert(!delta.is_negative()); + timestamp += delta; + return timestamp; + } + + void record_complete() { + assert(streaming); + + writer.write_sample(/*incremental=*/false, pointer++, timestamp); + for (auto var : variables) { + assert(var.ident != 0); + if (!var.memory) + writer.write_change(var.ident, var.chunks, var.curr); + else + for (size_t index = 0; index < var.depth; index++) + writer.write_change(var.ident, var.chunks, &var.curr[var.chunks * index], index); + } + writer.write_end(); + } + + // This function is generic over ModuleT to encourage observer callbacks to be inlined into the commit function. + template + bool record_incremental(ModuleT &module) { + assert(streaming); + + struct : observer { + std::unordered_map *ident_lookup; + spool::writer *writer; + + CXXRTL_ALWAYS_INLINE + void on_update(size_t chunks, const chunk_t *base, const chunk_t *value) { + writer->write_change(ident_lookup->at(base), chunks, value); + } + + CXXRTL_ALWAYS_INLINE + void on_update(size_t chunks, const chunk_t *base, const chunk_t *value, size_t index) { + writer->write_change(ident_lookup->at(base), chunks, value, index); + } + } record_observer; + record_observer.ident_lookup = &ident_lookup; + record_observer.writer = &writer; + + writer.write_sample(/*incremental=*/true, pointer++, timestamp); + for (auto input_index : inputs) { + variable &var = variables.at(input_index); + assert(!var.memory); + writer.write_change(var.ident, var.chunks, var.curr); + } + bool changed = module.commit(record_observer); + writer.write_end(); + return changed; + } + + void record_diagnostic(const diagnostic &diagnostic) { + assert(streaming); + + // Emit an incremental delta cycle per diagnostic to simplify the logic of the recorder. This is inefficient, but + // diagnostics should be rare enough that this inefficiency does not matter. If it turns out to be an issue, this + // code should be changed to accumulate diagnostics to a buffer that is flushed in `record_{complete,incremental}` + // and also in `advance_time` before the timestamp is changed. (Right now `advance_time` never writes to the spool.) + writer.write_sample(/*incremental=*/true, pointer++, timestamp); + writer.write_diagnostic(diagnostic); + writer.write_end(); + } + + void flush() { + writer.flush(); + } +}; + +// A CXXRTL player reads samples from a spool, and changes the design state accordingly. To start reading samples, +// a spool must have been initialized: the recorder must have been started and an initial complete sample must have +// been written. +class player { + struct variable { + size_t chunks; + size_t depth; /* == 1 for wires */ + chunk_t *curr; + }; + + spool::reader reader; + std::unordered_map variables; + bool streaming = false; // whether variable definitions have been read + bool initialized = false; // whether a sample has ever been read + spool::pointer_t pointer = 0; + time timestamp; + + std::map> index_by_pointer; + std::map> index_by_timestamp; + + bool peek_sample(spool::pointer_t &pointer, time ×tamp) { + bool incremental; + auto position = reader.position(); + bool success = reader.read_sample(incremental, pointer, timestamp); + reader.rewind(position); + return success; + } + +public: + template + player(Args &&...args) : reader(std::forward(args)...) {} + + // The `top_path` must match the one given to the recorder. + void start(module &module, std::string top_path = "") { + debug_items items; + module.debug_info(&items, /*scopes=*/nullptr, top_path); + start(items); + } + + void start(const debug_items &items) { + assert(!streaming); + + reader.read_magic(); + while (true) { + spool::ident_t ident; + std::string name; + size_t part_index; + size_t chunks; + size_t depth; + if (!reader.read_define(ident, name, part_index, chunks, depth)) + break; + assert(variables.count(ident) == 0); + assert(items.count(name) != 0); + assert(part_index < items.count(name)); + + const debug_item &part = items.at(name).at(part_index); + assert(chunks == (part.width + sizeof(chunk_t) * 8 - 1) / (sizeof(chunk_t) * 8)); + assert(depth == part.depth); + + variable &var = variables[ident]; + var.chunks = chunks; + var.depth = depth; + var.curr = part.curr; + } + assert(variables.size() > 0); + streaming = true; + + // Establish the initial state of the design. + std::vector diagnostics; + initialized = replay(&diagnostics); + assert(initialized && diagnostics.empty()); + } + + // Returns the pointer of the current sample. + spool::pointer_t current_pointer() { + assert(initialized); + return pointer; + } + + // Returns the time of the current sample. + const time ¤t_time() { + assert(initialized); + return timestamp; + } + + // Returns `true` if there is a next sample to read, and sets `pointer` to its pointer if there is. + bool get_next_pointer(spool::pointer_t &pointer) { + assert(streaming); + time timestamp; + return peek_sample(pointer, timestamp); + } + + // Returns `true` if there is a next sample to read, and sets `timestamp` to its time if there is. + bool get_next_time(time ×tamp) { + assert(streaming); + uint32_t pointer; + return peek_sample(pointer, timestamp); + } + + // If this function returns `true`, then `current_pointer() == at_pointer`, and the module contains values that + // correspond to this pointer in the replay log. To obtain a valid pointer, call `current_pointer()`; while pointers + // are monotonically increasing for each consecutive sample, using arithmetic operations to create a new pointer is + // not allowed. The `diagnostics` argument, if not `nullptr`, receives the diagnostics recorded in this sample. + bool rewind_to(spool::pointer_t at_pointer, std::vector *diagnostics) { + assert(initialized); + + // The pointers in the replay log start from one that is greater than `at_pointer`. In this case the pointer will + // never be reached. + assert(index_by_pointer.size() > 0); + if (at_pointer < index_by_pointer.rbegin()->first) + return false; + + // Find the last complete sample whose pointer is less than or equal to `at_pointer`. Note that the comparison + // function used here is `std::greater`, inverting the direction of `lower_bound`. + auto position_it = index_by_pointer.lower_bound(at_pointer); + assert(position_it != index_by_pointer.end()); + reader.rewind(position_it->second); + + // Replay samples until eventually arriving to `at_pointer` or encountering end of file. + while(replay(diagnostics)) { + if (pointer == at_pointer) + return true; + + if (diagnostics) + diagnostics->clear(); + } + return false; + } + + // If this function returns `true`, then `current_time() <= at_or_before_timestamp`, and the module contains values + // that correspond to `current_time()` in the replay log. If `current_time() == at_or_before_timestamp` and there + // are several consecutive samples with the same time, the module contains values that correspond to the first of + // these samples. The `diagnostics` argument, if not `nullptr`, receives the diagnostics recorded in this sample. + bool rewind_to_or_before(const time &at_or_before_timestamp, std::vector *diagnostics) { + assert(initialized); + + // The timestamps in the replay log start from one that is greater than `at_or_before_timestamp`. In this case + // the timestamp will never be reached. Otherwise, this function will always succeed. + assert(index_by_timestamp.size() > 0); + if (at_or_before_timestamp < index_by_timestamp.rbegin()->first) + return false; + + // Find the last complete sample whose timestamp is less than or equal to `at_or_before_timestamp`. Note that + // the comparison function used here is `std::greater`, inverting the direction of `lower_bound`. + auto position_it = index_by_timestamp.lower_bound(at_or_before_timestamp); + assert(position_it != index_by_timestamp.end()); + reader.rewind(position_it->second); + + // Replay samples until eventually arriving to or past `at_or_before_timestamp` or encountering end of file. + while (replay(diagnostics)) { + if (timestamp == at_or_before_timestamp) + break; + + time next_timestamp; + if (!get_next_time(next_timestamp)) + break; + if (next_timestamp > at_or_before_timestamp) + break; + + if (diagnostics) + diagnostics->clear(); + } + return true; + } + + // If this function returns `true`, then `current_pointer()` and `current_time()` are updated for the next sample + // and the module now contains values that correspond to that sample. If it returns `false`, there was no next sample + // to read. The `diagnostics` argument, if not `nullptr`, receives the diagnostics recorded in the next sample. + bool replay(std::vector *diagnostics) { + assert(streaming); + + bool incremental; + auto position = reader.position(); + if (!reader.read_sample(incremental, pointer, timestamp)) + return false; + + // The very first sample that is read must be a complete sample. This is required for the rewind functions to work. + assert(initialized || !incremental); + + // It is possible (though not very useful) to have several complete samples with the same timestamp in a row. + // Ensure that we associate the timestamp with the position of the first such complete sample. (This condition + // works because the player never jumps over a sample.) + if (!incremental && !index_by_pointer.count(pointer)) { + assert(!index_by_timestamp.count(timestamp)); + index_by_pointer[pointer] = position; + index_by_timestamp[timestamp] = position; + } + + uint32_t header; + while (reader.read_header(header)) { + spool::ident_t ident; + diagnostic diag; + if (reader.read_change_ident(header, ident)) { + variable &var = variables.at(ident); + reader.read_change_data(header, var.chunks, var.depth, var.curr); + } else if (reader.read_diagnostic(header, diag)) { + if (diagnostics) + diagnostics->push_back(diag); + } else assert(false && "Unrecognized packet header"); + } + return true; + } +}; + +} + +#endif diff --git a/yosys/backends/cxxrtl/runtime/cxxrtl/cxxrtl_time.h b/yosys/backends/cxxrtl/runtime/cxxrtl/cxxrtl_time.h new file mode 100644 index 00000000000..f37c2b65640 --- /dev/null +++ b/yosys/backends/cxxrtl/runtime/cxxrtl/cxxrtl_time.h @@ -0,0 +1,231 @@ +/* + * yosys -- Yosys Open SYnthesis Suite + * + * Copyright (C) 2023 Catherine + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + */ + +#ifndef CXXRTL_TIME_H +#define CXXRTL_TIME_H + +#include +#include + +#include + +namespace cxxrtl { + +// A timestamp or a difference in time, stored as a 96-bit number of femtoseconds (10e-15 s). The range and resolution +// of this format can represent any VCD timestamp within approx. ±1255321.2 years, without the need for a timescale. +class time { +public: + static constexpr size_t bits = 96; // 3 chunks + +private: + static constexpr size_t resolution_digits = 15; + + static_assert(sizeof(chunk_t) == 4, "a chunk is expected to be 32-bit"); + static constexpr value resolution = value { + chunk_t(1000000000000000ull & 0xffffffffull), chunk_t(1000000000000000ull >> 32), 0u + }; + + // Signed number of femtoseconds from the beginning of time. + value raw; + +public: + constexpr time() {} + + explicit constexpr time(const value &raw) : raw(raw) {} + explicit operator const value &() const { return raw; } + + static constexpr time maximum() { + return time(value { 0xffffffffu, 0xffffffffu, 0x7fffffffu }); + } + + time(int64_t secs, int64_t femtos) { + value<64> secs_val; + secs_val.set(secs); + value<64> femtos_val; + femtos_val.set(femtos); + raw = secs_val.sext().mul(resolution).add(femtos_val.sext()); + } + + bool is_zero() const { + return raw.is_zero(); + } + + // Extracts the sign of the value. + bool is_negative() const { + return raw.is_neg(); + } + + // Extracts the number of whole seconds. Negative if the value is negative. + int64_t secs() const { + return raw.sdivmod(resolution).first.trunc<64>().get(); + } + + // Extracts the number of femtoseconds in the fractional second. Negative if the value is negative. + int64_t femtos() const { + return raw.sdivmod(resolution).second.trunc<64>().get(); + } + + bool operator==(const time &other) const { + return raw == other.raw; + } + + bool operator!=(const time &other) const { + return raw != other.raw; + } + + bool operator>(const time &other) const { + return other.raw.scmp(raw); + } + + bool operator>=(const time &other) const { + return !raw.scmp(other.raw); + } + + bool operator<(const time &other) const { + return raw.scmp(other.raw); + } + + bool operator<=(const time &other) const { + return !other.raw.scmp(raw); + } + + time operator+(const time &other) const { + return time(raw.add(other.raw)); + } + + time &operator+=(const time &other) { + *this = *this + other; + return *this; + } + + time operator-() const { + return time(raw.neg()); + } + + time operator-(const time &other) const { + return *this + (-other); + } + + time &operator-=(const time &other) { + *this = *this - other; + return *this; + } + + operator std::string() const { + char buf[48]; // x=2**95; len(f"-{x/1_000_000_000_000_000}.{x^1_000_000_000_000_000}") == 48 + int64_t secs = this->secs(); + int64_t femtos = this->femtos(); + snprintf(buf, sizeof(buf), "%s%" PRIi64 ".%015" PRIi64, + is_negative() ? "-" : "", secs >= 0 ? secs : -secs, femtos >= 0 ? femtos : -femtos); + return buf; + } + +#if __cplusplus >= 201603L + [[nodiscard("ignoring parse errors")]] +#endif + bool parse(const std::string &str) { + enum { + parse_sign_opt, + parse_integral, + parse_fractional, + } state = parse_sign_opt; + bool negative = false; + int64_t integral = 0; + int64_t fractional = 0; + size_t frac_digits = 0; + for (auto chr : str) { + switch (state) { + case parse_sign_opt: + state = parse_integral; + if (chr == '+' || chr == '-') { + negative = (chr == '-'); + break; + } + /* fallthrough */ + case parse_integral: + if (chr >= '0' && chr <= '9') { + integral *= 10; + integral += chr - '0'; + } else if (chr == '.') { + state = parse_fractional; + } else { + return false; + } + break; + case parse_fractional: + if (chr >= '0' && chr <= '9' && frac_digits < resolution_digits) { + fractional *= 10; + fractional += chr - '0'; + frac_digits++; + } else { + return false; + } + break; + } + } + if (frac_digits == 0) + return false; + while (frac_digits++ < resolution_digits) + fractional *= 10; + *this = negative ? -time { integral, fractional} : time { integral, fractional }; + return true; + } +}; + +// Out-of-line definition required until C++17. +constexpr value time::resolution; + +std::ostream &operator<<(std::ostream &os, const time &val) { + os << (std::string)val; + return os; +} + +// These literals are (confusingly) compatible with the ones from `std::chrono`: the `std::chrono` literals do not +// have an underscore (e.g. 1ms) and the `cxxrtl::time` literals do (e.g. 1_ms). This syntactic difference is +// a requirement of the C++ standard. Despite being compatible the literals should not be mixed in the same namespace. +namespace time_literals { + +time operator""_s(unsigned long long seconds) { + return time { (int64_t)seconds, 0 }; +} + +time operator""_ms(unsigned long long milliseconds) { + return time { 0, (int64_t)milliseconds * 1000000000000 }; +} + +time operator""_us(unsigned long long microseconds) { + return time { 0, (int64_t)microseconds * 1000000000 }; +} + +time operator""_ns(unsigned long long nanoseconds) { + return time { 0, (int64_t)nanoseconds * 1000000 }; +} + +time operator""_ps(unsigned long long picoseconds) { + return time { 0, (int64_t)picoseconds * 1000 }; +} + +time operator""_fs(unsigned long long femtoseconds) { + return time { 0, (int64_t)femtoseconds }; +} + +}; + +}; + +#endif diff --git a/yosys/backends/cxxrtl/cxxrtl_vcd.h b/yosys/backends/cxxrtl/runtime/cxxrtl/cxxrtl_vcd.h similarity index 99% rename from yosys/backends/cxxrtl/cxxrtl_vcd.h rename to yosys/backends/cxxrtl/runtime/cxxrtl/cxxrtl_vcd.h index b76922bbd8a..cb2ccf5fc26 100644 --- a/yosys/backends/cxxrtl/cxxrtl_vcd.h +++ b/yosys/backends/cxxrtl/runtime/cxxrtl/cxxrtl_vcd.h @@ -19,7 +19,7 @@ #ifndef CXXRTL_VCD_H #define CXXRTL_VCD_H -#include +#include namespace cxxrtl { diff --git a/yosys/backends/edif/edif.cc b/yosys/backends/edif/edif.cc index 00fd7f54e39..553eb23d645 100644 --- a/yosys/backends/edif/edif.cc +++ b/yosys/backends/edif/edif.cc @@ -213,6 +213,9 @@ struct EdifBackend : public Backend { for (auto cell : module->cells()) { + if (cell->type == ID($scopeinfo)) + continue; + if (design->module(cell->type) == nullptr || design->module(cell->type)->get_blackbox_attribute()) { lib_cell_ports[cell->type]; for (auto p : cell->connections()) diff --git a/yosys/backends/firrtl/firrtl.cc b/yosys/backends/firrtl/firrtl.cc index fc1d628915c..dc76dbeecf5 100644 --- a/yosys/backends/firrtl/firrtl.cc +++ b/yosys/backends/firrtl/firrtl.cc @@ -980,6 +980,9 @@ struct FirrtlWorker register_reverse_wire_map(y_id, cell->getPort(ID::Y)); continue; } + + if (cell->type == ID($scopeinfo)) + continue; log_error("Cell type not supported: %s (%s.%s)\n", log_id(cell->type), log_id(module), log_id(cell)); } diff --git a/yosys/backends/firrtl/test.sh b/yosys/backends/firrtl/test.sh index fe7e3a32912..dd675e91712 100644 --- a/yosys/backends/firrtl/test.sh +++ b/yosys/backends/firrtl/test.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -ex cd ../../ diff --git a/yosys/backends/jny/jny.cc b/yosys/backends/jny/jny.cc index 9989feed599..1c163dba52e 100644 --- a/yosys/backends/jny/jny.cc +++ b/yosys/backends/jny/jny.cc @@ -124,7 +124,7 @@ struct JnyWriter design->sort(); f << "{\n"; - f << " \"$schema\": \"https://raw.githubusercontent.com/YosysHQ/yosys/master/misc/jny.schema.json\",\n"; + f << " \"$schema\": \"https://raw.githubusercontent.com/YosysHQ/yosys/main/misc/jny.schema.json\",\n"; f << stringf(" \"generator\": \"%s\",\n", escape_string(yosys_version_str).c_str()); f << " \"version\": \"0.0.1\",\n"; f << " \"invocation\": \"" << escape_string(invk) << "\",\n"; @@ -426,7 +426,7 @@ struct JnyBackend : public Backend { log(" Don't include property information in the netlist output.\n"); log("\n"); log("The JSON schema for JNY output files is located in the \"jny.schema.json\" file\n"); - log("which is located at \"https://raw.githubusercontent.com/YosysHQ/yosys/master/misc/jny.schema.json\"\n"); + log("which is located at \"https://raw.githubusercontent.com/YosysHQ/yosys/main/misc/jny.schema.json\"\n"); log("\n"); } diff --git a/yosys/backends/json/json.cc b/yosys/backends/json/json.cc index fd2c922fd5d..2f442c494f7 100644 --- a/yosys/backends/json/json.cc +++ b/yosys/backends/json/json.cc @@ -192,6 +192,10 @@ struct JsonWriter for (auto c : module->cells()) { if (use_selection && !module->selected(c)) continue; + // Eventually we will want to emit $scopeinfo, but currently this + // will break JSON netlist consumers like nextpnr + if (c->type == ID($scopeinfo)) + continue; f << stringf("%s\n", first ? "" : ","); f << stringf(" %s: {\n", get_name(c->name).c_str()); f << stringf(" \"hide_name\": %s,\n", c->name[0] == '$' ? "1" : "0"); diff --git a/yosys/backends/simplec/test00.sh b/yosys/backends/simplec/test00.sh index ede75727378..9895a97e46b 100644 --- a/yosys/backends/simplec/test00.sh +++ b/yosys/backends/simplec/test00.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -ex ../../yosys -p 'synth -top test; write_simplec -verbose -i8 test00_uut.c' test00_uut.v clang -o test00_tb test00_tb.c diff --git a/yosys/backends/smt2/smt2.cc b/yosys/backends/smt2/smt2.cc index 5e63e62370d..c702d5e7e54 100644 --- a/yosys/backends/smt2/smt2.cc +++ b/yosys/backends/smt2/smt2.cc @@ -1117,7 +1117,18 @@ struct Smt2Worker string name_a = get_bool(cell->getPort(ID::A)); string name_en = get_bool(cell->getPort(ID::EN)); - if (cell->name[0] == '$' && cell->attributes.count(ID::src)) + bool private_name = cell->name[0] == '$'; + + if (!private_name && cell->has_attribute(ID::hdlname)) { + for (auto const &part : cell->get_hdlname_attribute()) { + if (part == "_witness_") { + private_name = true; + break; + } + } + } + + if (private_name && cell->attributes.count(ID::src)) decls.push_back(stringf("; yosys-smt2-%s %d %s %s\n", cell->type.c_str() + 1, id, get_id(cell), cell->attributes.at(ID::src).decode_string().c_str())); else decls.push_back(stringf("; yosys-smt2-%s %d %s\n", cell->type.c_str() + 1, id, get_id(cell))); diff --git a/yosys/backends/smt2/smtbmc.py b/yosys/backends/smt2/smtbmc.py index 02e15a1b502..c3bdcebbe96 100644 --- a/yosys/backends/smt2/smtbmc.py +++ b/yosys/backends/smt2/smtbmc.py @@ -17,7 +17,7 @@ # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. # -import os, sys, getopt, re, bisect +import os, sys, getopt, re, bisect, json ##yosys-sys-path## from smtio import SmtIo, SmtOpts, MkVcd from ywio import ReadWitness, WriteWitness, WitnessValues @@ -56,6 +56,9 @@ keep_going = False check_witness = False detect_loops = False +incremental = None +track_assumes = False +minimize_assumes = False so = SmtOpts() @@ -185,6 +188,17 @@ def help(): check if states are unique in temporal induction counter examples (this feature is experimental and incomplete) + --incremental + run in incremental mode (experimental) + + --track-assumes + track individual assumptions and report a subset of used + assumptions that are sufficient for the reported outcome. This + can be used to debug PREUNSAT failures as well as to find a + smaller set of sufficient assumptions. + + --minimize-assumes + when using --track-assumes, solve for a minimal set of sufficient assumptions. """ + so.helpmsg()) def usage(): @@ -196,7 +210,8 @@ def usage(): opts, args = getopt.getopt(sys.argv[1:], so.shortopts + "t:higcm:", so.longopts + ["help", "final-only", "assume-skipped=", "smtc=", "cex=", "aig=", "aig-noheader", "yw=", "btorwit=", "presat", "dump-vcd=", "dump-yw=", "dump-vlogtb=", "vlogtb-top=", "dump-smtc=", "dump-all", "noinfo", "append=", - "smtc-init", "smtc-top=", "noinit", "binary", "keep-going", "check-witness", "detect-loops"]) + "smtc-init", "smtc-top=", "noinit", "binary", "keep-going", "check-witness", "detect-loops", "incremental", + "track-assumes", "minimize-assumes"]) except: usage() @@ -282,6 +297,13 @@ def usage(): check_witness = True elif o == "--detect-loops": detect_loops = True + elif o == "--incremental": + from smtbmc_incremental import Incremental + incremental = Incremental() + elif o == "--track-assumes": + track_assumes = True + elif o == "--minimize-assumes": + minimize_assumes = True elif so.handle(o, a): pass else: @@ -290,7 +312,7 @@ def usage(): if len(args) != 1: usage() -if sum([tempind, gentrace, covermode]) > 1: +if sum([tempind, gentrace, covermode, incremental is not None]) > 1: usage() constr_final_start = None @@ -440,12 +462,17 @@ def replace_netref(match): smt = SmtIo(opts=so) +if track_assumes: + smt.smt2_options[':produce-unsat-assumptions'] = 'true' + if noinfo and vcdfile is None and vlogtbfile is None and outconstr is None: smt.produce_models = False def print_msg(msg): - print("%s %s" % (smt.timestamp(), msg)) - sys.stdout.flush() + if incremental: + incremental.print_msg(msg) + else: + print("%s %s" % (smt.timestamp(), msg), flush=True) print_msg("Solver: %s" % (so.solver)) @@ -640,15 +667,14 @@ def print_msg(msg): num_steps = max(num_steps, step+2) step += 1 -if inywfile is not None: - if not got_topt: - skip_steps = 0 - num_steps = 0 +ywfile_hierwitness_cache = None - with open(inywfile, "r") as f: - inyw = ReadWitness(f) +def ywfile_hierwitness(): + global ywfile_hierwitness_cache + if ywfile_hierwitness_cache is None: + ywfile_hierwitness = smt.hierwitness(topmod, allregs=True, blackbox=True) - inits, seqs, clocks, mems = smt.hierwitness(topmod, allregs=True, blackbox=True) + inits, seqs, clocks, mems = ywfile_hierwitness smt_wires = defaultdict(list) smt_mems = defaultdict(list) @@ -659,90 +685,165 @@ def print_msg(msg): for mem in mems: smt_mems[mem["path"]].append(mem) - addr_re = re.compile(r'\\\[[0-9]+\]$') - bits_re = re.compile(r'[01?]*$') + ywfile_hierwitness_cache = inits, seqs, clocks, mems, smt_wires, smt_mems - for t, step in inyw.steps(): - present_signals, missing = step.present_signals(inyw.sigmap) - for sig in present_signals: - bits = step[sig] - if not bits_re.match(bits): - raise ValueError("unsupported bit value in Yosys witness file") + return ywfile_hierwitness_cache - sig_end = sig.offset + len(bits) - if sig.path in smt_wires: - for wire in smt_wires[sig.path]: - width, offset = wire["width"], wire["offset"] +def_bits_re = re.compile(r'([01]+)') - smt_bool = smt.net_width(topmod, wire["smtpath"]) == 1 +def smt_extract_mask(smt_expr, mask): + chunks = [] + def_bits = '' - offset = max(offset, 0) + mask_index_order = mask[::-1] - end = width + offset - common_offset = max(sig.offset, offset) - common_end = min(sig_end, end) - if common_end <= common_offset: - continue + for matched in def_bits_re.finditer(mask_index_order): + chunks.append(matched.span()) + def_bits += matched[0] - smt_expr = smt.witness_net_expr(topmod, f"s{t}", wire) + if not chunks: + return - if not smt_bool: - slice_high = common_end - offset - 1 - slice_low = common_offset - offset - smt_expr = "((_ extract %d %d) %s)" % (slice_high, slice_low, smt_expr) + if len(chunks) == 1: + start, end = chunks[0] + if start == 0 and end == len(mask_index_order): + combined_chunks = smt_expr + else: + combined_chunks = '((_ extract %d %d) %s)' % (end - 1, start, smt_expr) + else: + combined_chunks = '(let ((x %s)) (concat %s))' % (smt_expr, ' '.join( + '((_ extract %d %d) x)' % (end - 1, start) + for start, end in reversed(chunks) + )) - bit_slice = bits[len(bits) - (common_end - sig.offset):len(bits) - (common_offset - sig.offset)] + return combined_chunks, ''.join(mask_index_order[start:end] for start, end in chunks)[::-1] - if bit_slice.count("?") == len(bit_slice): - continue +def smt_concat(exprs): + if not isinstance(exprs, (tuple, list)): + exprs = tuple(exprs) + if not exprs: + return "" + if len(exprs) == 1: + return exprs[1] + return "(concat %s)" % ' '.join(exprs) - if smt_bool: - assert width == 1 - smt_constr = "(= %s %s)" % (smt_expr, "true" if bit_slice == "1" else "false") - else: - if "?" in bit_slice: - mask = bit_slice.replace("0", "1").replace("?", "0") - bit_slice = bit_slice.replace("?", "0") - smt_expr = "(bvand %s #b%s)" % (smt_expr, mask) +def ywfile_signal(sig, step, mask=None): + assert sig.width > 0 - smt_constr = "(= %s #b%s)" % (smt_expr, bit_slice) + inits, seqs, clocks, mems, smt_wires, smt_mems = ywfile_hierwitness() + sig_end = sig.offset + sig.width - constr_assumes[t].append((inywfile, smt_constr)) + output = [] - if sig.memory_path: - if sig.memory_path in smt_mems: - for mem in smt_mems[sig.memory_path]: - width, size, bv = mem["width"], mem["size"], mem["statebv"] + if sig.path in smt_wires: + for wire in smt_wires[sig.path]: + width, offset = wire["width"], wire["offset"] - smt_expr = smt.net_expr(topmod, f"s{t}", mem["smtpath"]) + smt_bool = smt.net_width(topmod, wire["smtpath"]) == 1 - if bv: - word_low = sig.memory_addr * width - word_high = word_low + width - 1 - smt_expr = "((_ extract %d %d) %s)" % (word_high, word_low, smt_expr) - else: - addr_width = (size - 1).bit_length() - addr_bits = f"{sig.memory_addr:0{addr_width}b}" - smt_expr = "(select %s #b%s )" % (smt_expr, addr_bits) + offset = max(offset, 0) - if len(bits) < width: - slice_high = sig.offset + len(bits) - 1 - smt_expr = "((_ extract %d %d) %s)" % (slice_high, sig.offset, smt_expr) + end = width + offset + common_offset = max(sig.offset, offset) + common_end = min(sig_end, end) + if common_end <= common_offset: + continue - bit_slice = bits + smt_expr = smt.witness_net_expr(topmod, f"s{step}", wire) - if "?" in bit_slice: - mask = bit_slice.replace("0", "1").replace("?", "0") - bit_slice = bit_slice.replace("?", "0") - smt_expr = "(bvand %s #b%s)" % (smt_expr, mask) + if not smt_bool: + slice_high = common_end - offset - 1 + slice_low = common_offset - offset + smt_expr = "((_ extract %d %d) %s)" % (slice_high, slice_low, smt_expr) + else: + smt_expr = "(ite %s #b1 #b0)" % smt_expr - smt_constr = "(= %s #b%s)" % (smt_expr, bit_slice) - constr_assumes[t].append((inywfile, smt_constr)) + output.append(((common_offset - sig.offset), (common_end - sig.offset), smt_expr)) - if not got_topt: - if not check_witness: - skip_steps = max(skip_steps, t) - num_steps = max(num_steps, t+1) + if sig.memory_path: + if sig.memory_path in smt_mems: + for mem in smt_mems[sig.memory_path]: + width, size, bv = mem["width"], mem["size"], mem["statebv"] + + smt_expr = smt.net_expr(topmod, f"s{step}", mem["smtpath"]) + + if bv: + word_low = sig.memory_addr * width + word_high = word_low + width - 1 + smt_expr = "((_ extract %d %d) %s)" % (word_high, word_low, smt_expr) + else: + addr_width = (size - 1).bit_length() + addr_bits = f"{sig.memory_addr:0{addr_width}b}" + smt_expr = "(select %s #b%s )" % (smt_expr, addr_bits) + + if sig.width < width: + slice_high = sig.offset + sig.width - 1 + smt_expr = "((_ extract %d %d) %s)" % (slice_high, sig.offset, smt_expr) + + output.append((0, sig.width, smt_expr)) + + output.sort() + + output = [chunk for chunk in output if chunk[0] != chunk[1]] + + pos = 0 + + for start, end, smt_expr in output: + assert start == pos + pos = end + + assert pos == sig.width + + if len(output) == 1: + return output[0][-1] + return smt_concat(smt_expr for start, end, smt_expr in reversed(output)) + +def ywfile_constraints(inywfile, constr_assumes, map_steps=None, skip_x=False): + global ywfile_hierwitness_cache + if map_steps is None: + map_steps = {} + + with open(inywfile, "r") as f: + inyw = ReadWitness(f) + + inits, seqs, clocks, mems, smt_wires, smt_mems = ywfile_hierwitness() + + bits_re = re.compile(r'[01?]*$') + max_t = -1 + + for t, step in inyw.steps(): + present_signals, missing = step.present_signals(inyw.sigmap) + for sig in present_signals: + bits = step[sig] + if skip_x: + bits = bits.replace('x', '?') + if not bits_re.match(bits): + raise ValueError("unsupported bit value in Yosys witness file") + + if bits.count('?') == len(bits): + continue + + smt_expr = ywfile_signal(sig, map_steps.get(t, t)) + + smt_expr, bits = smt_extract_mask(smt_expr, bits) + + smt_constr = "(= %s #b%s)" % (smt_expr, bits) + constr_assumes[t].append((inywfile, smt_constr)) + + max_t = t + return max_t + +if inywfile is not None: + if not got_topt: + skip_steps = 0 + num_steps = 0 + + max_t = ywfile_constraints(inywfile, constr_assumes) + + if not got_topt: + if not check_witness: + skip_steps = max(skip_steps, max_t) + num_steps = max(num_steps, max_t+1) if btorwitfile is not None: with open(btorwitfile, "r") as f: @@ -841,7 +942,7 @@ def print_msg(msg): skip_steps = step num_steps = step+1 -def collect_mem_trace_data(steps_start, steps_stop, vcd=None): +def collect_mem_trace_data(steps, vcd=None): mem_trace_data = dict() for mempath in sorted(smt.hiermems(topmod)): @@ -849,16 +950,16 @@ def collect_mem_trace_data(steps_start, steps_stop, vcd=None): expr_id = list() expr_list = list() - for i in range(steps_start, steps_stop): + for seq, i in enumerate(steps): for j in range(rports): - expr_id.append(('R', i-steps_start, j, 'A')) - expr_id.append(('R', i-steps_start, j, 'D')) + expr_id.append(('R', seq, j, 'A')) + expr_id.append(('R', seq, j, 'D')) expr_list.append(smt.mem_expr(topmod, "s%d" % i, mempath, "R%dA" % j)) expr_list.append(smt.mem_expr(topmod, "s%d" % i, mempath, "R%dD" % j)) for j in range(wports): - expr_id.append(('W', i-steps_start, j, 'A')) - expr_id.append(('W', i-steps_start, j, 'D')) - expr_id.append(('W', i-steps_start, j, 'M')) + expr_id.append(('W', seq, j, 'A')) + expr_id.append(('W', seq, j, 'D')) + expr_id.append(('W', seq, j, 'M')) expr_list.append(smt.mem_expr(topmod, "s%d" % i, mempath, "W%dA" % j)) expr_list.append(smt.mem_expr(topmod, "s%d" % i, mempath, "W%dD" % j)) expr_list.append(smt.mem_expr(topmod, "s%d" % i, mempath, "W%dM" % j)) @@ -943,14 +1044,14 @@ def collect_mem_trace_data(steps_start, steps_stop, vcd=None): netpath[-1] += "<%0*x>" % ((len(addr)+3) // 4, int_addr) vcd.add_net([topmod] + netpath, width) - for i in range(steps_start, steps_stop): + for seq, i in enumerate(steps): if i not in mem_trace_data: mem_trace_data[i] = list() - mem_trace_data[i].append((netpath, int_addr, "".join(tdata[i-steps_start]))) + mem_trace_data[i].append((netpath, int_addr, "".join(tdata[seq]))) return mem_trace_data -def write_vcd_trace(steps_start, steps_stop, index): +def write_vcd_trace(steps, index, seq_time=False): filename = vcdfile.replace("%", index) print_msg("Writing trace to VCD file: %s" % (filename)) @@ -971,10 +1072,10 @@ def write_vcd_trace(steps_start, steps_stop, index): vcd.add_clock([topmod] + netpath, edge) path_list.append(netpath) - mem_trace_data = collect_mem_trace_data(steps_start, steps_stop, vcd) + mem_trace_data = collect_mem_trace_data(steps, vcd) - for i in range(steps_start, steps_stop): - vcd.set_time(i) + for seq, i in enumerate(steps): + vcd.set_time(seq if seq_time else i) value_list = smt.get_net_bin_list(topmod, path_list, "s%d" % i) for path, value in zip(path_list, value_list): vcd.set_net([topmod] + path, value) @@ -982,7 +1083,14 @@ def write_vcd_trace(steps_start, steps_stop, index): for path, addr, value in mem_trace_data[i]: vcd.set_net([topmod] + path, value) - vcd.set_time(steps_stop) + if seq_time: + end_time = len(steps) + elif steps: + end_time = steps[-1] + 1 + else: + end_time = 0 + + vcd.set_time(end_time) def detect_state_loop(steps_start, steps_stop): print_msg(f"Checking for loops in found induction counter example") @@ -1027,7 +1135,7 @@ def escape_identifier(identifier): -def write_vlogtb_trace(steps_start, steps_stop, index): +def write_vlogtb_trace(steps, index): filename = vlogtbfile.replace("%", index) print_msg("Writing trace to Verilog testbench: %s" % (filename)) @@ -1092,7 +1200,7 @@ def write_vlogtb_trace(steps_start, steps_stop, index): print(" initial begin", file=f) regs = sorted(smt.hiernets(vlogtb_topmod, regs_only=True)) - regvals = smt.get_net_bin_list(vlogtb_topmod, regs, vlogtb_state.replace("@@step_idx@@", str(steps_start))) + regvals = smt.get_net_bin_list(vlogtb_topmod, regs, vlogtb_state.replace("@@step_idx@@", str(steps[0]))) print("`ifndef VERILATOR", file=f) print(" #1;", file=f) @@ -1107,7 +1215,7 @@ def write_vlogtb_trace(steps_start, steps_stop, index): anyconsts = sorted(smt.hieranyconsts(vlogtb_topmod)) for info in anyconsts: if info[3] is not None: - modstate = smt.net_expr(vlogtb_topmod, vlogtb_state.replace("@@step_idx@@", str(steps_start)), info[0]) + modstate = smt.net_expr(vlogtb_topmod, vlogtb_state.replace("@@step_idx@@", str(steps[0])), info[0]) value = smt.bv2bin(smt.get("(|%s| %s)" % (info[1], modstate))) print(" UUT.%s = %d'b%s;" % (".".join(escape_identifier(info[0] + [info[3]])), len(value), value), file=f); @@ -1117,7 +1225,7 @@ def write_vlogtb_trace(steps_start, steps_stop, index): addr_expr_list = list() data_expr_list = list() - for i in range(steps_start, steps_stop): + for i in steps: for j in range(rports): addr_expr_list.append(smt.mem_expr(vlogtb_topmod, vlogtb_state.replace("@@step_idx@@", str(i)), mempath, "R%dA" % j)) data_expr_list.append(smt.mem_expr(vlogtb_topmod, vlogtb_state.replace("@@step_idx@@", str(i)), mempath, "R%dD" % j)) @@ -1138,7 +1246,7 @@ def write_vlogtb_trace(steps_start, steps_stop, index): print("", file=f) anyseqs = sorted(smt.hieranyseqs(vlogtb_topmod)) - for i in range(steps_start, steps_stop): + for i in steps: pi_names = [[name] for name, _ in primary_inputs if name not in clock_inputs] pi_values = smt.get_net_bin_list(vlogtb_topmod, pi_names, vlogtb_state.replace("@@step_idx@@", str(i))) @@ -1170,14 +1278,14 @@ def write_vlogtb_trace(steps_start, steps_stop, index): print(" end", file=f) print(" always @(posedge clock) begin", file=f) - print(" genclock <= cycle < %d;" % (steps_stop-1), file=f) + print(" genclock <= cycle < %d;" % (steps[-1]), file=f) print(" cycle <= cycle + 1;", file=f) print(" end", file=f) print("endmodule", file=f) -def write_constr_trace(steps_start, steps_stop, index): +def write_constr_trace(steps, index): filename = outconstr.replace("%", index) print_msg("Writing trace to constraints file: %s" % (filename)) @@ -1194,7 +1302,7 @@ def write_constr_trace(steps_start, steps_stop, index): constr_prefix = smtctop[1] + "." if smtcinit: - steps_start = steps_stop - 1 + steps = [steps[-1]] with open(filename, "w") as f: primary_inputs = list() @@ -1203,13 +1311,13 @@ def write_constr_trace(steps_start, steps_stop, index): width = smt.modinfo[constr_topmod].wsize[name] primary_inputs.append((name, width)) - if steps_start == 0 or smtcinit: + if steps[0] == 0 or smtcinit: print("initial", file=f) else: - print("state %d" % steps_start, file=f) + print("state %d" % steps[0], file=f) regnames = sorted(smt.hiernets(constr_topmod, regs_only=True)) - regvals = smt.get_net_list(constr_topmod, regnames, constr_state.replace("@@step_idx@@", str(steps_start))) + regvals = smt.get_net_list(constr_topmod, regnames, constr_state.replace("@@step_idx@@", str(steps[0]))) for name, val in zip(regnames, regvals): print("assume (= [%s%s] %s)" % (constr_prefix, ".".join(name), val), file=f) @@ -1220,7 +1328,7 @@ def write_constr_trace(steps_start, steps_stop, index): addr_expr_list = list() data_expr_list = list() - for i in range(steps_start, steps_stop): + for i in steps: for j in range(rports): addr_expr_list.append(smt.mem_expr(constr_topmod, constr_state.replace("@@step_idx@@", str(i)), mempath, "R%dA" % j)) data_expr_list.append(smt.mem_expr(constr_topmod, constr_state.replace("@@step_idx@@", str(i)), mempath, "R%dD" % j)) @@ -1236,7 +1344,7 @@ def write_constr_trace(steps_start, steps_stop, index): for addr, data in addr_data.items(): print("assume (= (select [%s%s] %s) %s)" % (constr_prefix, ".".join(mempath), addr, data), file=f) - for k in range(steps_start, steps_stop): + for k in steps: if not smtcinit: print("", file=f) print("state %d" % k, file=f) @@ -1247,11 +1355,14 @@ def write_constr_trace(steps_start, steps_stop, index): for name, val in zip(pi_names, pi_values): print("assume (= [%s%s] %s)" % (constr_prefix, ".".join(name), val), file=f) -def write_yw_trace(steps_start, steps_stop, index, allregs=False): - filename = outywfile.replace("%", index) - print_msg("Writing trace to Yosys witness file: %s" % (filename)) +def write_yw_trace(steps, index, allregs=False, filename=None): + if filename is None: + if outywfile is None: + return + filename = outywfile.replace("%", index) + print_msg("Writing trace to Yosys witness file: %s" % (filename)) - mem_trace_data = collect_mem_trace_data(steps_start, steps_stop) + mem_trace_data = collect_mem_trace_data(steps) with open(filename, "w") as f: inits, seqs, clocks, mems = smt.hierwitness(topmod, allregs) @@ -1295,18 +1406,28 @@ def write_yw_trace(steps_start, steps_stop, index, allregs=False): sig = yw.add_sig(word_path, overlap_start, overlap_end - overlap_start, True) mem_init_values.append((sig, overlap_bits.replace("x", "?"))) - for k in range(steps_start, steps_stop): + exprs = [] + all_sigs = [] + + for i, k in enumerate(steps): step_values = WitnessValues() - if k == steps_start: + if not i: for sig, value in mem_init_values: step_values[sig] = value sigs = inits + seqs else: sigs = seqs + exprs.extend(smt.witness_net_expr(topmod, f"s{k}", sig) for sig in sigs) + + all_sigs.append((step_values, sigs)) + + bvs = iter(smt.get_list(exprs)) + + for (step_values, sigs) in all_sigs: for sig in sigs: - value = smt.bv2bin(smt.get(smt.witness_net_expr(topmod, f"s{k}", sig))) + value = smt.bv2bin(next(bvs)) step_values[sig["sig"]] = value yw.step(step_values) @@ -1314,17 +1435,24 @@ def write_yw_trace(steps_start, steps_stop, index, allregs=False): def write_trace(steps_start, steps_stop, index, allregs=False): + if steps_stop is None: + steps = steps_start + seq_time = True + else: + steps = list(range(steps_start, steps_stop)) + seq_time = False + if vcdfile is not None: - write_vcd_trace(steps_start, steps_stop, index) + write_vcd_trace(steps, index, seq_time=seq_time) if vlogtbfile is not None: - write_vlogtb_trace(steps_start, steps_stop, index) + write_vlogtb_trace(steps, index) if outconstr is not None: - write_constr_trace(steps_start, steps_stop, index) + write_constr_trace(steps, index) if outywfile is not None: - write_yw_trace(steps_start, steps_stop, index, allregs) + write_yw_trace(steps, index, allregs) def print_failed_asserts_worker(mod, state, path, extrainfo, infomap, infokey=()): @@ -1442,6 +1570,44 @@ def get_active_assert_map(step, active): return assert_map +assume_enables = {} + +def declare_assume_enables(): + def recurse(mod, path, key_base=()): + for expr, desc in smt.modinfo[mod].assumes.items(): + enable = f"|assume_enable {len(assume_enables)}|" + smt.smt2_assumptions[(expr, key_base)] = enable + smt.write(f"(declare-const {enable} Bool)") + assume_enables[(expr, key_base)] = (enable, path, desc) + + for cell, submod in smt.modinfo[mod].cells.items(): + recurse(submod, f"{path}.{cell}", (mod, cell, key_base)) + + recurse(topmod, topmod) + +if track_assumes: + declare_assume_enables() + +def smt_assert_design_assumes(step): + if not track_assumes: + smt_assert_consequent("(|%s_u| s%d)" % (topmod, step)) + return + + if not assume_enables: + return + + def expr_for_assume(assume_key, base=None): + expr, key_base = assume_key + expr_prefix = f"(|{expr}| " + expr_suffix = ")" + while key_base: + mod, cell, key_base = key_base + expr_prefix += f"(|{mod}_h {cell}| " + expr_suffix += ")" + return f"{expr_prefix} s{step}{expr_suffix}" + + for assume_key, (enable, path, desc) in assume_enables.items(): + smt_assert_consequent(f"(=> {enable} {expr_for_assume(assume_key)})") states = list() asserts_antecedent_cache = [list()] @@ -1596,7 +1762,18 @@ def smt_check_sat(expected=["sat", "unsat"]): smt_forall_assert() return smt.check_sat(expected=expected) -if tempind: +def report_tracked_assumptions(msg): + if track_assumes: + print_msg(msg) + for key in smt.get_unsat_assumptions(minimize=minimize_assumes): + enable, path, descr = assume_enables[key] + print_msg(f" In {path}: {descr}") + + +if incremental: + incremental.mainloop() + +elif tempind: retstatus = "FAILED" skip_counter = step_size for step in range(num_steps, -1, -1): @@ -1605,7 +1782,7 @@ def smt_check_sat(expected=["sat", "unsat"]): break smt_state(step) - smt_assert_consequent("(|%s_u| s%d)" % (topmod, step)) + smt_assert_design_assumes(step) smt_assert_antecedent("(|%s_h| s%d)" % (topmod, step)) smt_assert_antecedent("(not (|%s_is| s%d))" % (topmod, step)) smt_assert_consequent(get_constr_expr(constr_assumes, step)) @@ -1648,6 +1825,7 @@ def smt_check_sat(expected=["sat", "unsat"]): else: print_msg("Temporal induction successful.") + report_tracked_assumptions("Used assumptions:") retstatus = "PASSED" break @@ -1673,7 +1851,7 @@ def smt_check_sat(expected=["sat", "unsat"]): while step < num_steps: smt_state(step) - smt_assert_consequent("(|%s_u| s%d)" % (topmod, step)) + smt_assert_design_assumes(step) smt_assert_antecedent("(|%s_h| s%d)" % (topmod, step)) smt_assert_consequent(get_constr_expr(constr_assumes, step)) @@ -1694,6 +1872,7 @@ def smt_check_sat(expected=["sat", "unsat"]): smt_assert("(distinct (covers_%d s%d) #b%s)" % (coveridx, step, "0" * len(cover_desc))) if smt_check_sat() == "unsat": + report_tracked_assumptions("Used assumptions:") smt_pop() break @@ -1702,13 +1881,14 @@ def smt_check_sat(expected=["sat", "unsat"]): print_msg("Appending additional step %d." % i) smt_state(i) smt_assert_antecedent("(not (|%s_is| s%d))" % (topmod, i)) - smt_assert_consequent("(|%s_u| s%d)" % (topmod, i)) + smt_assert_design_assumes(i) smt_assert_antecedent("(|%s_h| s%d)" % (topmod, i)) smt_assert_antecedent("(|%s_t| s%d s%d)" % (topmod, i-1, i)) smt_assert_consequent(get_constr_expr(constr_assumes, i)) print_msg("Re-solving with appended steps..") if smt_check_sat() == "unsat": print("%s Cannot appended steps without violating assumptions!" % smt.timestamp()) + report_tracked_assumptions("Conflicting assumptions:") found_failed_assert = True retstatus = "FAILED" break @@ -1764,7 +1944,7 @@ def smt_check_sat(expected=["sat", "unsat"]): retstatus = "PASSED" while step < num_steps: smt_state(step) - smt_assert_consequent("(|%s_u| s%d)" % (topmod, step)) + smt_assert_design_assumes(step) smt_assert_antecedent("(|%s_h| s%d)" % (topmod, step)) smt_assert_consequent(get_constr_expr(constr_assumes, step)) @@ -1794,7 +1974,7 @@ def smt_check_sat(expected=["sat", "unsat"]): if step+i < num_steps: smt_state(step+i) smt_assert_antecedent("(not (|%s_is| s%d))" % (topmod, step+i)) - smt_assert_consequent("(|%s_u| s%d)" % (topmod, step+i)) + smt_assert_design_assumes(step + i) smt_assert_antecedent("(|%s_h| s%d)" % (topmod, step+i)) smt_assert_antecedent("(|%s_t| s%d s%d)" % (topmod, step+i-1, step+i)) smt_assert_consequent(get_constr_expr(constr_assumes, step+i)) @@ -1808,7 +1988,8 @@ def smt_check_sat(expected=["sat", "unsat"]): print_msg("Checking assumptions in steps %d to %d.." % (step, last_check_step)) if smt_check_sat() == "unsat": - print("%s Assumptions are unsatisfiable!" % smt.timestamp()) + print_msg("Assumptions are unsatisfiable!") + report_tracked_assumptions("Conficting assumptions:") retstatus = "PREUNSAT" break @@ -1861,13 +2042,14 @@ def smt_check_sat(expected=["sat", "unsat"]): print_msg("Appending additional step %d." % i) smt_state(i) smt_assert_antecedent("(not (|%s_is| s%d))" % (topmod, i)) - smt_assert_consequent("(|%s_u| s%d)" % (topmod, i)) + smt_assert_design_assumes(i) smt_assert_antecedent("(|%s_h| s%d)" % (topmod, i)) smt_assert_antecedent("(|%s_t| s%d s%d)" % (topmod, i-1, i)) smt_assert_consequent(get_constr_expr(constr_assumes, i)) print_msg("Re-solving with appended steps..") if smt_check_sat() == "unsat": - print("%s Cannot append steps without violating assumptions!" % smt.timestamp()) + print_msg("Cannot append steps without violating assumptions!") + report_tracked_assumptions("Conflicting assumptions:") retstatus = "FAILED" break print_anyconsts(step) @@ -1954,5 +2136,6 @@ def smt_check_sat(expected=["sat", "unsat"]): smt.write("(exit)") smt.wait() -print_msg("Status: %s" % retstatus) -sys.exit(0 if retstatus == "PASSED" else 1) +if not incremental: + print_msg("Status: %s" % retstatus) + sys.exit(0 if retstatus == "PASSED" else 1) diff --git a/yosys/backends/smt2/smtbmc_incremental.py b/yosys/backends/smt2/smtbmc_incremental.py new file mode 100644 index 00000000000..0bd280b4a48 --- /dev/null +++ b/yosys/backends/smt2/smtbmc_incremental.py @@ -0,0 +1,616 @@ +from collections import defaultdict +import json +import typing +import ywio + +if typing.TYPE_CHECKING: + import smtbmc +else: + import sys + + smtbmc = sys.modules["__main__"] + + +class InteractiveError(Exception): + pass + + +def mkkey(data): + if isinstance(data, list): + return tuple(map(mkkey, data)) + elif isinstance(data, dict): + raise InteractiveError(f"JSON objects found in assumption key: {data!r}") + return data + + +class Incremental: + def __init__(self): + self.traceidx = 0 + + self.state_set = set() + self.map_cache = {} + + self._cached_hierwitness = {} + self._witness_index = None + + self._yw_constraints = {} + self._define_sorts = {} + + def setup(self): + generic_assert_map = smtbmc.get_assert_map( + smtbmc.topmod, "state", smtbmc.topmod + ) + self.inv_generic_assert_map = { + tuple(data[1:]): key for key, data in generic_assert_map.items() + } + assert len(self.inv_generic_assert_map) == len(generic_assert_map) + + def print_json(self, **kwargs): + print(json.dumps(kwargs), flush=True) + + def print_msg(self, msg): + self.print_json(msg=msg) + + def get_cached_assert(self, step, name): + try: + assert_map = self.map_cache[step] + except KeyError: + assert_map = self.map_cache[step] = smtbmc.get_assert_map( + smtbmc.topmod, f"s{step}", smtbmc.topmod + ) + return assert_map[self.inv_generic_assert_map[name]][0] + + def arg_step(self, cmd, declare=False, name="step", optional=False): + step = cmd.get(name, None) + if step is None and optional: + return None + if not isinstance(step, int): + if optional: + raise InteractiveError(f"{name} must be an integer") + else: + raise InteractiveError(f"integer {name} argument required") + if declare and step in self.state_set: + raise InteractiveError(f"step {step} already declared") + if not declare and step not in self.state_set: + raise InteractiveError(f"step {step} not declared") + return step + + def expr_arg_len(self, expr, min_len, max_len=-1): + if max_len == -1: + max_len = min_len + arg_len = len(expr) - 1 + + if min_len is not None and arg_len < min_len: + if min_len == max_len: + raise InteractiveError( + f"{json.dumps(expr[0])} expression must have " + f"{min_len} argument{'s' if min_len != 1 else ''}" + ) + else: + raise InteractiveError( + f"{json.dumps(expr[0])} expression must have at least " + f"{min_len} argument{'s' if min_len != 1 else ''}" + ) + if max_len is not None and arg_len > max_len: + raise InteractiveError( + f"{json.dumps(expr[0])} expression can have at most " + f"{min_len} argument{'s' if max_len != 1 else ''}" + ) + + def expr_step(self, expr, smt_out): + self.expr_arg_len(expr, 1) + step = expr[1] + if step not in self.state_set: + raise InteractiveError(f"step {step} not declared") + smt_out.append(f"s{step}") + return "module", smtbmc.topmod + + def expr_cell(self, expr, smt_out): + self.expr_arg_len(expr, 2) + position = len(smt_out) + smt_out.append(None) + arg_sort = self.expr(expr[2], smt_out, required_sort=["module", None]) + smt_out.append(")") + module = arg_sort[1] + cell = expr[1] + submod = smtbmc.smt.modinfo[module].cells.get(cell) + if submod is None: + raise InteractiveError(f"module {module!r} has no cell {cell!r}") + smt_out[position] = f"(|{module}_h {cell}| " + return ("module", submod) + + def expr_mod_constraint(self, expr, smt_out): + suffix = expr[0][3:] + self.expr_arg_len(expr, 1, 2 if suffix in ["_a", "_u", "_c"] else 1) + position = len(smt_out) + smt_out.append(None) + arg_sort = self.expr(expr[-1], smt_out, required_sort=["module", None]) + module = arg_sort[1] + if len(expr) == 3: + smt_out[position] = f"(|{module}{suffix} {expr[1]}| " + else: + smt_out[position] = f"(|{module}{suffix}| " + smt_out.append(")") + return "Bool" + + def expr_mod_constraint2(self, expr, smt_out): + self.expr_arg_len(expr, 2) + + position = len(smt_out) + smt_out.append(None) + arg_sort = self.expr(expr[1], smt_out, required_sort=["module", None]) + smt_out.append(" ") + self.expr(expr[2], smt_out, required_sort=arg_sort) + module = arg_sort[1] + suffix = expr[0][3:] + smt_out[position] = f"(|{module}{suffix}| " + smt_out.append(")") + return "Bool" + + def expr_not(self, expr, smt_out): + self.expr_arg_len(expr, 1) + + smt_out.append("(not ") + self.expr(expr[1], smt_out, required_sort="Bool") + smt_out.append(")") + return "Bool" + + def expr_eq(self, expr, smt_out): + self.expr_arg_len(expr, 2) + + smt_out.append("(= ") + arg_sort = self.expr(expr[1], smt_out) + if ( + smtbmc.smt.unroll + and isinstance(arg_sort, (list, tuple)) + and arg_sort[0] == "module" + ): + raise InteractiveError("state equality not supported in unroll mode") + + smt_out.append(" ") + self.expr(expr[2], smt_out, required_sort=arg_sort) + smt_out.append(")") + return "Bool" + + def expr_andor(self, expr, smt_out): + if len(expr) == 1: + smt_out.push({"and": "true", "or": "false"}[expr[0]]) + elif len(expr) == 2: + self.expr(expr[1], smt_out, required_sort="Bool") + else: + sep = f"({expr[0]} " + for arg in expr[1:]: + smt_out.append(sep) + sep = " " + self.expr(arg, smt_out, required_sort="Bool") + smt_out.append(")") + return "Bool" + + def expr_bv_binop(self, expr, smt_out): + self.expr_arg_len(expr, 2) + + smt_out.append(f"({expr[0]} ") + arg_sort = self.expr(expr[1], smt_out, required_sort=("BitVec", None)) + smt_out.append(" ") + self.expr(expr[2], smt_out, required_sort=arg_sort) + smt_out.append(")") + return arg_sort + + def expr_extract(self, expr, smt_out): + self.expr_arg_len(expr, 3) + + hi = expr[1] + lo = expr[2] + + smt_out.append(f"((_ extract {hi} {lo}) ") + + arg_sort = self.expr(expr[3], smt_out, required_sort=("BitVec", None)) + smt_out.append(")") + + if not (isinstance(hi, int) and 0 <= hi < arg_sort[1]): + raise InteractiveError( + f"high bit index must be 0 <= index < {arg_sort[1]}, is {hi!r}" + ) + if not (isinstance(lo, int) and 0 <= lo <= hi): + raise InteractiveError( + f"low bit index must be 0 <= index < {hi}, is {lo!r}" + ) + + return "BitVec", hi - lo + 1 + + def expr_bv(self, expr, smt_out): + self.expr_arg_len(expr, 1) + + arg = expr[1] + if not isinstance(arg, str) or arg.count("0") + arg.count("1") != len(arg): + raise InteractiveError("bv argument must contain only 0 or 1 bits") + + smt_out.append("#b" + arg) + + return "BitVec", len(arg) + + def expr_yw(self, expr, smt_out): + self.expr_arg_len(expr, 1, 2) + if len(expr) == 2: + name = None + step = expr[1] + elif len(expr) == 3: + name = expr[1] + step = expr[2] + + if step not in self.state_set: + raise InteractiveError(f"step {step} not declared") + + if name not in self._yw_constraints: + raise InteractiveError(f"no yw file loaded as name {name!r}") + + constraints = self._yw_constraints[name].get(step, []) + + if len(constraints) == 0: + smt_out.append("true") + elif len(constraints) == 1: + smt_out.append(constraints[0]) + else: + sep = "(and " + for constraint in constraints: + smt_out.append(sep) + sep = " " + smt_out.append(constraint) + smt_out.append(")") + + return "Bool" + + def expr_yw_sig(self, expr, smt_out): + self.expr_arg_len(expr, 3, 4) + + step = expr[1] + path = expr[2] + offset = expr[3] + width = expr[4] if len(expr) == 5 else 1 + + if not isinstance(offset, int) or offset < 0: + raise InteractiveError( + f"offset must be a non-negative integer, got {json.dumps(offset)}" + ) + + if not isinstance(width, int) or width <= 0: + raise InteractiveError( + f"width must be a positive integer, got {json.dumps(width)}" + ) + + if not isinstance(path, list) or not all(isinstance(s, str) for s in path): + raise InteractiveError( + f"path must be a string list, got {json.dumps(path)}" + ) + + if step not in self.state_set: + raise InteractiveError(f"step {step} not declared") + + smt_expr = smtbmc.ywfile_signal( + ywio.WitnessSig(path=path, offset=offset, width=width), step + ) + + smt_out.append(smt_expr) + + return "BitVec", width + + def expr_smtlib(self, expr, smt_out): + self.expr_arg_len(expr, 2) + + smtlib_expr = expr[1] + sort = expr[2] + + if not isinstance(smtlib_expr, str): + raise InteractiveError( + "raw SMT-LIB expression has to be a string, " + f"got {json.dumps(smtlib_expr)}" + ) + + if ( + isinstance(sort, list) + and len(sort) == 2 + and sort[0] == "BitVec" + and (sort[1] is None or isinstance(sort[1], int)) + ): + sort = tuple(sort) + elif not isinstance(sort, str): + raise InteractiveError(f"unsupported raw SMT-LIB sort {json.dumps(sort)}") + + smt_out.append(smtlib_expr) + return sort + + def expr_label(self, expr, smt_out): + if len(expr) != 3: + raise InteractiveError( + f'expected ["!", label, sub_expr], got {json.dumps(expr)}' + ) + label = expr[1] + subexpr = expr[2] + + if not isinstance(label, str): + raise InteractiveError("expression label has to be a string") + + smt_out.append("(! ") + sort = self.expr(subexpr, smt_out) + smt_out.append(" :named ") + smt_out.append(label) + smt_out.append(")") + + return sort + + def expr_def(self, expr, smt_out): + self.expr_arg_len(expr, 1) + sort = self._define_sorts.get(expr[1]) + if sort is None: + raise InteractiveError(f"unknown definition {json.dumps(expr)}") + smt_out.append(expr[1]) + return sort + + expr_handlers = { + "step": expr_step, + "cell": expr_cell, + "mod_h": expr_mod_constraint, + "mod_is": expr_mod_constraint, + "mod_i": expr_mod_constraint, + "mod_a": expr_mod_constraint, + "mod_u": expr_mod_constraint, + "mod_t": expr_mod_constraint2, + "not": expr_not, + "and": expr_andor, + "or": expr_andor, + "bv": expr_bv, + "bvand": expr_bv_binop, + "bvor": expr_bv_binop, + "bvxor": expr_bv_binop, + "extract": expr_extract, + "def": expr_def, + "=": expr_eq, + "yw": expr_yw, + "yw_sig": expr_yw_sig, + "smtlib": expr_smtlib, + "!": expr_label, + } + + def expr(self, expr, smt_out, required_sort=None): + if not isinstance(expr, (list, tuple)) or not expr: + raise InteractiveError( + f"expression must be a non-empty JSON array, found: {json.dumps(expr)}" + ) + name = expr[0] + + handler = self.expr_handlers.get(name) + if handler: + sort = handler(self, expr, smt_out) + + if required_sort is not None: + if isinstance(required_sort, (list, tuple)): + if ( + not isinstance(sort, (list, tuple)) + or len(sort) != len(required_sort) + or any( + r is not None and r != s + for r, s in zip(required_sort, sort) + ) + ): + raise InteractiveError( + f"required sort {json.dumps(required_sort)} " + f"found sort {json.dumps(sort)}" + ) + return sort + raise InteractiveError(f"unknown expression {json.dumps(expr[0])}") + + def expr_smt(self, expr, required_sort): + return self.expr_smt_and_sort(expr, required_sort)[0] + + def expr_smt_and_sort(self, expr, required_sort=None): + smt_out = [] + output_sort = self.expr(expr, smt_out, required_sort=required_sort) + out = "".join(smt_out) + return out, output_sort + + def cmd_new_step(self, cmd): + step = self.arg_step(cmd, declare=True) + self.state_set.add(step) + smtbmc.smt_state(step) + + def cmd_assert(self, cmd): + name = cmd.get("cmd") + + assert_fn = { + "assert_antecedent": smtbmc.smt_assert_antecedent, + "assert_consequent": smtbmc.smt_assert_consequent, + "assert": smtbmc.smt_assert, + }[name] + + assert_fn(self.expr_smt(cmd.get("expr"), "Bool")) + + def cmd_assert_design_assumes(self, cmd): + step = self.arg_step(cmd) + smtbmc.smt_assert_design_assumes(step) + + def cmd_get_design_assume(self, cmd): + key = mkkey(cmd.get("key")) + return smtbmc.assume_enables.get(key) + + def cmd_update_assumptions(self, cmd): + expr = cmd.get("expr") + key = cmd.get("key") + + key = mkkey(key) + + result = smtbmc.smt.smt2_assumptions.pop(key, None) + if expr is not None: + expr = self.expr_smt(expr, "Bool") + smtbmc.smt.smt2_assumptions[key] = expr + return result + + def cmd_get_unsat_assumptions(self, cmd): + return smtbmc.smt.get_unsat_assumptions(minimize=bool(cmd.get("minimize"))) + + def cmd_push(self, cmd): + smtbmc.smt_push() + + def cmd_pop(self, cmd): + smtbmc.smt_pop() + + def cmd_check(self, cmd): + return smtbmc.smt_check_sat() + + def cmd_smtlib(self, cmd): + command = cmd.get("command") + response = cmd.get("response", False) + if not isinstance(command, str): + raise InteractiveError( + f"raw SMT-LIB command must be a string, found {json.dumps(command)}" + ) + smtbmc.smt.write(command) + if response: + return smtbmc.smt.read() + + def cmd_define(self, cmd): + expr = cmd.get("expr") + if expr is None: + raise InteractiveError("'define' copmmand requires 'expr' parameter") + + expr, sort = self.expr_smt_and_sort(expr) + + if isinstance(sort, tuple) and sort[0] == "module": + raise InteractiveError("'define' does not support module sorts") + + define_name = f"|inc def {len(self._define_sorts)}|" + + self._define_sorts[define_name] = sort + + if isinstance(sort, tuple): + sort = f"(_ {' '.join(map(str, sort))})" + + smtbmc.smt.write(f"(define-const {define_name} {sort} {expr})") + + return {"name": define_name} + + def cmd_design_hierwitness(self, cmd=None): + allregs = (cmd is None) or bool(cmd.get("allreges", False)) + if self._cached_hierwitness[allregs] is not None: + return self._cached_hierwitness[allregs] + inits, seqs, clocks, mems = smtbmc.smt.hierwitness(smtbmc.topmod, allregs) + self._cached_hierwitness[allregs] = result = dict( + inits=inits, seqs=seqs, clocks=clocks, mems=mems + ) + return result + + def cmd_write_yw_trace(self, cmd): + steps = cmd.get("steps") + allregs = bool(cmd.get("allregs", False)) + + if steps is None: + steps = sorted(self.state_set) + + path = cmd.get("path") + + smtbmc.write_yw_trace(steps, self.traceidx, allregs=allregs, filename=path) + + if path is None: + self.traceidx += 1 + + def cmd_read_yw_trace(self, cmd): + steps = cmd.get("steps") + path = cmd.get("path") + name = cmd.get("name") + skip_x = cmd.get("skip_x", False) + if path is None: + raise InteractiveError("path required") + + constraints = defaultdict(list) + + if steps is None: + steps = sorted(self.state_set) + + map_steps = {i: int(j) for i, j in enumerate(steps)} + + last_step = smtbmc.ywfile_constraints( + path, constraints, map_steps=map_steps, skip_x=skip_x + ) + + self._yw_constraints[name] = { + map_steps.get(i, i): [smtexpr for cexfile, smtexpr in constraint_list] + for i, constraint_list in constraints.items() + } + + return dict(last_step=last_step) + + def cmd_modinfo(self, cmd): + fields = cmd.get("fields", []) + + mod = cmd.get("mod") + if mod is None: + mod = smtbmc.topmod + modinfo = smtbmc.smt.modinfo.get(mod) + if modinfo is None: + return None + + result = dict(name=mod) + for field in fields: + result[field] = getattr(modinfo, field, None) + return result + + def cmd_ping(self, cmd): + return cmd + + cmd_handlers = { + "new_step": cmd_new_step, + "assert": cmd_assert, + "assert_antecedent": cmd_assert, + "assert_consequent": cmd_assert, + "assert_design_assumes": cmd_assert_design_assumes, + "get_design_assume": cmd_get_design_assume, + "update_assumptions": cmd_update_assumptions, + "get_unsat_assumptions": cmd_get_unsat_assumptions, + "push": cmd_push, + "pop": cmd_pop, + "check": cmd_check, + "smtlib": cmd_smtlib, + "define": cmd_define, + "design_hierwitness": cmd_design_hierwitness, + "write_yw_trace": cmd_write_yw_trace, + "read_yw_trace": cmd_read_yw_trace, + "modinfo": cmd_modinfo, + "ping": cmd_ping, + } + + def handle_command(self, cmd): + if not isinstance(cmd, dict) or "cmd" not in cmd: + raise InteractiveError('object with "cmd" key required') + + name = cmd.get("cmd", None) + + handler = self.cmd_handlers.get(name) + if handler: + return handler(self, cmd) + else: + raise InteractiveError(f"unknown command: {name}") + + def mainloop(self): + self.setup() + while True: + try: + cmd = input().strip() + if not cmd or cmd.startswith("#") or cmd.startswith("//"): + continue + try: + cmd = json.loads(cmd) + except json.decoder.JSONDecodeError as e: + self.print_json(err=f"invalid JSON: {e}") + continue + except EOFError: + break + + try: + result = self.handle_command(cmd) + except InteractiveError as e: + self.print_json(err=str(e)) + continue + except Exception as e: + self.print_json(err=f"internal error: {e}") + raise + else: + self.print_json(ok=result) diff --git a/yosys/backends/smt2/smtio.py b/yosys/backends/smt2/smtio.py index 0ec7f08f4dc..5fc3ab5a424 100644 --- a/yosys/backends/smt2/smtio.py +++ b/yosys/backends/smt2/smtio.py @@ -79,6 +79,20 @@ def except_hook(exctype, value, traceback): sys.excepthook = except_hook +def recursion_helper(iteration, *request): + stack = [iteration(*request)] + + while stack: + top = stack.pop() + try: + request = next(top) + except StopIteration: + continue + + stack.append(top) + stack.append(iteration(*request)) + + hex_dict = { "0": "0000", "1": "0001", "2": "0010", "3": "0011", "4": "0100", "5": "0101", "6": "0110", "7": "0111", @@ -100,6 +114,7 @@ def __init__(self): self.clocks = dict() self.cells = dict() self.asserts = dict() + self.assumes = dict() self.covers = dict() self.maximize = set() self.minimize = set() @@ -127,6 +142,7 @@ def __init__(self, opts=None): self.recheck = False self.smt2cache = [list()] self.smt2_options = dict() + self.smt2_assumptions = dict() self.p = None self.p_index = solvers_index solvers_index += 1 @@ -144,6 +160,7 @@ def __init__(self, opts=None): self.noincr = opts.noincr self.info_stmts = opts.info_stmts self.nocomments = opts.nocomments + self.smt2_options.update(opts.smt2_options) else: self.solver = "yices" @@ -298,10 +315,22 @@ def replace_in_stmt(self, stmt, pat, repl): return stmt def unroll_stmt(self, stmt): + result = [] + recursion_helper(self._unroll_stmt_into, stmt, result) + return result.pop() + + def _unroll_stmt_into(self, stmt, output, depth=128): if not isinstance(stmt, list): - return stmt + output.append(stmt) + return - stmt = [self.unroll_stmt(s) for s in stmt] + new_stmt = [] + for s in stmt: + if depth: + yield from self._unroll_stmt_into(s, new_stmt, depth - 1) + else: + yield s, new_stmt + stmt = new_stmt if len(stmt) >= 2 and not isinstance(stmt[0], list) and stmt[0] in self.unroll_decls: assert stmt[1] in self.unroll_objs @@ -330,12 +359,19 @@ def unroll_stmt(self, stmt): decl[2] = list() if len(decl) > 0: - decl = self.unroll_stmt(decl) + tmp = [] + if depth: + yield from self._unroll_stmt_into(decl, tmp, depth - 1) + else: + yield decl, tmp + + decl = tmp.pop() self.write(self.unparse(decl), unroll=False) - return self.unroll_cache[key] + output.append(self.unroll_cache[key]) + return - return stmt + output.append(stmt) def p_thread_main(self): while True: @@ -569,6 +605,12 @@ def info(self, stmt): else: self.modinfo[self.curmod].covers["%s_c %s" % (self.curmod, fields[2])] = fields[3] + if fields[1] == "yosys-smt2-assume": + if len(fields) > 4: + self.modinfo[self.curmod].assumes["%s_u %s" % (self.curmod, fields[2])] = f'{fields[4]} ({fields[3]})' + else: + self.modinfo[self.curmod].assumes["%s_u %s" % (self.curmod, fields[2])] = fields[3] + if fields[1] == "yosys-smt2-maximize": self.modinfo[self.curmod].maximize.add(fields[2]) @@ -752,8 +794,13 @@ def read(self): return stmt def check_sat(self, expected=["sat", "unsat", "unknown", "timeout", "interrupted"]): + if self.smt2_assumptions: + assume_exprs = " ".join(self.smt2_assumptions.values()) + check_stmt = f"(check-sat-assuming ({assume_exprs}))" + else: + check_stmt = "(check-sat)" if self.debug_print: - print("> (check-sat)") + print(f"> {check_stmt}") if self.debug_file and not self.nocomments: print("; running check-sat..", file=self.debug_file) self.debug_file.flush() @@ -767,7 +814,7 @@ def check_sat(self, expected=["sat", "unsat", "unknown", "timeout", "interrupted for cache_stmt in cache_ctx: self.p_write(cache_stmt + "\n", False) - self.p_write("(check-sat)\n", True) + self.p_write(f"{check_stmt}\n", True) if self.timeinfo: i = 0 @@ -835,7 +882,7 @@ def check_sat(self, expected=["sat", "unsat", "unknown", "timeout", "interrupted if self.debug_file: print("(set-info :status %s)" % result, file=self.debug_file) - print("(check-sat)", file=self.debug_file) + print(check_stmt, file=self.debug_file) self.debug_file.flush() if result not in expected: @@ -912,6 +959,55 @@ def bv2bin(self, v): def bv2int(self, v): return int(self.bv2bin(v), 2) + def get_raw_unsat_assumptions(self): + if not self.smt2_assumptions: + return [] + self.write("(get-unsat-assumptions)") + exprs = set(self.unparse(part) for part in self.parse(self.read())) + unsat_assumptions = [] + for key, value in self.smt2_assumptions.items(): + # normalize expression + value = self.unparse(self.parse(value)) + if value in exprs: + exprs.remove(value) + unsat_assumptions.append(key) + return unsat_assumptions + + def get_unsat_assumptions(self, minimize=False): + if not minimize: + return self.get_raw_unsat_assumptions() + orig_assumptions = self.smt2_assumptions + + self.smt2_assumptions = dict(orig_assumptions) + + required_assumptions = {} + + while True: + candidate_assumptions = {} + for key in self.get_raw_unsat_assumptions(): + if key not in required_assumptions: + candidate_assumptions[key] = self.smt2_assumptions[key] + + while candidate_assumptions: + + candidate_key, candidate_assume = candidate_assumptions.popitem() + + self.smt2_assumptions = {} + for key, assume in candidate_assumptions.items(): + self.smt2_assumptions[key] = assume + for key, assume in required_assumptions.items(): + self.smt2_assumptions[key] = assume + result = self.check_sat() + + if result == 'unsat': + candidate_assumptions = None + else: + required_assumptions[candidate_key] = candidate_assume + + if candidate_assumptions is not None: + self.smt2_assumptions = orig_assumptions + return list(required_assumptions) + def get(self, expr): self.write("(get-value (%s))" % (expr)) return self.parse(self.read())[0][1] @@ -920,7 +1016,7 @@ def get_list(self, expr_list): if len(expr_list) == 0: return [] self.write("(get-value (%s))" % " ".join(expr_list)) - return [n[1] for n in self.parse(self.read())] + return [n[1] for n in self.parse(self.read()) if n] def get_path(self, mod, path): assert mod in self.modinfo @@ -1058,7 +1154,7 @@ def wait(self): class SmtOpts: def __init__(self): self.shortopts = "s:S:v" - self.longopts = ["unroll", "noincr", "noprogress", "timeout=", "dump-smt2=", "logic=", "dummy=", "info=", "nocomments"] + self.longopts = ["unroll", "noincr", "noprogress", "timeout=", "dump-smt2=", "logic=", "dummy=", "info=", "nocomments", "smt2-option="] self.solver = "yices" self.solver_opts = list() self.debug_print = False @@ -1071,6 +1167,7 @@ def __init__(self): self.logic = None self.info_stmts = list() self.nocomments = False + self.smt2_options = {} def handle(self, o, a): if o == "-s": @@ -1097,6 +1194,13 @@ def handle(self, o, a): self.info_stmts.append(a) elif o == "--nocomments": self.nocomments = True + elif o == "--smt2-option": + args = a.split('=', 1) + if len(args) != 2: + print("--smt2-option expects an